From: Henry N. <hen...@ar...> - 2009-06-24 22:01:07
|
Ken Perl wrote: > I have Xming installed in the default location in which path there is > a space, I'm not sure if this is the cause, but I can not launch Xming > after coLinux is started. I have to start it manually from the program > menu. > > exec0=C:\Program Files\Xming\Xming.exe,":0 -clipboard -multiwindow -ac" Hm. Its's a bug, that quotation marks not works, like this: exec0="C:\Program Files\Xming\Xming.exe",":0 -clipboard -multiwindow -ac" Please use the alternate 8.3-names for paths with spaces, for example: exec0="C:\PROGRA~1\Xming\Xming.exe",":0 -clipboard -multiwindow -ac" Check on command line with a "DIR C:\ /X" the name for "Program Files" on your system. -- Henry N. |