From: Ballard J. <sac...@ho...> - 2004-02-13 23:40:32
|
I used cygwin X. On coLinux (Debian), use dselect to find xterm and install it or do an "apt-get install xterm" instead. From cygwin, use "xhost +" to allow any connection, and that is okay behind a firewall. Start the xserver. Here is a .bat file I used to start it from the Start menu. Update the "set CYGWIN_ROOT=" if needed. --- @echo off SET DISPLAY=127.0.0.1:0.0 SET CYGWIN_ROOT=C:\cygwin REM REM The path in the CYGWIN_ROOT environment variable assignment assume REM that Cygwin is installed in a directory called 'cygwin' in the root REM directory of the current drive. You will only need to modify REM CYGWIN_ROOT if you have installed Cygwin in another directory. For REM example, if you installed Cygwin in \foo\bar\baz\cygwin, you will need REM to change \cygwin to \foo\bar\baz\cygwin. SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% REM REM Cleanup after last run. REM if not exist %CYGWIN_ROOT%\tmp\.X11-unix\X0 goto CLEANUP-FINISH attrib -s %CYGWIN_ROOT%\tmp\.X11-unix\X0 del %CYGWIN_ROOT%\tmp\.X11-unix\X0 :CLEANUP-FINISH if exist %CYGWIN_ROOT%\tmp\.X11-unix rmdir %CYGWIN_ROOT%\tmp\.X11-unix REM REM start XWin -multiwindow ----- Original Message ----- From: "Jason A. Pattie" <pat...@pc...> To: <col...@li...> Sent: Friday, February 13, 2004 8:39 PM Subject: Re: [coLinux-devel] Getting X to work natively > Alejandro R. Sedeno wrote: > > >X won't run in the console, or using anything that requires a graphics > >card. What's been done is to have a vnc server running X, and using > >vncviewer to connect to it from windows. If it's not working at first, > >check the logs it makes to help you find what's missing. > > > >Good luck! > > > > > Interesting approach. Thanks. > > I suppose it might be faster running it this way than using Cygwin's X > server? > > One of the neat features of Cygwin's latest X servers is -multiwindow, > which allows Windows to "manage" X clients that connect. > > > > -- > This message has been scanned for viruses and > dangerous content by MailScanner, and is > believed to be clean. > MailScanner thanks transtec Computers for their support. > > > > ------------------------------------------------------- > SF.Net is sponsored by: Speed Start Your Linux Apps Now. > Build and deploy apps & Web services for Linux with > a free DVD software kit from IBM. Click Now! > http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click > _______________________________________________ > coLinux-devel mailing list > coL...@li... > https://lists.sourceforge.net/lists/listinfo/colinux-devel > |