From fma@doe.carleton.ca Thu Feb 1 03:11:00 2007 From: fma@doe.carleton.ca (Gmane User) Date: Thu, 01 Feb 2007 03:11:00 -0000 Subject: error when starting X-Win In-Reply-To: <45C0C54A.7000706@cygwin.com> References: <45BE3182.20817.1F1BAA3@bartak.fsinet.fsid.cvut.cz> <45BECAEB.5090304@doe.carleton.ca> <45BF8F85.9010000@cygwin.com> <45BFEC5C.2000000@cygwin.com> <2bf229d30701301806r76da3b42v3d258bbb6ab3c047@mail.gmail.com> <45C00345.4060807@cygwin.com> <45C0C54A.7000706@cygwin.com> Message-ID: Larry Hall (Cygwin X) wrote: > Gmane User wrote: > > > >> Which made me think "wouldn't it be nice if mounting didn't have >> to be done for each user account?". I install cygwin on whatever >> machine (of several) that I happen to work on, so such a global >> fix would make life easier. And there is a solution. >> With a bit of refresher from the unix shell newsgroup, I was >> prompted into realizing that startxwin.sh launches XWin in the >> background, which allows the PID to be captured with "$!". So >> if one really wanted to, startxwin could use "wait" with XWin's >> PID to wait for XWin to finish, after which it deletes >> /tmp/.X11-unix. No need to maintain user-specific /tmp mounts. >> One could probably create a start-menu shortcut that invokes >> startxwin.sh with the run command, similar to the way it is used >> in startxwin.bat. > > If memory serves me correctly, this was talked about before and perhaps > even implemented. If the latter is actually true, then it got lost at > some point (perhaps about the time that the Cygwin-X maintainer was > lost ;-) ). Yeah, well, it's probably not the end-all-be-all solution. It occured to me that if the startxwin.sh script got interrupted somehow e.g. due to forced shutdown, power outage, logoff, or "kill", then it never runs the command that erases /tmp.X11-unix. Are you the new maintainer? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh-x@cygwin.com Thu Feb 1 03:57:00 2007 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Thu, 01 Feb 2007 03:57:00 -0000 Subject: error when starting X-Win In-Reply-To: References: <45BE3182.20817.1F1BAA3@bartak.fsinet.fsid.cvut.cz> <45BECAEB.5090304@doe.carleton.ca> <45BF8F85.9010000@cygwin.com> <45BFEC5C.2000000@cygwin.com> <2bf229d30701301806r76da3b42v3d258bbb6ab3c047@mail.gmail.com> <45C00345.4060807@cygwin.com> <45C0C54A.7000706@cygwin.com> Message-ID: <45C164FE.2060903@cygwin.com> Gmane User wrote: > Larry Hall (Cygwin X) wrote: >> Gmane User wrote: >> >> >> >>> Which made me think "wouldn't it be nice if mounting didn't have >>> to be done for each user account?". I install cygwin on whatever >>> machine (of several) that I happen to work on, so such a global >>> fix would make life easier. And there is a solution. >>> With a bit of refresher from the unix shell newsgroup, I was >>> prompted into realizing that startxwin.sh launches XWin in the >>> background, which allows the PID to be captured with "$!". So >>> if one really wanted to, startxwin could use "wait" with XWin's >>> PID to wait for XWin to finish, after which it deletes >>> /tmp/.X11-unix. No need to maintain user-specific /tmp mounts. >>> One could probably create a start-menu shortcut that invokes >>> startxwin.sh with the run command, similar to the way it is used >>> in startxwin.bat. >> If memory serves me correctly, this was talked about before and perhaps >> even implemented. If the latter is actually true, then it got lost at >> some point (perhaps about the time that the Cygwin-X maintainer was >> lost ;-) ). > > Yeah, well, it's probably not the end-all-be-all solution. It occured > to me that if the startxwin.sh script got interrupted somehow e.g. due > to forced shutdown, power outage, logoff, or "kill", then it never runs > the command that erases /tmp.X11-unix. Yeah, it may have been some combination of what you suggested and some additional "magic" on the front end to pick up on those cases. I'm sure it's in the email archives somewhere. > Are you the new maintainer? Let me check... Nope! :-) -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ajcaruana@gmail.com Thu Feb 1 14:33:00 2007 From: ajcaruana@gmail.com (Alan James Caruana) Date: Thu, 01 Feb 2007 14:33:00 -0000 Subject: Windows HWND and X Clients in multiwindow mode Message-ID: Hi, I am trying to write a program, that when running the X Server in multi-window mode keeps track of the association between the HWND value that MSWindows assigns to each window that is created, and the X Client that owns that window. Finding X Client that owns an X Window is quite simple, but I couldn't manage to then go a step further and find anything that binds the X Window to the MS Window. I tried using the devPrivates of the _Window struct, by using the winGetWindowPriv() macro. This gives a winPrivWinPtr variable, pointing to a struct which has, as one of its elements, an HWND variable. I thought it should provide the link, but in actual fact it did not as the HWND element was always 0 (zero). I also tried modifying the code of the X Server and recompiled it to see if it works there, but the same thing happened. So now I ask, what is it that I am missing out? I am sure it can be done, as the X Server must be doing it somewhere, but where? and how? Any help will be greatly appreciated. AJ Caruana -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ajcaruana@gmail.com Thu Feb 1 16:20:00 2007 From: ajcaruana@gmail.com (Alan James Caruana) Date: Thu, 01 Feb 2007 16:20:00 -0000 Subject: Windows HWND and X Clients in multiwindow mode In-Reply-To: References: Message-ID: My apologies, I was checking the value of the HWND in the window privates too early. I was checking it before the server calls the MapWindow() function, which is the function which calls some other functions that in the end call the actual CreateWindowEx() of MS Windows. The CreateWindow() function of Xlib (and all the functions that it calls) do not create the HWND, so here I answered my own question. Thanks anyway. Regards AJ Caruana On 2/1/07, Alan James Caruana wrote: > Hi, > > I am trying to write a program, that when running the X Server in > multi-window mode keeps track of the association between the HWND > value that MSWindows assigns to each window that is created, and the X > Client that owns that window. > > Finding X Client that owns an X Window is quite simple, but I couldn't > manage to then go a step further and find anything that binds the X > Window to the MS Window. > > I tried using the devPrivates of the _Window struct, by using the > winGetWindowPriv() macro. This gives a winPrivWinPtr variable, > pointing to a struct which has, as one of its elements, an HWND > variable. I thought it should provide the link, but in actual fact it > did not as the HWND element was always 0 (zero). I also tried > modifying the code of the X Server and recompiled it to see if it > works there, but the same thing happened. > > So now I ask, what is it that I am missing out? I am sure it can be > done, as the X Server must be doing it somewhere, but where? and how? > > Any help will be greatly appreciated. > > AJ Caruana > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From peter360@fastmail.us Thu Feb 1 20:10:00 2007 From: peter360@fastmail.us (peter360) Date: Thu, 01 Feb 2007 20:10:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. Message-ID: <8755449.post@talk.nabble.com> I just installed cygwin/X. My system is: $ uname -a CYGWIN_NT-5.1 AGAINSTSTONE-LX 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin I start the X server using the included startxwin.bat file. In the xterm window this is what I got $ ssh destination.host Pseudo-terminal will not be allocated because stdin is not a terminal. ... ssh asks me for password but as I type the password echoes into the terminal window! I assume this is related to the warning message about not being able to allocate Pseudo terminal. But why? Why is my stdin not a terminal? Anybody has a clue? Thanks, Peter -- View this message in context: http://www.nabble.com/Pseudo-terminal-will-not-be-allocated-because-stdin-is-not-a-terminal.-tf3157119.html#a8755449 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cgf-use-the-mailinglist-please@cygwin.com Thu Feb 1 20:14:00 2007 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Thu, 01 Feb 2007 20:14:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. In-Reply-To: <8755449.post@talk.nabble.com> References: <8755449.post@talk.nabble.com> Message-ID: <20070201201443.GB17359@trixie.casa.cgf.cx> On Thu, Feb 01, 2007 at 12:10:35PM -0800, peter360 wrote: >I just installed cygwin/X. My system is: > >$ uname -a >CYGWIN_NT-5.1 AGAINSTSTONE-LX 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin > > >I start the X server using the included startxwin.bat file. In the xterm >window this is what I got >$ ssh destination.host >Pseudo-terminal will not be allocated because stdin is not a terminal. >... > >ssh asks me for password but as I type the password echoes into the terminal >window! I assume this is related to the warning message about not being >able to allocate Pseudo terminal. But why? Why is my stdin not a terminal? >Anybody has a clue? Yep. You have a non-cygwin tool in there somewhere (ssh, maybe?) which doesn't understand cygwin's ptys. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From michi.fischer@gmx.net Thu Feb 1 21:41:00 2007 From: michi.fischer@gmx.net (Michael Fischer) Date: Thu, 01 Feb 2007 21:41:00 -0000 Subject: problem starting kde Message-ID: <200721224117.288191@laplace> i get the following output, can anyone tell me what goes wrong? $ startx + test -f /home/albert/.kde_mountchecked + IPC_PID=1920 + ipc-daemon2 + case $1 in + client_opt= + server_opt= + xinit /opt/kde3/bin/startkde -- /usr/X11R6/bin/XWin :0 -noreset -ac -nowinkill Welcome to the XWin X Server Vendor: The Cygwin/X Project Release: 6.8.99.901-4 Contact: cygwin-xfree@cygwin.com XWin was started with the following command line: /usr/X11R6/bin/XWin :0 -noreset -ac -nowinkill _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1 (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information winDetectSupportedEngines - Windows NT/2000/XP winDetectSupportedEngines - DirectDraw installed winDetectSupportedEngines - DirectDraw4 installed winDetectSupportedEngines - Returning, supported engines 00000007 winSetEngine - Using Shadow DirectDraw NonLocking winAdjustVideoModeShadowDDNL - Using Windows display depth of 32 bits per pixel winFinishScreenInitFB - Masks: 00ff0000 0000ff00 000000ff MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000407" (00000407) (--) Using preset keyboard for "German (Germany)" (407), type "4" Rules = "xorg" Model = "pc105" Layout = "de" Variant = "(null)" Options = "(null )" expected keysym, got dead_diaresis: line 143 of pc/de The XKEYBOARD keymap compiler (xkbcomp) reports: > Warning: Type "ONE_LEVEL" has 1 levels, but has 2 symbols > Ignoring extra symbols Errors from xkbcomp are not fatal to the X server (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winPointerWarpCursor - Discarding first warp: 637 484 winProcEstablishConnection - Hello winProcEstablishConnection - Clipboard is not enabled, returning. + export SHELL=/bin/bash + SHELL=/bin/bash + export KDEINIT_KIO_EXEC=1 + KDEINIT_KIO_EXEC=1 + test -n 1 + export 'PATH=/opt/kde3/lib/kde3:/opt/kde3/bin:/opt/kde3/lib:/opt/kde3/lib/kde3 :/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/cygdrive/c/Programme/PHP/:/cygdriv e/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygd rive/c/Programme/ATI Technologies/ATI.ACE/:/cygdrive/c/Programme/Gemeinsame Date ien/Adobe/AGL:/cygdrive/c/Programme/jEdit:/cygdrive/c/Programme/Java/jdk1.5.0_05 /bin' + PATH='/opt/kde3/lib/kde3:/opt/kde3/bin:/opt/kde3/lib:/opt/kde3/lib/kde3:/usr/l ocal/bin:/usr/bin:/bin:/usr/X11R6/bin:/cygdrive/c/Programme/PHP/:/cygdrive/c/WIN DOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygdrive/c/ Programme/ATI Technologies/ATI.ACE/:/cygdrive/c/Programme/Gemeinsame Dateien/Ado be/AGL:/cygdrive/c/Programme/jEdit:/cygdrive/c/Programme/Java/jdk1.5.0_05/bin' + rm -f /home/albert/.ICEauthority + kdehome=/home/albert/.kde31 + '[' -z /usr/lib/qt3 ']' + '[' -z /opt/kde3 ']' + '[' -z /opt/kde3/home ']' + '[' -e /opt/kde3/home/share/mimelnk ']' + '[' -e /opt/kde3/home/share/applnk ']' + '[' -e /opt/kde3/home/share/services ']' + '[' -e /opt/kde3/home/share/servicetypes ']' + test '' '!=' -multiwindow + '[' -e /home/albert/.kde31/share/config/kdesktoprc ']' + '[' -z '' -a albert = root ']' + '[' -z '' -a albert '!=' root ']' + color='#004e98' + xsetroot -cursor_name left_ptr -solid '#004e98' + test -n '' + export LD_LIBRARY_PATH=/opt/kde3/lib:/opt/kde3/bin:/usr/lib/qt3/lib:/usr/lib/q t3/bin + LD_LIBRARY_PATH=/opt/kde3/lib:/opt/kde3/bin:/usr/lib/qt3/lib:/usr/lib/qt3/bin + test -n '' + export LTDL_LIBRARY_PATH=/opt/kde3/lib:/opt/kde3/bin:/usr/lib/qt3/lib:/usr/lib /qt3/bin + LTDL_LIBRARY_PATH=/opt/kde3/lib:/opt/kde3/bin:/usr/lib/qt3/lib:/usr/lib/qt3/bi n ++ xdpyinfo ++ grep dimensions: ++ cut -d ' ' -f 7 ++ cut -d x -f 1 + export X=1274 + X=1274 ++ xdpyinfo ++ grep dimensions: ++ cut -d ' ' -f 7 ++ cut -d x -f 2 + export Y=969 + Y=969 ++ xdpyinfo ++ awk '/depths/ {print $NF}' + export D=32 + D=32 + '[' -e /home/albert/.skel/kdebase ']' + INITIAL=--force + rm -rf /tmp/ksocket-albert /opt/kde3/home/tmp-laplace + lnusertemp tmp + lnusertemp socket + dcopserver_shutdown + echo 'startkde: Starting up mode ... ' startkde: Starting up mode ... + kreadconfig --file kpersonalizerrc --group General --key FirstLogin --default true --type bool + test '' '!=' -multiwindow ++ xdpyinfo ++ awk '/depths/ {print $NF}' + '[' 32 -gt 8 ']' + ksplash + case "$1" in + AUTOSTART_DIR=autostart-default + KDEINIT_APPS='+kcminit +knotify' + rm /opt/kde3/home/share/autostart + ln -fs /opt/kde3/share/autostart-default /opt/kde3/home/share/autostart + kdeinit +kcminit +knotify + test -n '' + kwrapper ksmserver Warning: connect() failed: : No such file or directory + test 57 -eq 255 + echo 'startkde: Shutting down...' startkde: Shutting down... + kdeinit_shutdown Warning: connect() failed: : No such file or directory Error: Can't contact kdeinit! + dcopserver_shutdown ++ ps -s ++ egrep '(kded|kdeinit|knotify|kicker|kdesktop|kio)' ++ cut -c 4-7 + test -n 1 ++ ps -s ++ egrep '(kio)' ++ cut -c 4-7 + echo 'startkde: Running shutdown scripts...' startkde: Running shutdown scripts... ++ kde-config --path exe ++ sed -e 's^bin/^shutdown/^g;s^:^ ^' + echo 'startkde: Done.' startkde: Done. waiting for X server to shut down FreeFontPath: FPE "/usr/X11R6/lib/X11/fonts/mi sc/" refcount is 2, should be 1; fixing. winDeinitMultiWindowWM - Noting shutdown in progress + kill -15 1920 Michael Fischer __ __ ___ | \/ || __| | |\/| || _| |_| |_||_| -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From peter360@fastmail.us Fri Feb 2 00:43:00 2007 From: peter360@fastmail.us (peter360) Date: Fri, 02 Feb 2007 00:43:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. In-Reply-To: <20070201201443.GB17359@trixie.casa.cgf.cx> References: <8755449.post@talk.nabble.com> <20070201201443.GB17359@trixie.casa.cgf.cx> Message-ID: <8759904.post@talk.nabble.com> Indeed! It turns out I was using c:\WINDOWS\System32\ssh.exe, which I have no idea how it got there... I installed openssh and the problem was fixed. Thanks! Just out of curiosity, how does a program check if stdin is a "terminal"? My xterm looks like a terminal to me but apparently the windows version of ssh.exe couldn't figure that out... Peter Christopher Faylor-8 wrote: > > On Thu, Feb 01, 2007 at 12:10:35PM -0800, peter360 wrote: >>I just installed cygwin/X. My system is: >> >>$ uname -a >>CYGWIN_NT-5.1 AGAINSTSTONE-LX 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin >> >> >>I start the X server using the included startxwin.bat file. In the xterm >>window this is what I got >>$ ssh destination.host >>Pseudo-terminal will not be allocated because stdin is not a terminal. >>... >> >>ssh asks me for password but as I type the password echoes into the terminal >>window! I assume this is related to the warning message about not being >>able to allocate Pseudo terminal. But why? Why is my stdin not a terminal? >>Anybody has a clue? > > Yep. You have a non-cygwin tool in there somewhere (ssh, maybe?) which > doesn't > understand cygwin's ptys. > > cgf > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > > -- View this message in context: http://www.nabble.com/Pseudo-terminal-will-not-be-allocated-because-stdin-is-not-a-terminal.-tf3157119.html#a8759904 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cgf-use-the-mailinglist-please@cygwin.com Fri Feb 2 01:19:00 2007 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Fri, 02 Feb 2007 01:19:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. In-Reply-To: <8759904.post@talk.nabble.com> References: <8755449.post@talk.nabble.com> <20070201201443.GB17359@trixie.casa.cgf.cx> <8759904.post@talk.nabble.com> Message-ID: <20070202011922.GA544@trixie.casa.cgf.cx> On Thu, Feb 01, 2007 at 04:42:59PM -0800, peter360 wrote: >Indeed! It turns out I was using c:\WINDOWS\System32\ssh.exe, which I have >no idea how it got there... I installed openssh and the problem was fixed. >Thanks! > >Just out of curiosity, how does a program check if stdin is a "terminal"? >My xterm looks like a terminal to me but apparently the windows version of >ssh.exe couldn't figure that out... Windows doesn't know what a "terminal" is. Cygwin invents its own concept but only Cygwin programs are aware of this. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From markjreed@mail.com Fri Feb 2 02:34:00 2007 From: markjreed@mail.com (Mark J. Reed) Date: Fri, 02 Feb 2007 02:34:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. In-Reply-To: <20070202011922.GA544@trixie.casa.cgf.cx> References: <8755449.post@talk.nabble.com> <20070201201443.GB17359@trixie.casa.cgf.cx> <8759904.post@talk.nabble.com> <20070202011922.GA544@trixie.casa.cgf.cx> Message-ID: In the POSIX API there is a function that takes a file descriptor and returns true if that descriptor is associated with a "terminal", false otherwise. The effective definition of "terminal" is therefore "something that causes that function to return true". :) Xterms running under Cygwin are designed to do whatever it is that makes the Cygwin version of the function return true, but non-Cygwin programs have their own idea (perhaps based on a Windows POSIX layer version of the same function, perhaps not), and apparently Cygwin/xterm doesn't pass muster. More than likely the only thing that looks like a "terminal" to the Windows ssh client is a command prompt console window (do they still call those "DOS boxes"?). On 2/1/07, Christopher Faylor wrote: > On Thu, Feb 01, 2007 at 04:42:59PM -0800, peter360 wrote: > >Indeed! It turns out I was using c:\WINDOWS\System32\ssh.exe, which I have > >no idea how it got there... I installed openssh and the problem was fixed. > >Thanks! > > > >Just out of curiosity, how does a program check if stdin is a "terminal"? > >My xterm looks like a terminal to me but apparently the windows version of > >ssh.exe couldn't figure that out... > > Windows doesn't know what a "terminal" is. Cygwin invents its own concept > but only Cygwin programs are aware of this. > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > -- Mark J. Reed -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From stgeorgegerar@bakerpool.com Fri Feb 2 12:51:00 2007 From: stgeorgegerar@bakerpool.com (Anouska Coggins) Date: Fri, 02 Feb 2007 12:51:00 -0000 Subject: my PHAvioRMA Message-ID: <01c746c8$ce396560$1406000a@pstrokonski> Hi, Via_qra $1, 80 Ciqlis $3, 00 Levvtra $3, 35 http://www.progenyid.%com ( Important Remove "%" ) -- situated exactly halfway between the golden goal posts. About twenty purple-and-gilt chairs stood in two rows here, and Harry, filing into the front seats with the Weasleys, looked down upon a scene the likes of -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From chase@ece.utexas.edu Fri Feb 2 19:40:00 2007 From: chase@ece.utexas.edu (Craig Chase) Date: Fri, 02 Feb 2007 19:40:00 -0000 Subject: Vista 64 configuration nuisance and /etc/profile.d/00xorg-x11-base.csh Message-ID: <45C43C7B.4020303@ece.utexas.edu> (patch below) Small nuisance... The 64-bit vista uses the path name: C:\Program Files (x86)\ for 32-bit apps, and some packages will be installed there by default. Hence, many cygwin users may have C:\Program Files (x86)\ in their PATH environment variable. The parenthesis breaks 00xorg-x11-base.csh Adding an extra set of quotes on one line fixes the problem. Craig Chase xorg-x11 version: 6.8.99.901-1 Microsoft Vista, enterprise edition, 64-bit. -- *** 00xorg-x11-base.csh~ Wed Oct 26 21:26:49 2005 --- 00xorg-x11-base.csh Sat Feb 3 01:24:35 2007 *************** *** 7,13 **** # PATH is not empty # Check if path is already in PATH ! eval "/bin/echo ${PATH} | /bin/grep -q /usr/X11R6/bin" if ( $status ) then # Path is not already in PATH, prepend it to PATH setenv PATH "/usr/X11R6/bin:${PATH}" --- 7,13 ---- # PATH is not empty # Check if path is already in PATH ! eval '/bin/echo ${PATH} | /bin/grep -q /usr/X11R6/bin' if ( $status ) then # Path is not already in PATH, prepend it to PATH setenv PATH "/usr/X11R6/bin:${PATH}" -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: patch URL: -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Cary_Jamison@Symantec.com Fri Feb 2 20:56:00 2007 From: Cary_Jamison@Symantec.com (Cary Jamison) Date: Fri, 02 Feb 2007 20:56:00 -0000 Subject: Vista 64 configuration nuisance and /etc/profile.d/00xorg-x11-base.csh References: <45C43C7B.4020303@ece.utexas.edu> Message-ID: Craig Chase wrote: >> (patch below) >> >> Small nuisance... The 64-bit vista uses the path name: >> C:\Program Files (x86)\ >> for 32-bit apps, and some packages will be installed there by >> default. Hence, many cygwin users may have C:\Program Files >> (x86)\ in their PATH environment variable. The parenthesis >> breaks 00xorg-x11-base.csh Note that all versions of Windows x64 have this directory, not just Vista x64. Cary -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From peter360@fastmail.us Sun Feb 4 03:16:00 2007 From: peter360@fastmail.us (peter360) Date: Sun, 04 Feb 2007 03:16:00 -0000 Subject: Pseudo-terminal will not be allocated because stdin is not a terminal. In-Reply-To: References: <8755449.post@talk.nabble.com> <20070201201443.GB17359@trixie.casa.cgf.cx> <8759904.post@talk.nabble.com> <20070202011922.GA544@trixie.casa.cgf.cx> Message-ID: <8789667.post@talk.nabble.com> That must be it. Thanks for the explanation Mark. -- View this message in context: http://www.nabble.com/Pseudo-terminal-will-not-be-allocated-because-stdin-is-not-a-terminal.-tf3157119.html#a8789667 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ryanjohn@ece.cmu.edu Mon Feb 5 14:59:00 2007 From: ryanjohn@ece.cmu.edu (Ryan Johnson) Date: Mon, 05 Feb 2007 14:59:00 -0000 Subject: Cygwin/X + Solaris = no function keys Message-ID: <45C7462F.4040200@ece.cmu.edu> Hi, I use the latest version of cygwin/X (updated yesterday) to connect to a Solaris 10 box. Certain keys like page up and page down don't work for any programs besides xemacs, but when I run SunStudio 11 (a Java app) I lose everyting except alphanumerics and punctuation. This makes it virtually impossible to use the program. I've narrowed the problem down to trusted X connections: given hosts cygwin.box and solaris.box, the bug appears if you use a direct connection: > cygwin.box $ xhost solaris.box > solaris.box $ DISPLAY=cygwin.box:0.0 sunstudio & or a trusted X connection over ssh: > cygwin.box $ ssh -fY solaris.box sunstudio Using an untrusted connection instead fixes the problem, but I give up all clipboard integration (which requires -Y): > cygwin.box $ ssh -fX solaris.box sunstudio *sigh* at least trying to use the clipboard in Java doesn't make it crash with a "BadAtom" error like all the x-apps do. Has anyone else seen this issue? It seems similar to a couple of messages about eclipse from April 2005, but those had no resolution. Thanks, Ryan Johnson -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Cary_Jamison@Symantec.com Mon Feb 5 17:37:00 2007 From: Cary_Jamison@Symantec.com (Cary Jamison) Date: Mon, 05 Feb 2007 17:37:00 -0000 Subject: Cygwin/X + Solaris = no function keys References: <45C7462F.4040200@ece.cmu.edu> Message-ID: Ryan Johnson wrote: > Hi, > > I use the latest version of cygwin/X (updated yesterday) to connect > to a Solaris 10 box. Certain keys like page up and page down don't > work for any programs besides xemacs, but when I run SunStudio 11 (a Java > app) > I lose everyting except alphanumerics and punctuation. This makes it > virtually impossible to use the program. numlock? Cary -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From scott@ohelp.com Mon Feb 5 20:10:00 2007 From: scott@ohelp.com (Scott Fordin) Date: Mon, 05 Feb 2007 20:10:00 -0000 Subject: Cygwin/X + Solaris = no function keys In-Reply-To: References: <45C7462F.4040200@ece.cmu.edu> Message-ID: <45C78F42.7060202@ohelp.com> Cary Jamison wrote: > Ryan Johnson wrote: >> Hi, >> >> I use the latest version of cygwin/X (updated yesterday) to connect >> to a Solaris 10 box. Certain keys like page up and page down don't >> work for any programs besides xemacs, but when I run SunStudio 11 >> (a Java app) I lose everyting except alphanumerics and punctuation. >> This makes it virtually impossible to use the program. > > numlock? There are definitely some Java apps that lose a lot of keyboard functionality -- for example, tab and backspace -- when the NumLock key is on. Scott > > > Cary > > > > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html Documentation: > http://x.cygwin.com/docs/ FAQ: > http://x.cygwin.com/docs/faq/ > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marco.meoni@cern.ch Tue Feb 6 20:00:00 2007 From: marco.meoni@cern.ch (Marco Meoni) Date: Tue, 06 Feb 2007 20:00:00 -0000 Subject: ssh -x Message-ID: hi, I'm new with cygwin. I've mainly installed it to connect to a linux server running GUI applications. In fact, I've read that with X11 forwarding (ssh -X) I can run remote applications and display the GUI on my pc running cygwin. Unfortunately I get errors like "can't open display". Does anybody know what do I have to setup before? (i guess start X11 server on my local pc) thank you in advance Marco -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Tue Feb 6 20:07:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Tue, 06 Feb 2007 20:07:00 -0000 Subject: ssh -x In-Reply-To: References: Message-ID: <45C8DFDF.6050406@gmx.de> Marco Meoni schrieb: > hi, I'm new with cygwin. > I've mainly installed it to connect to a linux server running GUI applications. > In fact, I've read that with X11 forwarding (ssh -X) I can run remote > applications and display the GUI on my pc running cygwin. > > Unfortunately I get errors like "can't open display". Does anybody know what do > I have to setup before? (i guess start X11 server on my local pc) Your guess is right. You have to start a local X11 server (startx). And set DISPLAY before you start ssh. Also remember that some applications need ssh -Y. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From scott@ohelp.com Tue Feb 6 20:35:00 2007 From: scott@ohelp.com (Scott Fordin) Date: Tue, 06 Feb 2007 20:35:00 -0000 Subject: ssh -x In-Reply-To: <45C8DFDF.6050406@gmx.de> References: <45C8DFDF.6050406@gmx.de> Message-ID: <45C8E658.2020404@ohelp.com> Holger Krull wrote: > Marco Meoni schrieb: >> hi, I'm new with cygwin. I've mainly installed it to connect to a >> linux server running GUI applications. In fact, I've read that with >> X11 forwarding (ssh -X) I can run remote applications and display >> the GUI on my pc running cygwin. >> >> Unfortunately I get errors like "can't open display". Does anybody >> know what do I have to setup before? (i guess start X11 server on >> my local pc) > > Your guess is right. You have to start a local X11 server (startx). > And set DISPLAY before you start ssh. Also remember that some > applications need ssh -Y. You also may need to use xhost to add the remote machine to the access control list on your local machine; for example, in your Cygwin shell: /usr/X11R6/bin/xhost + Some applications also don't seem to work with ssh -X or ssh -Y. For those apps, you may need to explicitly export the remote machine display to your local machine; for example, from your Linux box: export DISPLAY=:0.0 Scott > > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html Documentation: > http://x.cygwin.com/docs/ FAQ: > http://x.cygwin.com/docs/faq/ > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Tue Feb 6 20:39:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Tue, 06 Feb 2007 20:39:00 -0000 Subject: ssh -x In-Reply-To: <45C8E658.2020404@ohelp.com> References: <45C8DFDF.6050406@gmx.de> <45C8E658.2020404@ohelp.com> Message-ID: <45C8E75B.1020008@gmx.de> Scott Fordin schrieb: > Holger Krull wrote: >> Marco Meoni schrieb: >>> know what do I have to setup before? (i guess start X11 server on >>> my local pc) >> >> Your guess is right. You have to start a local X11 server (startx). >> And set DISPLAY before you start ssh. Also remember that some >> applications need ssh -Y. > > You also may need to use xhost to add the remote machine to > the access control list on your local machine; for example, > in your Cygwin shell: > > /usr/X11R6/bin/xhost + No you don't have to, if you use ssh to tunnel the X11 connection. (It would be localhost anyway and not the linux_machine_name). Try to understand the difference between tunneling and a remote connection. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From marco.meoni@cern.ch Tue Feb 6 21:47:00 2007 From: marco.meoni@cern.ch (Marco Meoni) Date: Tue, 06 Feb 2007 21:47:00 -0000 Subject: ssh -x References: <45C8DFDF.6050406@gmx.de> <45C8E658.2020404@ohelp.com> <45C8E75B.1020008@gmx.de> Message-ID: guys, thank you for the answers. This game is very cool. I got amazed! It works great! As far as I understand, with X11 tunneling I've an encrypted connection, whilst with remote connection I don't. Besides, I can easily pass through several machines in one shot (my pc ssh server1 that ssh server2 and finally get back the GUI to my pc) But what from the speed point of view? Too many encrypting steps? Other advantages in respect of remote connection / vnc ? Cheers, Marco -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Tue Feb 6 23:11:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Tue, 06 Feb 2007 23:11:00 -0000 Subject: ssh -x In-Reply-To: References: <45C8DFDF.6050406@gmx.de> <45C8E658.2020404@ohelp.com> <45C8E75B.1020008@gmx.de> Message-ID: <45C90B06.9040904@gmx.de> Marco Meoni schrieb: > As far as I understand, with X11 tunneling I've an encrypted connection, whilst > with remote connection I don't. That is right. > Besides, I can easily pass through several machines in one shot (my pc ssh > server1 that ssh server2 and finally get back the GUI to my pc) > But what from the speed point of view? Too many encrypting steps? The encryption doesn't matter. It is the latency of your connection that matters (ping time), because the X proctocol isn't very efficient. You could add compression to the ssh connection if your bandwidth is low (-C), but that would also increase latency. To reduce the X11 overhead you can use lbxproxy or the nxserver if these exist on the remote Unix/Linux installation. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh-x@cygwin.com Tue Feb 6 23:26:00 2007 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Tue, 06 Feb 2007 23:26:00 -0000 Subject: ssh -x In-Reply-To: <45C8DFDF.6050406@gmx.de> References: <45C8DFDF.6050406@gmx.de> Message-ID: <45C90EAB.3010302@cygwin.com> Holger Krull wrote: > Marco Meoni schrieb: >> hi, I'm new with cygwin. I've mainly installed it to connect to a linux >> server running GUI applications. In fact, I've read that with X11 >> forwarding (ssh -X) I can run remote applications and display the GUI >> on my pc running cygwin. >> >> Unfortunately I get errors like "can't open display". Does anybody know >> what do I have to setup before? (i guess start X11 server on my local >> pc) > > Your guess is right. You have to start a local X11 server (startx). And > set DISPLAY before you start ssh. Setting DISPLAY is not necessary with 'ssh -X' or 'ssh -Y'. More than that, setting DISPLAY will likely cause the X forwarding to not work as expected. For more info, read the "X11 FORWARDING" section of the 'ssh' man page. -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Wed Feb 7 00:10:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Wed, 07 Feb 2007 00:10:00 -0000 Subject: ssh -x In-Reply-To: <45C90EAB.3010302@cygwin.com> References: <45C8DFDF.6050406@gmx.de> <45C90EAB.3010302@cygwin.com> Message-ID: <45C918CD.2010804@gmx.de> Larry Hall (Cygwin X) schrieb: > Holger Krull wrote: >> Your guess is right. You have to start a local X11 server (startx). And >> set DISPLAY before you start ssh. > > Setting DISPLAY is not necessary with 'ssh -X' or 'ssh -Y'. More than > that, > setting DISPLAY will likely cause the X forwarding to not work as expected. > For more info, read the "X11 FORWARDING" section of the 'ssh' man page. > I was writing about the DISPLAY for the ssh process. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From scott@ohelp.com Wed Feb 7 01:25:00 2007 From: scott@ohelp.com (Scott Fordin) Date: Wed, 07 Feb 2007 01:25:00 -0000 Subject: ssh -x In-Reply-To: <45C8E75B.1020008@gmx.de> References: <45C8DFDF.6050406@gmx.de> <45C8E658.2020404@ohelp.com> <45C8E75B.1020008@gmx.de> Message-ID: <45C92A6F.4070203@ohelp.com> Holger Krull wrote: >> /usr/X11R6/bin/xhost + > > No you don't have to, if you use ssh to tunnel the X11 connection. > (It would be localhost anyway and not the linux_machine_name). Try to > understand the difference between tunneling and a remote connection. Hi, Holger, I understand what you're saying. All I know is that for some applications, like Emacs and Arbortext Epic, it seems I have to explicitly add the remote machine to my local X access list for the applications to display on my local machine. Moreover, for Epic to work, I have to explicitly set the DISPLAY variable on the remote machine. Dunno. It works for me, but YMMV. Scott -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Wed Feb 7 09:06:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Wed, 07 Feb 2007 09:06:00 -0000 Subject: ssh -x In-Reply-To: <45C92A6F.4070203@ohelp.com> References: <45C8DFDF.6050406@gmx.de> <45C8E658.2020404@ohelp.com> <45C8E75B.1020008@gmx.de> <45C92A6F.4070203@ohelp.com> Message-ID: <45C99684.1010003@gmx.de> Scott Fordin schrieb: > Holger Krull wrote: >>> /usr/X11R6/bin/xhost + >> >> No you don't have to, if you use ssh to tunnel the X11 connection. >> (It would be localhost anyway and not the linux_machine_name). Try to >> understand the difference between tunneling and a remote connection. > > I understand what you're saying. All I know is that for some > applications, like Emacs and Arbortext Epic, it seems I have > to explicitly add the remote machine to my local X access list > for the applications to display on my local machine. Moreover, > for Epic to work, I have to explicitly set the DISPLAY variable > on the remote machine. Dunno. It works for me, but YMMV. If you do this, you are not using the forwarding mechanism of ssh. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From fabio.silva@ifactory.com.br Thu Feb 8 04:32:00 2007 From: fabio.silva@ifactory.com.br (Fabio Silva) Date: Thu, 08 Feb 2007 04:32:00 -0000 Subject: problem installing Cygwin/X - usr\X11R6\bin\X.exe - Symbolic link points to missing file Message-ID: <20070208043220.10350.qmail@hm317.locaweb.com.br> hi there, I'm trying to install cygwin (actually Cygwin/X), I downloaded the latested cygwin installer, and I'm trying to install X11 packages, some files are installed but some files are surelly missing (for instance, I select to install X-startup-scripts-1.0.11-1.tar.bz2, but after the installation I still don't have a /usr/X11R6/bin directory)... well, I decided to download the packages locallly and open them to see if something was wrong, and I found that in the file xorg-x11-bin-6.8.99.901-1.tar.bz2, there is an entry called X.exe with 0 bytes... actually I think this is a symbolic link because when I try to extract it, I get an error like this: ! C:\cyginstall\http%3a%2f%2fmirror.anl.gov%2fpub%2fcygwin%2f\release\X11\xorg-x11-bin\xorg-x11-bin-6.8.99.901-1.tar.bz2: Cannot open XWin.exe (usr\X11R6\bin\X.exe --> XWin.exe) ! C:\cyginstall\http%3a%2f%2fmirror.anl.gov%2fpub%2fcygwin%2f\release\X11\xorg-x11-bin\xorg- x11-bin-6.8.99.901-1.tar.bz2: Symbolic link points to missing file any idea of what's wrong? best regards, Fabio. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Ruth.Ivimey-Cook@ivimey.org Sat Feb 10 22:24:00 2007 From: Ruth.Ivimey-Cook@ivimey.org (Ruth Ivimey-Cook) Date: Sat, 10 Feb 2007 22:24:00 -0000 Subject: ssh -x In-Reply-To: <45C90B06.9040904@gmx.de> Message-ID: <000001c74d62$2fe97030$0e00a8c0@sherlock> > The encryption doesn't matter. It is the latency of your > connection that matters (ping time), because the X proctocol > isn't very efficient. There is another option: set up an LBX connection. This requires a process (called LBX) that runs on the machine running the normal X server; you then connect your clients to LBX. LBX is "Low Bandwidth X" and is a protocol-specific compression algorithm which works reasonably well. It may help to use normal compress on the result, but I doubt it. The downside is there is no automatic method of setting it up, unlike for ssh -X Regards, Ruth -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From Ruth.Ivimey-Cook@ivimey.org Sat Feb 10 22:25:00 2007 From: Ruth.Ivimey-Cook@ivimey.org (Ruth Ivimey-Cook) Date: Sat, 10 Feb 2007 22:25:00 -0000 Subject: Any move to xorg v7? Message-ID: <000101c74d62$56f63be0$0e00a8c0@sherlock> Folks, Is anyone considering porting cygwin/x to the v7 architecture? Ruth -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From brian@dessent.net Sat Feb 10 22:48:00 2007 From: brian@dessent.net (Brian Dessent) Date: Sat, 10 Feb 2007 22:48:00 -0000 Subject: Any move to xorg v7? References: <000101c74d62$56f63be0$0e00a8c0@sherlock> Message-ID: <45CE4BCD.91BFF3D5@dessent.net> Ruth Ivimey-Cook wrote: > Is anyone considering porting cygwin/x to the v7 architecture? It's not a matter of porting per se. You can use x.org R7 with Cygwin right now, through Cygwin Ports. (But that's of course a separate project so use its mailing list for problems.) The issue is that Cygwin currently lacks an X11 maintainer to handle the packaging. If I recall correctly Yaakov offered to contribute his R7 packages to the Cygwin distro, but there was some other divergence between the two distros that caused it to be problematic. Or maybe it was that there was still some lingering problem with the R7 server that he couldn't get working. I don't recall, but you can find the details in the cygwin-apps mailing list archive. Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From cgf-use-the-mailinglist-please@cygwin.com Sun Feb 11 00:48:00 2007 From: cgf-use-the-mailinglist-please@cygwin.com (Christopher Faylor) Date: Sun, 11 Feb 2007 00:48:00 -0000 Subject: Any move to xorg v7? In-Reply-To: <45CE4BCD.91BFF3D5@dessent.net> References: <000101c74d62$56f63be0$0e00a8c0@sherlock> <45CE4BCD.91BFF3D5@dessent.net> Message-ID: <20070211004756.GC29287@trixie.casa.cgf.cx> On Sat, Feb 10, 2007 at 02:48:45PM -0800, Brian Dessent wrote: >Ruth Ivimey-Cook wrote: > >> Is anyone considering porting cygwin/x to the v7 architecture? > >It's not a matter of porting per se. You can use x.org R7 with Cygwin >right now, through Cygwin Ports. (But that's of course a separate >project so use its mailing list for problems.) The issue is that Cygwin >currently lacks an X11 maintainer to handle the packaging. If I recall >correctly Yaakov offered to contribute his R7 packages to the Cygwin >distro, but there was some other divergence between the two distros that >caused it to be problematic. Or maybe it was that there was still some >lingering problem with the R7 server that he couldn't get working. I >don't recall, but you can find the details in the cygwin-apps mailing >list archive. I believe it was the latter - there was something not working which required debugging and that never materialized. cgf -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Sun Feb 11 01:02:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Sun, 11 Feb 2007 01:02:00 -0000 Subject: ssh -x In-Reply-To: <000001c74d62$2fe97030$0e00a8c0@sherlock> References: <000001c74d62$2fe97030$0e00a8c0@sherlock> Message-ID: <45CE6B1C.10103@gmx.de> Ruth Ivimey-Cook schrieb: > There is another option: set up an LBX connection. This requires a process > (called LBX) that runs on the machine running the normal X server; you then > connect your clients to LBX. > > LBX is "Low Bandwidth X" and is a protocol-specific compression algorithm which > works reasonably well. It may help to use normal compress on the result, but I > doubt it. > > The downside is there is no automatic method of setting it up, unlike for ssh > -X Yes, the low bandwith extension does help. The nx proxy from nomachine.com is working on the same principle and more efficient (including image caching). -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From yselkowitz@users.sourceforge.net Sun Feb 11 06:46:00 2007 From: yselkowitz@users.sourceforge.net (Yaakov (Cygwin Ports)) Date: Sun, 11 Feb 2007 06:46:00 -0000 Subject: Any move to xorg v7? In-Reply-To: <45CE4BCD.91BFF3D5@dessent.net> References: <000101c74d62$56f63be0$0e00a8c0@sherlock> <45CE4BCD.91BFF3D5@dessent.net> Message-ID: <45CEBBB3.1090309@users.sourceforge.net> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Brian Dessent wrote: > It's not a matter of porting per se. You can use x.org R7 with Cygwin > right now, through Cygwin Ports. (But that's of course a separate > project so use its mailing list for problems.) The issue is that Cygwin > currently lacks an X11 maintainer to handle the packaging. If I recall > correctly Yaakov offered to contribute his R7 packages to the Cygwin > distro, but there was some other divergence between the two distros that > caused it to be problematic. Or maybe it was that there was still some > lingering problem with the R7 server that he couldn't get working. I > don't recall, but you can find the details in the cygwin-apps mailing > list archive. It was the latter. I have been unable to get a working xorg-server with both 7.0 and 7.1. The client side works wonderfully, and can be used either with the 6.8 Xwin or 6.9 Xming. I haven't yet fully updated Ports' X11 to 7.2 for lack of time, although I don't expect a change in this regard. Please search the archives of cygwin-apps and cygwin-xfree for details. Yaakov -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFzruzpiWmPGlmQSMRCPIyAKC4LZ0YYIfkoZ6D7HfyABqjixglYACgjr7W wvBCJnE3GD/wFdwWhSyphJM= =Bz8H -----END PGP SIGNATURE----- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ajcaruana@gmail.com Mon Feb 12 13:47:00 2007 From: ajcaruana@gmail.com (Alan James Caruana) Date: Mon, 12 Feb 2007 13:47:00 -0000 Subject: OpenGL or no OpenGL Message-ID: Hi, I am not sure if this is the right place to ask this, but is OpenGL working in the Cygwin/X Server?? I found the features page ( http://x.cygwin.com/features.html ) which says that the Mesa 3D Graphics Library provides software-based OpenGL support, but one item of the To-Do list ( http://x.cygwin.com/devel/todo.html ) states that Indirect OpenGL rendering still needs to be implemented, while Direct Rendering will be considered when the Indirect rendering will be finished. Can anyone clarify this please? Regards AJ Caruana -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Mon Feb 12 14:04:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Mon, 12 Feb 2007 14:04:00 -0000 Subject: OpenGL or no OpenGL In-Reply-To: References: Message-ID: <45D073C5.1060103@gmx.de> Alan James Caruana schrieb: > I found the features page ( http://x.cygwin.com/features.html ) which > says that the Mesa 3D Graphics Library provides software-based OpenGL > support, but one item of the To-Do list ( > http://x.cygwin.com/devel/todo.html ) states that Indirect OpenGL > rendering still needs to be implemented, while Direct Rendering will > be considered when the Indirect rendering will be finished. Can > anyone clarify this please? This means that all OpenGl rendering is done in Software. Work has been started to use OpenGl hardware acceleration, but it isn't finished. And nobody is working on it, afaik. Direct/indirect rendering refers to where the server is running, on the same computer than the program that uses OpenGl (direct access to hardware) or with a network between them (indirect access to hardware). -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ajcaruana@gmail.com Wed Feb 14 14:35:00 2007 From: ajcaruana@gmail.com (Alan James Caruana) Date: Wed, 14 Feb 2007 14:35:00 -0000 Subject: Question about the license. Message-ID: Hi, I was wondering as to which license applies to the software I downloaded. I got the source code I am using from Xorg. More specifically, I downloaded the xorg-server package from the release site of Xorg. I know that Cygwin and Cygwin/X are published under the GNU GPL. I also know that the X project, led by the X.org Foundation is published under the MIT License. Does the XWin part of the source I downloaded use the GPL license, or the MIT license ? Regards AJ Caruana -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From dickey@his.com Wed Feb 14 15:27:00 2007 From: dickey@his.com (Thomas Dickey) Date: Wed, 14 Feb 2007 15:27:00 -0000 Subject: Question about the license. In-Reply-To: References: Message-ID: <20070214102329.O10293@mail101.his.com> On Wed, 14 Feb 2007, Alan James Caruana wrote: > Hi, > > I was wondering as to which license applies to the software I downloaded. > > I got the source code I am using from Xorg. More specifically, I > downloaded the xorg-server package from the release site of Xorg. I > know that Cygwin and Cygwin/X are published under the GNU GPL. I oh. Which Cygwin/X source-file has a GPL on it? (Cygwin of course is GPL, but that's an comment of the source used). > also know that the X project, led by the X.org Foundation is published > under the MIT License. Does the XWin part of the source I downloaded > use the GPL license, or the MIT license ? This is probably the wrong place to ask about licenses (google "Cygwin/X gpl" for grins. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From zmumba@acmad.ne Fri Feb 16 10:34:00 2007 From: zmumba@acmad.ne (Zilore Mumba) Date: Fri, 16 Feb 2007 10:34:00 -0000 Subject: failure to install x server Message-ID: <5.2.0.9.0.20070216112826.026effd0@192.168.2.1> Dear Sirs, I have installed cygwin, however I have a problem making the x server work. Each time I start it with startxwin.bat, it gives me an error and closes down. Are there possible explanations? Zilore Mumba -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From ir0nh34d@gmail.com Fri Feb 16 12:43:00 2007 From: ir0nh34d@gmail.com (Chris Sutcliffe) Date: Fri, 16 Feb 2007 12:43:00 -0000 Subject: failure to install x server In-Reply-To: <5.2.0.9.0.20070216112826.026effd0@192.168.2.1> References: <5.2.0.9.0.20070216112826.026effd0@192.168.2.1> Message-ID: <2bf229d30702160442h75b54a52i5e27bd2d0fda29dd@mail.gmail.com> > I have installed cygwin, however I have a problem making the x server work. > Each time I start it with startxwin.bat, it gives me an error and closes down. > Are there possible explanations? What error are you getting? Chris -- Chris Sutcliffe http://ir0nh34d.googlepages.com http://ir0nh34d.blogspot.com http://emergedesktop.org -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Fri Feb 16 12:49:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Fri, 16 Feb 2007 12:49:00 -0000 Subject: failure to install x server In-Reply-To: <5.2.0.9.0.20070216112826.026effd0@192.168.2.1> References: <5.2.0.9.0.20070216112826.026effd0@192.168.2.1> Message-ID: <45D5A844.6060507@gmx.de> Zilore Mumba schrieb: > work. Each time I start it with startxwin.bat, it gives me an error and > closes down. > Are there possible explanations? A lot. Maybe post the contents of /tmp/XWin.log and which version of Windows you use. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From gaof_2000@yahoo.com.cn Sun Feb 18 06:49:00 2007 From: gaof_2000@yahoo.com.cn (f gao) Date: Sun, 18 Feb 2007 06:49:00 -0000 Subject: start gvim in X with Fatal IO error 104 Message-ID: <730860.78351.qm@web15603.mail.cnb.yahoo.com> Dear all: Does anyone know how to start gvim in cygwin/X? Each time I start gvim, the GUI flashes and get closed with error "gvim: Fatal IO error 104 (Connection reset by peer) on X server 127.0.0.1:0.0". Since the emacs can start and work in X11, I guess the X is installed correctly. Is it a bug of gvim? (The installed vim version is 7.0.122-1, gvim is 7.0.035-2,X is 6.8.99.901-44) Any suggestion is appreciated! ___________________________________________________________ Mp3????????????-???????????????????????????? http://music.yahoo.com.cn/?source=mail_mailbox_footer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From pez.hofer@a1.net Sun Feb 18 16:40:00 2007 From: pez.hofer@a1.net (pez) Date: Sun, 18 Feb 2007 16:40:00 -0000 Subject: Stand-alone console-application with cygwin Message-ID: <9031146.post@talk.nabble.com> I have recently switched my development-tool from VisualStudio to Eclipse using cygwin as C++ environment. Everything works fine on my PC, where I have installed cygwin, but on my customers computer I get the Errormessage "Terminal not found: cygwin" when I try to start the application. Is there a way to avoid installing cygwin and still run the application? -- View this message in context: http://www.nabble.com/Stand-alone-console-application-with-cygwin-tf3248817.html#a9031146 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Sun Feb 18 16:50:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Sun, 18 Feb 2007 16:50:00 -0000 Subject: Stand-alone console-application with cygwin In-Reply-To: <9031146.post@talk.nabble.com> References: <9031146.post@talk.nabble.com> Message-ID: <45D883C1.4030401@gmx.de> pez schrieb: > have installed cygwin, but on my customers computer I get the Errormessage > "Terminal not found: cygwin" when I try to start the application. > Is there a way to avoid installing cygwin and still run the application? Not really. People who do are 3PP. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From dickey@his.com Sun Feb 18 17:04:00 2007 From: dickey@his.com (Thomas Dickey) Date: Sun, 18 Feb 2007 17:04:00 -0000 Subject: Stand-alone console-application with cygwin In-Reply-To: <9031146.post@talk.nabble.com> References: <9031146.post@talk.nabble.com> Message-ID: <20070218120303.O76861@mail101.his.com> On Sun, 18 Feb 2007, pez wrote: > > I have recently switched my development-tool from VisualStudio to Eclipse > using cygwin as C++ environment. Everything works fine on my PC, where I > have installed cygwin, but on my customers computer I get the Errormessage > "Terminal not found: cygwin" when I try to start the application. > Is there a way to avoid installing cygwin and still run the application? Perhaps it's looking for the terminal description named "cygwin". That's independent of whether he's installed cygwin, since it's part of ncurses... -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From richardvoigt@gmail.com Sun Feb 18 18:10:00 2007 From: richardvoigt@gmail.com (Ben Voigt) Date: Sun, 18 Feb 2007 18:10:00 -0000 Subject: MITSHM disabled due to lack of kernel support References: <20040802202700.3280.qmail@web80105.mail.yahoo.com> Message-ID: William Lin yahoo.com> writes: [snip] > In the message log from startx - > MIT-SHM extension disabled due to lack of kernel > support > XFree86 Bigfont extension local-client optimization > disabled due to lack of shared memory support in the > kernel > > Is MITSHM disabled the reason of slow performance? > How to fix the problem? http://x.cygwin.com/docs/ug/using-shared-memory.html -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From raila@uiuc.edu Tue Feb 20 20:40:00 2007 From: raila@uiuc.edu (David Raila) Date: Tue, 20 Feb 2007 20:40:00 -0000 Subject: XWin 100% CPU usage (Remote Desktop) References: Message-ID: I worked on this for a long time since trying vista and here's my solution CYGWIN=title server itty binmode glob tty I believe that some arrangement of CYGWIN args cause troubles, but I can't verify which, and I also believe I had ntsec in there before. It would run for a while, althouhg process explorer would show 9-10 thousand context switches per second for XWin.exe, then eventually it would go to XWin.exe running full blast an unresponsive until I killed it. Hope it helps, dkr -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From reply-to-list-only-lh-x@cygwin.com Tue Feb 20 21:36:00 2007 From: reply-to-list-only-lh-x@cygwin.com (Larry Hall (Cygwin X)) Date: Tue, 20 Feb 2007 21:36:00 -0000 Subject: XWin 100% CPU usage (Remote Desktop) In-Reply-To: References: Message-ID: <45DB69B1.8050400@cygwin.com> David Raila wrote: > I worked on this for a long time since trying vista and here's my solution > CYGWIN=title server itty binmode glob tty > > I believe that some arrangement of CYGWIN args cause troubles, but I can't > verify which, and I also believe I had ntsec in there before. > It would run for a while, althouhg process explorer would show 9-10 thousand > context switches per second for XWin.exe, then eventually it would go to > XWin.exe running full blast an unresponsive until I killed it. 'binmode' and 'glob' are on by default so you don't need to set these. The same is true for 'ntsec'. There is no 'itty' option for CYGWIN. -- Larry Hall http://www.rfk.com RFK Partners, Inc. (508) 893-9779 - RFK Office 216 Dalton Rd. (508) 893-9889 - FAX Holliston, MA 01746 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From MRS. Wed Feb 21 15:59:00 2007 From: MRS. (MRS.) Date: Wed, 21 Feb 2007 15:59:00 -0000 Subject: FROM: MRS. KARLIJN JOHNSON, Message-ID: -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From MRS. Wed Feb 21 15:59:00 2007 From: MRS. (MRS.) Date: Wed, 21 Feb 2007 15:59:00 -0000 Subject: FROM: MRS. KARLIJN JOHNSON, Message-ID: -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From danabergen@yahoo.com Fri Feb 23 23:03:00 2007 From: danabergen@yahoo.com (Dana) Date: Fri, 23 Feb 2007 23:03:00 -0000 Subject: Display flickers when X server started up Message-ID: I've just installed Cygwin-X using the Cygwin setup program. When I start up the server using startxwin.bat or startx (with -multiwindow option), my whole display flickers (not just the xterm window). It continues to do this until I shut down the X server. This is a new Dell widescreen monitor. The only refresh rate it will allow is 60 hertz. I've pasted the contents of the log below. Any suggestions would be greatly appreciated. Dana _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information winAdjustVideoModeShadowGDI - Using Windows display depth of 32 bits per pixel winAllocateFBShadowGDI - Creating DIB with width: 1680 height: 1050 depth: 32 winInitVisualsShadowGDI - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 bpp 32 null screen fn ReparentWindow null screen fn RestackWindow InitQueue - Calling pthread_mutex_init InitQueue - pthread_mutex_init returned InitQueue - Calling pthread_cond_init InitQueue - pthread_cond_init returned winInitMultiWindowWM - Hello winMultiWindowXMsgProc - Hello winInitMultiWindowWM - Calling pthread_mutex_lock () winMultiWindowXMsgProc - Calling pthread_mutex_lock () MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "00000409" (00000409) (--) Using preset keyboard for "English (USA)" (409), type "4" (--) 3 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing from li st! Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing from list! Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing from list! winMultiWindowXMsgProc - pthread_mutex_lock () returned. winProcEstablishConnection - Hello winInitClipboard () winProcEstablishConnection - winInitClipboard returned. winClipboardProc - Hello DetectUnicodeSupport - Windows NT/2000/XP winMultiWindowXMsgProc - pthread_mutex_unlock () returned. winInitMultiWindowWM - pthread_mutex_lock () returned. winClipboardProc - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - DISPLAY=127.0.0.1:0.0 winInitMultiWindowWM - pthread_mutex_unlock () returned. winInitMultiWindowWM - DISPLAY=127.0.0.1:0.0 winMultiWindowXMsgProc - XOpenDisplay () returned and successfully opened the di splay. winClipboardProc - XOpenDisplay () returned and successfully opened the display. winInitMultiWindowWM - XOpenDisplay () returned and successfully opened the disp lay. winProcSetSelectionOwner - Clipboard not yet started, aborting. winProcSetSelectionOwner - Clipboard not yet started, aborting. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From stevedotsmith@googlemail.com Sat Feb 24 00:39:00 2007 From: stevedotsmith@googlemail.com (SteveS) Date: Sat, 24 Feb 2007 00:39:00 -0000 Subject: X forwarding Message-ID: <9129611.post@talk.nabble.com> I've been using XWinLogon to do X forwarding over SSH, to give a gnome-session on WinXP. That all worked fine, with a startup script of: SET PATH=c:\Program Files\xwinlogon SET DISPLAY=:0 start XWin_GL.exe :0 -clipboard -trayicon -bs -keyhook -nowinkill -nodecoration start xterm -e /usr/X11R6/bin/ssh -Y username@hostname gnome-session I uninstalled that and put Cygwin on, and haven't been able to get it to work. I've tried various ways of starting X, but I'll just begin with one way, to keep this post short! If I run startxwin.bat, I get a run.exe dialogue box: Error: could not start d:\cygwin\bin\xterm.exe'' -e /usr/bin/bash -l I took that line out of the script, so it just started X, and that works. The system tray icon says 0:0. In Cywin I then do ssh -Y username@hostname and get a command prompt from the Ubuntu server. Running a graphical app (eg gedit) returns cannot open display: (null) There are suggestions online to manually set the display, but as I understand that's incorrect if you are doing X forwarding. Any help would be appreciated! Steve -- View this message in context: http://www.nabble.com/X-forwarding-tf3282140.html#a9129611 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From r.berber@computer.org Sat Feb 24 02:04:00 2007 From: r.berber@computer.org (=?ISO-8859-1?Q?Ren=E9_Berber?=) Date: Sat, 24 Feb 2007 02:04:00 -0000 Subject: X forwarding In-Reply-To: <9129611.post@talk.nabble.com> References: <9129611.post@talk.nabble.com> Message-ID: SteveS wrote: [snip] > In Cywin I then do > > ssh -Y username@hostname > > and get a command prompt from the Ubuntu server. Running a graphical app (eg > gedit) returns > > cannot open display: (null) > > There are suggestions online to manually set the display, but as I > understand that's incorrect if you are doing X forwarding. The suggestion meant to set DISPLAY on the client side (Cygwin), you are correct about not changing it on the server side. Just do: export DISPLAY=localhost:0:0 ssh -Y ... -- Ren? Berber -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From lavin_ferd_law@excite.com Sat Feb 24 02:11:00 2007 From: lavin_ferd_law@excite.com (Dr.Lavine Ferdon Ferdon) Date: Sat, 24 Feb 2007 02:11:00 -0000 Subject: Dear Benefactor Of 2007 Masory Grant Message-ID: <20070224013508.5ACF83E779E@ema-hosting.de> Dear Benefactor Of 2007 Masory Grant, The Freemason society of Bournemout under the jurisdiction of the all Seeing Eye, Master Nicholas Brenner has after series of secret deliberations selected you to be a beneficiary of our 2007 foundation laying grants and also an optional opening at the round table of the Freemason society. These grants are issued every year around the world in accordance with the objective of theFreemasons as stated by Thomas Paine in 1808 which is to ensure the continuous freedom of man and toenhance mans living conditions. We will also advice that these funds which amount to USD2.5million be used to better the lot of man through your own initiative and also we will go further to inform that the open slot to become a Freemason is optional, you can decline the offer. In order to claim your grant, contact the Grand Lodge Office co-secretary Dr.Lavine Ferdon Ferdon Grand Lodge Office Co-Secretary's email: (lavin_ferd_law@excite.com) Dr.Lavine Ferdon Ferdon, Co-Secretary Freemason Society of Holdenhurst Road, Bournemouth. Sir David Hurley, Secretary Freemason Society of Holdenhurst Road -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From stevedotsmith@googlemail.com Sat Feb 24 02:14:00 2007 From: stevedotsmith@googlemail.com (SteveS) Date: Sat, 24 Feb 2007 02:14:00 -0000 Subject: X forwarding In-Reply-To: References: <9129611.post@talk.nabble.com> Message-ID: <9130229.post@talk.nabble.com> Thanks for your help! Ren? Berber-2 wrote: > > Just do: > > export DISPLAY=localhost:0:0 > ssh -Y ... > That's got me further, thanks! Gedit loads and gives a dialogue box: Adding client to server's list failed, CORBA error: IDL:omg.org/CORBA/COMM_FAILURE:1.0 (repeated about 30 times) Firefox works, but gives (at command line): GConf Error: Adding client to server's list failed, CORBA error: IDL:omg.org/CORBA/COMM_FAILURE:1.0 (twice) Steve -- View this message in context: http://www.nabble.com/X-forwarding-tf3282140.html#a9130229 Sent from the cygwin-xfree mailing list archive at Nabble.com. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From wbierman@gmail.com Sat Feb 24 07:24:00 2007 From: wbierman@gmail.com (William Bierman) Date: Sat, 24 Feb 2007 07:24:00 -0000 Subject: XWin and Vista -- 100% CPU on exit Message-ID: Greetings. I made myself a shortcut (though I get the same behavior no matter how I start X) to run X by executing: C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin Xwin -multiwindow X starts up fine and seems to run fine. When I right click on the X icon in the system tray, however, and select exit, it does not exit and CPU usage goes to 100% (50% on my x2 processor). I am running Vista Ultimate on an AMD 64 x2 5600+, and have experienced this same problem on another machine also running Vista Ultimate and using an AMD 64 x2 3200+. I have tried to rebase, but the problem persists. Any thoughts? I can of course provide whatever further details may be required. Regards, Bill Bierman -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From troy.bull@uni.edu Sat Feb 24 20:00:00 2007 From: troy.bull@uni.edu (Troy Bull) Date: Sat, 24 Feb 2007 20:00:00 -0000 Subject: XWin and Vista -- 100% CPU on exit In-Reply-To: References: Message-ID: <45E09967.90705@uni.edu> William Bierman wrote: > Greetings. > > I made myself a shortcut (though I get the same behavior no matter how > I start X) to run X by executing: > > C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin Xwin -multiwindow > > X starts up fine and seems to run fine. When I right click on the X > icon in the system tray, however, and select exit, it does not exit > and CPU usage goes to 100% (50% on my x2 processor). I am running I get the same thing. I would love to know of a solution.. Troy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From fehrin@t-online.de Sun Feb 25 08:10:00 2007 From: fehrin@t-online.de (Dr. Franz Fehringer) Date: Sun, 25 Feb 2007 08:10:00 -0000 Subject: XWin and Vista -- 100% CPU on exit References: <45E09967.90705@uni.edu> Message-ID: <0b7f01c758b4$66fbe410$0101010a@franz> Me too on Windows Server 2003R2. Franz ----- Original Message ----- From: "Troy Bull" To: Sent: Saturday, February 24, 2007 9:00 PM Subject: Re: XWin and Vista -- 100% CPU on exit > William Bierman wrote: >> Greetings. >> >> I made myself a shortcut (though I get the same behavior no matter how >> I start X) to run X by executing: >> >> C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin Xwin -multiwindow >> >> X starts up fine and seems to run fine. When I right click on the X >> icon in the system tray, however, and select exit, it does not exit >> and CPU usage goes to 100% (50% on my x2 processor). I am running > > I get the same thing. I would love to know of a solution.. > Troy > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Sun Feb 25 15:12:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Sun, 25 Feb 2007 15:12:00 -0000 Subject: XWin and Vista -- 100% CPU on exit In-Reply-To: References: Message-ID: <45E1A755.2000200@gmx.de> William Bierman schrieb: > I made myself a shortcut (though I get the same behavior no matter how > I start X) to run X by executing: > > C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin Xwin -multiwindow Try to start with -engine 1 -once . It worked for me, but i'm not using multiwindow. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From wbierman@gmail.com Sun Feb 25 19:28:00 2007 From: wbierman@gmail.com (William Bierman) Date: Sun, 25 Feb 2007 19:28:00 -0000 Subject: XWin and Vista -- 100% CPU on exit In-Reply-To: <45E1A755.2000200@gmx.de> References: <45E1A755.2000200@gmx.de> Message-ID: That works without -multiwindow. When I add -multiwindow back it continues to happen. On 2/25/07, Holger Krull wrote: > William Bierman schrieb: > > > I made myself a shortcut (though I get the same behavior no matter how > > I start X) to run X by executing: > > > > C:\cygwin\usr\X11R6\bin\run.exe -p /usr/X11R6/bin Xwin -multiwindow > > Try to start with -engine 1 -once . It worked for me, but i'm not using > multiwindow. > > > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From b.ratak@yahoo.fr Mon Feb 26 10:49:00 2007 From: b.ratak@yahoo.fr (Boris Ratak) Date: Mon, 26 Feb 2007 10:49:00 -0000 Subject: Xwin.exe freezes after login (XDMCP) Message-ID: <45E2BB04.4010809@yahoo.fr> Hello, I installed a Cygwin that is able to connect through XDMCP to a linux Ubuntu server that runs KDE. I have several thin clients running Thinstation that work well with it, but on my personnal machine (Mac mini running Windows 2003 with disabled built-in firewall), when I run Xwin.exe, I can log on, see my desktop and apps opening, but after a few seconds, my Xwin window freezes and Windows tells me it's not responding. When I CTRL+C my Shell Cygwin application, the window closes. Here's my log : $ cat /tmp/Xwin.log (II) XF86Config is not supported (II) See http://x.cygwin.com/docs/faq/cygwin-x-faq.html for more information MIT-SHM extension disabled due to lack of kernel support XFree86-Bigfont extension local-client optimization disabled due to lack of shar ed memory support in the kernel (--) Setting autorepeat to delay=500, rate=31 (--) winConfigKeyboard - Layout: "0000040C" (0000040c) (--) Using preset keyboard for "French (Standard)" (40c), type "4" (--) 5 mouse buttons found Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from li st! winProcEstablishConnection - Hello winProcEstablishConnection - Clipboard is not enabled, returning. winProcQueryTree - Clipboard is not enabled, returning. I crawled the FAQ and the mailing list without results. Any ideas? Thx -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From danabergen@yahoo.com Mon Feb 26 18:35:00 2007 From: danabergen@yahoo.com (Dana) Date: Mon, 26 Feb 2007 18:35:00 -0000 Subject: Display flickers when X server started up References: Message-ID: To clarify what I mean by "flickers", I mean that horizontal ripples appear across the screen, traveling upward. Thanks -- Dana -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jfong@successmetricsinc.com Tue Feb 27 22:00:00 2007 From: jfong@successmetricsinc.com (Jerome Fong) Date: Tue, 27 Feb 2007 22:00:00 -0000 Subject: startxwin.sh doesn't start, getting "could not open default font 'fixed'" error Message-ID: I searched but I didn't see an answer to this problem. I am running Cygwin on Windows XP. When I attempt to run startxwin.sh, I am getting an error that says "could not open default font 'fixed' ". Reading the User's Guide and checking out similar posting. I see that I am supposed to umount my /usr/X11R6/lib/X11/fonts directory. However, my directory isn't a link, there is nothing to un-mount, it is a physical directory. What am I missing here? thanks, Jerome -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From holger.krull@gmx.de Tue Feb 27 22:02:00 2007 From: holger.krull@gmx.de (Holger Krull) Date: Tue, 27 Feb 2007 22:02:00 -0000 Subject: startxwin.sh doesn't start, getting "could not open default font 'fixed'" error In-Reply-To: References: Message-ID: <45E4AA84.9070802@gmx.de> Jerome Fong schrieb: > I searched but I didn't see an answer to this problem. I am running > Cygwin on Windows XP. When I attempt to run startxwin.sh, I am getting > an error that says "could not open default font 'fixed' ". Did you check http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jfong@successmetricsinc.com Tue Feb 27 22:21:00 2007 From: jfong@successmetricsinc.com (Jerome Fong) Date: Tue, 27 Feb 2007 22:21:00 -0000 Subject: startxwin.sh doesn't start, getting "could not open default font 'fixed'" error In-Reply-To: <45E4AA84.9070802@gmx.de> References: <45E4AA84.9070802@gmx.de> Message-ID: Yes, that is where I got the "umount /usr/X11R6/lib/X11/fonts" command from. However I get the following error when I attempt to un-mount the directory: $ umount /usr/X11R6/lib/X11/fonts umount: /usr/X11R6/lib/X11/fonts: No such file or directory thanks, Jerome Holger Krull wrote: > Jerome Fong schrieb: >> I searched but I didn't see an answer to this problem. I am running >> Cygwin on Windows XP. When I attempt to run startxwin.sh, I am getting >> an error that says "could not open default font 'fixed' ". > > Did you check > http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jrdepriest@gmail.com Tue Feb 27 22:59:00 2007 From: jrdepriest@gmail.com (DePriest, Jason R.) Date: Tue, 27 Feb 2007 22:59:00 -0000 Subject: startxwin.sh doesn't start, getting "could not open default font 'fixed'" error In-Reply-To: References: <45E4AA84.9070802@gmx.de> Message-ID: <31b7d2790702271458u37d3fff8q610afb5b5f9a535f@mail.gmail.com> On 2/27/07, Jerome Fong wrote: > Yes, that is where I got the "umount /usr/X11R6/lib/X11/fonts" command > from. > However I get the following error when I attempt to un-mount the directory: > > $ umount /usr/X11R6/lib/X11/fonts > umount: /usr/X11R6/lib/X11/fonts: No such file or directory > > thanks, > > Jerome > > Holger Krull wrote: > > Jerome Fong schrieb: > >> I searched but I didn't see an answer to this problem. I am running > >> Cygwin on Windows XP. When I attempt to run startxwin.sh, I am getting > >> an error that says "could not open default font 'fixed' ". > > > > Did you check > > http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof > > > > -- > > > -- cygcheck -s -v -r output attached might be helpful. It would be nice to know which X packages you have installed and what your mount points look like. -Jason -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From jfong@successmetricsinc.com Tue Feb 27 23:34:00 2007 From: jfong@successmetricsinc.com (Jerome Fong) Date: Tue, 27 Feb 2007 23:34:00 -0000 Subject: startxwin.sh doesn't start, getting "could not open default font 'fixed'" error In-Reply-To: <31b7d2790702271458u37d3fff8q610afb5b5f9a535f@mail.gmail.com> References: <45E4AA84.9070802@gmx.de> <31b7d2790702271458u37d3fff8q610afb5b5f9a535f@mail.gmail.com> Message-ID: Hi Jason, I've included the output from the cygcheck -s -v -r command I ran. I guess I am still missing something what mount points are you looking for. The /usr/X11R6/lib/X11/fonts is a physical directory, there is no symbolic link involved. There are symbolic links to other directories, but not to fonts. thanks, Jerome Here is the content of the /usr/X11R6/lib/X11 directory: $ ls -lgo total 99 -rwxr-x---+ 1 37733 Oct 26 2005 XErrorDB -rwxr-x---+ 1 8298 Oct 26 2005 XKeysymDB -rwxr-x---+ 1 1736 Oct 26 2005 Xcms.txt lrwxrwxrwx 1 21 Feb 20 18:09 app-defaults -> /etc/X11/app-defaults drwxrwx---+ 2 0 Feb 27 12:25 config drwxrwx---+ 3 0 Feb 16 15:49 doc drwxrwx---+ 10 0 Feb 27 12:25 fonts lrwxrwxrwx 1 11 Feb 20 18:09 fs -> /etc/X11/fs lrwxrwxrwx 1 17 Feb 20 18:09 lbxproxy -> /etc/X11/lbxproxy drwxrwx---+ 57 0 Feb 16 15:49 locale lrwxrwxrwx 1 18 Feb 20 18:09 proxymngr -> /etc/X11/proxymngr -rwxr-x---+ 1 17371 Oct 26 2005 rgb.txt lrwxrwxrwx 1 15 Feb 20 18:09 rstart -> /etc/X11/rstart lrwxrwxrwx 1 12 Feb 20 18:09 twm -> /etc/X11/twm drwxrwx---+ 2 0 Feb 16 15:49 x11perfcomp lrwxrwxrwx 1 12 Feb 20 18:09 xdm -> /etc/X11/xdm drwxrwx---+ 3 0 Feb 16 15:49 xedit lrwxrwxrwx 1 14 Feb 20 18:09 xinit -> /etc/X11/xinit lrwxrwxrwx 1 12 Feb 16 15:50 xkb -> /etc/X11/xkb -rwxr-x---+ 1 8305 Oct 26 2005 xman.help lrwxrwxrwx 1 16 Feb 20 18:09 xserver -> /etc/X11/xserver lrwxrwxrwx 1 12 Feb 20 18:09 xsm -> /etc/X11/xsm Here is the output from cygcheck -s -v -r Cygwin Configuration Diagnostics Current System Time: Tue Feb 27 15:06:53 2007 Windows XP Professional Ver 5.1 Build 2600 Service Pack 2 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin c:\program files\imagemagick-6.3.2-q16 c:\Perl\site\bin c:\Perl\bin c:\WINDOWS\system32 c:\WINDOWS c:\WINDOWS\System32\Wbem c:\eclipse\plugins\org.apache.ant_1.6.5\bin c:\Program Files\MySQL\MySQL Server 5.0\bin c:\Program Files\Microsoft SQL Server\90\Tools\binn\ c:\PROGRA~1\ATT\Graphviz\bin c:\Program Files\CVSNT\ Output from C:\cygwin\bin\id.exe (nontsec) UID: 11172(jfong) GID: 10545(mkgroup-l-d) 0(root) 544(Administrators) 545(Users) 10545(mkgroup-l-d) Output from C:\cygwin\bin\id.exe (ntsec) UID: 11172(jfong) GID: 10545(mkgroup-l-d) 0(root) 544(Administrators) 545(Users) 10545(mkgroup-l-d) SysDir: C:\WINDOWS\system32 WinDir: C:\WINDOWS USER = 'jfong' PWD = '/cygdrive/c/Documents and Settings/jfong' HOME = '/cygdrive/c/Documents and Settings/jfong' MAKE_MODE = 'unix' HOMEPATH = '\Documents and Settings\jfong' MANPATH = '/usr/local/man:/usr/share/man:/usr/man::/usr/X11R6/man' APPDATA = 'C:\Documents and Settings\jfong\Application Data' HOSTNAME = 'SFOJFONG' TERM = 'cygwin' PROCESSOR_IDENTIFIER = 'x86 Family 6 Model 15 Stepping 6, GenuineIntel' WINDIR = 'C:\WINDOWS' OLDPWD = '/cygdrive/c/Documents and Settings' USERDOMAIN = 'INC' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\Documents and Settings\All Users' !:: = '::\' TEMP = '/cygdrive/c/DOCUME~1/JFONG~1.SUC/LOCALS~1/Temp' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' USERNAME = 'jfong' PROCESSOR_LEVEL = '6' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' JAVA_HOME = 'C:\Program Files\Java\jdk1.5.0_10' USERPROFILE = 'C:\Documents and Settings\jfong' PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ ' LOGONSERVER = '\\SMI' PROCESSOR_ARCHITECTURE = 'x86' !C: = 'C:\cygwin\bin' SHLVL = '1' USERDNSDOMAIN = 'INC.LOCAL' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' HOMEDRIVE = 'C:' PROMPT = '$P$G' COMSPEC = 'C:\WINDOWS\system32\cmd.exe' TMP = '/cygdrive/c/DOCUME~1/JFONG~1.SUC/LOCALS~1/Temp' SYSTEMROOT = 'C:\WINDOWS' PRINTER = '\\smi\Brother MFC-8440 USB Printer' CVS_RSH = '/bin/ssh' PROCESSOR_REVISION = '0f06' INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:' PROGRAMFILES = 'C:\Program Files' NUMBER_OF_PROCESSORS = '2' SESSIONNAME = 'Console' COMPUTERNAME = 'SFOJFONG' _ = '/usr/bin/cygcheck' POSIXLY_CORRECT = '1' HKEY_CURRENT_USER\Software\Cygnus Solutions HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2 HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) = '/cygdrive' cygdrive flags = 0x00000020 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = 'C:\cygwin' flags = 0x00000008 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = 'C:\cygwin/bin' flags = 0x00000008 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = 'C:\cygwin/lib' flags = 0x00000008 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options c: hd NTFS 230259Mb 10% CP CS UN PA FC d: hd NTFS 8197Mb 25% CP CS UN PA FC HP_RECOVERY e: cd N/A N/A m: net NTFS 292856Mb 61% CP CS UN PA FC z: net NTFS 292856Mb 61% CP CS UN PA FC C:\cygwin / system textmode C:\cygwin/bin /usr/bin system textmode C:\cygwin/lib /usr/lib system textmode . /cygdrive system textmode,cygdrive Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cp.exe Not Found: cpp (good!) Found: C:\cygwin\bin\crontab.exe Found: C:\cygwin\bin\find.exe Not Found: gcc Not Found: gdb Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\kill.exe Not Found: ld Found: C:\cygwin\bin\ls.exe Not Found: make Found: C:\cygwin\bin\mv.exe Not Found: patch Found: C:\cygwin\bin\perl.exe Found: c:\Perl\bin\perl.exe Warning: C:\cygwin\bin\perl.exe hides c:\Perl\bin\perl.exe Found: C:\cygwin\bin\rm.exe Found: C:\cygwin\bin\sed.exe Not Found: ssh Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\test.exe Not Found: vi Found: C:\cygwin\bin\vim.exe 61k 2006/11/10 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2006/11/10 15:42 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 0:57 895k 2004/04/28 C:\cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.2.dll" v0.0 ts=2004/4/27 8:31 965k 2005/05/14 C:\cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.3.dll" v0.0 ts=2005/5/14 5:37 1156k 2004/04/28 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 8:35 1240k 2005/05/14 C:\cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.3.dll" v0.0 ts=2005/5/14 5:41 174k 2004/10/14 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-0.dll" v0.0 ts=2004/10/14 1:34 161k 2006/11/15 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontconfig-1.dll" v0.0 ts=2006/11/15 12:44 40k 2006/11/15 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2006/11/14 23:06 45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0 "cygform5.dll" v0.0 ts=2001/4/24 22:28 35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0 "cygform6.dll" v0.0 ts=2002/1/8 22:03 48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0 "cygform7.dll" v0.0 ts=2003/8/9 2:25 375k 2005/09/06 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-6.dll" v0.0 ts=2005/9/6 15:51 28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-3.dll" v0.0 ts=2003/7/20 0:58 19k 2006/11/19 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2006/11/19 0:18 19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm.dll" v0.0 ts=2002/2/19 19:05 15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 1:00 8k 2006/11/19 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-4.dll" v0.0 ts=2006/11/19 0:18 515k 2006/06/06 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cygglib-2.0-0.dll" v0.0 ts=2006/6/5 15:32 10k 2006/06/06 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggmodule-2.0-0.dll" v0.0 ts=2006/6/5 15:36 222k 2006/06/06 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggobject-2.0-0.dll" v0.0 ts=2006/6/5 15:35 14k 2006/06/06 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0 "cyggthread-2.0-0.dll" v0.0 ts=2006/6/5 15:36 17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0 "cyghistory4.dll" v0.0 ts=2001/1/6 20:34 29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0 "cyghistory5.dll" v0.0 ts=2003/8/10 16:16 25k 2007/01/18 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2007/1/17 19:14 976k 2006/10/22 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2006/10/22 16:44 22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0 "cygintl-1.dll" v0.0 ts=2001/12/13 1:28 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 14:50 31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0 "cygintl-3.dll" v0.0 ts=2005/11/19 18:04 31k 2006/10/23 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2006/10/22 17:12 21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0 "cygintl.dll" v0.0 ts=2001/6/20 10:09 12k 2003/02/17 C:\cygwin\bin\cygioperm-0.dll - os=4.0 img=1.0 sys=4.0 "cygioperm-0.dll" v0.0 ts=2003/2/17 11:58 124k 2006/11/09 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0 "cygjpeg-62.dll" v0.0 ts=2006/11/9 1:02 21k 2006/11/15 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2006/11/14 23:05 26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0 "cygmenu5.dll" v0.0 ts=2001/4/24 22:27 20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0 "cygmenu6.dll" v0.0 ts=2002/1/8 22:03 29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0 "cygmenu7.dll" v0.0 ts=2003/8/9 2:25 20k 2006/12/21 C:\cygwin\bin\cygminires.dll - os=4.0 img=1.1 sys=4.0 "cygminires.dll" v0.0 ts=2006/12/20 21:07 67k 2006/11/15 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2006/11/14 23:13 156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++5.dll" v0.0 ts=2001/4/24 22:29 175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++6.dll" v0.0 ts=2002/1/8 22:03 237k 2006/11/15 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2006/11/14 23:02 226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0 "cygncurses5.dll" v0.0 ts=2001/4/24 22:17 202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0 "cygncurses6.dll" v0.0 ts=2002/1/8 22:03 224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0 "cygncurses7.dll" v0.0 ts=2003/8/9 2:24 12k 2006/11/15 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2006/11/14 23:04 15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0 "cygpanel5.dll" v0.0 ts=2001/4/24 22:27 12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0 "cygpanel6.dll" v0.0 ts=2002/1/8 22:03 19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0 "cygpanel7.dll" v0.0 ts=2003/8/9 2:24 109k 2006/02/10 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2006/2/9 18:37 299k 2006/02/10 C:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcrecpp-0.dll" v0.0 ts=2006/2/9 18:38 7k 2006/02/10 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2006/2/9 18:37 1249k 2005/12/30 C:\cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0 "cygperl5_8.dll" v0.0 ts=2005/12/29 17:48 226k 2006/11/05 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0 "cygpng12.dll" v0.0 ts=2006/11/5 15:32 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/8 22:45 108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0 "cygreadline4.dll" v0.0 ts=2001/1/6 20:34 148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0 "cygreadline5.dll" v0.0 ts=2003/8/10 16:16 154k 2007/01/18 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2007/1/17 19:14 65k 2006/10/16 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2006/10/15 18:10 1830k 2007/01/31 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2007/1/31 1:58 Cygwin DLL version info: DLL version: 1.5.24 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 156 Shared data: 4 DLL identifier: cygwin1 Mount registry: 2 Cygnus registry name: Cygnus Solutions Cygwin registry name: Cygwin Program options name: Program Options Cygwin mount registry name: mounts v2 Cygdrive flags: cygdrive flags Cygdrive prefix: cygdrive prefix Cygdrive default prefix: Build date: Wed Jan 31 10:57:51 CET 2007 CVS tag: cr-0x5f1 Shared id: cygwin1S4 20k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0 "cygfontenc-1.dll" v0.0 ts=2005/10/26 12:14 282k 2003/10/28 C:\cygwin\usr\X11R6\bin\cygfreetype-9.dll - os=4.0 img=1.0 sys=4.0 "cygfreetype-9.dll" v0.0 ts=2003/10/17 23:44 34k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0 "cygFS-6.dll" v0.0 ts=2005/10/26 10:52 357k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0 "cygGL-1.dll" v0.0 ts=2005/10/26 11:30 441k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0 "cygGLU-1.dll" v0.0 ts=2005/10/26 11:48 74k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0 "cygICE-6.dll" v0.0 ts=2005/10/26 10:11 8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0 "cygoldX-6.dll" v0.0 ts=2005/10/26 10:09 1662k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0 "cygOSMesa-4.dll" v0.0 ts=2005/10/26 11:32 28k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0 "cygSM-6.dll" v0.0 ts=2005/10/26 10:12 884k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0 "cygX11-6.dll" v0.0 ts=2005/10/26 10:07 8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXau-6.dll - os=4.0 img=1.0 sys=4.0 "cygXau-6.dll" v0.0 ts=2005/10/26 9:31 250k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-6.dll" v0.0 ts=2005/10/26 10:33 354k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-7.dll" v0.0 ts=2005/10/26 10:39 360k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0 "cygXaw-8.dll" v0.0 ts=2005/10/26 10:45 7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcomposite-1.dll" v0.0 ts=2005/10/26 12:04 30k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0 "cygXcursor-1.dll" v0.0 ts=2005/10/26 12:03 8k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0 "cygXdamage-1.dll" v0.0 ts=2005/10/26 12:02 16k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXdmcp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXdmcp-6.dll" v0.0 ts=2005/10/26 9:34 7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0 "cygXevie-1.dll" v0.0 ts=2005/10/26 12:01 50k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0 "cygXext-6.dll" v0.0 ts=2005/10/26 10:14 15k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0 "cygXfixes-3.dll" v0.0 ts=2005/10/26 12:02 56k 2004/03/11 C:\cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0 "cygXft-1.dll" v0.0 ts=2003/11/17 17:42 63k 2004/03/23 C:\cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0 "cygXft-2.dll" v0.0 ts=2004/3/23 15:20 26k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0 "cygXi-6.dll" v0.0 ts=2005/10/26 10:48 121k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbfile-1.dll" v0.0 ts=2005/10/26 10:54 11k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0 "cygxkbui-1.dll" v0.0 ts=2005/10/26 10:54 74k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0 "cygXmu-6.dll" v0.0 ts=2005/10/26 10:22 10k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0 "cygXmuu-1.dll" v0.0 ts=2005/10/26 10:23 26k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0 "cygXp-6.dll" v0.0 ts=2005/10/26 10:27 54k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0 "cygXpm-4.dll" v0.0 ts=2005/10/26 10:26 10k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0 "cygXrandr-2.dll" v0.0 ts=2005/10/26 11:58 30k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0 "cygXrender-1.dll" v0.0 ts=2005/10/26 11:52 7k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0 "cygXRes-1.dll" v0.0 ts=2005/10/26 12:00 38k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0 "cygxrx-6.dll" v0.0 ts=2005/10/26 13:13 24k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0 "cygxrxnest-6.dll" v0.0 ts=2005/10/26 13:14 283k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0 "cygXt-6.dll" v0.0 ts=2005/10/26 10:19 27k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0 "cygXTrap-6.dll" v0.0 ts=2005/10/26 12:00 17k 2005/10/27 C:\cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0 "cygXtst-6.dll" v0.0 ts=2005/10/26 10:49 No Cygwin services found. Cygwin Package Information Last downloaded files to: C:\downloads\cygwin Last downloaded files from: ftp://ftp.gtlib.gatech.edu/pub/cygwin Package Version _update-info-dir 00501-1 alternatives 1.3.29a-1 ash 20040127-3 base-files 3.7-1 base-passwd 2.2-1 bash 3.2.9-11 bash-completion 20060301-2 bashdb 3.1_0.07-1 bzip2 1.0.3-2 checkx 0.2.0-2 chkconfig 1.2.24h-1 coreutils 6.7-2 cron 3.0.1-22 crypt 1.1-1 cygrunsrv 1.17-1 cygutils 1.3.1-1 cygwin 1.5.24-2 cygwin-doc 1.4-4 desktop-file-utils 0.10-1 diffstat 1.43-1 diffutils 2.8.7-1 e2fsprogs 1.35-3 editrights 1.01-1 expat 1.95.8-1 findutils 4.3.2-3 fontconfig 2.4.1-4 freetype2 2.1.9-1 gawk 3.1.5-4 gdbm 1.8.3-8 gettext 0.15-1 glib2 2.10.3-1 glib2-runtime 2.10.3-1 grep 2.5.1a-2 groff 1.18.1-2 gzip 1.3.9-1 initscripts 0.9-1 ioperm 0.4-1 less 381-1 libbz2_1 1.0.3-2 libdb4.2 4.2.52-1 libdb4.3 4.3.28-1 libfontconfig-devel 2.4.1-4 libfontconfig1 2.4.1-4 libfreetype2-devel 2.1.9-1 libfreetype26 2.1.9-1 libgdbm 1.8.0-5 libgdbm-devel 1.8.3-8 libgdbm3 1.8.3-3 libgdbm4 1.8.3-8 libiconv2 1.11-1 libintl 0.10.38-3 libintl1 0.10.40-1 libintl2 0.12.1-3 libintl3 0.14.5-1 libintl8 0.15-1 libjpeg62 6b-12 libmp4v2_0 2.0-3 libncurses5 5.2-1 libncurses6 5.2-8 libncurses7 5.3-4 libncurses8 5.5-3 libpcre0 6.6-1 libpng12 1.2.12-1 libpopt0 1.6.4-4 libreadline4 4.1-2 libreadline5 4.3-5 libreadline6 5.2.1-6 libXft 2.1.6-1 libXft-devel 2.1.6-1 libXft1 1.0.0-1 libXft2 2.1.6-1 login 1.9-7 man 1.6d-2 minires 1.01-1 mktemp 1.5-4 ncurses 5.5-3 pcre 6.6-1 perl 5.8.7-5 perl-libwin32 0.26-1 perl-Tk 804.027-4 perl_manpages 5.8.7-5 ping 1.0-1 procps 3.2.7-1 run 1.1.10-1 rxvt-unicode-common 7.7-6 rxvt-unicode-X 7.7-6 sed 4.1.5-2 shutdown 1.7-1 syslog-ng 1.6.12-1 sysvinit 2.84-4 tar 1.16.1-1 tcsh 6.14.00-5 termcap 20050421-1 terminfo 5.5_20061104-1 texinfo 4.8-4 time 1.7-1 unzip 5.52-2 util-linux 2.12r-2 vim 7.0.122-1 which 1.7-1 X-start-menu-icons 1.0.4-1 X-startup-scripts 1.0.11-1 XFree86-lib-compat 4.3.0-2 xorg-x11-base 6.8.99.901-1 xorg-x11-bin 6.8.99.901-1 xorg-x11-bin-dlls 6.8.99.901-1 xorg-x11-bin-lndir 6.8.99.901-1 xorg-x11-devel 6.8.99.901-1 xorg-x11-etc 6.8.99.901-1 xorg-x11-f100 6.8.99.901-1 xorg-x11-fcyr 6.8.99.901-1 xorg-x11-fenc 6.8.99.901-1 xorg-x11-fnts 6.8.99.901-1 xorg-x11-fscl 6.8.99.901-1 xorg-x11-fsrv 6.8.99.901-1 xorg-x11-libs-data 6.8.99.901-1 xorg-x11-man-pages 6.8.99.901-1 xorg-x11-nest 6.8.99.901-1 xorg-x11-vfb 6.8.99.901-1 xorg-x11-xwin 6.8.99.901-1 xorg-x11-xwin-gl 6.8.99.901-1 xterm 202-1 zip 2.32-2 zlib 1.2.3-2 Use -h to see help about each section Hope this is enough information, Jerome DePriest, Jason R. wrote: > On 2/27/07, Jerome Fong wrote: >> Yes, that is where I got the "umount /usr/X11R6/lib/X11/fonts" command >> from. >> However I get the following error when I attempt to un-mount the >> directory: >> >> $ umount /usr/X11R6/lib/X11/fonts >> umount: /usr/X11R6/lib/X11/fonts: No such file or directory >> >> thanks, >> >> Jerome >> >> Holger Krull wrote: >> > Jerome Fong schrieb: >> >> I searched but I didn't see an answer to this problem. I am running >> >> Cygwin on Windows XP. When I attempt to run startxwin.sh, I am >> getting >> >> an error that says "could not open default font 'fixed' ". >> > >> > Did you check >> > http://x.cygwin.com/docs/faq/cygwin-x-faq.html#q-error-font-eof >> > >> > -- >> >> >> -- > > cygcheck -s -v -r output attached might be helpful. > > It would be nice to know which X packages you have installed and what > your mount points look like. > > -Jason > > -- > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > Problem reports: http://cygwin.com/problems.html > Documentation: http://x.cygwin.com/docs/ > FAQ: http://x.cygwin.com/docs/faq/ > > -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From t_johne@mastech.com.au Wed Feb 28 06:17:00 2007 From: t_johne@mastech.com.au (t_johne@mastech.com.au) Date: Wed, 28 Feb 2007 06:17:00 -0000 Subject: Internet - Office = Home Work <<>>from 800 AUD Per Week. (from 1500 AUD for corporate stuff) 7 Message-ID: <724573803.20060621232815@mastech.com.au> Internet office - position in Australia! Work in Internet with good salary! Company Troy Inc. - is seeking for responsible, literate and honest persons for the positions in transaction services to be financial manager in Internet office. 1. Be able to check your email several times a day 2. Be able to respond to emails immediately 3. Be able to work overtime if needed 4. Be responsible and hard working 5. Be able to open bank account for company needs (if needed) 6. Should have personal bank account for receive payments You will be asked for punctuality, managerial abilities and responsibility. You will also receive detailed instructions for subsequent actions from our manager, with information how to receive/transfer the money. Please contact us by mail resume@eden21.net , leave your contact number or ask us for website address for additional information. Please contact us by mail recruitment@1troygmbh.com 08 it is good -------------- next part -------------- -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/ From spam_softscan@cowi.dk Wed Feb 28 10:24:00 2007 From: spam_softscan@cowi.dk (Delivery Notification) Date: Wed, 28 Feb 2007 10:24:00 -0000 Subject: Spam message detected by SoftScan in: "Re: Hi" Message-ID: Attention: cygwin-xfree@cygwin.com, an email message detected as spam was sent by you. This notification is sent to you due to policies set by the system administrator. The entire message may not have reached its destination. The spam message was reported to be: Likely spam message Please contact your IT support personnel or the sender of this notification if you feel this is an error. Your message was sent with the following envelope: MAIL FROM: cygwin-xfree@cygwin.com RCPT TO: krs@kampsax.dk ... and with the following headers: Received: from 83-131-155-52.adsl.net.t-com.hr (HELO kampsax.dk) (83.131.155.52) by dkcphmx08.softcom.dk with SMTP; 28 Feb 2007 10:24:32 -0000From: cygwin-xfree@cygwin.com To: krs@kampsax.dk Subject: Re: Hi Date: Wed, 28 Feb 2007 11:24:37 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0016----=_NextPart_000_0016" X-Priority: 3 X-MSMail-Priority: Normal From cj571@hotmail.co.uk Wed Feb 28 21:37:00 2007 From: cj571@hotmail.co.uk (George George) Date: Wed, 28 Feb 2007 21:37:00 -0000 Subject: uxterm Message-ID: Dear All, I am using Cygwin for a short time so I apologise in advance if my question is a simple one. I have my .bashrc file set to my Unix, where checks are made whether it is my Unix terminal that is running or the cygwin one. When I request a new xterm, despite having the following command to set the term to xterm eval `/usr/bin/tset -s ?xterm` I get Unknow type:uxterm. Also, sometimes it brings up commands that are not in my .bashrc file. Could you please let me know why this is happening or what it might be related to? I look forward to hearing from you soon. Thanks in advance. Christos _________________________________________________________________ Solve the Conspiracy and win fantastic prizes! http://www.theconspiracygame.co.uk/ -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/