From huntharo@msu.edu Sun Dec 2 21:07:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Sun, 02 Dec 2001 21:07:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: The following item was added to the Cygwin/XFree86 - Development - To-Do List. (http://xfree86.cygwin.com/devel/todo.html) Caveat: I will never personally implement this feature/bugfix because this item is so easy and I have given so much information here that it would take even a novice programmer less than two hours to implement. Summary: Release all keys when Cygwin/XFree86 loses focus Description: Cygwin/XFree86 currently releases mode keys (Alt, Ctrl, etc.) when it loses the keyboard focus. This is necessary because a user may press Alt+Tab to change to another window, in which case the Alt release message would never be received by Cygwin/XFree86; upon returning the keyboard focus to Cygwin/XFree86, the program will behave as it the Alt key is down. One shortcoming of the current system is that other keys (a, b, 1, 2, etc.) are not released when Cygwin/XFree86 loses the keyboard focus. Thus, a user may press the 'a' key, then another application may cause an event that forces Cygwin/XFree86 to lose keyboard focus, causing Cygwin/XFree86 not to receive the release message for the 'a' key. The end result is that Cygwin/XFree86 will endlessly repeat the 'a' key press until the user returns the keyboard focus to Cygwin/XFree86 and presses then releases the 'a' key to stop the automatic repeat. The desired solution would be to release any keys that are pressed. This will require some sort of table to indicate which key codes are in the pressed state, so that pressed keys may be released upon losing the keyboard focus. We can't use the Win32 API function GetKeyboardState () because that function gives us the Win32 Virtual Key codes, rather than the OEM scan code that we need to send a key event to the X MI (machine independent) input layer. It may be easier to send a release event for all keys except the mode keys, regardless of the key state, given that sending a release message for a key that is not down does not have any adverse side effect. We currently do this last method for the mod keys (Alt, Ctrl, Shift, Kana); earlier versions of Cygwin/XFree86 tracked the state of the mod keys and only released the pressed mod keys. No adverse effects have been observed from releasing all mod keys, and this method is also used by the Windows VNC client. Go forth and program, Harold From John_Tobey@notes.intdata.com Mon Dec 3 06:00:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Mon, 03 Dec 2001 06:00:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B17.004CD84F.00@notes.intdata.com> Caveat: By "novice programmer" he means one intimately familiar with X server internals and the Win32 API. :-) But thanks for the hints. -John "Harold Hunt" on 03-12-2001 12:06:59 AM To: "cygx" cc: (bcc: John Tobey/Intdata) Subject: New devel to-do item (release all pressed keyboard keys on focus loss) The following item was added to the Cygwin/XFree86 - Development - To-Do List. (http://xfree86.cygwin.com/devel/todo.html) Caveat: I will never personally implement this feature/bugfix because this item is so easy and I have given so much information here that it would take even a novice programmer less than two hours to implement. Summary: Release all keys when Cygwin/XFree86 loses focus Description: Cygwin/XFree86 currently releases mode keys (Alt, Ctrl, etc.) when it loses the keyboard focus. This is necessary because a user may press Alt+Tab to change to another window, in which case the Alt release message would never be received by Cygwin/XFree86; upon returning the keyboard focus to Cygwin/XFree86, the program will behave as it the Alt key is down. One shortcoming of the current system is that other keys (a, b, 1, 2, etc.) are not released when Cygwin/XFree86 loses the keyboard focus. Thus, a user may press the 'a' key, then another application may cause an event that forces Cygwin/XFree86 to lose keyboard focus, causing Cygwin/XFree86 not to receive the release message for the 'a' key. The end result is that Cygwin/XFree86 will endlessly repeat the 'a' key press until the user returns the keyboard focus to Cygwin/XFree86 and presses then releases the 'a' key to stop the automatic repeat. The desired solution would be to release any keys that are pressed. This will require some sort of table to indicate which key codes are in the pressed state, so that pressed keys may be released upon losing the keyboard focus. We can't use the Win32 API function GetKeyboardState () because that function gives us the Win32 Virtual Key codes, rather than the OEM scan code that we need to send a key event to the X MI (machine independent) input layer. It may be easier to send a release event for all keys except the mode keys, regardless of the key state, given that sending a release message for a key that is not down does not have any adverse side effect. We currently do this last method for the mod keys (Alt, Ctrl, Shift, Kana); earlier versions of Cygwin/XFree86 tracked the state of the mod keys and only released the pressed mod keys. No adverse effects have been observed from releasing all mod keys, and this method is also used by the Windows VNC client. Go forth and program, Harold From vervoom@hotmail.com Mon Dec 3 07:12:00 2001 From: vervoom@hotmail.com (pingu) Date: Mon, 03 Dec 2001 07:12:00 -0000 Subject: can't start xfree as user Message-ID: <3C0B9291.2020702@hotmail.com> Hi, Can anyone help out with this problem please? I have XFree86 running on Windows 2K and it is fine for me when I'm logged in as Admin but if I log in as a User it won't run. I have a feeling the answer is to set owner of xinit to root but as I'm using cygwin I don't think this is possible is it? I'd appreciate any help. Thanks. PS: Please could you copy any replies to me directly as I haven't subscribed to the user's list. Thanks. This is what I get when I try to run X: bash-2.05$ ./xinit ddxProcessArgument () _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root _XSERVTransSocketCreateListener: failed to bind listener _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed _XSERVTransMakeAllCOTSServerListeners: failed to create listener for local Fatal server error: Failed to establish all listening sockets giving up. ./xinit: No such file or directory (errno 2): unable to connect to X server ./xinit: No such process (errno 3): Server error. bash-2.05$ From RBodack@sseg.de Mon Dec 3 07:15:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Mon, 03 Dec 2001 07:15:00 -0000 Subject: AW: can't start xfree as user Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDA@ssegadmin> Hi, after A while I had enough with win2k rights and added my network user to the local administrator group. Now I am the boss on my computer. Not elegant, but works. R?diger > > Hi, > > Can anyone help out with this problem please? I have XFree86 > running on > Windows 2K and it is fine for me when I'm logged in as Admin but if I > log in as a User it won't run. I have a feeling the answer is to set > owner of xinit to root but as I'm using cygwin I don't think this is > possible is it? I'd appreciate any help. Thanks. From ouba@ouba.org Mon Dec 3 07:26:00 2001 From: ouba@ouba.org (Denis Sacchet) Date: Mon, 03 Dec 2001 07:26:00 -0000 Subject: How to get work a french keyword ? Message-ID: <007401c17c0e$df5d3ae0$0200a8c0@marsupilami> Hi everybody ... I installed xfree under cygwin 1 week ago, and after a lot of operations, I doesn't manage to make work my 'azerty' keyboard. I think I can obtain it with the -xkbcomp -xkbdb and -xkbmap parameters of XWin.exe, but ... Thanx for your help Ouba PS : Scuse me for my bad english ... From vervoom@hotmail.com Mon Dec 3 08:07:00 2001 From: vervoom@hotmail.com (J S) Date: Mon, 03 Dec 2001 08:07:00 -0000 Subject: AW: can't start xfree as user Message-ID: I'm doing that already, but as I've got to develop this for other people to use as well, it's not really an option for me. But thanks anyway. >From: R??diger Bodack >To: 'pingu' , cygwin-xfree@cygwin.com >Subject: AW: can't start xfree as user >Date: Mon, 3 Dec 2001 16:18:13 +0100 > > >Hi, > >after A while I had enough with win2k rights and added my network user to >the local administrator group. Now I am the boss on my computer. Not >elegant, but works. > >R??diger > > > > > Hi, > > > > Can anyone help out with this problem please? I have XFree86 > > running on > > Windows 2K and it is fine for me when I'm logged in as Admin but if I > > log in as a User it won't run. I have a feeling the answer is to set > > owner of xinit to root but as I'm using cygwin I don't think this is > > possible is it? I'd appreciate any help. Thanks. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From James_Martinez@Jabil.com Mon Dec 3 08:31:00 2001 From: James_Martinez@Jabil.com (James Martinez) Date: Mon, 03 Dec 2001 08:31:00 -0000 Subject: Openwindows remote on Sun Message-ID: Ok I have been able to set up Cygwin and Xfree86 on my computer to remotely login to a Sun Workstation. The only problem is that we use OpenWindows as a desktop and when I use Xfree86 to bring up the Suns desktop the colors and everything are wrong. Is this a problem with OpenWindows, XFree86, or just the way the sun is setup. Thanks for any help. From RBodack@sseg.de Mon Dec 3 08:32:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Mon, 03 Dec 2001 08:32:00 -0000 Subject: AW: How to get work a french keyword ? Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDC@ssegadmin> Place /etc/X11/xinit/xmodmap.fr and apppend the following line to startxwin.bat (right after the xsetroot line), assuming you are using this batch script. You can get the file anywhere on the web searching for xmodmap. xmodmap /etc/X11/xinit/xmodmap.fr R?diger > -----Urspr?ngliche Nachricht----- > Von: Denis Sacchet [mailto:ouba@ouba.org] > Gesendet: Montag, 3. Dezember 2001 16:26 > An: cygwin-xfree@xfree86.cygwin.com > Betreff: How to get work a french keyword ? > > > Hi everybody ... > > I installed xfree under cygwin 1 week ago, and after a lot of > operations, I > doesn't manage to make work my 'azerty' keyboard. > > I think I can obtain it with the -xkbcomp -xkbdb and -xkbmap > parameters of > XWin.exe, but ... > > Thanx for your help > > Ouba > > PS : Scuse me for my bad english ... > From alexander.gottwald@informatik.tu-chemnitz.de Mon Dec 3 08:36:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 03 Dec 2001 08:36:00 -0000 Subject: AW: can't start xfree as user In-Reply-To: <540D22115D0CD311BC2E00A0246200EE01531FDA@ssegadmin> Message-ID: On Mon, 3 Dec 2001, R?diger Bodack wrote: > > Can anyone help out with this problem please? I have XFree86 > > running on > > Windows 2K and it is fine for me when I'm logged in as Admin but if I > > log in as a User it won't run. I have a feeling the answer is to set > > owner of xinit to root but as I'm using cygwin I don't think this is > > possible is it? I'd appreciate any help. Thanks. > > after A while I had enough with win2k rights and added my network user to > the local administrator group. Now I am the boss on my computer. Not > elegant, but works. > it should help to mount /tmp to a directory where you have the right to create files. eg. mount -b /temp /tmp or mount -b c:/temp /tmp bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From huntharo@msu.edu Mon Dec 3 09:50:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Mon, 03 Dec 2001 09:50:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B17.004CD84F.00@notes.intdata.com> Message-ID: John, > By "novice programmer" he means one intimately familiar with X > server internals > and the Win32 API. > > :-) Not at all. I mean look in winkeybd.c for the function that pops the mod keys (Alt, Ctrl, Shift, etc.) and simply make it loop through all keys not including the mode keys (Num Lock, Caps Lock, etc.), popping each key. How hard is it to write a for loop based on example code? Harold From huntharo@msu.edu Mon Dec 3 15:14:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Mon, 03 Dec 2001 15:14:00 -0000 Subject: New FAQ Q/A for Xinstall.sh erroneously requesting Xmod.tgz Message-ID: I have added a new Q/A to the FAQ regarding Xinstall.sh requesting Xmod.tgz: http://xfree86.cygwin.com/docs/faq/cygwin-xfree-faq.html#q-xmod.tgz I need people affected by this problem to get back to me on whether or not the information provided is helpful. Please tell me how you solved the problem on your system. (Please CC me, as I am not subscribed to the list). Hope this helps, Harold From haglin@pike.cs.mnsu.edu Mon Dec 3 18:46:00 2001 From: haglin@pike.cs.mnsu.edu (David J. Haglin) Date: Mon, 03 Dec 2001 18:46:00 -0000 Subject: Tiny Suggestions Message-ID: <20011204024008.C54502BBF5@pike.cs.mnsu.edu> I would like to make a tiny suggestion that may improve the presence of XFree86 on a Cygwin/Wintel platform. It would be nice to have an installable/downloadable version of the X.png in window's own *.ico format. From petrie@snrc.stanford.edu Mon Dec 3 20:40:00 2001 From: petrie@snrc.stanford.edu (Charles J. Petrie) Date: Mon, 03 Dec 2001 20:40:00 -0000 Subject: ssh in cygwin Message-ID: <200112040440.UAA14915@snrc.stanford.edu> Hello, I installed Cygwin and XFree86 and can get an X window up and running with no errors. The user manual indicates that ssh should be available but I can't find it anywhere and it's not seen by "which". This is probably a dumb question but isn't ssh supposed to be included in the XFree or Cygwin distributions? Thanks for any help, Charles Petrie -- http://SNRC.stanford.edu/~petrie From cgf@redhat.com Mon Dec 3 20:46:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Mon, 03 Dec 2001 20:46:00 -0000 Subject: ssh in cygwin In-Reply-To: <200112040440.UAA14915@snrc.stanford.edu> References: <200112040440.UAA14915@snrc.stanford.edu> Message-ID: <20011204044630.GC10232@redhat.com> On Mon, Dec 03, 2001 at 08:40:22PM -0800, Charles J. Petrie wrote: >Hello, > I installed Cygwin and XFree86 and can get an X window up and running >with no errors. The user manual indicates that ssh should be available >but I can't find it anywhere and it's not seen by "which". This >is probably a dumb question but isn't ssh supposed to be included >in the XFree or Cygwin distributions? Why not rerun setup.exe and look for the word "ssh". Or, you can go to http://cygwin.com/packages/ and search for it. cgf From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 00:51:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 00:51:00 -0000 Subject: Your XDMCP patch for Win 95 In-Reply-To: <3C0C8003.FFE37200@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > Hi, > I am having trouble getting XDMCP to work with Windows 95 and a RedHat > 7.1 Linux box. I have other X-terminals working fine but the Cygwin one > doesn't work. I downloaded your patch (cygwin1.fixed-netdev.dll.bz2) > but it appears to be for Cygwin version 1.3.3 while the current version > I have is 1.3.6-1. I tried to downgrade my version but I couldn't find > the old files anywhere. If I use your patched DLL, I get an error about > missing exports in the DLL. You don't need this patch anymore. It is in cygwin since 1.3.4. I'll throw a comment to the page. Did you have problems with xdmcp and the unpatched 1.3.6 cygwin? What was it? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From RBodack@sseg.de Tue Dec 4 00:55:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Tue, 04 Dec 2001 00:55:00 -0000 Subject: AW: Tiny Suggestions Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDE@ssegadmin> I can send you my selfmade X-icon. Its a modified Win2K icon, hence I should not post it to the group. Can you point me to the X.png ? I can try my luck to convert it. R?diger > -----Urspr?ngliche Nachricht----- > Von: haglin@pike.cs.mnsu.edu [mailto:haglin@pike.cs.mnsu.edu] > Gesendet: Dienstag, 4. Dezember 2001 03:40 > An: cygwin-xfree@xfree86.cygwin.com > Betreff: Tiny Suggestions > > > I would like to make a tiny suggestion that may improve the presence > of XFree86 on a Cygwin/Wintel platform. It would be nice to have an > installable/downloadable version of the X.png in window's own *.ico > format. > From family@watzlavick.com Tue Dec 4 07:02:00 2001 From: family@watzlavick.com (Watzlavick) Date: Tue, 04 Dec 2001 07:02:00 -0000 Subject: Your XDMCP patch for Win 95 Message-ID: <3C0CE5DA.3FC7B108@watzlavick.com> I'm getting the error: "XDMCP Fatal error: Session declined with no valid address". I can start an X session locally on the Win 95 box, telnet to the LInux box and run X programs remotely that way. However, If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. I've read all the previous posts about XDMCP problems but none of the suggestions worked. I do have the Win95 machine name in the /etc/hosts file and in the Xaccess file on the Linux box. My other machines (Netpliance I-Openers) can connect fine using xdm. They mount their entire filesystem over NFS and I assumed they are using XDMCP to get the logon screen. Maybe something is still messed up with my XDMCP configuration? Thanks for your help. -Robert You wrote: You don't need this patch anymore. It is in cygwin since 1.3.4. I'll throw a comment to the page. Did you have problems with xdmcp and the unpatched 1.3.6 cygwin? What was it? > Hi, > I am having trouble getting XDMCP to work with Windows 95 and a RedHat > 7.1 Linux box. I have other X-terminals working fine but the Cygwin one > doesn't work. I downloaded your patch (cygwin1.fixed-netdev.dll.bz2) > but it appears to be for Cygwin version 1.3.3 while the current version > I have is 1.3.6-1. I tried to downgrade my version but I couldn't find > the old files anywhere. If I use your patched DLL, I get an error about > missing exports in the DLL. From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 07:11:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 07:11:00 -0000 Subject: Your XDMCP patch for Win 95 In-Reply-To: <3C0CE5DA.3FC7B108@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > I'm getting the error: "XDMCP Fatal error: Session declined with no > valid address". I can start an X session locally on the Win 95 box, > telnet to the LInux box and run X programs remotely that way. However, > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > I've read all the previous posts about XDMCP problems but none of the > suggestions worked. I do have the Win95 machine name in the /etc/hosts > file and in the Xaccess file on the Linux box. What kind of network card have you installed? Token ring is known to make problems. On my homepage I've a small utility called ls_netdev. This try's to get all network devices from cygwin and also tries to grab it directly from windows. Can you please run it and send me the output? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 07:52:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 07:52:00 -0000 Subject: Your XDMCP patch for Win 95 In-Reply-To: <3C0CED4C.763A06F7@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 bye ago BTW: Please reply to the list-address -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From robert.watzlavick@ni.com Tue Dec 4 08:51:00 2001 From: robert.watzlavick@ni.com (Bob Watzlavick) Date: Tue, 04 Dec 2001 08:51:00 -0000 Subject: Your XDMCP patch for Win 95 Message-ID: <000601c17ce3$f7dfe330$4832a482@spike2k> I'm using DHCP and my dynamic IP is 192.168.1.10. Does Cygwin only work with static IP addresses? I suppose there's a chance that my router isn't keeping track of client names properly. -Robert On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 From OPidgornyy@kyiv.utel.com.ua Tue Dec 4 09:25:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Tue, 04 Dec 2001 09:25:00 -0000 Subject: Cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Hello there. I'm running under W2K. Downloaded Xfree binaries from: ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-binaries/4.1.0 The link was talen from the http://xfree86.cygwin.com/ Installed as described in the "Install" file. When trying to start xwin.exe got 'cygz.dll could not be found'. Where is it really? It seems to me it's not there at all. Searched in FAQ. Could not find anything on this. Thanks for help. Sincerely, Alexander Podgorny Kiev, Ukraine From huntharo@msu.edu Tue Dec 4 09:31:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 09:31:00 -0000 Subject: Linux-Mandrake 8.1 and XDMCP In-Reply-To: <00fa01c17cb9$91d369b0$04021eac@sinfopragma.it> Message-ID: Stefano, Thanks for looking into it, but the answer has been in the FAQ for some time now: http://xfree86.cygwin.com/docs/faq/cygwin-xfree-faq.html#q-mandrake-8.1-xdmc p Thanks again, Harold > -----Original Message----- > From: Stefano Conti [mailto:stefano.conti@jumpy.it] > Sent: Tuesday, December 04, 2001 6:48 AM > To: huntharo@msu.edu > Subject: Linux-Mandrake 8.1 and XDMCP > > > Found!!! I got this problem too but only today I found some > time to take a look at ... > You should edit the file /usr/share/config/kdm/kdmrc > at the end of the file under paragraph [Xdmcp] > Enable=False should be Enabled= True > Save the file the killall kdm and everything should work. > Excuse for my awful english. > Ste > From jgilles@glmultimedia.com Tue Dec 4 09:50:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 04 Dec 2001 09:50:00 -0000 Subject: Pb with XDMCP on Solaris Message-ID: Hi, [ Using CygWin/Xfree on Win2k, 1280x1024x24 ] if I use this to open a session : ./XWin -query sun.ip -from my.ip I have a session where bitmaps are completly messed up by vertical gray lines - in fact vertical lines seems to be mixed. Fonts are ok, colors ok also, but icons on the CDE toolbar have this problem. The background is also badly displayed. ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 24 => same problem ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 8 => no problem :-\ Is there something to fix on the Solaris Workstation ? or perhaps a tricky parameters under Win2K ? -- Julien Gilles From cwilson@ece.gatech.edu Tue Dec 4 10:23:00 2001 From: cwilson@ece.gatech.edu (Charles Wilson) Date: Tue, 04 Dec 2001 10:23:00 -0000 Subject: cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) References: <4B6D123ED7F0D311AD7B00508B656CB9044359D7@exchange.kyiv.internal.utel.com.ua> <20011204171158.GB16648@redhat.com> Message-ID: <3C0D14B4.4040001@ece.gatech.edu> Christopher Faylor wrote: > On Tue, Dec 04, 2001 at 07:06:13PM +0200, Pidgornyy, Oleksandr wrote: > >>I'm running under W2K. Downloaded Xfree binaries from: >>ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-binaries/4.1.0 >>Installed as described in the "Install" file. When trying to start >>xwin.exe got 'cygz.dll could not be found'. Where is it really? It >>seems to me it's not there at all. Searched in FAQ. Could not find >>anything on this. cygz.dll is provided by the 'zlib' package, and lives in /usr/bin (== /bin). Make sure that C:\cygwin\bin is in your system PATH before trying to run xwin. --Chuck From flognat@flognat.myip.org Tue Dec 4 10:56:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Tue, 04 Dec 2001 10:56:00 -0000 Subject: Cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) In-Reply-To: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> References: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Message-ID: | When trying to start xwin.exe got 'cygz.dll could not be found'. | Where is it really? I think we reuse it from standard cygwin installation.. So you have to install a bunch of cygwin packages too. /Andy -- The eye of the beholder rests on the beauty! From robert.watzlavick@ni.com Tue Dec 4 11:01:00 2001 From: robert.watzlavick@ni.com (Bob Watzlavick) Date: Tue, 04 Dec 2001 11:01:00 -0000 Subject: Your XDMCP patch for Win 95 In-Reply-To: <000601c17ce3$f7dfe330$4832a482@spike2k> Message-ID: <000901c17cf5$f1759050$4832a482@spike2k> Ok, I just tried using a static IP on the Windows 95 box and things work just dandy. Thanks! So do you think the problem with the dynamic IP is in my router or something in Cygwin? -Robert -----Original Message----- From: cygwin-xfree-owner@cygwin.com [mailto:cygwin-xfree-owner@cygwin.com] Sent: Tuesday, December 04, 2001 10:52 AM To: cygwin-xfree@sources.redhat.com Subject: Re: Your XDMCP patch for Win 95 I'm using DHCP and my dynamic IP is 192.168.1.10. Does Cygwin only work with static IP addresses? I suppose there's a chance that my router isn't keeping track of client names properly. -Robert On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 From John_Tobey@notes.intdata.com Tue Dec 4 11:28:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Tue, 04 Dec 2001 11:28:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B18.006ADBB1.00@notes.intdata.com> There's nothing too hard about it, but it doesn't work. The winSendKeyEvent() calls seem to result in keydown events, judging by this output from my test. Here I sent myself an email, started slowly typing 'asdf' into an xterm, and waited until the email notification popped up. The text from 890-qwerty... on seems to have come from my patch, included below. (Apologies if the lines wrap.) I suppose the next step will be to keep an array of flags indicating what keys are down. When should one set/clear the flags? -John ==========BEGIN xterm OUTPUT============== [jtobey@BED-JTOBEY-W] (0) ~/x-devel/build/hacked/programs/Xserver $ asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfass890-qwertyuiop[] ~\\bash: asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfass890-qwertyuiop[]: command not found [jtobey@BED-JTOBEY-W] (127) ~/x-devel/build/hacked/programs/Xserver $ adfghjkl;'`\zxcvbnm,./* ~~~~0~1~~~~<3~4~~~ > /9 ==========END xterm OUTPUT============== ==========BEGIN PATCH============== --- ../../../../xc/programs/Xserver/hw/xwin/winkeybd.c Mon Dec 3 16:38:20 2001 +++ hw/xwin/winkeybd.c Tue Dec 4 10:45:00 2001 @@ -403,12 +403,30 @@ if (g_fdMessageQueue == WIN_FD_INVALID) return; +#if 1 + ErrorF("Nuking 'modifier' keys!\n"); + { + int i; + for (i = 1; i < 128; i++) + switch (i) + { + default: + winSendKeyEvent (i, FALSE); + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + break; + } + } +#else winSendKeyEvent (KEY_Alt, FALSE); winSendKeyEvent (KEY_AltLang, FALSE); winSendKeyEvent (KEY_LCtrl, FALSE); winSendKeyEvent (KEY_RCtrl, FALSE); winSendKeyEvent (KEY_ShiftL, FALSE); winSendKeyEvent (KEY_ShiftR, FALSE); +#endif } ==========END PATCH============== "Harold Hunt" on 03-12-2001 12:50:08 PM To: John Tobey/Intdata@INTDATA cc: "cygx" Subject: RE: New devel to-do item (release all pressed keyboard keys on focus loss) John, > By "novice programmer" he means one intimately familiar with X > server internals > and the Win32 API. > > :-) Not at all. I mean look in winkeybd.c for the function that pops the mod keys (Alt, Ctrl, Shift, etc.) and simply make it loop through all keys not including the mode keys (Num Lock, Caps Lock, etc.), popping each key. How hard is it to write a for loop based on example code? Harold From cgf@redhat.com Tue Dec 4 11:37:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Tue, 04 Dec 2001 11:37:00 -0000 Subject: cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) In-Reply-To: References: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Message-ID: <20011204193726.GB19946@redhat.com> On Tue, Dec 04, 2001 at 07:56:36PM +0100, Andrew Markebo wrote: > >| When trying to start xwin.exe got 'cygz.dll could not be found'. >| Where is it really? > >I think we reuse it from standard cygwin installation.. So you have to >install a bunch of cygwin packages too. Go to http://cygwin.com/packages/ and use the search facility to find the correct package. cgf From cwilson@ece.gatech.edu Tue Dec 4 11:52:00 2001 From: cwilson@ece.gatech.edu (Charles Wilson) Date: Tue, 04 Dec 2001 11:52:00 -0000 Subject: Speaking of debian cygwin Message-ID: <3C0D2982.1000503@ece.gatech.edu> There's another slashdot article: http://slashdot.org/article.pl?sid=01/12/04/13552388 Seems the debian-devel folks aren't too happy about this... --Chuck From huntharo@msu.edu Tue Dec 4 11:59:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 11:59:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B18.006ADBB1.00@notes.intdata.com> Message-ID: > There's nothing too hard about it, but it doesn't work. The > winSendKeyEvent() > calls seem to result in keydown events, judging by this output > from my test. Actually, I believe it indicates that X clients interpret alpha key releases without a press as a key event. I was afraid of that. You'll need to declare a global array in winkeybc.c, call it g_fKeyStates, of type Bool and length MAP_LENGTH, initialize the array to 0's in InitInput.c/InitInput (). Then, on each call to winSendKeyEvent (), look at the value of fDown and set the array entry corresponding to dwKey accordingly. Finally, have winKeybdReleaseModifierKeys () loop from 0 to MAP_LENGTH, calling winSendKeyEvent (dwKey, FALSE) for each array entry that indicates that the key is pressed. You know, I've also thought of an alternative that warrents trying. When we loose keyboard focus (WM_KILLFOCUS), try making InitInput.c/InitInput()/pKeyboard global, then call winKeybdProc (g_pKeyboard, DEVICE_OFF). When we regain focus, call winKeybdProc (g_pKeyboard, DEVICE_ON). I think this may have the effect of stopping key repeats due to a missing key release message. Give the latter case a shot before creating a key state array. Harold From march@indirect.com Tue Dec 4 12:16:00 2001 From: march@indirect.com (Michael F. March) Date: Tue, 04 Dec 2001 12:16:00 -0000 Subject: Speaking of debian cygwin References: <3C0D2982.1000503@ece.gatech.edu> Message-ID: <007c01c17d00$89b5f580$c3d256d1@D4LHBR01> I read all that and I still can not figure out what the EXACT issue is they have? GNU software running on Windows? DPKG specifically being ported to Windows? After reading all the /. and debian mailing list posts, I *still* can not tell.. > There's another slashdot article: > > http://slashdot.org/article.pl?sid=01/12/04/13552388 > > Seems the debian-devel folks aren't too happy about this... From marketing@ugetmore4less.net Tue Dec 4 12:55:00 2001 From: marketing@ugetmore4less.net (marketing@ugetmore4less.net) Date: Tue, 04 Dec 2001 12:55:00 -0000 Subject: Instant Success-Increased Sales leads guaranteed... Message-ID: **************************************************** Proven Sales Formula! Successfull entrepreneurs around the world use our products. **************************************************** Is your website tired/run down? Need a Health check for your dot com? Not sure about commitment? Get a free health check At Trafficwow.net. Not only do we help you make a Success of building your profit. We tell you the Web secret that is making your competitor more money than you. Want to know more http://www.trafficwow.net/healthcheck ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Trafficwow makes web sites burst with targeted sales traffic. Just order your package and we do the rest. Guarenteed traffic or your money back. We have sent over 63 Million people to sites like your this month alone. Want to know more http://www.trafficwow.net/faq_wow.htm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Want to Buy? Simply visit http://www.trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Become a Winner with http://www.Trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Free Web Site Health Check with every package! Trafficwow will asses your web site and forward you an advice report. Be warned!! If it is no good. WE WILL TELL YOU!!!!!! Visit http://www.Trafficwow.net *********************************************************************************** We Are Fully Compliant to Senate bill1618,Title 3, section 301. This message is sent in compliance of the new e-mail bill: Section 301.per section 301, paragraph (a)(2)(c) of S 1618. Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by sending a reply e-mail it to marketing@ugetmore4less.net with the word ??REMOVE?? in the subject line. *********************************************************************************** From marketing@ugetmore4less.net Tue Dec 4 12:55:00 2001 From: marketing@ugetmore4less.net (marketing@ugetmore4less.net) Date: Tue, 04 Dec 2001 12:55:00 -0000 Subject: Instant Success-Increased Sales leads guaranteed... Message-ID: **************************************************** Proven Sales Formula! Successfull entrepreneurs around the world use our products. **************************************************** Is your website tired/run down? Need a Health check for your dot com? Not sure about commitment? Get a free health check At Trafficwow.net. Not only do we help you make a Success of building your profit. We tell you the Web secret that is making your competitor more money than you. Want to know more http://www.trafficwow.net/healthcheck ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Trafficwow makes web sites burst with targeted sales traffic. Just order your package and we do the rest. Guarenteed traffic or your money back. We have sent over 63 Million people to sites like your this month alone. Want to know more http://www.trafficwow.net/faq_wow.htm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Want to Buy? Simply visit http://www.trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Become a Winner with http://www.Trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Free Web Site Health Check with every package! Trafficwow will asses your web site and forward you an advice report. Be warned!! If it is no good. WE WILL TELL YOU!!!!!! Visit http://www.Trafficwow.net *********************************************************************************** We Are Fully Compliant to Senate bill1618,Title 3, section 301. This message is sent in compliance of the new e-mail bill: Section 301.per section 301, paragraph (a)(2)(c) of S 1618. Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by sending a reply e-mail it to marketing@ugetmore4less.net with the word ??REMOVE?? in the subject line. *********************************************************************************** From cgf@redhat.com Tue Dec 4 13:05:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Tue, 04 Dec 2001 13:05:00 -0000 Subject: Speaking of debian cygwin In-Reply-To: <3C0D2982.1000503@ece.gatech.edu> References: <3C0D2982.1000503@ece.gatech.edu> Message-ID: <20011204210600.GG19946@redhat.com> On Tue, Dec 04, 2001 at 02:52:34PM -0500, Charles Wilson wrote: >There's another slashdot article: > >http://slashdot.org/article.pl?sid=01/12/04/13552388 > >Seems the debian-devel folks aren't too happy about this... I'm surprised that this has actually finally happened. This has been in discussion for *years*. I've been subscribed to the mailing list which discusses debian for win32 and it has gone through the standard ebbs and flows of a project that was apparently going nowhere. cgf From kevin.schnitzius@citrix.com Tue Dec 4 13:26:00 2001 From: kevin.schnitzius@citrix.com (Kevin Schnitzius) Date: Tue, 04 Dec 2001 13:26:00 -0000 Subject: Speaking of debian cygwin Message-ID: http://slashdot.org/article.pl?sid=01/12/04/1355238 Extra '8' in the mail. Kevin -----Original Message----- From: Randall R Schulz [mailto:rrschulz@cris.com] Sent: Tuesday, December 04, 2001 16:19 To: cygwin@cygwin.com; cygwin-xfree@cygwin.com Subject: Re: Speaking of debian cygwin Charles, Are they so upset they got the article pulled? All I get, beyond the Slahsdot page adornments, is this: "Nothing for you to see here. Please move along." Has this article been pulled, or is there an error in the URL you gave? Randall Schulz Mountain View, CA USA At 11:52 2001-12-04, Charles Wilson wrote: >There's another slashdot article: > >http://slashdot.org/article.pl?sid=01/12/04/13552388 > >Seems the debian-devel folks aren't too happy about this... > >--Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ From John_Tobey@notes.intdata.com Tue Dec 4 14:10:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Tue, 04 Dec 2001 14:10:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B18.0079B893.00@notes.intdata.com> Thanks for the help. It sort of works now. I see no autorepeat, but there seems to be one extra keystroke received. I have not tested enough to be sure what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is interpreted as a key event, which in addition to the original keydown results in a double keystroke seen by the application. This happens only in conjunction with an asynchronous focus loss, and it beats the earlier behavior, but perhaps it could be improved upon. I don't have any more time to work on it today. I would like to try using the new server for a while before I suggest applying this patch. Fiddling with InitInput.c and winwndproc.c as you suggested did not have a noticeable effect. -John --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 +++ winkeybd.c Tue Dec 4 16:42:28 2001 @@ -391,6 +391,11 @@ return FALSE; } +/* + * Remember which keys are down for when we lose focus. + */ + +Bool g_fKeyStates[MAP_LENGTH]; /* * Lift any modifier keys that are pressed @@ -399,16 +404,28 @@ void winKeybdReleaseModifierKeys () { + int i; + /* Verify that the mi input system has been initialized */ if (g_fdMessageQueue == WIN_FD_INVALID) return; - winSendKeyEvent (KEY_Alt, FALSE); - winSendKeyEvent (KEY_AltLang, FALSE); - winSendKeyEvent (KEY_LCtrl, FALSE); - winSendKeyEvent (KEY_RCtrl, FALSE); - winSendKeyEvent (KEY_ShiftL, FALSE); - winSendKeyEvent (KEY_ShiftR, FALSE); + for (i = 0; i < MAP_LENGTH; i++) + switch (i) + { + default: + if (g_fKeyStates[i]) + { + ErrorF ("Simulating release of key #%d!\n", i); + winSendKeyEvent (i, FALSE); + } + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + case KEY_HKTG: + break; + } } @@ -430,4 +447,5 @@ g_c32LastInputEventTime = GetTickCount (); xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; mieqEnqueue (&xCurrentEvent); + g_fKeyStates[dwKey] = fDown; } From gary.samuels@gbst.com Tue Dec 4 18:06:00 2001 From: gary.samuels@gbst.com (Gary Samuels) Date: Tue, 04 Dec 2001 18:06:00 -0000 Subject: bunzip2 - Where to locate utility? Message-ID: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> To whom it may concern, I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't find the bunzip2 utility to uncompress the extract utility. Where can I locate this? Gary.. Gary Samuels Team Leader - Unix Systems & DBA mailto: gary.samuels@gbst.com Global Banking & Securities Transactions 5 Cribb Street, Milton QLD 4064 Australia P.O. BOX 1511, Milton QLD 4064 Australia Telephone: 617 3331 5555 Fax: 617 3367 0181 GBST is a trademark of Star Systems Pty Ltd From huntharo@msu.edu Tue Dec 4 18:19:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 18:19:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B18.0079B893.00@notes.intdata.com> Message-ID: Looks good to me. I agree that testing this for a bit would be a good idea. I wouldn't want to commit it until we figure out what is causing the extra key stroke that you talk about. Good work, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [mailto:John_Tobey@notes.intdata.com] > Sent: Tuesday, December 04, 2001 5:10 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > Thanks for the help. It sort of works now. I see no autorepeat, > but there > seems to be one extra keystroke received. I have not tested > enough to be sure > what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is > interpreted as a key event, which in addition to the original > keydown results in > a double keystroke seen by the application. > > This happens only in conjunction with an asynchronous focus loss, > and it beats > the earlier behavior, but perhaps it could be improved upon. I > don't have any > more time to work on it today. I would like to try using the new > server for a > while before I suggest applying this patch. > > Fiddling with InitInput.c and winwndproc.c as you suggested did not have a > noticeable effect. > > -John > > --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 > +++ winkeybd.c Tue Dec 4 16:42:28 2001 > @@ -391,6 +391,11 @@ > return FALSE; > } > > +/* > + * Remember which keys are down for when we lose focus. > + */ > + > +Bool g_fKeyStates[MAP_LENGTH]; > > /* > * Lift any modifier keys that are pressed > @@ -399,16 +404,28 @@ > void > winKeybdReleaseModifierKeys () > { > + int i; > + > /* Verify that the mi input system has been initialized */ > if (g_fdMessageQueue == WIN_FD_INVALID) > return; > > - winSendKeyEvent (KEY_Alt, FALSE); > - winSendKeyEvent (KEY_AltLang, FALSE); > - winSendKeyEvent (KEY_LCtrl, FALSE); > - winSendKeyEvent (KEY_RCtrl, FALSE); > - winSendKeyEvent (KEY_ShiftL, FALSE); > - winSendKeyEvent (KEY_ShiftR, FALSE); > + for (i = 0; i < MAP_LENGTH; i++) > + switch (i) > + { > + default: > + if (g_fKeyStates[i]) > + { > + ErrorF ("Simulating release of key #%d!\n", i); > + winSendKeyEvent (i, FALSE); > + } > + break; > + case KEY_CapsLock: > + case KEY_ScrollLock: > + case KEY_NumLock: > + case KEY_HKTG: > + break; > + } > } > > > @@ -430,4 +447,5 @@ > g_c32LastInputEventTime = GetTickCount (); > xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; > mieqEnqueue (&xCurrentEvent); > + g_fKeyStates[dwKey] = fDown; > } > > From spetreolle@yahoo.fr Tue Dec 4 19:31:00 2001 From: spetreolle@yahoo.fr (=?iso-8859-1?q?Sylvain=20Petreolle?=) Date: Tue, 04 Dec 2001 19:31:00 -0000 Subject: bunzip2 - Where to locate utility? In-Reply-To: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> Message-ID: <20011205033140.20195.qmail@web10102.mail.yahoo.com> Gary, using the setup.exe program, you must download and install the package bzip2. --- Gary Samuels a ??crit??: > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the > xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract > utility. Where can I > locate this? > > Gary.. > > Gary Samuels > Team Leader - Unix Systems & DBA > mailto: gary.samuels@gbst.com > > Global Banking & Securities Transactions > 5 Cribb Street, Milton QLD 4064 Australia > P.O. BOX 1511, Milton QLD 4064 Australia > Telephone: 617 3331 5555 Fax: 617 3367 0181 > > GBST is a trademark of Star Systems Pty Ltd > > ___________________________________________________________ Nokia 5510 Dr??le de look... et quel son ! Cliquez sur http://fr.promotions.yahoo.com/nokia/ D??couvrez-le et tentez votre chance pour en gagner un ! Fin du concours le 16 d??cembre. From huntharo@msu.edu Tue Dec 4 19:59:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 19:59:00 -0000 Subject: X11/gnuplot lines In-Reply-To: Message-ID: Marco, I'm a little more excited about passing my college classes and getting into graduate school than I am about working with gnuplot. Sorry. Perhaps someone on the list would like to help, Harold > -----Original Message----- > From: Marco Barcellona [mailto:marco@rios3.insean.it] > Sent: Tuesday, December 04, 2001 2:41 AM > To: huntharo@msu.edu > Subject: X11/gnuplot lines > > > Dear Harold, > > I just compiled gnuplot 3.71 under cygwin, using --with-x option, > without particular problems. > > When plotting on 'x11' terminal type of gnuplot, only symbols and > dots seems to work correctly. Lines are displayed in a very strange way... > > Exactly the same thing happens when exporting a gnuplot x11-graph from a > Linux/Unix host on cygwin-xfree86. > > It would be great for us to get rid of this odd behaviour, since gnuplot > is one of the most used graphical programs when developing/debugging CFD > software.... > > > Thanks for your interest > > > Marco > > From jgilles@glmultimedia.com Wed Dec 5 01:17:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Wed, 05 Dec 2001 01:17:00 -0000 Subject: Pb with XDMCP on Solaris In-Reply-To: ("Harold Hunt"'s message of "Tue, 4 Dec 2001 15:07:03 -0500") References: Message-ID: "Harold Hunt" writes: > Julien, > >> ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 24 >> >> => same problem >> >> ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 8 >> >> => no problem :-\ > > I wonder if Solaris supports 24 bits per pixel? Try running with -depth > 15, -depth 16, or -depth 32, depending on which depths your card supports. Yes, it works with depth 16 - why didn't I have tried ? I set my Win2k depth to 16 bit, and now I can also have Xwin in 16 bits in windowed mode. Thanks. -- Julien Gilles From OPidgornyy@kyiv.utel.com.ua Wed Dec 5 03:10:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Wed, 05 Dec 2001 03:10:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question(whe re to put new font path to get it before all others) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359DB@exchange.kyiv.internal.utel.com.ua> Hi there. Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config under unixes? Where does it live? The configuration file for FontServer (/etc/X11/fs/config) seems to be not used at all. The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font dir to font path but only for current X session. It does not store it where it should have(???). Briefly saying where should I put the path of my new_font_dir to get it before all other font pathes? Thanks. Sincerely, Alexander Podgorny From John_Tobey@notes.intdata.com Wed Dec 5 06:55:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Wed, 05 Dec 2001 06:55:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B19.0051D621.00@notes.intdata.com> After some experimentation, I am somewhat confident that the doubling affects only certain clients, specifically xterm and not emacs or kedit. I doubt whether I can figure it out completely without a major time investment. It is still the case that whatever key I use to dismiss the non-X application and return focus to X gets passed on to an X client (including emacs and kedit). I suppose for this the solution would be to make winSendKeyEvent do nothing if its fDown already matches the array element (since in this case both would be false), but I fear that such a change might adversely affect other code that I don't know about. Perhaps we want a g_fLostFocus flag that winSendKeyEvent resets the first time it's called after X regains focus. By the way, the same thing happens for mouse buttons as for keys. If I have a mouse button down when a popup appears, X wrongly considers the button to be down when it gets focus back. In practice, I find this more amusing than annoying, but I suppose in some situations it could cause problems. Thanks for your help. -John "Harold Hunt" on 04-12-2001 09:19:48 PM To: John Tobey/Intdata@INTDATA cc: "cygx" Subject: RE: New devel to-do item (release all pressed keyboard keys on focus loss) Looks good to me. I agree that testing this for a bit would be a good idea. I wouldn't want to commit it until we figure out what is causing the extra key stroke that you talk about. Good work, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [mailto:John_Tobey@notes.intdata.com] > Sent: Tuesday, December 04, 2001 5:10 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > Thanks for the help. It sort of works now. I see no autorepeat, > but there > seems to be one extra keystroke received. I have not tested > enough to be sure > what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is > interpreted as a key event, which in addition to the original > keydown results in > a double keystroke seen by the application. > > This happens only in conjunction with an asynchronous focus loss, > and it beats > the earlier behavior, but perhaps it could be improved upon. I > don't have any > more time to work on it today. I would like to try using the new > server for a > while before I suggest applying this patch. > > Fiddling with InitInput.c and winwndproc.c as you suggested did not have a > noticeable effect. > > -John > > --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 > +++ winkeybd.c Tue Dec 4 16:42:28 2001 > @@ -391,6 +391,11 @@ > return FALSE; > } > > +/* > + * Remember which keys are down for when we lose focus. > + */ > + > +Bool g_fKeyStates[MAP_LENGTH]; > > /* > * Lift any modifier keys that are pressed > @@ -399,16 +404,28 @@ > void > winKeybdReleaseModifierKeys () > { > + int i; > + > /* Verify that the mi input system has been initialized */ > if (g_fdMessageQueue == WIN_FD_INVALID) > return; > > - winSendKeyEvent (KEY_Alt, FALSE); > - winSendKeyEvent (KEY_AltLang, FALSE); > - winSendKeyEvent (KEY_LCtrl, FALSE); > - winSendKeyEvent (KEY_RCtrl, FALSE); > - winSendKeyEvent (KEY_ShiftL, FALSE); > - winSendKeyEvent (KEY_ShiftR, FALSE); > + for (i = 0; i < MAP_LENGTH; i++) > + switch (i) > + { > + default: > + if (g_fKeyStates[i]) > + { > + ErrorF ("Simulating release of key #%d!\n", i); > + winSendKeyEvent (i, FALSE); > + } > + break; > + case KEY_CapsLock: > + case KEY_ScrollLock: > + case KEY_NumLock: > + case KEY_HKTG: > + break; > + } > } > > > @@ -430,4 +447,5 @@ > g_c32LastInputEventTime = GetTickCount (); > xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; > mieqEnqueue (&xCurrentEvent); > + g_fKeyStates[dwKey] = fDown; > } > > From francois.perrot@cgey.com Wed Dec 5 07:49:00 2001 From: francois.perrot@cgey.com (=?iso-8859-1?Q?Fran=E7ois_PERROT?=) Date: Wed, 05 Dec 2001 07:49:00 -0000 Subject: app launch and xwinclip problem Message-ID: <00e801c17da2$f9640460$9b4e430a@fperrot.ism.capgemini.fr> Hi all, I have some problems when I try to open Microsoft office files by double-click. When I do so, the app is not launched and the machine freezes with 100 % cpu time used. When I kill -1 xwinclip, the app starts normally. I first thought this was a Microsoft office files openning problem only but I also have some xwinclip related problems with the windows time / date properties panel, and with windows explorer when it's launched by right-clicking on the start button. For those two last exemples the symptoms are different as the app is correctly launched but hangs until I kill xwinclip (kill -1 works) The behaviour of xwinclip is : "OpenClipboard () failed" message and xwinclip goes on working well, same message but I can paste on windows environment (and it works on xfree/KDE), or xwinclip is no longer running at all. I'm using Xwin-test53, cygwin version is 1.3.3, KDE 1.2 beta (but I had the same problems with twm, mwm and icewm) and xwinclip test 03. My win environment is NT 4 sp 6 with 96 Mo. I've searched the mailing-lists archives and didn't find any equivalent problem, witch I find weird : many office users and only one with what should be a common problem. Hey who put a spell on my machine ?!! From alexander.gottwald@informatik.tu-chemnitz.de Wed Dec 5 08:59:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 05 Dec 2001 08:59:00 -0000 Subject: Your XDMCP patch for Win 95 In-Reply-To: <000901c17cf5$f1759050$4832a482@spike2k> Message-ID: On Tue, 4 Dec 2001, Bob Watzlavick wrote: > Ok, I just tried using a static IP on the Windows 95 box and things work > just dandy. Thanks! So do you think the problem with the dynamic IP is in > my router or something in Cygwin? I guess it's something with win95. Imo, win95 should return the correct IP and not 0.0.0.0 since it's known when cygwin queries it. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From gmvist@yahoo.com Wed Dec 5 09:23:00 2001 From: gmvist@yahoo.com (Marius Ghita) Date: Wed, 05 Dec 2001 09:23:00 -0000 Subject: The error "Fatal server error: could not open default font 'fixed' Message-ID: <20011205172353.8989.qmail@web11206.mail.yahoo.com> Hello! I installed your software and when I want to start it with startxwin.bat I get the following message: "Fatal server error: could not open default font 'fixed'" What should I do? __________________________________________________ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com From huntharo@msu.edu Wed Dec 5 12:23:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 05 Dec 2001 12:23:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B19.0051D621.00@notes.intdata.com> Message-ID: John, > I suppose for this the solution would be to make winSendKeyEvent > do nothing if > its fDown already matches the array element Nah, you can't do that because we sometimes call winSendKeyEvent multiple times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat count. > After some experimentation, I am somewhat confident that the > doubling affects > only certain clients, specifically xterm and not emacs or kedit. I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and WM_KEYUP to see if the doubled key message is being sent again immediately after we regain focus. > I doubt > whether I can figure it out completely without a major time investment. This is your baby now, and you're making good progress. Don't be discouraged. These things take time to work out correctly. Harold From nidhibhatia@hotmail.com Wed Dec 5 13:06:00 2001 From: nidhibhatia@hotmail.com (Nidhi Bhatia) Date: Wed, 05 Dec 2001 13:06:00 -0000 Subject: install error Message-ID: I am having problems Installing XFree86. When attempting to extract the extract.exe.bz2 archive using the following command: bunzip2 extract.exe.bz2 the following error occurs: BASH: bunzip2: command not found I have followed the instructions in the user's guide and do not know how to correct this. Should I redownload something again? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From John_Tobey@notes.intdata.com Wed Dec 5 14:09:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Wed, 05 Dec 2001 14:09:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B19.0079B237.00@notes.intdata.com> > > I suppose for this the solution would be to make winSendKeyEvent > > do nothing if > > its fDown already matches the array element > Nah, you can't do that because we sometimes call winSendKeyEvent multiple > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > count. But I can do it when both are *false*. This goes over my earlier patch: --- winkeybd.c~ Tue Dec 4 16:42:28 2001 +++ winkeybd.c Wed Dec 5 16:39:49 2001 @@ -439,7 +439,12 @@ winSendKeyEvent (DWORD dwKey, Bool fDown) { xEvent xCurrentEvent; - + + /* Ignore ups without a preceding down. This happens when a keystroke + causes X to gain focus. */ + if (!fDown && !g_fKeyStates[dwKey]) + return; + ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; > I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and > WM_KEYUP to see if the doubled key message is being sent again immediately > after we regain focus. Here is my XWin.log: keydown #16 at 22939 keyup #16 at 23250 keydown #17 at 23320 keyup #17 at 23570 keydown #18 at 23680 keyup #18 at 23981 keydown #19 at 24091 keyup #19 at 24412 keydown #16 at 24452 keyup #16 at 24752 keydown #17 at 24792 Simulating release of key #17! killfocus at 24862 setfocus at 32363 keyup #45 at 32483 killfocus at 42017 And here is my xterm after the setfocus at 32363 ms: $ qwerqww 'w' is key #17. The only thing that could be happening is that xterm is outsmarting itself by doing something with its own killfocus. My preference is to let xterm users deal. We're used to it. :-) > > I doubt > > whether I can figure it out completely without a major time investment. > This is your baby now, and you're making good progress. Don't be > discouraged. These things take time to work out correctly. Without your help, I would probably lose patience. -John From shemgp@aup.edu.ph Wed Dec 5 16:00:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Wed, 05 Dec 2001 16:00:00 -0000 Subject: The error "Fatal server error: could not open default font 'fixed' References: <20011205172353.8989.qmail@web11206.mail.yahoo.com> Message-ID: <3C0EB518.9AC460BB@aup.edu.ph> first, there's and answer in the mailing list archives. you should try using binary instead of text while installing. mount /usr using mount -b Marius Ghita wrote: > > Hello! > I installed your software and when I want to start it > with startxwin.bat I get the following message: > > "Fatal server error: could not open default font > 'fixed'" > > What should I do? > > __________________________________________________ > Do You Yahoo!? > Buy the perfect holiday gifts at Yahoo! Shopping. > http://shopping.yahoo.com From shemgp@aup.edu.ph Wed Dec 5 16:01:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Wed, 05 Dec 2001 16:01:00 -0000 Subject: install error References: Message-ID: <3C0EB56A.BB809662@aup.edu.ph> how about putting bunzip2 (if you have it) in a directory in the PATH Nidhi Bhatia wrote: > > I am having problems Installing XFree86. > > When attempting to extract the extract.exe.bz2 archive using the following > command: > > bunzip2 extract.exe.bz2 > > the following error occurs: > > BASH: bunzip2: command not found > > I have followed the instructions in the user's guide and do not know how to > correct this. Should I redownload something again? > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From sarah.davis@etransmail2.com Wed Dec 5 20:50:00 2001 From: sarah.davis@etransmail2.com (Sarah Davis) Date: Wed, 05 Dec 2001 20:50:00 -0000 Subject: NEWS RELEASE: VersaCheck 2002 Message-ID: Subscriber verification requested for: cygwin-xfree@cygwin.com Good Afternoon! Your Email address has been submitted for inclusion into our FREE Email News Service. We provide News Release Information regarding productivity hardware and software available through major US Retail stores and select web sites. ********** PRESS & NEWS RELEASE ************** SAN DIEGO, CALIFORNIA, December 5, 2001 Effective immediately G7 Productivy Systems, Inc., a San Diego based publisher of productivity solutions, has made available new VersaCheck 2002 financial productivity software to its existing customers and new users. The new generation of significantly enhanced software titles offers a greatly improved user interface along with additional functionality in the areas: * creation of custom bankable checks for personal and business use (1), * comprehensive bank account and finance management, * bill payment and automatic scheduling of invoices (online or client based) * internet paper check processing, * built-in real-time credit card processing, * address book with payee/payor management * creation of check drafts (Home& Business Version only!) * financial reports * direct import and export of finacial data files from and to Quicken, Quickbooks, Money and other financial software (1) all checks created may be conveniently filled out on screen or by hand writing and are compatible with the major personal finance programs and accounting software. VersaCheck 2002 and many different styles of blank check paper are offered through computer retailers and nationwide superstores, such as CompUSA, Office Depot, Staples, Fry's Electronics, Micro Center and many others. Suggested retail prices, including an initial supply of 100 checks, are: $19.99 for the VersaCheck 2002 Personal BASIC, $29.99 for Personal GOLD, and $49.99 for the Home & Business version. Blank check paper is offered from $19.99 for 750 checks, which allow both personal and business users alike to take advantage of significant savings, up to 80%, when compared to equivalent offerings from banks and mail order check companies. Please click on the following link for further details http://www.g7ps.com ********************* Thank you very much. Regards, Sarah Davis Marketing / PR G7 Productivity Systems, Inc. sarah.davis@etransmail2.com 800-303-2620 To change your communication preference please click on: http://www.globalzon2k.com/scripts/mf_de.asp?e=cygwin-xfree@cygwin.com or simply reply to this Email with UNSUBSCRIBE in the subject line. From shemgp@aup.edu.ph Thu Dec 6 00:02:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Thu, 06 Dec 2001 00:02:00 -0000 Subject: [Fwd: Re: install error] Message-ID: <3C0F25F3.7E4928FA@aup.edu.ph> From: "Nidhi Bhatia" Thank you so much. I have successfully installed but cannot connect to a remote session or display a remote client. I am somehow missing cygwin's telnet and if I try a secure shell using ssh, i get command not found. >From: Shem >Reply-To: shemgp@aup.edu.ph >To: Nidhi Bhatia >CC: cygwin-xfree@xfree.cygwin.com >Subject: Re: install error >Date: Thu, 06 Dec 2001 08:01:46 +0800 > >how about putting bunzip2 (if you have it) in a directory in the PATH >Nidhi Bhatia wrote: From paul.daly@gf-x.com Thu Dec 6 04:15:00 2001 From: paul.daly@gf-x.com (Paul Daly (GF-X)) Date: Thu, 06 Dec 2001 04:15:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: All, Hope this gets through. I have been using cygwin/xfree86 for a while on both NT4 and Win2K and have been experiencing the problem of Alt-Tabbing between KDE and Windows apps and losing keyboard focus. Anyway I tried the solutions of hitting modifiers and nothing happened. So I tried turning Num Lock OFF - and guess what - I can now happily Alt-Tab at will with no loss of keyboard focus. This has helped several people in our office here, so hopefully it will help many others who read this list. Cheers, Paul. From ccrawford@analogic.com Thu Dec 6 06:47:00 2001 From: ccrawford@analogic.com (Crawford, Carl) Date: Thu, 06 Dec 2001 06:47:00 -0000 Subject: xview toolkit ported to cygwin Message-ID: does a port of the xview x11 toolkit exist for cygwin? thanks, --carl From huntharo@msu.edu Thu Dec 6 07:48:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 06 Dec 2001 07:48:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B19.0079B237.00@notes.intdata.com> Message-ID: John, > > > I suppose for this the solution would be to make winSendKeyEvent > > > do nothing if > > > its fDown already matches the array element > > > Nah, you can't do that because we sometimes call > winSendKeyEvent multiple > > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > > count. > > But I can do it when both are *false*. This goes over my earlier patch: Hmm... yes, that seems correct. Just test it for awhile to make sure it all works as expected. Harold From huntharo@msu.edu Thu Dec 6 07:51:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 06 Dec 2001 07:51:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: Message-ID: Paul, > Anyway I tried the solutions of hitting modifiers and nothing > happened. So I > tried turning Num Lock OFF - and guess what - I can now happily Alt-Tab at > will with no loss of keyboard focus. Huh... that is strange. I really have no idea why that is causing the problem to go away. "Somebody" should look into that one. Harold From flognat@flognat.myip.org Thu Dec 6 07:54:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Thu, 06 Dec 2001 07:54:00 -0000 Subject: xview toolkit ported to cygwin In-Reply-To: References: Message-ID: Do you mean the ancient SUN xview toolkit?? Probably not because I haven't seen any source to it.. /Andy / "Crawford, Carl" wrote: | does a port of the xview x11 toolkit exist for cygwin? | | thanks, | | --carl | -- The eye of the beholder rests on the beauty! From tangm@oslo.geco-prakla.slb.com Thu Dec 6 13:21:00 2001 From: tangm@oslo.geco-prakla.slb.com (Michael Tang) Date: Thu, 06 Dec 2001 13:21:00 -0000 Subject: TCL/TK Message-ID: <5.1.0.14.2.20011206221831.01ee5468@oslo.geco-prakla.slb.com> Hi, I am new to this CYGWIN and I am impressed by its functionality, almost similar to UNIX to a very high degree. Anyway, I have installed the TCL/TK 8.0 libraries on my machine. But when I do "tclsh" at the prompt, it says it couldn't find it. I did a search and found "cygtclsh80". I would like to know if this is the same as "tclsh" command? I see similar with c++ and g++. What the differences in them? Thanks and regards, Michael From JohanJvanWyk@eaton.com Thu Dec 6 14:00:00 2001 From: JohanJvanWyk@eaton.com (vanWyk, Johan J) Date: Thu, 06 Dec 2001 14:00:00 -0000 Subject: Cygwin 1.3.6 Message-ID: <4E32301CBBCBFA47B7B4F91DBE97B5ED02A7C5A5@pitpasmb06.ch.etn.com> I run the 1.3.6 release of Cygwin and tried to run the XFree86 X server and it complained that I do not have the right .dll. What do I do? Johan From epsteinm@noos.fr Thu Dec 6 14:03:00 2001 From: epsteinm@noos.fr (epstein monique) Date: Thu, 06 Dec 2001 14:03:00 -0000 Subject: working with windows XP? Message-ID: <5.1.0.14.2.20011206230306.00bcae90@mail.micronet.fr> Did anybody succeed to open a remote session from windows XP to a linux machine with redhat 7.1 I succeed only to get the grey box with the black cross but no login box. Any suggestions? Monique Epstein Paris From aszomor@pointer.hu Fri Dec 7 00:33:00 2001 From: aszomor@pointer.hu (Attila Szomor) Date: Fri, 07 Dec 2001 00:33:00 -0000 Subject: X Server Message-ID: <000601c17ef9$d5dfe060$a20110ac@pointer.hu> Hi All, I downloaded CigWin, but how can I get XFree for it ? Thanks, Attila. From epsteinm@noos.fr Fri Dec 7 01:24:00 2001 From: epsteinm@noos.fr (epstein monique) Date: Fri, 07 Dec 2001 01:24:00 -0000 Subject: cygwin font fixed not found Message-ID: <5.1.0.14.2.20011207101504.02db7250@mail.micronet.fr> Hi to shemgp@aup.edu.ph ! I saw your answer on the mailing list CYGWIN XFREE86 You answer to Marius Gita that "he should try using binary instead of text while installing" but the new installation gives only the possibility of choosing "default text file type : DOS or UNIX" So which one would be the right to choose? I had the same problem and I think it is linked to WINDOWS 2000 because I don't have that problem with XP. Monique Epstein Monique Epstein 06 85 43 05 00 From RBodack@sseg.de Fri Dec 7 02:27:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Fri, 07 Dec 2001 02:27:00 -0000 Subject: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532001@ssegadmin> Hi All, I tried to run icewm under win2K. While twm is working well, I only get the windows in the upper left corner under icewm, no menu, no window bar. Seems it is not running at all. I am using icewm-cygwin-1.0.9-2.tar.gz. Icewm is in the $PATH and I exchanged the xterm as described somewhere. Is there any other WM known to work under W2K? Any Ideas? R?diger Bodack From RBodack@sseg.de Fri Dec 7 02:39:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Fri, 07 Dec 2001 02:39:00 -0000 Subject: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532003@ssegadmin> > > What happens if you type icewm in the xterm you get popped up? > > /Andy Nothing. The task seems to run, gives no messages. I stopped it after 1 min and found it in the process list. But I cannot see any effect. Strange? From flognat@flognat.myip.org Fri Dec 7 02:48:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 07 Dec 2001 02:48:00 -0000 Subject: AW: icewm not starting on Win2K In-Reply-To: <540D22115D0CD311BC2E00A0246200EE01532003@ssegadmin> References: <540D22115D0CD311BC2E00A0246200EE01532003@ssegadmin> Message-ID: / R??diger Bodack wrote: | > | > What happens if you type icewm in the xterm you get popped up? | > | > /Andy | | Nothing. The task seems to run, gives no messages. I stopped it after 1 min | and found it in the process list. But I cannot see any effect. Strange? Hmm try twm in the same window.. To see if it is a general problem, or just icewm? You don't happen to have cygwin.dll's lying around and so on? Could it be that the icewm is compiled for old cygwin, and you have a new and modern? /Andy -- The eye of the beholder rests on the beauty! From RBodack@sseg.de Fri Dec 7 02:57:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Fri, 07 Dec 2001 02:57:00 -0000 Subject: AW: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532004@ssegadmin> > Hmm try twm in the same window.. To see if it is a general problem, or > just icewm? You don't happen to have cygwin.dll's lying around and so > on? twm is working from that shell window. > > Could it be that the icewm is compiled for old cygwin, and you have a > new and modern? Dont think so, couldn't find the version, but I installed it 2 weeks ago. I found remarks in the older icewm releasenotes that it is not working under w2k. Thanks for your help BTW. From Janos.Sebestyen@eth.ericsson.se Fri Dec 7 04:27:00 2001 From: Janos.Sebestyen@eth.ericsson.se (Janos Sebestyen (ETH)) Date: Fri, 07 Dec 2001 04:27:00 -0000 Subject: xdm Message-ID: Hi, My name is Janos and I am trying to use cygwin and Xfree under win2k, it is working fine, but I have a question! How can I use xdm and chooser, because it is allways said Only root wants to run xdm? So, I am an Administrator on my machine (uid=500) and there is no root on it, because it is a win2k. The /etc/passwd file is: Everyone:*:0:0:,S-1-1-0:: SYSTEM:*:18:18:,S-1-5-18:: Administrators:*:544:544:,S-1-5-32-544:: Administrator:unused_by_nt/2000/xp:500:513:U-3NJ1G00454FTP6C\Administrator,S-1-5-21-372014698-1648304418-1196229020-500:/home/Administrator:/bin/bash Guest:unused_by_nt/2000/xp:501:513:U-3NJ1G00454FTP6C\Guest,S-1-5-21-372014698-1648304418-1196229020-501:/home/Guest:/bin/bash My cygwin is 1.3.5-cygwin-1-3-5-2, Cygwin\Xfree86 is 4.1.0. Would you give me some good hints how can I configure and customise my Xfree for the best solution. Brgs, Janos From alexander.gottwald@informatik.tu-chemnitz.de Fri Dec 7 04:37:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 07 Dec 2001 04:37:00 -0000 Subject: xdm In-Reply-To: Message-ID: On Fri, 7 Dec 2001, Janos Sebestyen (ETH) wrote: > Hi, > > My name is Janos and I am trying to use cygwin and Xfree under win2k, it is working fine, but I have a question! > How can I use xdm and chooser, because it is allways said Only root wants to run xdm? There is no such user root on winnt. But there is a workaround. Start xdm with the option "-debug 1". This should allow you start it. But I don't know if the authentication via xdm works on windows. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From briangenisio@yahoo.com Fri Dec 7 04:47:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 07 Dec 2001 04:47:00 -0000 Subject: X Server In-Reply-To: <000601c17ef9$d5dfe060$a20110ac@pointer.hu> Message-ID: <20011207124722.80713.qmail@web20801.mail.yahoo.com> Go to xfree.cygwin.com. Right on the site, it tells you how to download it. There is even a user's guide, which holds your hand through the process, if you need some help. Brian --- Attila Szomor wrote: > Hi All, > > I downloaded CigWin, but how can I get XFree for it ? > > Thanks, > Attila. > __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From wilper-8@ludd.luth.se Fri Dec 7 05:27:00 2001 From: wilper-8@ludd.luth.se (Wilhelm Person) Date: Fri, 07 Dec 2001 05:27:00 -0000 Subject: Secure x-terminal Message-ID: It's already covered in the User's Guide, sort of. But I thought I'd share it with you anyway. I changed my startxwin.bat a bit to make it do a secure connection to a host with unix, and then I start a window-manager there. It makes the windows-box behave like a secure x-terminal, and I don't have to bother installing XDM on the remote machine. I have Win2k, but assume that it should work with other versions too: The tail of my startxwin.bat: --- REM REM Use the /B switch. This starts the specified process in the background; REM in other words, it does not cause a new Command Prompt window to be REM opened for each 'start' command. REM :USE-B-SWITCH REM Startup the X Server. start /B XWin -fullscreen -terminate start /B xterm -T "Login" -e ssh -C -X user@some.host.foo :END --- When run it goes fullscreen and starts an xterm which automatically runs ssh with X-forwarding and compression (I have fast computers, but a rather slow link). Once I have logged in I run a script that changes the keyboard layout and starts a window manager. ~/bin/cygwinup echo Please wait. xmodmap /etc/X11/xmodmap.se twm & /W +-------------------------------+ | Home: http://wilper.cjb.net | +-------------------------------+ From frank.hendrik@vdi.de Fri Dec 7 05:35:00 2001 From: frank.hendrik@vdi.de (Hendrik Frank) Date: Fri, 07 Dec 2001 05:35:00 -0000 Subject: bunzip2 - Where to locate =?iso-8859-1?q?utility=3F?= Message-ID: Hi Sylvain, I've got the same problem as Gary. Now, I've tried your tip, Sylvain, but my setup keeps ignoring my clicking-on-the-install-button. By now, I've no idea how to install bzip2 Hendrik Frank D-69115 Heidelberg Gary, using the setup.exe program, you must download and install the package bzip2. --- Gary Samuels a ??crit : > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the > xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract > utility. Where can I > locate this? > > Gary.. > > Gary Samuels > Team Leader - Unix Systems & DBA > mailto: gary.samuels@gbst.com > > Global Banking & Securities Transactions > 5 Cribb Street, Milton QLD 4064 Australia > P.O. BOX 1511, Milton QLD 4064 Australia > Telephone: 617 3331 5555 Fax: 617 3367 0181 > > GBST is a trademark of Star Systems Pty Ltd From jgilles@glmultimedia.com Fri Dec 7 08:13:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Fri, 07 Dec 2001 08:13:00 -0000 Subject: Another XDMCP problem Message-ID: Until this morning I had no problem to start Xfree using 'Xwin -query sun_ip -from my-ip', but now X stay black, with the wait cursor, no login window. On Solaris, I have the following error in /var/dt/Xerrors : Fri Dec 7 15:58:48 2001 error (pid 3893): Impossible d'initialiser l'??cran 172.25.135.11:0. Saisie proba ble du serveur. Sorry, the error message is in french, it means : "Can't initialize the display 172.25.135.11:0.". I don't know how to translate the second part, I even don't understand it in french... (172.25.135.11 is the IP of my Win2K). -- Julien Gilles From ddhuyvet@san.rr.com Fri Dec 7 09:22:00 2001 From: ddhuyvet@san.rr.com (David Dhuyvetter) Date: Fri, 07 Dec 2001 09:22:00 -0000 Subject: icewm not starting on Win2K Message-ID: <3C10FB1A.3030209@san.rr.com> R??diger: I built and run icewm-cygwin-1.0.9-2.tar.gz under W2K, so it should work. The specific versions on the machine I used to build it are: W2K SP 1 W2K XFree86 4.1.0(157) CYGWIN_NT-5.0 XXXXXXX 1.3.3(0.46/3/2) 2001-09-12 23:54 i686 unknown Are you trying to start icewm from startxwin.bat? See the following notes from the page where you downloaded icewm: * For some reason I can't launch IceWM from a .bat file. When I try I get the following: | 0 [main] icewm 2564 handle_exceptions: Exception: STATUS_ACCESS_VIOLATION 1198 [main] icewm 2564 open_stackdumpfile: Dumping stack trace to icewm.exe.stackdump | To get around this I launch everything from a shell script. I have a shortcut on my desktop with the following target: | C:\cygwin\bin\bash.exe --login /usr/X11R6/bin/startxwin.sh | Jirko Cassuben added the following: I think I found the reason, why IceWM doesn't start from the startxwin.bat. (That is: it does for me :-). IceWM needs the USER and HOME environment variables and they are not set by default on a windows system. I'd consider that a bug in IceWM, because there is no real guarantee that the variables are set on unix systems, either. At least that means it's easy to workaround the problem in XFree/Cygwin. Just set USER and HOME in the batchfile. Also: * Others have reported a problem with icewm.exe hanging on W2K systems during start. The problem appears to be with the default theme (Infadel2) on those systems. To work around this problem use a different theme, such as the win95 theme, when starting icewm, either the -t command line switch or a change in a preference file (see icewm-15.html for info) seems work. Also, if you want to launch xterm from the icewm menu, you need to download a patched xterm.exe from http://home.san.rr.com/dhuyvetter/david/CygwinXFree86.html Let me know if any of this helps. David From eyal@eyal.emu.id.au Fri Dec 7 17:43:00 2001 From: eyal@eyal.emu.id.au (Eyal Lebedinsky) Date: Fri, 07 Dec 2001 17:43:00 -0000 Subject: bunzip2 - Where to locate utility? References: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> Message-ID: <3C116C86.B552756F@eyal.emu.id.au> Gary Samuels wrote: > > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract utility. Where can I > locate this? Use 'bzip2 -d' to unzip '.bz2' files. -- Eyal Lebedinsky (eyal@eyal.emu.id.au) From ssharpe@iglide.net Sat Dec 8 11:13:00 2001 From: ssharpe@iglide.net (Scott Sharpe) Date: Sat, 08 Dec 2001 11:13:00 -0000 Subject: bunzip2 - Where to locate utility? References: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> <3C116C86.B552756F@eyal.emu.id.au> Message-ID: <3C126636.5070603@iglide.net> My last experience with cygwin I noted that bzip was not installed by default. You can rerun setup, then select view in the upper right corner of the select packages screen. When you get to bzip2 make sure you have a version listed. If no version is listed it is not installed . Just click the new column to get the version you want. then continue by selecting next. Hope this helps Scott Eyal Lebedinsky wrote: >Gary Samuels wrote: > >>To whom it may concern, >> >>I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't >>find the bunzip2 utility to uncompress the extract utility. Where can I >>locate this? >> > >Use 'bzip2 -d' to unzip '.bz2' files. > >-- >Eyal Lebedinsky (eyal@eyal.emu.id.au) > >. > From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 8 11:26:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 08 Dec 2001 11:26:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question(whe re to put new font path to get it before all others) In-Reply-To: <4B6D123ED7F0D311AD7B00508B656CB9044359DB@exchange.kyiv.internal.utel.com.ua> Message-ID: On Wed, 5 Dec 2001, Pidgornyy, Oleksandr wrote: > Hi there. > Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config > under unixes? Where does it live? No. There is no such configuration file. > The configuration file for FontServer (/etc/X11/fs/config) seems to > be not used at all. This is only used by xfs. > The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font > dir to font path but only for current X session. It does not store it > where it should have(???). You can use the fontserver and store the path configuration there. The X-Server is the started with the option -fp tcp/:7100. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 8 12:41:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 08 Dec 2001 12:41:00 -0000 Subject: New to-do item - configuration Message-ID: Hi, after several requests, we should add the following point to the todo-list: Configuration: Implementation of a static configuration. Either as file as in the Linux version Xfree86 or via the Windows registry. The configuration should contain these points: - Dimension and location of the window - Fontpath configuration - XKB configuration - Other options (3 Button emulation,...) The preferred format of the configuration file is the format of XF86Config used by other XFree86 X-servers. If a reuse of the configfile reader of XFree86 is not possible/ _very_ complicated I would not mind if we use a different format. The registry variant would require a configuration program which allows the user to adjust these values. Comments? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From welcome Sat Dec 8 20:24:00 2001 From: welcome (welcome) Date: Sat, 08 Dec 2001 20:24:00 -0000 Subject: Your New Account Info Message-ID: Your E-mail Address Removal/Deletion Instructions at the end of this email: We visited your site and thought the following might benefit you. Dear Advertiser: VnetFind.Com is currently achieving over 1,000,000 hits a month! We had been a meta search engine for quite sometime and just recently went to paid rankings (pay per click)! Most of our search terms are still available for only $.01! And with our Amazing Bonuses of up to 800% you could get highly targeted search engine traffic for as little as $.001 per unique visitor! You have nothing to lose and everything to gain! You pay only for traffic you receive NO OTHER FEES, NO MONTHLY MINIMUMS! Check out what VnetFind.Com has to offer! List your site now and VnetFind.Com will give you: Traffic - We deliver hundreds of thousands of searches every month. Targeting - Directly connect with specific audiences through custom titles and descriptions. Cost effectiveness - Pay when targeted customers click through to your site. Control - Choose how much to pay for each visitor. Easy account management - Get 24 hours a day, 7 days a week account access at Vnetfind.Com Free Money- VnetFind.Com will match your deposit with up to an 800% bonus! When you put in the promo code MPTSTAR YOU WILL get $10 free just for signing up plus the following bonuses on deposits! Deposit $10 USD into your account and receive a 100% Bonus ($20 in your account) Deposit $25 USD into your account and receive a 500% Bonus ($150 in your account) Deposit $50 USD into your account and receive a 600% Bonus ($350 in your account) Deposit $100 USD into your account and receive a 700% Bonus ($800 in your account) Deposit $200 USD into your account and receive a 800% Bonus($1800 in your account) Within minutes you can place your site in our top rated search engine and be receiving highly targeted traffic for only pennies a click. Here are the details: We are a bid-for-placement search engine. You bid a certain number of cents you are willing to pay to have people come to your site. The more you pay, the higher you appear in our search. The best part is that you only pay for traffic you receive ... there are no other fees! Register for an account it's easy and only takes a few minutes! Deposit funds into your VnetFind account via check order or by credit card. Select the keywords you wish to place your site under. For example, if you run a site that sells rare coins, you might choose the keywords "rare coins" or "shillings". Create a description of your site for the keywords you chose. Choose how much you wish to pay per click for your sites link. The more you are willing to pay, the higher you will appear in our search engine. You will only be charged for traffic you receive. If you are paying .01 cents per click and receive 8 unique clicks, your account will be debited .08 cents. If a visitor clicks on your entry multiple times in the same day, you will only be charged once. We have special systems in place to make sure that you are only charged for unique clicks and not overcharged. You can request any remaining funds be returned to you at any time and there are no membership fees to use our service! That's it! You will begin receiving highly targeted search engine traffic for as little as $.001 per visitor in no time! Remember this is a special offer and you MUST enter the promo code MPTSTAR to receive your bonuses! Thanks and Good Luck! Jennifer C Account Manager $$$$$$$$$$$$$$$$$$$-REMOVAL INSTRUCTION-$$$$$$$$$$ This message is sent in compliance of the new email Bill HR 1910. Under Bill HR 1910 passed by the 106th US Congress on May 24, 1999, this message cannot be considered SPAM as long as I include a valid return address and the way to be removed. ONCE AGAIN THIS IS NOT SPAM. PLEASE IF YOU WANT TO BE REMOVED SEND AN E-MAIL WITH "REMOVE" IN THE SUBJECT TO THE FOLLOWING ADDRESS: remove@cn-starnet.com From anders@fix.no Sun Dec 9 05:30:00 2001 From: anders@fix.no (Anders Nordby) Date: Sun, 09 Dec 2001 05:30:00 -0000 Subject: Pwm binaries Message-ID: <20011209132846.GA5982@totem.fix.no> Hello, I've made a tarball of pwm 1.0 for Cygwin 1.3.6/XFree86 4.1.0: http://anders.fix.no/test/pwm-1.0-cygwin1.3.6-xfree86-4.1.0-binaries.tar.bz2 Pwm is a much more usable window manager for X, IMHO. :-) Feel free to put it in the xfree/contrib dir on the mirrors. Thanks for great work with XFree86 for Cygwin guys! Cheers, -- Anders. From RBodack@sseg.de Mon Dec 10 07:50:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Mon, 10 Dec 2001 07:50:00 -0000 Subject: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532017@ssegadmin> David, thanks for your help. I changed the startxwin.bat to: start /B c:\apps\cygwin\bin\bash --login c:\apps\cygwin\usr\X11R6\bin\startxwin.sh This is a good idea in general, because it eliminates the maintenance for two files (.sh and .bat). I still have some trouble with changing the theme, but icewm is working. R?diger Bodack > From OPidgornyy@kyiv.utel.com.ua Mon Dec 10 23:11:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Mon, 10 Dec 2001 23:11:00 -0000 Subject: New to-do item - configuration Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359E3@exchange.kyiv.internal.utel.com.ua> I would suggest to make it as in the Linux if this is not more complicated than via registry. Arguments: the configuration will be in the same manner as everything rest otherwise configuration via registry would make the configuration process dissimilar. Sincerely, Alex -----Original Message----- From: Alexander Gottwald [mailto:Alexander.Gottwald@informatik.tu-chemnitz.de] Sent: Saturday, December 08, 2001 10:39 PM To: cygwin-xfree@cygwin.com Subject: New to-do item - configuration Hi, after several requests, we should add the following point to the todo-list: Configuration: Implementation of a static configuration. Either as file as in the Linux version Xfree86 or via the Windows registry. The configuration should contain these points: - Dimension and location of the window - Fontpath configuration - XKB configuration - Other options (3 Button emulation,...) The preferred format of the configuration file is the format of XF86Config used by other XFree86 X-servers. If a reuse of the configfile reader of XFree86 is not possible/ _very_ complicated I would not mind if we use a different format. The registry variant would require a configuration program which allows the user to adjust these values. Comments? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From market@now.net.cn Mon Dec 10 23:35:00 2001 From: market@now.net.cn (Today's Network) Date: Mon, 10 Dec 2001 23:35:00 -0000 Subject: ×¢²áÓòÃû¡¢ÐéÄâÖ÷»ú´óÓŻݣ¡Ëʹμ¶ÓòÃû£¬ËÍÉÌÓÃÓÊÏ䣬Ãâ·ÑÊÔÓÃ15 Message-ID: <20011211045459.6018.qmail@localhost.localdomain> ???????????????????????? ???????????? ????????????????(http://www.now.net.cn)????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????150M???????????????? (????????????????????????????????????????????15????!) ???????????????????? ????VDNS????????????????????????????100????/????????????????????????????????????????! ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????15????????????????????????????????????????????????????????????! ???????????????????????? ????????????????????????ASP????PHP ????JSP????PERL????CGI????????????????????????????????????????????300????????????????????????????????????????????????????????????????????????????????POP???????????????????????????? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????http://www.now.net.cn ????????????????????????????????????????????????????????????????????????????????????????????! From silveredge18@mediaone.net Tue Dec 11 02:19:00 2001 From: silveredge18@mediaone.net (Early Bird) Date: Tue, 11 Dec 2001 02:19:00 -0000 Subject: 2 Airfare vouchers for $49.95 Message-ID: Sign up today and receive two round trip airfare vouchers, open dated for 18 months! You will also receive a three month subscription. To learn more visit us at: http://www.earlybirdstockpicks.com From silveredge18@mediaone.net Tue Dec 11 02:19:00 2001 From: silveredge18@mediaone.net (Early Bird) Date: Tue, 11 Dec 2001 02:19:00 -0000 Subject: 2 Airfare vouchers for $49.95 Message-ID: Sign up today and receive two round trip airfare vouchers, open dated for 18 months! You will also receive a three month subscription. To learn more visit us at: http://www.earlybirdstockpicks.com From briangenisio@yahoo.com Tue Dec 11 03:37:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Tue, 11 Dec 2001 03:37:00 -0000 Subject: New to-do item - configuration In-Reply-To: <4B6D123ED7F0D311AD7B00508B656CB9044359E3@exchange.kyiv.internal.utel.com.ua> Message-ID: <20011211113602.10229.qmail@web20808.mail.yahoo.com> Though I do not know what the issues are with porting the configfile reader, it also seems to be the most portable solution. One of the things I like the most about the X server, is that it is so similar to the *nix ports out there. The auto-configurability obviously is not necessary, as with the settings that go along with it (refresh rates, etc) since it has a graphics library to sit on top of, so it may be a bit easier. A Registry solution would be extremely quick to implement, but you loose the instant familiarity. The very first thing I did when I downloaded the X server for the first time was go directly to the XF86Config file, and was confused to not find it. (This was before the fabulous documentation of course... Thanks Harold :)) But who am I to complain? I havent had a part in the development... only in some debugging. For that matter, I like it just the way it is :) Brian --- "Pidgornyy, Oleksandr" wrote: > I would suggest to make it as in the Linux if this is not more complicated > than via registry. > Arguments: the configuration will be in the same manner as everything rest > otherwise configuration via registry > would make the configuration process dissimilar. > > Sincerely, > Alex > > > > -----Original Message----- > From: Alexander Gottwald > [mailto:Alexander.Gottwald@informatik.tu-chemnitz.de] > Sent: Saturday, December 08, 2001 10:39 PM > To: cygwin-xfree@cygwin.com > Subject: New to-do item - configuration > > > Hi, > > after several requests, we should add the following point to the todo-list: > > Configuration: > Implementation of a static configuration. Either as file as in the > Linux version Xfree86 or via the Windows registry. > > The configuration should contain these points: > > - Dimension and location of the window > - Fontpath configuration > - XKB configuration > - Other options (3 Button emulation,...) > > The preferred format of the configuration file is the format of > XF86Config used by other XFree86 X-servers. > If a reuse of the configfile reader of XFree86 is not possible/ > _very_ complicated I would not mind if we use a different format. > > The registry variant would require a configuration program which > allows the user to adjust these values. > > Comments? > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From _rednun@gmavt.net Tue Dec 11 06:56:00 2001 From: _rednun@gmavt.net (Bob Boie) Date: Tue, 11 Dec 2001 06:56:00 -0000 Subject: No subject Message-ID: <565572a7069604df4f28420a5d61a8da@NO-ID-FOUND.mhonarc.org> From NotesSMTP@wink.com Tue Dec 11 07:00:00 2001 From: NotesSMTP@wink.com (NotesSMTP@wink.com) Date: Tue, 11 Dec 2001 07:00:00 -0000 Subject: Report to Recipient(s) Message-ID: Incident Information:- Originator: cygwin-xfree-owner@cygwin.com Recipients: cygwin-xfree@xfree.cygwin.com Subject: Re: WARNING: The file Pics.DOC.scr you received was infected with the W32/BadTrans@MM virus. The file attachment was not successfully cleaned. From jvermillard@technicoffice.fr Tue Dec 11 08:58:00 2001 From: jvermillard@technicoffice.fr (Julien Vermillard) Date: Tue, 11 Dec 2001 08:58:00 -0000 Subject: problem with xhost + Message-ID: <000601c18264$ee10bf60$4202a8c0@univers> Hi all I'm running Xwin32 on my Win98 comp local connection are working I ran : xhost + for permit remote access, but when a client try to connect : $ winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () AUDIT: Tue Dec 11 17:50:47 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2655 AUDIT: Tue Dec 11 17:50:47 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2656 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2657 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2658 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2659 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2660 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2661 Anyone got a tip ? Regards, Julien From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 11 09:06:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 11 Dec 2001 09:06:00 -0000 Subject: New to-do item - configuration In-Reply-To: <1A292AB81CCFD2118F590008C7A4EF2E13A70E0E@summer.bcsc.gov.bc.ca> Message-ID: On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > I think one ot he great things about cygwin is that it doesn't muck with the > registry. If you want to get rid of it just delete it. Although who would > want to get rid of it I have know idea. I'd like to see that tradition > carry on. Thanks for a great product. Agreed. I think it's a clear vote against the registry. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From jvermillard@technicoffice.fr Tue Dec 11 09:19:00 2001 From: jvermillard@technicoffice.fr (Julien Vermillard) Date: Tue, 11 Dec 2001 09:19:00 -0000 Subject: xhost problem : Message-ID: <000801c18267$e343d380$4202a8c0@univers> Hi (again), a bit more about my xhost problem : $ xhost access control enabled, only authorized clients can connect INET:localhost INET:jvd.univers INET:JVD LOCAL: jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- ------- $ xhost + access control disabled, clients can connect from any host jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- -------- Then xhost again for verify : $ xhost access control enabled, only authorized clients can connect INET:localhost INET:jvd.univers INET:JVD LOCAL: jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- --- Apparently xhost is not writting the configuration :( Regards, Julien From Sepehr.Ramezani@ensem.inpl-nancy.fr Tue Dec 11 11:48:00 2001 From: Sepehr.Ramezani@ensem.inpl-nancy.fr (Sepehr Ramezani) Date: Tue, 11 Dec 2001 11:48:00 -0000 Subject: keyborad Message-ID: <4.2.0.58.20011211204505.00c05460@pop3.norton.antivirus> Hi, I would like to configure my French keyboard, how I must do it? ---------------------------------------------------------------------------- Sepehr Ramezani Laboratoire d'Energ?tique et de M?canique Th?orique et Appliqu?e (L.E.M.T.A.), C.N.R.S. - I.N.P.L. 2, avenue de la for?t de Haye, B. P. 160 54504 VANDOEUVRE CEDEX - FRANCE TEL : 03 83 59 57 12 Email: sramezan@ensem.inpl-nancy.fr ---------------------------------------------------------------------------- From david.w.dawson@lmco.com Tue Dec 11 11:49:00 2001 From: david.w.dawson@lmco.com (Dawson, David W) Date: Tue, 11 Dec 2001 11:49:00 -0000 Subject: xhost problem : Message-ID: <0C73AA5F720CD311AC2A0008C7DBA9B403BDF5D5@emss09m13.ems.lmco.com> This may be of help... Did you know (or: Did you realize) that the X-Server performs a reset when the last client closes it's connection? The repetition of the startup messages ("winDetect...") seems to indicate that the server is restarting. IF there are no other X-clients running (like a x-term or window manager) then when the xhost program ends, the X-Serer resets and the authorizations are lost. If you are trying to set up permissions in your startxwin script, you need to re-arrange your client programs. If you are trying to setup permissions for an XDM session, you need to: a) use xhost on the remote machine, b) use the -ac parameter on the XWin command, or c) use the $HOME/.Xauthority file Good luck, -D. --------------------- David Dawson david.w.dawson@lmco.com 703-367-3885 > -----Original Message----- > From: Julien Vermillard [SMTP:jvermillard@technicoffice.fr] > Sent: Tuesday, December 11, 2001 12:19 PM > To: cygwin-xfree@xfree.cygwin.com > Subject: xhost problem : > > Hi (again), > > a bit more about my xhost problem : > > > $ xhost > access control enabled, only authorized clients can connect > INET:localhost > INET:jvd.univers > INET:JVD > LOCAL: > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > -------------------------------------------------------------------------- > -- > ------- > > $ xhost + > access control disabled, clients can connect from any host > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > > -------------------------------------------------------------------------- > -- > -------- > Then xhost again for verify : > > $ xhost > access control enabled, only authorized clients can connect > INET:localhost > INET:jvd.univers > INET:JVD > LOCAL: > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > -------------------------------------------------------------------------- > -- > --- > > Apparently xhost is not writting the configuration :( > > > Regards, > > Julien From bzhang@convergentnet.com Tue Dec 11 15:44:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Tue, 11 Dec 2001 15:44:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: Hello, everyone, I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine as a standalone X-server. However, I couldn't get XDM to work with my Solaris 2.8. The root window is opened, but it hangs there. It looks like some kind of infinite loop (CPU ustilization on my PC goes 100% for a very long time), but Alt-F4 still works. Has anyone experienced this before? Does anyone has solutions to it? Thanks, Bo Zhang From ecom@my.tramonline.net Tue Dec 11 15:59:00 2001 From: ecom@my.tramonline.net (info) Date: Tue, 11 Dec 2001 15:59:00 -0000 Subject: =?ISO-2022-JP?B?GyRCJDREczdIJE43bxsoQg==?= Message-ID: <200109200058.JAA03614@smtp1.docono.nejp> ???????????? ?????????????????? ????????????????1000?/??? ????????????1O??/?????? ?????? ?????3000??????????????? ----------------------------------------------------- ???????????????????? ????????6000???????? ?????1000????????? ?????????????????????????????? ????????????????????? ????????????????? ????????? http://walk.to/career/ planin@bigfoot.com From john.turner@pobox.com Tue Dec 11 21:22:00 2001 From: john.turner@pobox.com (John A. Turner) Date: Tue, 11 Dec 2001 21:22:00 -0000 Subject: New to-do item - configuration References: Message-ID: <3C16E999.2B0F056D@pobox.com> Alexander Gottwald wrote: > > On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > > I think one ot he great things about cygwin is that it doesn't muck with the > > registry. If you want to get rid of it just delete it. Although who would > > want to get rid of it I have know idea. I'd like to see that tradition > > carry on. Thanks for a great product. > > Agreed. I think it's a clear vote against the registry. uh, actually cygwin does use the registry - mount info is stored there -John Turner From jgilles@glmultimedia.com Tue Dec 11 23:40:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 11 Dec 2001 23:40:00 -0000 Subject: Help on XDM with Solaris Host In-Reply-To: ("Zhang, Bo"'s message of "Tue, 11 Dec 2001 18:37:11 -0500") References: Message-ID: "Zhang, Bo" writes: > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? Yes, I think I have the same problem, look in the /usr/dt/Xerrors file (on the Sun workstation), you should have an error message "Server should be grabbed". Sorry, I have no solution. But I think it's related to cygwin/Xfree, not a bad parameter on the sun side. -- Julien Gilles From jgilles@glmultimedia.com Tue Dec 11 23:41:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 11 Dec 2001 23:41:00 -0000 Subject: Help on XDM with Solaris Host In-Reply-To: ("Zhang, Bo"'s message of "Tue, 11 Dec 2001 18:37:11 -0500") References: Message-ID: "Zhang, Bo" writes: > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? Shouldn't be better/easier/natural to use an /etc/fstab file to declare all mount points ? -- Julien Gilles From briangenisio@yahoo.com Wed Dec 12 03:27:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Wed, 12 Dec 2001 03:27:00 -0000 Subject: New to-do item - configuration In-Reply-To: <3C16E999.2B0F056D@pobox.com> Message-ID: <20011212112551.66228.qmail@web20809.mail.yahoo.com> --- "John A. Turner" wrote: > Alexander Gottwald wrote: > > > > On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > > > > I think one ot he great things about cygwin is that it doesn't muck with > the > > > registry. If you want to get rid of it just delete it. Although who > would > > > want to get rid of it I have know idea. I'd like to see that tradition > > > carry on. Thanks for a great product. > > > > Agreed. I think it's a clear vote against the registry. > > uh, actually cygwin does use the registry - mount info is stored there > > -John Turner Very True, but Xfree/Cygwin does not... It should probably stay that way :). The way cygwin uses the registry for mounts makes it less flexible. For instance, it is not easy to maintain multiple installs of Cygwin for this reason. I would hate to have it that way for XFree as well... development and debugging would be a bear. I OFTEN run multiple XFree servers with different configurations at the same time. A relative config file would be much more flexible. Brian __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From armin-ml@hartinger.ws Wed Dec 12 05:10:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Wed, 12 Dec 2001 05:10:00 -0000 Subject: get rid of dos window? Message-ID: <1008162540.1760.0.camel@linus.uk.insight.com> Hello all, I've been using Cygwin/XFree86 for myself for a while now and I'm quite happy. Great work! However, I'm planning on migrating my kids and wife to using Linux on an Xserver on their Windoze-machines (they play games, so no way around that really) for all their internet activity. IE might still be installed, hard to get rid of it, but the individual machines will not be able to connect to the outside internet. Anyway, to the point: I want to just throw a batch-file into the windows-startup folder, which starts up the X-server and subsequently, their Gnome-desktop starts up automatically. I'm almost there, but is there no way to get rid of the DOS-window which accompanies the X-server application? I've looked around and asked but ppl seem to think that when an app sends output to STDOUT (for lack of a better term atm), the DOS-window will stick around. Any way known to get rid of it? Sure, it's nit-picky, but I want to make the setup as newbie-friendly as possible. After all, it's already hard enough to sell them on the new setup as it is ... -Armin From RBodack@sseg.de Wed Dec 12 09:11:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Wed, 12 Dec 2001 09:11:00 -0000 Subject: md5sum and xauth Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202B@ssegadmin> Hi all, I am trying to create a magic cookie for .Xauthority, using this nice command line I found somewhere: dd if=/dev/urandom count=1|md5sum|sed -e 's/^/add :0 . /'|xauth -q It seems that the md5sum shows unexpected behavior on my W2K. md5sum always gives something like this: f3f7d6844351a99aaeb44751037112ad *- The *- seems to be strange. Am I am doing a stupid mistake? Thanks for helping, R?diger From andrewmcrae@yahoo.com Wed Dec 12 09:28:00 2001 From: andrewmcrae@yahoo.com (=?iso-8859-1?q?Andrew=20McRae?=) Date: Wed, 12 Dec 2001 09:28:00 -0000 Subject: get rid of dos window? Message-ID: <20011212172728.80646.qmail@web10903.mail.yahoo.com> Armin Hartinger wrote: > Anyway, to the point: I want to just throw a > batch-file into the windows-startup folder, > which starts up the X-server and subsequently, > their Gnome-desktop starts up automatically. > I'm almost there, but is there no way to get > rid of the DOS-window which accompanies the > X-server application? For what it's worth, I find the following works very well indeed for me. Some small variant of it will probably solve your problem.(I'm using the Test53 server, but I would expect this to work with any version.) 1) Write a shell script that redirects stdin/stdout/stderr before starting the X server in the background. For example, I'm using the following (you'll want different arguments to the server): #!/bin/bash exec 0< /dev/null exec 1> ~/.xdmcp-errors exec 2>& 1 X :0 -screen 0 1024 768 -xkbmap gb -nowinkill -broadcast -once & 2) Run that shell script in the background from a suitable Windows shortcut. I run the above from a "run minimized" shortcut whose target is: C:\cygwin\bin\bash.exe --login -c "~/bin/start-xdmcp&" (where "~/bin/start-xdmcp" is the POSIX path of the shell script). The DOS window appears only for as long as it takes bash to start up and fork off the background process, and because it's minimized, I usually don't even notice it. (I use a similar shortcut on the Windows taskbar to launch rxvt -- no ugly console windows for me!) 3) I have found that this (sometimes?) does not work when the CYGWIN environment variable includes "tty". (I think I sort of understand why, but I haven't looked at it carefully.) So I use CYGWIN="binmode ntsec". Regards, Andrew. ===== Andrew McRae __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com From alexander.gottwald@informatik.tu-chemnitz.de Wed Dec 12 09:33:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 12 Dec 2001 09:33:00 -0000 Subject: md5sum and xauth In-Reply-To: <540D22115D0CD311BC2E00A0246200EE0153202B@ssegadmin> Message-ID: On Wed, 12 Dec 2001, R?diger Bodack wrote: > > Hi all, > > I am trying to create a magic cookie for .Xauthority, using this nice > command line I found somewhere: > dd if=/dev/urandom count=1|md5sum|sed -e 's/^/add :0 . /'|xauth -q > > It seems that the md5sum shows unexpected behavior on my W2K. md5sum always > gives something like this: > f3f7d6844351a99aaeb44751037112ad *- > The *- seems to be strange. Am I am doing a stupid mistake? md5sum --help: The sums are computed as described in RFC 1321. When checking, the input should be a former output of this program. The default mode is to print a line with checksum, a character indicating type (`*' for binary, ` ' for Text), and name for each FILE. This means md5sum read the file - (stdin) in binary mode. Try dd if=/dev/urandom count=1|md5sum|cut -f1 -d\ |sed [...skipped] bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From armin-ml@hartinger.ws Wed Dec 12 09:46:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Wed, 12 Dec 2001 09:46:00 -0000 Subject: get rid of dos window? In-Reply-To: <20011212172728.80646.qmail@web10903.mail.yahoo.com> References: <20011212172728.80646.qmail@web10903.mail.yahoo.com> Message-ID: <1008179086.3156.0.camel@linus.uk.insight.com> I had this reply to my posting (see below). I'm using this utility right now and it works very smoothly ... actually, it runs so good it doesn't wanna go away! :) -Armin From: Plamen Alexandrov To: Armin Hartinger Subject: Re: get rid of dos window? Date: 12 Dec 2001 15:41:24 +0200 ----- Original Message ----- From: "Armin Hartinger" To: Sent: Wednesday, December 12, 2001 3:08 PM Subject: get rid of dos window? > Hello all, > > I've been using Cygwin/XFree86 for myself for a while now and I'm quite > happy. Great work! However, I'm planning on migrating my kids and wife > to using Linux on an Xserver on their Windoze-machines (they play games, > so no way around that really) for all their internet activity. IE might > still be installed, hard to get rid of it, but the individual machines > will not be able to connect to the outside internet. > > Anyway, to the point: I want to just throw a batch-file into the > windows-startup folder, which starts up the X-server and subsequently, > their Gnome-desktop starts up automatically. I'm almost there, but is > there no way to get rid of the DOS-window which accompanies the X-server > application? I've looked around and asked but ppl seem to think that > when an app sends output to STDOUT (for lack of a better term atm), the > DOS-window will stick around. > > Any way known to get rid of it? > > Sure, it's nit-picky, but I want to make the setup as newbie-friendly as > possible. After all, it's already hard enough to sell them on the new > setup as it is ... > > -Armin > > Free Utility: Quiet The archives of Joeware.Net have a number of intriguing Windows 2000 and Windows XP utilities, but one that caught my eye is a little program called Quiet (http://home.earthlink.net/~joewarenet/win32/zips/Quiet.zip). The idea is simple: you use Quiet to run a program in such a way that the program doesn't show up on the task bar, but will appear in Task Manager (or any other app that you use to enumerate processes). Obviously, logging off will kill any processes spawned through Quiet. On Wed, 2001-12-12 at 17:27, Andrew McRae wrote: > Armin Hartinger wrote: > > Anyway, to the point: I want to just throw a > > batch-file into the windows-startup folder, > > which starts up the X-server and subsequently, > > their Gnome-desktop starts up automatically. > > I'm almost there, but is there no way to get > > rid of the DOS-window which accompanies the > > X-server application? > > For what it's worth, I find the following works very well indeed for > me. Some small variant of it will probably solve your problem.(I'm > using the Test53 server, but I would expect this to work with any > version.) > > 1) Write a shell script that redirects stdin/stdout/stderr before > starting the X server in the background. For example, I'm using the > following (you'll want different arguments to > the server): > > #!/bin/bash > exec 0< /dev/null > exec 1> ~/.xdmcp-errors > exec 2>& 1 > X :0 -screen 0 1024 768 -xkbmap gb -nowinkill -broadcast -once & > > 2) Run that shell script in the background from a suitable Windows > shortcut. I run the above from a "run minimized" shortcut whose > target is: > > C:\cygwin\bin\bash.exe --login -c "~/bin/start-xdmcp&" > > (where "~/bin/start-xdmcp" is the POSIX path of the shell script). > > The DOS window appears only for as long as it takes bash to start up > and fork off the background process, and because it's minimized, I > usually don't even notice it. (I use a similar shortcut on the > Windows taskbar to launch rxvt -- no ugly console windows for me!) > > 3) I have found that this (sometimes?) does not work when the CYGWIN > environment variable includes "tty". (I think I sort of understand > why, but I haven't looked at it carefully.) > So I use CYGWIN="binmode ntsec". > > Regards, > Andrew. > > > ===== > Andrew McRae > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > From x-odus@iname.com Wed Dec 12 09:52:00 2001 From: x-odus@iname.com (Psyon) Date: Wed, 12 Dec 2001 09:52:00 -0000 Subject: libw11: make x windows programs run nativly. Message-ID: <3C179940.5040000@iname.com> http://www.sf.net/projects/libw11 I just wanted to let people know about the library I am working on. My goal is to make a library that is 100% compatible with libX11.dll but not require an X server. My work is still in the early stages, but many of the example programs that are distributed with the QT widgets are beginning to work. Please let me know what you think of the idea, and if any wishes to help, let me know. --Don Becker From huntharo@msu.edu Wed Dec 12 10:03:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 10:03:00 -0000 Subject: New to-do item - configuration Message-ID: Let me step in here and tell you what I think. I think, no, I know, that the configuration feature will never get implemented unless I do it myself. So, I'll just do it however I want to when that time comes, if ever. What do you think about that? Harold From RBodack@sseg.de Wed Dec 12 10:04:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Wed, 12 Dec 2001 10:04:00 -0000 Subject: AW: md5sum and xauth Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202C@ssegadmin> Thanks and sorry, I indeed should have found that out by myself. R?diger > Try dd if=/dev/urandom count=1|md5sum|cut -f1 -d\ |sed [...skipped] > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > From RBodack@sseg.de Wed Dec 12 10:13:00 2001 From: RBodack@sseg.de (=?iso-8859-1?Q?R=FCdiger_Bodack?=) Date: Wed, 12 Dec 2001 10:13:00 -0000 Subject: AW: libw11: make x windows programs run nativly. Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202D@ssegadmin> Don, does this mean, that all X-applications will appear in a Windows-window like the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk C. R?diger > > http://www.sf.net/projects/libw11 > > I just wanted to let people know about the library I am > working on. My > goal is to make a library that is 100% compatible with > libX11.dll but > not require an X server. My work is still in the early > stages, but many > of the example programs that are distributed with the QT widgets are > beginning to work. > > Please let me know what you think of the idea, and if any wishes to > help, let me know. > > --Don Becker > From huntharo@msu.edu Wed Dec 12 16:58:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 16:58:00 -0000 Subject: Care to help your fearless programmer? Message-ID: Well, I have to break down and get a part time job to pay off an engagement ring and to pay for car repairs. I'm currently in college at Michigan State University in East Lansing, MI and I'm looking for some part-time work. Working remotely, and/or on contracts doesn't bother me. If you have any leads for me, please contact me privately, as I don't wish to abuse the list anymore than I currently am. Thanks in advance for any leads/offers, Harold From huntharo@msu.edu Wed Dec 12 19:20:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 19:20:00 -0000 Subject: [ANNOUNCEMENT] Cygwin/XFree86 Documentation 0.9.5 Message-ID: Links: I just posted release 0.9.5 to the documentation development page: http://xfree86.cygwin.com/devel/documentation/ Documentation, formatted, direct links: Contributor's Guide http://xfree86.cygwin.com/docs/cg User's Guide http://xfree86.cygwin.com/docs/ug/ FAQ http://xfree86.cygwin.com/docs/faq/ Documentation source releases are now available via the sources.redhat.com ftp mirror network (http://cygwin.com/mirrors.html) in the pub/cygwin/xfree/devel/documentation/ directory. You may wish to note the desired filename in the links below, then download from your closest mirror (http://cygwin.com/mirrors.html). Documentation source, direct link: http://www.msu.edu/~huntharo/xwin/docs/cygwin-xfree-doc-0.9.5.tar.gz (272 KiB) Changes: 1) FAQ - Solaris XDMCP bit depth question. 2) FAQ - Xinstall.sh erroneously requesting Xmod.tgz< 3) FAQ - Give each question an id to generate a static URL for each question. Enjoy, Harold From pinaar@austin.rr.com Wed Dec 12 20:57:00 2001 From: pinaar@austin.rr.com (Art) Date: Wed, 12 Dec 2001 20:57:00 -0000 Subject: FW: source code link to xc-4-src - Cygwin/Xfree is broken Message-ID: -----Original Message----- From: Art [mailto:pinaar@austin.rr.com] Sent: Wednesday, December 12, 2001 10:56 PM To: cygwin@cygwin.com Subject: source code link to xc-4-src - Cygwin/Xfree is broken Hi! This link is broken on your Cygwin/Xfree web page: href="ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src">source code. Is the source code available otherwise? I'll look in the mailing list and email it if I don't find an answer there. Thanks & Regards, Art From huntharo@msu.edu Wed Dec 12 22:30:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 22:30:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken Message-ID: > This link is broken on your Cygwin/Xfree web page: > href="ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src";>source > code. Fixed. Forgot that one. Look at the home page for the updates: http://xfree86.cygwin.com/ Thanks for the notice, Harold From OPidgornyy@kyiv.utel.com.ua Thu Dec 13 00:32:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Thu, 13 Dec 2001 00:32:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question (whe re to put new font path to get it before all others) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359EC@exchange.kyiv.internal.utel.com.ua> Thnaks for the answer. But... I started X font server by xfs -config /etc/X11/fs/config The answer was: "xfs notice: listening on port 7100" Then I tried to start X-Server as xwin -fp tcp/my_host_name:7100 and got the next: "Could not init font path element tcp/my_host_name:7100, removing from list! Fatal server error: could not open default font 'fixed' [1]- Segmentation fault (core dumped) xfs" Actually having looked through the usage pages of the XWin I did not find any option of using arguments for the X font server when starting XWin. -----Original Message----- From: Alexander Gottwald [mailto:Alexander.Gottwald@informatik.tu-chemnitz.de] Sent: Saturday, December 08, 2001 8:33 PM Cc: 'cygwin-xfree@xfree86.cygwin.com' Subject: Re: Cygwin Xfree configuration/ FontServer Configuration question(whe re to put new font path to get it before all others) On Wed, 5 Dec 2001, Pidgornyy, Oleksandr wrote: > Hi there. > Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config > under unixes? Where does it live? No. There is no such configuration file. > The configuration file for FontServer (/etc/X11/fs/config) seems to > be not used at all. This is only used by xfs. > The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font > dir to font path but only for current X session. It does not store it > where it should have(???). You can use the fontserver and store the path configuration there. The X-Server is the started with the option -fp tcp/:7100. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 02:08:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 02:08:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Wed, 12 Dec 2001, Harold Hunt wrote: > Let me step in here and tell you what I think. I think, no, I know, that > the configuration feature will never get implemented unless I do it myself. Hey, I wanted to draw a closer look on it around christmas. > So, I'll just do it however I want to when that time comes, if ever. What > do you think about that? Ok, you took a real close look to the DIX layer and I guess you know where to hook in to set the configuration parameters. But if I find some time I'll start implementing some parts. Most important is that that we make clear waht we want. There is no need building something that needs to be modified or even rebuild later. I advise you continue with the GDI engine and I will build the configuration engine. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 02:13:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 02:13:00 -0000 Subject: [Fwd: XDMCP "No valid address" error...] In-Reply-To: <3C17E9E4.907BCF4A@noaa.gov> Message-ID: On Wed, 12 Dec 2001, Arthur Taylor wrote: > I wasn't sure how to put this on the cygwin-xfree mailing list, but I > noticed that you were talking about an error back in Oct 9, 2001, which > I am now getting... > > I have cygwin on a Win2k machine using token-ring. Its a problem with the socket ioctl in cygwin with token ring. > I try: > ./XWin -querry -from > and I get: > > Fatal server error: > XDMCP fatal error: Session declined No valid address This need to be fixed in cygwin1.dll bye ago FUp to cygwin@cygwin.com -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From huntharo@msu.edu Thu Dec 13 05:28:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 05:28:00 -0000 Subject: New to-do item - configuration Message-ID: Alexander, > I advise you continue with the GDI engine and I will build the configuration > engine. Thanks for taking that one. I'll tell you now that I don't really like the idea of using the XF86Config file, as it wasn't really suited to our needs (we don't have monitors with different capabilities, etc.) so I think a lot of changes will need to be made to the config file reader and to the list of options available. I'm not sure that that is the best way to approach things. I'm leaving this up to you, but I must say that I really prefer the registry approach as it is very simple. There could be a simple "configuration profile" mechanism where you would pass "-profile 1" or "-profile my_profile_name" as the only command line parameter and that would load the specified parameters from the registry. Just an idea... Also, don't forget that command line parameters always override the configuration. In fact, just ignore the configuration if any command line parameters are specified. Have fun, Harold From robert.collins@itdomain.com.au Thu Dec 13 05:33:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Thu, 13 Dec 2001 05:33:00 -0000 Subject: New to-do item - configuration References: Message-ID: <09a801c183da$b0f092f0$0200a8c0@lifelesswks> ----- Original Message ----- From: "Harold Hunt" > > I'm leaving this up to you, but I must say that I really prefer the registry > approach as it is very simple. There could be a simple "configuration > profile" mechanism where you would pass "-profile 1" or "-profile > my_profile_name" as the only command line parameter and that would load the > specified parameters from the registry. Just an idea... Just my 2c: Using a file has some benefits: 1) configurations running off a network share don't require machine alterations to change the setup. (imagine a student lab). 2) There are more tools available to script changes. 3) No registry import is needed for distributed packages (again, thinking labs or corporates, not cygwin net release). As a data point. Earnie has created a variant of cygwin with a mount table on disk, for (as I understand it) similar reasons to those above. Secondly, using the current X config reader could be done quite easily by having the video driver as Win32 override the modelines to what windows reports. Again, just my 2c, as I'm not planning helping implement this feel free to ignore me :}. Rob From j.kunkis@aixplain.de Thu Dec 13 06:46:00 2001 From: j.kunkis@aixplain.de (Jan Kunkis) Date: Thu, 13 Dec 2001 06:46:00 -0000 Subject: Bug in xeyes? Message-ID: <0112131545330B.01121@muenchen> Hello, since an Cygwin / Xfree Update in about August, the program "xeyes" seems to have a bug. The right eye hasn't a pupil, and the left eye is very strange. The pupil is OK only in a small range. The pupil is mostly not visible, and sometimes a white pupil occurs on the inner left side of the eye... Possibly this is only a small bug and you can fix it (if you have time) :-) With best Regards Jan From bzhang@convergentnet.com Thu Dec 13 07:07:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Thu, 13 Dec 2001 07:07:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: I found in the Cygwin/Xfree86 FAQ there is a similar issue, which was supposed to have been solved by installing the latest Solaris patches. I did install all the recommended patches. And my XWin still can't come up with XDMCP. I got the following error messages after XWin hang for a long time and timed-out: winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - Returning, supported engines 0000001b winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 970 r 1274 l 0 b 970 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 32 winCreateDefColormap () - Deferring to fbCreateDefColormap () AUDIT: Wed Dec 12 16:50:25 2001: 255 XWin: client 1 rejected from IP 172.16.33.210 port 33748 Auth name: MIT-MAGIC-COOKIE-1 ID: -1 XDM: too many keepalive retransmissions, declaring session dead Can anyone help me out? Thanks, Bo > -----Original Message----- > From: Zhang, Bo > Sent: Tuesday, December 11, 2001 6:37 PM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? > > Thanks, > > Bo Zhang From pinaar@austin.rr.com Thu Dec 13 07:09:00 2001 From: pinaar@austin.rr.com (Art) Date: Thu, 13 Dec 2001 07:09:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: Message-ID: > -----Original Message----- > From: Harold Hunt [mailto:huntharo@msu.edu] > Sent: Thursday, December 13, 2001 12:30 AM > To: pinaar@austin.rr.com > Cc: cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > This link is broken on your Cygwin/Xfree web page: > > > href="ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src";>source > > code. > > Fixed. Forgot that one. Look at the home page for the updates: > > http://xfree86.cygwin.com/ > > Thanks for the notice, Thanks, Harold. I downloaded the xfree 4.1.0 source code, which, according to some messages in the "mailing-list" archive can build Cygwin/Xfree. Art From lhall@rfk.com Thu Dec 13 07:13:00 2001 From: lhall@rfk.com (Larry Hall (RFK Partners, Inc)) Date: Thu, 13 Dec 2001 07:13:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: Message-ID: <4.3.1.2.20011213100040.024e54f8@pop.ma.ultranet.com> At 11:55 PM 12/12/2001, Art wrote: >Hi! > >This link is broken on your Cygwin/Xfree web page: > > href="ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src">source >code. > >Is the source code available otherwise? >I'll look in the mailing list and email it if I don't find >an answer there. > > >Thanks & Regards, Please direct questions about Cygwin's XFree implementation to the XFree list. I've forwarded this message for you. In terms of the availability of software from particular mirrors, each site maintainer is responsible for their own mirror. If there is something missing, you'll want to contact that site to determine why it's missing. Obviously, if the maintainer has opted to no longer mirror a particular software set, communicating the fact that this site is now a dead link to those who link to it is a "Good Thing" (tm). ;-) Larry Hall lhall@rfk.com RFK Partners, Inc. http://www.rfk.com 838 Washington Street (508) 893-9779 - RFK Office Holliston, MA 01746 (508) 893-9889 - FAX From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 07:13:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 07:13:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Thu, 13 Dec 2001, Harold Hunt wrote: > I'll tell you now that I don't really like the idea of using the XF86Config > file, as it wasn't really suited to our needs (we don't have monitors with > different capabilities, etc.) so I think a lot of changes will need to be > made to the config file reader and to the list of options available. I'm > not sure that that is the best way to approach things. The config file reader from xfree86 is heavily integrated into the common/xfree86 tree. They use tons of includes and I think it's more work to get it compiling without the common/xfree86 tree than to implement a new one. I'll make the config file as close as possible to XF86Config to give users from Linux and other Unices a similar environment. > I'm leaving this up to you, but I must say that I really prefer the registry > approach as it is very simple. There could be a simple "configuration > profile" mechanism where you would pass "-profile 1" or "-profile > my_profile_name" as the only command line parameter and that would load the > specified parameters from the registry. Just an idea... It's as easy with config files. And as others have stated, config files can be easily modified, removed and backuped. > Also, don't forget that command line parameters always override the > configuration. In fact, just ignore the configuration if any command line > parameters are specified. I'll check what XFree86 does and use that method of discarding preset configurations. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From huntharo@msu.edu Thu Dec 13 09:33:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:33:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: Message-ID: For complete build instructions, see the Contributor's Guide. I thought that one would be kind of hard to miss... but, I guess not. http://xfree86.cygwin.com/docs/cg/ Harold > -----Original Message----- > From: Art [mailto:pinaar@austin.rr.com] > Sent: Thursday, December 13, 2001 10:09 AM > To: Harold Hunt > Cc: cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > -----Original Message----- > > From: Harold Hunt [mailto:huntharo@msu.edu] > > Sent: Thursday, December 13, 2001 12:30 AM > > To: pinaar@austin.rr.com > > Cc: cygx > > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > > > > This link is broken on your Cygwin/Xfree web page: > > > > > > href="ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src";>source > > > code. > > > > Fixed. Forgot that one. Look at the home page for the updates: > > > > http://xfree86.cygwin.com/ > > > > Thanks for the notice, > > Thanks, Harold. > > I downloaded the xfree 4.1.0 source code, which, according > to some messages in the "mailing-list" archive can build Cygwin/Xfree. > > Art From armin-ml@hartinger.ws Thu Dec 13 09:39:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Thu, 13 Dec 2001 09:39:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: References: Message-ID: <1008265015.3051.6.camel@linus.uk.insight.com> On Thu, 2001-12-13 at 17:33, Harold Hunt wrote: > For complete build instructions, see the Contributor's Guide. I thought > that one would be kind of hard to miss... but, I guess not. Wow, I just loved that subtle remark. It sounds so much better than so much abusive crap one has to read every day on such lists :) -Armin From huntharo@msu.edu Thu Dec 13 09:40:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:40:00 -0000 Subject: New to-do item - configuration In-Reply-To: <09a801c183da$b0f092f0$0200a8c0@lifelesswks> Message-ID: Alexander is probably right that the XF86Config file parser is deeply integrated into the hw/xfree86 section of the tree, which we don't use at all. Rather than re-invent the XF86Config parser, I'd like to know how feasible it would be to do an XML config file. We'd need to get the XML libraries into Cygwin first, but I don't think that's an insurmountable task (barring evidence to the contrary from someone that has tried to do so). That's just my two cents, as I have no intention of implementing the feature myself. Harold From pinaar@austin.rr.com Thu Dec 13 09:48:00 2001 From: pinaar@austin.rr.com (Art) Date: Thu, 13 Dec 2001 09:48:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: <1008265015.3051.6.camel@linus.uk.insight.com> Message-ID: > -----Original Message----- > From: Armin Hartinger [mailto:armin-ml@hartinger.ws] > Sent: Thursday, December 13, 2001 11:37 AM > To: Harold Hunt > Cc: Art; cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > On Thu, 2001-12-13 at 17:33, Harold Hunt wrote: > > For complete build instructions, see the Contributor's Guide. I thought > > that one would be kind of hard to miss... but, I guess not. > > Wow, I just loved that subtle remark. It sounds so much better than so > much abusive crap one has to read every day on such lists :) > > -Armin Yeah - It got my attention! ;-> I just looked at the link - Pretty good! I missed it, initially, because I was a) not thinking b) had just attempted build X11r6.6 from X Org with no success (high frustration level) c) it didn't say "How to Build Cygwin/Xfree" Art From huntharo@msu.edu Thu Dec 13 09:50:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:50:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken In-Reply-To: Message-ID: Art, > Yeah - It got my attention! ;-> > > I just looked at the link - Pretty good! > I missed it, initially, because I was > a) not thinking > b) had just attempted build X11r6.6 from X Org with no success > (high frustration level) > c) it didn't say "How to Build Cygwin/Xfree" You didn't miss anything that direct. Notice that the timestamp of the Cygwin/XFree86 page has changed since you last looked at it. I just added the link to the Contributor's Guide that I think you are referring to. I was saying that I thought it would be pretty hard to miss the other links to the Contributor's Guide that are sprinkled all over the web site and mailing list... Don't worry about missing it. Harold From Alexander.Gottwald@informatik.tu-chemnitz.de Thu Dec 13 12:07:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 12:07:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Thu, 13 Dec 2001, Harold Hunt wrote: > Alexander is probably right that the XF86Config file parser is deeply > integrated into the hw/xfree86 section of the tree, which we don't use at > all. No, I was wrong. There is a part of the parser which is heavily integrated but the important part, the reader, seems to quite good encapsulated and I even got this library to link with our code. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From chris@wildcharacters.com Thu Dec 13 15:26:00 2001 From: chris@wildcharacters.com (Chris Hubbard) Date: Thu, 13 Dec 2001 15:26:00 -0000 Subject: I'm unable to run XFree on Cygwin Message-ID: <200112131523210200.00D7DD28@mail.wildcharacters.com> I'm unable to run XFree on Cygwin. I've downloaded and installed the most recent version of Cygwin (1.3.5). I've downloaded and installed XFree per the instructions. I've searched through the mailing list archives and read the faq. And I still can't get XFree to start. I installed Cygwin to c:\cygwin When I run startxwin.bat I get the following: Four error dialog boxes with "A required .DLL file, CYGWIN1.DLL, was not found. OK Looking at the command window I see: start XWin -screen 0 1024 768 Cannot find file 'XWin' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. start xterm -s1 1000 -sb -rightbar -ms red -fg yellow -g black e /usr/bin/bash Cannot find file 'xterm' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. start twm Cannot find file 'twm' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. Here's the lines from the startxwin.bat file: SET CYGWIN_ROOT=c:\cygwin (I've tried both with and without the c: in the var) SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% From huntharo@msu.edu Thu Dec 13 18:47:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 18:47:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) In-Reply-To: <85256B19.0079B237.00@notes.intdata.com> Message-ID: John, Have you finished up your patches for key releasing on loss of keyboard focus? If so, please submit a patch by doing the following: cd xc/programs/Xserver/hw cvs diff -U3 xwin > xwin.diff If not, good luck figuring out those last little details, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [mailto:John_Tobey@notes.intdata.com] > Sent: Wednesday, December 05, 2001 5:09 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > > > I suppose for this the solution would be to make winSendKeyEvent > > > do nothing if > > > its fDown already matches the array element > > > Nah, you can't do that because we sometimes call > winSendKeyEvent multiple > > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > > count. > > But I can do it when both are *false*. This goes over my earlier patch: > > --- winkeybd.c~ Tue Dec 4 16:42:28 2001 > +++ winkeybd.c Wed Dec 5 16:39:49 2001 > @@ -439,7 +439,12 @@ > winSendKeyEvent (DWORD dwKey, Bool fDown) > { > xEvent xCurrentEvent; > - > + > + /* Ignore ups without a preceding down. This happens when a keystroke > + causes X to gain focus. */ > + if (!fDown && !g_fKeyStates[dwKey]) > + return; > + > ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); > > xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; > > > I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and > > WM_KEYUP to see if the doubled key message is being sent again > immediately > > after we regain focus. > > Here is my XWin.log: > > keydown #16 at 22939 > keyup #16 at 23250 > keydown #17 at 23320 > keyup #17 at 23570 > keydown #18 at 23680 > keyup #18 at 23981 > keydown #19 at 24091 > keyup #19 at 24412 > keydown #16 at 24452 > keyup #16 at 24752 > keydown #17 at 24792 > Simulating release of key #17! > killfocus at 24862 > setfocus at 32363 > keyup #45 at 32483 > killfocus at 42017 > > And here is my xterm after the setfocus at 32363 ms: > > $ qwerqww > > 'w' is key #17. The only thing that could be happening is that xterm is > outsmarting itself by doing something with its own killfocus. My > preference is > to let xterm users deal. We're used to it. :-) > > > > I doubt > > > whether I can figure it out completely without a major time > investment. > > > This is your baby now, and you're making good progress. Don't be > > discouraged. These things take time to work out correctly. > > Without your help, I would probably lose patience. > > -John > > From flognat@flognat.myip.org Fri Dec 14 00:15:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 14 Dec 2001 00:15:00 -0000 Subject: I'm unable to run XFree on Cygwin In-Reply-To: <200112131523210200.00D7DD28@mail.wildcharacters.com> References: <200112131523210200.00D7DD28@mail.wildcharacters.com> Message-ID: Do you have Xwin.exe,xterm.exe in c:\cygwin\usr\X11R6\bin, do you have cygwin1.dll in c:\cygwin\bin? What happens if you do a "echo %PATH%" after the path is set.. Give the shell-script, startxwin.sh or similar a try from within bash.. Which OS BTW? /Andy -- The eye of the beholder rests on the beauty! From locutusenterprises@yahoo.com Fri Dec 14 05:38:00 2001 From: locutusenterprises@yahoo.com (Shane Shields) Date: Fri, 14 Dec 2001 05:38:00 -0000 Subject: closing xfree86 Message-ID: <20011214133721.10046.qmail@web10003.mail.yahoo.com> we are using the startxwin.bat to open xfree, start an ssh session on a linux server and run a program remotely. when the ssh session finishes the x server on the windows machine respawns leaving a background x window (full screen). does anyone know how to stop that respawn. In linux you can do a killall -SIGTERM X in a script but I cant find an equivalent in windows. can anyone help? __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From briangenisio@yahoo.com Fri Dec 14 05:56:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 14 Dec 2001 05:56:00 -0000 Subject: closing xfree86 In-Reply-To: <20011214133721.10046.qmail@web10003.mail.yahoo.com> Message-ID: <20011214135500.85268.qmail@web20810.mail.yahoo.com> >From a script, you might try : ps | grep Xwin | sed 's/ *\([0-9]*\).*/kill \1/' | sh in english, that is : get a process list pull out the line that has Xwin use sed to find the first unber in a list, and print "kill #" send that output to sh Or, you might try : Xwin.exe -commands & XWINPID=$! ... ... kill $XWINPID What that does, is stores the PID of the last executed program. ($! is a bash variable for that). Then, as long as you have the XWINPID in your scope, you can use it to kill the Xwin server. Hope these 2 options help Brian --- Shane Shields wrote: > we are using the startxwin.bat to open xfree, start an > ssh session on a linux server and run a program > remotely. when the ssh session finishes the x server > on the windows machine respawns leaving a background x > window (full screen). does anyone know how to stop > that respawn. In linux you can do a killall -SIGTERM X > in a script but I cant find an equivalent in windows. > > can anyone help? > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From wilper-8@ludd.luth.se Fri Dec 14 06:14:00 2001 From: wilper-8@ludd.luth.se (Wilhelm Person) Date: Fri, 14 Dec 2001 06:14:00 -0000 Subject: closing xfree86 In-Reply-To: <20011214133721.10046.qmail@web10003.mail.yahoo.com> Message-ID: Try the -terminate switch for XWin. I'd like to see how you do to automatically start a program on the remote machine from startxwin.bat, as I myself have failed to do this. /W On Fri, 14 Dec 2001, Shane Shields wrote: > we are using the startxwin.bat to open xfree, start an > ssh session on a linux server and run a program > remotely. when the ssh session finishes the x server > on the windows machine respawns leaving a background x > window (full screen). does anyone know how to stop > that respawn. In linux you can do a killall -SIGTERM X > in a script but I cant find an equivalent in windows. > > can anyone help? > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com > +-------------------------------+ | Home: http://wilper.cjb.net | | E-mail: wilper@home.se | | ICQ: 18390479 | +-------------------------------+ From John_Tobey@notes.intdata.com Fri Dec 14 06:35:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Fri, 14 Dec 2001 06:35:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B22.0050034A.00@notes.intdata.com> > John, > > Have you finished up your patches for key releasing on loss of keyboard > focus? > > If so, please submit a patch by doing the following: > > cd xc/programs/Xserver/hw > cvs diff -U3 xwin > xwin.diff > > If not, good luck figuring out those last little details, > > Harold Well unfortunately I don't know whether this patch should be applied or not. I've been using it for the past week, but occasionally I see duplicate keystrokes. It seems pretty random and not dependent on focus changes, but not completely random. It does not happen during normal typing, only with temporally isolated presses, which is pretty vague, but it's the best I can do at the moment. And it does not happen often, maybe once a day under moderate use. I thought I was having a serious problem with X crashing whenever I returned to my session after having locked NT 4 with CtrlAltDel, but it turned out that this continued when I switched back to Test 53, and it stopped when I uninstalled Folding@Home, so I blamed Folding@Home and resumed use of my patched server. That's part of my delay. I don't really have much time to work on this. I'll keep reporting how it's going if you ask, but it looks as if I will put up with the duplicates as being a lesser evil than the autorepeat. Of course, people not suffering from the autorepeat may see it differently. -John Index: xwin/winkeybd.c =================================================================== RCS file: /cvs/xc/programs/Xserver/hw/xwin/winkeybd.c,v retrieving revision 1.8 diff -U3 -r1.8 winkeybd.c --- xwin/winkeybd.c 2001/11/12 08:47:53 1.8 +++ xwin/winkeybd.c 2001/12/14 14:07:44 @@ -391,7 +391,12 @@ return FALSE; } +/* + * Remember which keys are down for when we lose focus. + */ +Bool g_fKeyStates[MAP_LENGTH]; + /* * Lift any modifier keys that are pressed */ @@ -399,16 +404,28 @@ void winKeybdReleaseModifierKeys () { + int i; + /* Verify that the mi input system has been initialized */ if (g_fdMessageQueue == WIN_FD_INVALID) return; - winSendKeyEvent (KEY_Alt, FALSE); - winSendKeyEvent (KEY_AltLang, FALSE); - winSendKeyEvent (KEY_LCtrl, FALSE); - winSendKeyEvent (KEY_RCtrl, FALSE); - winSendKeyEvent (KEY_ShiftL, FALSE); - winSendKeyEvent (KEY_ShiftR, FALSE); + for (i = 0; i < MAP_LENGTH; i++) + switch (i) + { + default: + if (g_fKeyStates[i]) + { + ErrorF ("Simulating release of key #%d!\n", i); + winSendKeyEvent (i, FALSE); + } + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + case KEY_HKTG: + break; + } } @@ -422,7 +439,12 @@ winSendKeyEvent (DWORD dwKey, Bool fDown) { xEvent xCurrentEvent; - + + /* Ignore ups without a preceding down. This happens when a keystroke + causes X to gain focus. */ + if (!fDown && !g_fKeyStates[dwKey]) + return; + ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; @@ -430,4 +452,5 @@ g_c32LastInputEventTime = GetTickCount (); xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; mieqEnqueue (&xCurrentEvent); + g_fKeyStates[dwKey] = fDown; } From briangenisio@yahoo.com Fri Dec 14 06:41:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 14 Dec 2001 06:41:00 -0000 Subject: closing xfree86 In-Reply-To: Message-ID: <20011214143950.42558.qmail@web20809.mail.yahoo.com> --- Wilhelm Person wrote: > Try the -terminate switch for XWin. > > I'd like to see how you do to automatically start a program on the remote > machine from startxwin.bat, as I myself have failed to do this. > ssh or rsh will do this for you > /W > > On Fri, 14 Dec 2001, Shane Shields wrote: > > > we are using the startxwin.bat to open xfree, start an > > ssh session on a linux server and run a program > > remotely. when the ssh session finishes the x server > > on the windows machine respawns leaving a background x > > window (full screen). does anyone know how to stop > > that respawn. In linux you can do a killall -SIGTERM X > > in a script but I cant find an equivalent in windows. > > > > can anyone help? > > > > __________________________________________________ > > Do You Yahoo!? > > Check out Yahoo! Shopping and Yahoo! Auctions for all of > > your unique holiday gifts! Buy at http://shopping.yahoo.com > > or bid at http://auctions.yahoo.com > > > > +-------------------------------+ > | Home: http://wilper.cjb.net | > | E-mail: wilper@home.se | > | ICQ: 18390479 | > +-------------------------------+ > __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From robert.collins@itdomain.com.au Fri Dec 14 08:43:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Fri, 14 Dec 2001 08:43:00 -0000 Subject: New to-do item - configuration References: Message-ID: <0b5201c184be$85da8d70$0200a8c0@lifelesswks> ----- Original Message ----- From: "Harold Hunt" > Rather than re-invent the XF86Config parser, I'd like to know how feasible > it would be to do an XML config file. We'd need to get the XML libraries > into Cygwin first, but I don't think that's an insurmountable task (barring > evidence to the contrary from someone that has tried to do so). libxml ports with little effort. I've done so several times. Rob From blape@symantec.com Fri Dec 14 10:55:00 2001 From: blape@symantec.com (Burton Lape) Date: Fri, 14 Dec 2001 10:55:00 -0000 Subject: cygwin loops when connecting to xdmcp server running kdm Message-ID: I installed cygwin and xfree86 for cygwin. I am unable to connect to the xdmcp server. I run "/etc/X11R6/XWin.exe -query xxx.xxx.xxx.xxx -from xxx.xxx.xxx.xxx" The screen open then closes then opens then closes. It sits there and loops. Here is what is in the dos screen. winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources Here is what is in /var/log/messages Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session opened for user nobody by ( uid=0) Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session closed for user nobody Dec 14 12:32:00 tslinux kdm[27140]: Unknown session exit code 127 from process 2 7266 Dec 14 12:32:00 tslinux kdm[27140]: Display hostname:0 is bein g disabled (exit frequency too high) Now I know this is not a configuration issue that I know of on the linux box running the XDMCP Server. I have also installed X-Win32 which is a commercial application. It connects just fine. Thanks, Burton Lape From blape@symantec.com Fri Dec 14 12:04:00 2001 From: blape@symantec.com (Burton Lape) Date: Fri, 14 Dec 2001 12:04:00 -0000 Subject: cygwin loops when connecting to xdmcp server running kdm Message-ID: Did the same exact thing only in a smaller window. Thanks for the help. Any other suggestions? |--------+------------------------> | | "Bruce Dobrin"| | | | | | | | | 12/14/2001 | | | 12:34 PM | | | | |--------+------------------------> >--------------------------------------------------------------------------------------------------------------------| | | | To: "Burton Lape" | | cc: | | Subject: Re: cygwin loops when connecting to xdmcp server running kdm | >--------------------------------------------------------------------------------------------------------------------| try "/etc/X11R6/XWin.exe -screen 0 1024x768x16 -query xxx.xxx.xxx.xxx -from xx.xxx.xxx.xxx" That often works for me. ----- Original Message ----- From: "Burton Lape" To: Sent: Friday, December 14, 2001 10:36 AM Subject: cygwin loops when connecting to xdmcp server running kdm > I installed cygwin and xfree86 for cygwin. I am unable to connect to the > xdmcp server. I run "/etc/X11R6/XWin.exe -query xxx.xxx.xxx.xxx -from > xxx.xxx.xxx.xxx" > The screen open then closes then opens then closes. It sits there and > loops. Here is what is in the dos screen. > > > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > > > Here is what is in /var/log/messages > > Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session opened for user nobody > by ( > uid=0) > Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session closed for user nobody > Dec 14 12:32:00 tslinux kdm[27140]: Unknown session exit code 127 from > process 2 > 7266 > Dec 14 12:32:00 tslinux kdm[27140]: Display hostname:0 is bein > g disabled (exit frequency too high) > > > Now I know this is not a configuration issue that I know of on the linux > box running the XDMCP Server. > I have also installed X-Win32 which is a commercial application. It > connects just fine. > > > Thanks, > > Burton Lape > From derk.steggewentz@autodesk.com Fri Dec 14 15:06:00 2001 From: derk.steggewentz@autodesk.com (derk.steggewentz@autodesk.com) Date: Fri, 14 Dec 2001 15:06:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & substitute <...> with your specifics. Let me know if it works for you. derk From ewu@eskimo.com Fri Dec 14 15:44:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Fri, 14 Dec 2001 15:44:00 -0000 Subject: Does XDMCP work on these platforms? Message-ID: Hi, Does XDMCP work on - 1. Win95 2. Win98 Thanks EW From ewu@eskimo.com Fri Dec 14 19:40:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Fri, 14 Dec 2001 19:40:00 -0000 Subject: Has Cygwin-Xfree Team "downsized" ? Message-ID: <20011214195017.A4130347@PAVILION> Perhaps the Team has not self "downsized" heh? -ew From bzhang@convergentnet.com Fri Dec 14 20:05:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Fri, 14 Dec 2001 20:05:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: Thanks to derk.steggewentz. The problem was solved. I only need to point the font path to the font server which is already running on my Solaris box. XWin -query solaris_box -fp tcp/solaris_box:7100 Bo > -----Original Message----- > From: Zhang, Bo > Sent: Thursday, December 13, 2001 10:01 AM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > I found in the Cygwin/Xfree86 FAQ there is a similar issue, which > was supposed to have been solved by installing the latest Solaris > patches. > > I did install all the recommended patches. And my XWin still can't > come up with XDMCP. > > I got the following error messages after XWin hang for a long time > and timed-out: > > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - Returning, supported engines 0000001b > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 970 r 1274 > l 0 b 970 t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d > 32 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > AUDIT: Wed Dec 12 16:50:25 2001: 255 XWin: client 1 rejected from IP > 172.16.33.210 port 33748 > Auth name: MIT-MAGIC-COOKIE-1 ID: -1 > XDM: too many keepalive retransmissions, declaring session dead > > Can anyone help me out? > > Thanks, > > Bo > > > -----Original Message----- > From: Zhang, Bo > Sent: Tuesday, December 11, 2001 6:37 PM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with > my > Solaris 2.8. The root window is opened, but it hangs there. It looks > like > some kind of infinite loop (CPU ustilization on my PC goes 100% for > a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? > > Thanks, > > Bo Zhang From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 15 04:48:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 15 Dec 2001 04:48:00 -0000 Subject: Does XDMCP work on these platforms? In-Reply-To: Message-ID: On Fri, 14 Dec 2001, Enoch Wu wrote: > > Hi, > > Does XDMCP work on - > 1. Win95 > 2. Win98 Yes. But XDMCP won't work with Tokenring cards (or better: won't work with any card except ethernet, loopback and ppp) bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 15 07:27:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 15 Dec 2001 07:27:00 -0000 Subject: Does XDMCP work on these platforms? In-Reply-To: <3C1B4B47.23C3C93F@homeshopping.com.br> Message-ID: On Sat, 15 Dec 2001, Ricardo wrote: > Stranger. My company has a tokenring network and I have tested > Xfree/XDMCP. > It's working fine!!!!! Which OS? We had a case with win2k and Tokenring where the cygwin kernel did not report that interface. Maybe this is fixed now. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From ewu@eskimo.com Sat Dec 15 14:09:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Sat, 15 Dec 2001 14:09:00 -0000 Subject: Does XDMCP work on these platforms? In-Reply-To: References: <3C1B4B47.23C3C93F@homeshopping.com.br> Message-ID: <3.0.3.32.20011215141939.0069cb34@mail.eskimo.com> Thanks Alexander. I'll try them. At 04:26 PM 12/15/01 +0100, Alexander Gottwald wrote: >On Sat, 15 Dec 2001, Ricardo wrote: > >> Stranger. My company has a tokenring network and I have tested >> Xfree/XDMCP. >> It's working fine!!!!! > >Which OS? > >We had a case with win2k and Tokenring where the cygwin kernel did >not report that interface. Maybe this is fixed now. > >bye > ago >-- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 > > From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 08:50:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 08:50:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: Hi, this is just a little status report. I managed: - to read in the XF86Config file and parse it - set the default fontpath (cool thing :) ) - set the default keyboard and XKB settings These are the two most wanted topics from the configfile wishlist. But XKB has massive problems. Each keymap needs to be compiled via the program xkbcomp. This seems to be broken with cygwin. Any keymap compiled with the cygwin port of xkbcomp contains no valid keymap. Compiling with a linux native app works fine. So the next open topics are: - creating code for pointer device - creating code for full layout (binding keyboard and pointer to screen, setting monitor==window for screen) - cleanup code There are two problems with the server which I can't solve - There is no automatic redrawing. I only get the current output when I move a window over the XWin window and force a redraw - SEGFAULT in shadowRemove. The pointer to the second node in the screenPriv list points to 0x7e0. Maybe an initialization problem. Hope you can give me a pointer where to look :) bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:14:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:14:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > There are two problems with the server which I can't solve > > - There is no automatic redrawing. I only get the current output > when I move a window over the XWin window and force a redraw > - SEGFAULT in shadowRemove. The pointer to the second node in > the screenPriv list points to 0x7e0. Maybe an initialization > problem. Think I got the last one. Before calling shadowAdd, we have to init the shadow layer. See attached diff bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 -------------- next part -------------- --- winscrinit.c.old Sun Dec 16 18:54:34 2001 +++ winscrinit.c Sun Dec 16 18:45:52 2001 @@ -263,6 +263,15 @@ return FALSE; } + /* If we use the shadow code, we need to init it */ + if (!shadowInit (pScreen, + pScreenPriv->pwinShadowUpdate, + NULL)) + { + ErrorF ("winFinishScreenInitFB () - shadowInit () failed\n"); + return FALSE; + } + /* Not sure what we're adding to shadow, but add it anyway */ if (!shadowAdd (pScreen, 0, pScreenPriv->pwinShadowUpdate, NULL, 0, 0)) { From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:20:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:20:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > - There is no automatic redrawing. I only get the current output > when I move a window over the XWin window and force a redraw This was the layer support. Switched it off and now it works again. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:22:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:22:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > Think I got the last one. Before calling shadowAdd, we have to init > the shadow layer. See attached diff I was wrong. We don't have to call shadowInit() before, but _instead_ shadowAdd(). Or we have to use shadowSetup(). bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 15:28:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 15:28:00 -0000 Subject: New to-do item - configuration In-Reply-To: Message-ID: A preview version is now ready at Please treat this as experimental version. Some features of the regular version are not available (eg. logging to /tmp/XWin.log) and it is barly tested for sideeffect of new development. It has support for reading the Fontpath and the keyboard (XKB) settings from the config file. If you want to use the XKB features, please make sure that the /tmp directory is mounted in binary mode and that the XKB files are installed in /usr/X11R6/lib/X11/xkb Please report bugs (which you will surely find) the mailing list and state in the bugreport that you are running this experimental version. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Ralf.Habacker@freenet.de Mon Dec 17 03:30:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 17 Dec 2001 03:30:00 -0000 Subject: libw11: make x windows programs run nativly. In-Reply-To: <540D22115D0CD311BC2E00A0246200EE0153202D@ssegadmin> Message-ID: <018601c186ef$006b6af0$9a5f07d5@BRAMSCHE> > Don, > > does this mean, that all X-applications will appear in a Windows-window like > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > C. Yes, it mean this. Regards Ralf > > > > > http://www.sf.net/projects/libw11 > > > > I just wanted to let people know about the library I am > > working on. My > > goal is to make a library that is 100% compatible with > > libX11.dll but > > not require an X server. My work is still in the early > > stages, but many > > of the example programs that are distributed with the QT widgets are > > beginning to work. > > > > Please let me know what you think of the idea, and if any wishes to > > help, let me know. > > > > --Don Becker > > > From alexander.gottwald@informatik.tu-chemnitz.de Mon Dec 17 03:36:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 17 Dec 2001 03:36:00 -0000 Subject: libw11: make x windows programs run nativly. In-Reply-To: <018601c186ef$006b6af0$9a5f07d5@BRAMSCHE> Message-ID: On Mon, 17 Dec 2001, Ralf Habacker wrote: > > does this mean, that all X-applications will appear in a Windows-window like > > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > > C. > Yes, it mean this. Rxvt seems to use this. And it looked nice. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From h.nardmann@secunet.de Mon Dec 17 04:33:00 2001 From: h.nardmann@secunet.de (Heiko Nardmann) Date: Mon, 17 Dec 2001 04:33:00 -0000 Subject: font problem Message-ID: <200112171233.NAA16344@mail-int.cubis.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! I have a problem with a font inside KDE Konsole. Until end of last week I used Exceed as my primary X server. Then I switched to XFree86 (on Windows NT). I start it using XDMCP with the '-indirect' option to get the chooser menu from a Linux server. Inside the KDE Konsole the font provided by Exceed is fine but now a proportional font is used in XFree86. When I try to choose a better font from the "Custom..." menu I only see "Tahoma" being the only font offered. Probably I have to provide some more fonts to the X server? - From another mail I saw that it is possible to give some '-fp ...' to the XWin command line; so now I have the following inside startxwin.bat: start /B XWin.exe :1 -indirect 10.151.4.13 -from 10.151.4.101 -screen 0 1600 1200 -fullscreen -fp tcp/10.151.4.13:7101 10.151.4.13 is the linux server. 10.151.4.101 is my machine. On port 7101 xfstt is running. No xfs is running on the linux machine additionally. But then I get the following fatal error message: could not open default font 'fixed' Any idea how to fix this? - -- Heiko Nardmann (Dipl.-Ing.), h.nardmann@secunet.de, Software Development secunet Security Networks AG - Sicherheit in Netzwerken (www.secunet.de), Weidenauer Str. 223-225, D-57076 Siegen Tel. : +49 271 48950-13, Fax : +49 271 48950-50 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8HeYspm53PRScYygRAhdXAJ0QZJCtX7QeRo/jBZX0vnqwjUr9MACgnyE1 jnnzLuz6b2QzgfDdrefVXtA= =pRbO -----END PGP SIGNATURE----- From briangenisio@yahoo.com Mon Dec 17 04:47:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 04:47:00 -0000 Subject: font problem In-Reply-To: <200112171233.NAA16344@mail-int.cubis.de> Message-ID: <20011217124616.3532.qmail@web20805.mail.yahoo.com> By default, the X server uses a bunch of font paths. They are all included in /usr/X11R6/lib/X11/fonts . Of those, I am not sure which are defaulted, but misc contains the "fixed" font alias. Sooooo.... by overriding your font path, you are clobbering the defaulted misc. I usually set misc, 75dpi and 100dpi in my font path... You have two options... 1. Add the font server to the font path : -fp /usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi,tcp/10.151.4.13:7101 2. Add the font path AFTER the X server has started up, NOT overriding the font path. Use xset for this. I am not completely sure of the syntax (take a look at the manpage), but it is something like : xset fp+ tcp/10.151.4.13:7101 xset fp rehash Brian --- Heiko Nardmann wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi! > > I have a problem with a font inside KDE Konsole. Until end of last week I > used Exceed as my primary X server. Then I switched to XFree86 (on Windows > NT). > > I start it using XDMCP with the '-indirect' option to get the chooser menu > from a Linux server. > > Inside the KDE Konsole the font provided by Exceed is fine but now a > proportional font is used in XFree86. > > When I try to choose a better font from the "Custom..." menu I only see > "Tahoma" being the only font offered. > > Probably I have to provide some more fonts to the X server? > > - From another mail I saw that it is possible to give some '-fp ...' to the > XWin command line; so now I have the following inside startxwin.bat: > > start /B XWin.exe :1 -indirect 10.151.4.13 -from 10.151.4.101 -screen 0 1600 > 1200 -fullscreen -fp tcp/10.151.4.13:7101 > > 10.151.4.13 is the linux server. > 10.151.4.101 is my machine. > > On port 7101 xfstt is running. No xfs is running on the linux machine > additionally. > > But then I get the following fatal error message: > > could not open default font 'fixed' > > Any idea how to fix this? > > - -- > Heiko Nardmann (Dipl.-Ing.), h.nardmann@secunet.de, Software Development > secunet Security Networks AG - Sicherheit in Netzwerken (www.secunet.de), > Weidenauer Str. 223-225, D-57076 Siegen > Tel. : +49 271 48950-13, Fax : +49 271 48950-50 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iD8DBQE8HeYspm53PRScYygRAhdXAJ0QZJCtX7QeRo/jBZX0vnqwjUr9MACgnyE1 > jnnzLuz6b2QzgfDdrefVXtA= > =pRbO > -----END PGP SIGNATURE----- __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From Ralf.Habacker@freenet.de Mon Dec 17 06:54:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 17 Dec 2001 06:54:00 -0000 Subject: libw11: make x windows programs run nativly. In-Reply-To: Message-ID: <000401c1870b$7fce48a0$e26407d5@BRAMSCHE> > -----Original Message----- > From: cygwin-xfree-owner@cygwin.com > [mailto:cygwin-xfree-owner@cygwin.com]On Behalf Of Alexander Gottwald > Sent: Monday, December 17, 2001 12:35 PM > Cc: Cygwin-Xfree > Subject: RE: libw11: make x windows programs run nativly. > > > On Mon, 17 Dec 2001, Ralf Habacker wrote: > > > does this mean, that all X-applications will appear in a Windows-window like > > > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > > > C. > > Yes, it mean this. > > Rxvt seems to use this. And it looked nice. libw11 is based on the x11lib, which rxvt uses. Ralf From jgilles@glmultimedia.com Mon Dec 17 07:59:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Mon, 17 Dec 2001 07:59:00 -0000 Subject: XDMCP - Solaris hangs In-Reply-To: (derk.steggewentz@autodesk.com's message of "Fri, 14 Dec 2001 14:56:44 -0800") References: Message-ID: derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & Thanks a lot ! Should be added to the faq... (Q 4.9, http:??cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) -- Julien Gilles From kent.perrier@oneco.net Mon Dec 17 08:48:00 2001 From: kent.perrier@oneco.net (Kent Perrier) Date: Mon, 17 Dec 2001 08:48:00 -0000 Subject: After upgrading last night, Xfree no longer works. Message-ID: <3C1E215B.6020008@oneco.net> Last night, I upgraded my cygwin (primarially to get the bc utulity, but setup upgraded several other things as well) and I find out this morning that XFree no longer works. Has anyone else seen this? Here is the info out of the event log: Event Type: Information Event Source: DrWatson Event Category: None Event ID: 4097 Date: 12/17/2001 Time: 10:35:04 AM User: N/A Computer: SEAWOLF Description: The application, , generated an application error The error occurred on 12/17/2001 @ 10:35:04.670 The exception generated was c0000005 at address 00000000 () Data: 0000: 0d 0a 0d 0a 41 70 70 6c ....Appl 0008: 69 63 61 74 69 6f 6e 20 ication 0010: 65 78 63 65 70 74 69 6f exceptio 0018: 6e 20 6f 63 63 75 72 72 n occurr 0020: 65 64 3a 0d 0a 20 20 20 ed:.. 0028: 20 20 20 20 20 41 70 70 App 0030: 3a 20 20 28 70 69 64 3d : (pid= 0038: 31 34 38 34 29 0d 0a 20 1484).. 0040: 20 20 20 20 20 20 20 57 W 0048: 68 65 6e 3a 20 31 32 2f hen: 12/ 0050: 31 37 2f 32 30 30 31 20 17/2001 0058: 40 20 31 30 3a 33 35 3a @ 10:35: 0060: 30 34 2e 36 37 30 0d 0a 04.670.. 0068: 20 20 20 20 20 20 20 20 0070: 45 78 63 65 70 74 69 6f Exceptio 0078: 6e 20 6e 75 6d 62 65 72 n number 0080: 3a 20 63 30 30 30 30 30 : c00000 0088: 30 35 20 28 61 63 63 65 05 (acce 0090: 73 73 20 76 69 6f 6c 61 ss viola 0098: 74 69 6f 6e 29 0d 0a 0d tion)... 00a0: 0a 2a 2d 2d 2d 2d 3e 20 .*----> 00a8: 53 79 73 74 65 6d 20 49 System I 00b0: 6e 66 6f 72 6d 61 74 69 nformati 00b8: 6f 6e 20 3c 2d 2d 2d 2d on <---- 00c0: 2a 0d 0a 20 20 20 20 20 *.. 00c8: 20 20 20 43 6f 6d 70 75 Compu 00d0: 74 65 72 20 4e 61 6d 65 ter Name 00d8: 3a 20 53 45 41 57 4f 4c : SEAWOL 00e0: 46 0d 0a 20 20 20 20 20 F.. 00e8: 20 20 20 55 73 65 72 20 User 00f0: 4e 61 6d 65 3a 20 6b 70 Name: kp 00f8: 65 72 72 69 65 72 0d 0a errier.. 0100: 20 20 20 20 20 20 20 20 0108: 4e 75 6d 62 65 72 20 6f Number o 0110: 66 20 50 72 6f 63 65 73 f Proces 0118: 73 6f 72 73 3a 20 31 0d sors: 1. 0120: 0a 20 20 20 20 20 20 20 . 0128: 20 50 72 6f 63 65 73 73 Process 0130: 6f 72 20 54 79 70 65 3a or Type: 0138: 20 78 38 36 20 46 61 6d x86 Fam 0140: 69 6c 79 20 36 20 4d 6f ily 6 Mo 0148: 64 65 6c 20 38 20 53 74 del 8 St 0150: 65 70 70 69 6e 67 20 31 epping 1 0158: 30 0d 0a 20 20 20 20 20 0.. 0160: 20 20 20 57 69 6e 64 6f Windo 0168: 77 73 20 32 30 30 30 20 ws 2000 0170: 56 65 72 73 69 6f 6e 3a Version: 0178: 20 35 2e 30 0d 0a 20 20 5.0.. 0180: 20 20 20 20 20 20 43 75 Cu 0188: 72 72 65 6e 74 20 42 75 rrent Bu 0190: 69 6c 64 3a 20 32 31 39 ild: 219 0198: 35 0d 0a 20 20 20 20 20 5.. 01a0: 20 20 20 53 65 72 76 69 Servi 01a8: 63 65 20 50 61 63 6b 3a ce Pack: 01b0: 20 32 0d 0a 20 20 20 20 2.. 01b8: 20 20 20 20 43 75 72 72 Curr 01c0: 65 6e 74 20 54 79 70 65 ent Type 01c8: 3a 20 55 6e 69 70 72 6f : Unipro 01d0: 63 65 73 73 6f 72 20 46 cessor F 01d8: 72 65 65 0d 0a 20 20 20 ree.. 01e0: 20 20 20 20 20 52 65 67 Reg 01e8: 69 73 74 65 72 65 64 20 istered 01f0: 4f 72 67 61 6e 69 7a 61 Organiza 01f8: 74 69 6f 6e 3a 20 4f 6e tion: On 0200: 65 20 43 6f 6d 6d 75 6e e Commun 0208: 69 74 79 2c 20 49 6e 63 ity, Inc 0210: 0d 0a 20 20 20 20 20 20 .. 0218: 20 20 52 65 67 69 73 74 Regist 0220: 65 72 65 64 20 4f 77 6e ered Own 0228: 65 72 3a 20 4f 6e 65 20 er: One 0230: 43 6f 6d 6d 75 6e 69 74 Communit 0238: 79 2c 20 49 6e 63 0d 0a y, Inc.. 0240: 0d 0a 2a 2d 2d 2d 2d 3e ..*----> 0248: 20 54 61 73 6b 20 4c 69 Task Li 0250: 73 74 20 3c 2d 2d 2d 2d st <---- 0258: 2a 0d 0a 20 20 20 30 20 *.. 0 0260: 49 64 6c 65 2e 65 78 65 Idle.exe 0268: 0d 0a 20 20 20 38 20 53 .. 8 S 0270: 79 73 74 65 6d 2e 65 78 ystem.ex 0278: 65 0d 0a 20 31 36 34 20 e.. 164 0280: 73 6d 73 73 2e 65 78 65 smss.exe 0288: 0d 0a 20 31 39 32 20 63 .. 192 c 0290: 73 72 73 73 2e 65 78 65 srss.exe 0298: 0d 0a 20 32 31 32 20 77 .. 212 w 02a0: 69 6e 6c 6f 67 6f 6e 2e inlogon. 02a8: 65 78 65 0d 0a 20 32 34 exe.. 24 02b0: 34 20 73 65 72 76 69 63 4 servic 02b8: 65 73 2e 65 78 65 0d 0a es.exe.. 02c0: 20 32 35 36 20 6c 73 61 256 lsa 02c8: 73 73 2e 65 78 65 0d 0a ss.exe.. 02d0: 20 33 38 38 20 73 76 63 388 svc 02d8: 68 6f 73 74 2e 65 78 65 host.exe 02e0: 0d 0a 20 34 34 34 20 73 .. 444 s 02e8: 76 63 68 6f 73 74 2e 65 vchost.e 02f0: 78 65 0d 0a 20 34 39 32 xe.. 492 02f8: 20 73 70 6f 6f 6c 73 76 spoolsv 0300: 2e 65 78 65 0d 0a 20 35 .exe.. 5 0308: 36 34 20 41 74 69 32 65 64 Ati2e 0310: 76 78 78 2e 65 78 65 0d vxx.exe. 0318: 0a 20 36 31 36 20 68 74 . 616 ht 0320: 74 70 64 2e 65 78 65 0d tpd.exe. 0328: 0a 20 36 32 30 20 69 6e . 620 in 0330: 65 74 64 33 32 2e 65 78 etd32.ex 0338: 65 0d 0a 20 36 33 32 20 e.. 632 0340: 68 74 74 70 64 2e 65 78 httpd.ex 0348: 65 0d 0a 20 36 34 34 20 e.. 644 0350: 68 74 74 70 64 2e 65 78 httpd.ex 0358: 65 0d 0a 20 36 38 30 20 e.. 680 0360: 6a 63 6f 6e 66 69 67 64 jconfigd 0368: 4e 54 2e 65 78 65 0d 0a NT.exe.. 0370: 20 36 39 36 20 68 6a 61 696 hja 0378: 76 61 77 2e 65 78 65 0d vaw.exe. 0380: 0a 20 37 30 34 20 6e 61 . 704 na 0388: 76 61 70 73 76 63 2e 65 vapsvc.e 0390: 78 65 0d 0a 20 37 31 32 xe.. 712 0398: 20 6a 61 76 61 77 2e 65 javaw.e 03a0: 78 65 0d 0a 20 37 36 38 xe.. 768 03a8: 20 6e 70 73 73 76 63 2e npssvc. 03b0: 65 78 65 0d 0a 20 37 39 exe.. 79 03b8: 32 20 72 65 67 73 76 63 2 regsvc 03c0: 2e 65 78 65 0d 0a 20 38 .exe.. 8 03c8: 32 30 20 4d 53 54 61 73 20 MSTas 03d0: 6b 2e 65 78 65 0d 0a 20 k.exe.. 03d8: 38 34 34 20 57 69 6e 4d 844 WinM 03e0: 67 6d 74 2e 65 78 65 0d gmt.exe. 03e8: 0a 20 34 30 30 20 61 6c . 400 al 03f0: 65 72 74 73 76 63 2e 65 ertsvc.e 03f8: 78 65 0d 0a 20 35 36 38 xe.. 568 0400: 20 45 78 70 6c 6f 72 65 Explore 0408: 72 2e 65 78 65 0d 0a 31 r.exe..1 0410: 32 35 36 20 41 74 69 70 256 Atip 0418: 74 61 78 78 2e 65 78 65 taxx.exe 0420: 0d 0a 31 32 38 30 20 64 ..1280 d 0428: 61 65 6d 6f 6e 2e 65 78 aemon.ex 0430: 65 0d 0a 20 39 39 32 20 e.. 992 0438: 52 65 61 6c 50 6c 61 79 RealPlay 0440: 2e 65 78 65 0d 0a 31 32 .exe..12 0448: 36 38 20 57 69 6e 61 6d 68 Winam 0450: 70 61 2e 65 78 65 0d 0a pa.exe.. 0458: 31 33 30 30 20 64 69 72 1300 dir 0460: 65 63 74 63 64 2e 65 78 ectcd.ex 0468: 65 0d 0a 31 33 30 38 20 e..1308 0470: 43 72 65 61 74 65 43 44 CreateCD 0478: 2e 65 78 65 0d 0a 31 33 .exe..13 0480: 32 30 20 4d 6f 7a 69 6c 20 Mozil 0488: 6c 61 2e 65 78 65 0d 0a la.exe.. 0490: 31 33 32 38 20 6e 61 76 1328 nav 0498: 61 70 77 33 32 2e 65 78 apw32.ex 04a0: 65 0d 0a 31 33 34 38 20 e..1348 04a8: 41 63 72 6f 54 72 61 79 AcroTray 04b0: 2e 65 78 65 0d 0a 31 34 .exe..14 04b8: 30 30 20 6d 73 6f 66 66 00 msoff 04c0: 69 63 65 2e 65 78 65 0d ice.exe. 04c8: 0a 20 39 38 30 20 53 65 . 980 Se 04d0: 63 75 72 65 43 52 54 2e cureCRT. 04d8: 65 78 65 0d 0a 20 35 33 exe.. 53 04e0: 32 20 63 6d 64 2e 65 78 2 cmd.ex 04e8: 65 0d 0a 20 38 38 30 20 e.. 880 04f0: 62 61 73 68 2e 65 78 65 bash.exe 04f8: 0d 0a 31 30 39 32 20 63 ..1092 c 0500: 6d 64 2e 65 78 65 0d 0a md.exe.. 0508: 31 35 34 38 20 62 61 73 1548 bas 0510: 68 2e 65 78 65 0d 0a 31 h.exe..1 0518: 34 36 38 20 73 68 2e 65 468 sh.e 0520: 78 65 0d 0a 31 34 38 34 xe..1484 0528: 20 74 77 6d 2e 65 78 65 twm.exe 0530: 0d 0a 20 37 35 36 20 64 .. 756 d 0538: 72 77 74 73 6e 33 32 2e rwtsn32. 0540: 65 78 65 0d 0a 31 35 34 exe..154 0548: 30 20 64 72 77 74 73 6e 0 drwtsn 0550: 33 32 2e 65 78 65 0d 0a 32.exe.. 0558: 31 34 37 36 20 64 72 77 1476 drw 0560: 74 73 6e 33 32 2e 65 78 tsn32.ex 0568: 65 0d 0a 31 35 31 36 20 e..1516 0570: 78 74 65 72 6d 2e 65 78 xterm.ex 0578: 65 0d 0a 31 35 37 36 20 e..1576 0580: 78 74 65 72 6d 2e 65 78 xterm.ex 0588: 65 0d 0a 31 35 39 36 20 e..1596 0590: 78 74 65 72 6d 2e 65 78 xterm.ex 0598: 65 0d 0a 20 20 20 30 20 e.. 0 05a0: 5f 54 6f 74 61 6c 2e 65 _Total.e 05a8: 78 65 0d 0a 0d 0a 28 30 xe....(0 05b0: 30 34 30 30 30 30 30 20 0400000 05b8: 2d 20 30 30 34 37 30 30 - 004700 05c0: 30 30 29 20 0d 0a 28 37 00) ..(7 05c8: 37 46 38 30 30 30 30 20 7F80000 05d0: 2d 20 37 37 46 46 42 30 - 77FFB0 05d8: 30 30 29 20 0d 0a 28 36 00) ..(6 05e0: 37 35 43 30 30 30 30 20 75C0000 05e8: 2d 20 36 37 35 44 37 30 - 675D70 05f0: 30 30 29 20 0d 0a 28 36 00) ..(6 05f8: 31 30 30 30 30 30 30 20 1000000 0600: 2d 20 36 31 31 30 31 30 - 611010 0608: 30 30 29 20 0d 0a 28 37 00) ..(7 0610: 37 45 38 30 30 30 30 20 7E80000 0618: 2d 20 37 37 46 33 35 30 - 77F350 0620: 30 30 29 20 0d 0a 28 36 00) ..(6 0628: 37 35 45 30 30 30 30 20 75E0000 0630: 2d 20 36 37 35 45 43 30 - 675EC0 0638: 30 30 29 20 0d 0a 28 36 00) ..(6 0640: 37 34 45 30 30 30 30 20 74E0000 0648: 2d 20 36 37 35 41 38 30 - 675A80 0650: 30 30 29 20 0d 0a 28 36 00) ..(6 0658: 37 35 46 30 30 30 30 20 75F0000 0660: 2d 20 36 37 35 46 44 30 - 675FD0 0668: 30 30 29 20 0d 0a 28 37 00) ..(7 0670: 37 44 42 30 30 30 30 20 7DB0000 0678: 2d 20 37 37 45 30 42 30 - 77E0B0 0680: 30 30 29 20 0d 0a 28 37 00) ..(7 0688: 37 44 34 30 30 30 30 20 7D40000 0690: 2d 20 37 37 44 42 30 30 - 77DB00 0698: 30 30 29 20 0d 0a 0d 0a 00) .... 06a0: 53 74 61 74 65 20 44 75 State Du 06a8: 6d 70 20 66 6f 72 20 54 mp for T 06b0: 68 72 65 61 64 20 49 64 hread Id 06b8: 20 30 78 31 63 30 0d 0a 0x1c0.. 06c0: 0d 0a 65 61 78 3d 30 30 ..eax=00 06c8: 30 30 30 30 30 30 20 65 000000 e 06d0: 62 78 3d 30 30 30 30 30 bx=00000 06d8: 30 30 30 20 65 63 78 3d 000 ecx= 06e0: 36 31 35 35 36 31 37 30 61556170 06e8: 20 65 64 78 3d 36 31 30 edx=610 06f0: 39 62 37 34 63 20 65 73 9b74c es 06f8: 69 3d 30 30 30 31 38 62 i=00018b 0700: 30 30 20 65 64 69 3d 30 00 edi=0 0708: 30 30 30 30 30 38 62 0d 000008b. 0710: 0a 65 69 70 3d 30 30 30 .eip=000 0718: 30 30 30 30 30 20 65 73 00000 es 0720: 70 3d 30 32 34 36 66 61 p=0246fa 0728: 30 63 20 65 62 70 3d 30 0c ebp=0 0730: 32 34 36 66 61 33 38 20 246fa38 0738: 69 6f 70 6c 3d 30 20 20 iopl=0 0740: 20 20 20 20 20 20 20 6e n 0748: 76 20 75 70 20 65 69 20 v up ei 0750: 70 6c 20 6e 7a 20 6e 61 pl nz na 0758: 20 70 65 20 6e 63 0d 0a pe nc.. 0760: 63 73 3d 30 30 31 62 20 cs=001b 0768: 20 73 73 3d 30 30 32 33 ss=0023 0770: 20 20 64 73 3d 30 30 32 ds=002 0778: 33 20 20 65 73 3d 30 30 3 es=00 0780: 32 33 20 20 66 73 3d 30 23 fs=0 0788: 30 33 62 20 20 67 73 3d 03b gs= 0790: 30 30 30 30 20 20 20 20 0000 0798: 20 20 20 20 20 20 20 20 07a0: 20 65 66 6c 3d 30 30 30 efl=000 07a8: 30 30 32 30 32 0d 0a 0d 00202... 07b0: 0a 0d 0a 66 75 6e 63 74 ...funct 07b8: 69 6f 6e 3a 20 3c 6e 6f ion: 07c8: 0d 0a 46 41 55 4c 54 20 ..FAULT 07d0: 2d 3e 30 30 30 30 30 30 ->000000 07d8: 30 30 20 3f 3f 3f 0d 0a 00 ???.. 07e0: 20 20 20 20 20 20 20 20 07e8: 30 30 30 30 30 30 30 31 00000001 07f0: 20 3f 3f 3f 0d 0a 20 20 ???.. 07f8: 20 20 20 20 20 20 30 30 00 0800: 30 30 30 30 30 32 20 3f 000002 ? 0808: 3f 3f 0d 0a 20 20 20 20 ??.. 0810: 20 20 20 20 30 30 30 30 0000 0818: 30 30 30 33 20 3f 3f 3f 0003 ??? 0820: 0d 0a 0d 0a 2a 2d 2d 2d ....*--- 0828: 2d 3e 20 53 74 61 63 6b -> Stack 0830: 20 42 61 63 6b 20 54 72 Back Tr 0838: 61 63 65 20 3c 2d 2d 2d ace <--- 0840: 2d 2a 0d 0a 0d 0a 46 72 -*....Fr 0848: 61 6d 65 50 74 72 20 52 amePtr R 0850: 65 74 75 72 6e 41 64 20 eturnAd 0858: 50 61 72 61 6d 23 31 20 Param#1 0860: 20 50 61 72 61 6d 23 32 Param#2 0868: 20 20 50 61 72 61 6d 23 Param# 0870: 33 20 20 50 61 72 61 6d 3 Param 0878: 23 34 20 20 46 75 6e 63 #4 Func 0880: 74 69 6f 6e 20 4e 61 6d tion Nam 0888: 65 0d 0a 30 32 34 36 46 e..0246F 0890: 41 30 38 20 36 31 30 35 A08 6105 0898: 41 37 41 37 20 36 31 35 A7A7 615 08a0: 35 36 31 37 30 20 30 30 56170 00 08a8: 30 31 38 42 30 30 20 30 018B00 0 08b0: 32 34 36 46 41 33 38 20 246FA38 08b8: 36 31 30 35 41 37 38 33 6105A783 08c0: 20 21 3c 6e 6f 73 79 6d ! .. 08d0: 30 32 34 36 46 41 33 38 0246FA38 08d8: 20 36 31 30 30 34 34 32 6100442 08e0: 44 20 30 30 30 30 30 30 D 000000 08e8: 30 30 20 30 30 30 31 38 00 00018 08f0: 42 30 30 20 30 30 30 30 B00 0000 08f8: 30 30 38 42 20 36 31 30 008B 610 0900: 30 46 36 39 38 20 21 73 0F698 !s 0908: 74 72 73 65 70 20 0d 0a trsep .. 0910: 30 32 34 36 46 41 35 38 0246FA58 0918: 20 36 31 30 30 46 36 45 6100F6E 0920: 33 20 30 30 30 31 38 42 3 00018B 0928: 30 30 20 46 46 46 46 46 00 FFFFF 0930: 46 46 30 20 30 32 34 36 FF0 0246 0938: 46 42 41 43 20 30 32 36 FBAC 026 0940: 33 30 30 31 43 20 21 5f 3001C !_ 0948: 6d 61 69 6e 20 0d 0a 30 main ..0 0950: 32 34 36 46 41 38 38 20 246FA88 0958: 36 31 30 30 44 46 46 39 6100DFF9 0960: 20 30 30 30 30 30 30 38 0000008 0968: 42 20 30 32 34 36 46 42 B 0246FB 0970: 43 38 20 30 32 34 36 46 C8 0246F 0978: 41 45 38 20 36 31 30 30 AE8 6100 0980: 44 46 43 35 20 21 63 79 DFC5 !cy 0988: 67 77 69 6e 5f 73 74 61 gwin_sta 0990: 63 6b 64 75 6d 70 20 0d ckdump . 0998: 0a 30 32 34 36 46 41 45 .0246FAE 09a0: 38 20 37 37 46 38 46 34 8 77F8F4 09a8: 35 43 20 30 32 34 36 46 5C 0246F 09b0: 42 41 43 20 30 32 34 36 BAC 0246 09b8: 46 46 30 38 20 30 32 34 FF08 024 09c0: 36 46 42 43 38 20 30 32 6FBC8 02 09c8: 34 36 46 42 38 34 20 21 46FB84 ! 09d0: 63 79 67 77 69 6e 5f 73 cygwin_s 09d8: 74 61 63 6b 64 75 6d 70 tackdump 09e0: 20 0d 0a 30 32 34 36 46 ..0246F 09e8: 42 30 43 20 37 37 46 38 B0C 77F8 09f0: 46 33 46 41 20 30 32 34 F3FA 024 09f8: 36 46 42 41 43 20 30 32 6FBAC 02 0a00: 34 36 46 46 30 38 20 30 46FF08 0 0a08: 32 34 36 46 42 43 38 20 246FBC8 0a10: 30 32 34 36 46 42 38 34 0246FB84 0a18: 20 6e 74 64 6c 6c 21 77 ntdll!w 0a20: 63 73 6e 63 6d 70 20 0d csncmp . 0a28: 0a 30 32 34 36 46 42 39 .0246FB9 0a30: 34 20 37 37 46 41 30 33 4 77FA03 0a38: 34 36 20 30 32 34 36 46 46 0246F 0a40: 42 41 43 20 30 32 34 36 BAC 0246 0a48: 46 42 43 38 20 30 32 34 FBC8 024 0a50: 36 46 42 41 43 20 30 32 6FBAC 02 0a58: 34 36 46 42 43 38 20 6e 46FBC8 n 0a60: 74 64 6c 6c 21 77 63 73 tdll!wcs 0a68: 6e 63 6d 70 20 0d 0a 30 ncmp ..0 0a70: 32 34 36 46 45 43 30 20 246FEC0 0a78: 36 31 30 30 33 42 30 39 61003B09 0a80: 20 36 31 35 35 30 30 44 615500D 0a88: 38 20 30 30 30 30 30 30 8 000000 0a90: 46 30 20 30 32 34 36 46 F0 0246F 0a98: 46 31 30 20 36 31 30 30 F10 6100 0aa0: 33 39 38 42 20 6e 74 64 398B ntd 0aa8: 6c 6c 21 4b 69 55 73 65 ll!KiUse 0ab0: 72 45 78 63 65 70 74 69 rExcepti 0ab8: 6f 6e 44 69 73 70 61 74 onDispat 0ac0: 63 68 65 72 20 0d 0a 30 cher ..0 0ac8: 32 34 36 46 46 31 30 20 246FF10 0ad0: 36 31 30 30 34 31 42 39 610041B9 0ad8: 20 30 30 30 30 30 30 30 0000000 0ae0: 30 20 30 30 34 31 32 41 0 00412A 0ae8: 30 43 20 42 41 45 46 45 0C BAEFE 0af0: 43 34 43 20 30 30 30 30 C4C 0000 0af8: 30 30 30 31 20 21 5f 61 0001 !_a 0b00: 73 73 65 72 74 20 0d 0a ssert .. 0b08: 30 32 34 36 46 46 34 30 0246FF40 0b10: 20 36 31 30 30 34 31 46 610041F 0b18: 38 20 30 30 34 30 39 46 8 00409F 0b20: 33 43 20 30 30 34 31 32 3C 00412 0b28: 41 30 43 20 38 31 33 38 A0C 8138 0b30: 44 44 41 30 20 30 30 30 DDA0 000 0b38: 30 30 30 30 30 20 21 64 00000 !d 0b40: 6c 6c 5f 63 72 74 30 20 ll_crt0 0b48: 0d 0a 30 32 34 36 46 46 ..0246FF 0b50: 36 30 20 30 30 34 34 45 60 0044E 0b58: 43 46 38 20 30 30 30 30 CF8 0000 0b60: 30 30 30 30 20 30 30 30 0000 000 0b68: 30 30 30 30 30 20 38 31 00000 81 0b70: 33 38 44 46 33 30 20 30 38DF30 0 0b78: 30 30 30 30 30 30 35 20 0000005 0b80: 21 64 6c 6c 5f 63 72 74 !dll_crt 0b88: 30 5f 5f 46 50 31 31 70 0__FP11p 0b90: 65 72 5f 70 72 6f 63 65 er_proce 0b98: 73 73 20 0d 0a 30 32 34 ss ..024 0ba0: 36 46 46 39 30 20 30 30 6FF90 00 0ba8: 34 30 31 30 33 42 20 30 40103B 0 0bb0: 30 34 30 39 46 33 43 20 0409F3C 0bb8: 46 46 46 46 46 46 46 46 FFFFFFFF 0bc0: 20 38 30 34 33 30 44 37 80430D7 0bc8: 37 20 30 30 30 30 30 30 7 000000 0bd0: 30 30 20 21 3c 6e 6f 73 00 ! 0be0: 0d 0a 30 32 34 36 46 46 ..0246FF 0be8: 43 30 20 37 37 45 39 37 C0 77E97 0bf0: 44 30 38 20 30 30 34 31 D08 0041 0bf8: 32 41 30 43 20 30 30 32 2A0C 002 0c00: 32 46 37 36 34 20 37 46 2F764 7F 0c08: 46 44 46 30 30 30 20 43 FDF000 C 0c10: 30 30 30 30 30 30 35 20 0000005 0c18: 21 3c 6e 6f 73 79 6d 62 ! ..0 0c28: 32 34 36 46 46 46 30 20 246FFF0 0c30: 30 30 30 30 30 30 30 30 00000000 0c38: 20 30 30 34 30 31 30 30 0040100 0c40: 30 20 30 30 30 30 30 30 0 000000 0c48: 30 30 20 30 30 30 30 30 00 00000 0c50: 30 43 38 20 30 30 30 30 0C8 0000 0c58: 30 31 30 30 20 6b 65 72 0100 ker 0c60: 6e 65 6c 33 32 21 43 72 nel32!Cr 0c68: 65 61 74 65 50 72 6f 63 eateProc 0c70: 65 73 73 57 20 0d 0a 0d essW ... 0c78: 0a 2a 2d 2d 2d 2d 3e 20 .*----> 0c80: 52 61 77 20 53 74 61 63 Raw Stac 0c88: 6b 20 44 75 6d 70 20 3c k Dump < 0c90: 2d 2d 2d 2d 2a 0d 0a 30 ----*..0 0c98: 32 34 36 66 61 30 63 20 246fa0c 0ca0: 20 61 37 20 61 37 20 30 a7 a7 0 0ca8: 35 20 36 31 20 37 30 20 5 61 70 0cb0: 36 31 20 35 35 20 36 31 61 55 61 0cb8: 20 2d 20 30 30 20 38 62 - 00 8b 0cc0: 20 30 31 20 30 30 20 33 01 00 3 0cc8: 38 20 66 61 20 34 36 20 8 fa 46 0cd0: 30 32 20 20 2e 2e 2e 61 02 ...a 0cd8: 70 61 55 61 2e 2e 2e 2e paUa.... 0ce0: 38 2e 46 2e 0d 0a 30 32 8.F...02 0ce8: 34 36 66 61 31 63 20 20 46fa1c 0cf0: 38 33 20 61 37 20 30 35 83 a7 05 0cf8: 20 36 31 20 30 30 20 38 61 00 8 0d00: 62 20 30 31 20 30 30 20 b 01 00 0d08: 2d 20 30 31 20 30 30 20 - 01 00 0d10: 30 30 20 30 30 20 35 38 00 00 58 0d18: 20 66 61 20 34 36 20 30 fa 46 0 0d20: 32 20 20 2e 2e 2e 61 2e 2 ...a. 0d28: 2e 2e 2e 2e 2e 2e 2e 58 .......X 0d30: 2e 46 2e 0d 0a 30 32 34 .F...024 0d38: 36 66 61 32 63 20 20 30 6fa2c 0 0d40: 36 20 34 34 20 30 30 20 6 44 00 0d48: 36 31 20 30 32 20 30 30 61 02 00 0d50: 20 30 30 20 30 30 20 2d 00 00 - 0d58: 20 30 31 20 30 30 20 30 01 00 0 0d60: 30 20 30 30 20 35 38 20 0 00 58 0d68: 66 61 20 34 36 20 30 32 fa 46 02 0d70: 20 20 2e 44 2e 61 2e 2e .D.a.. 0d78: 2e 2e 2e 2e 2e 2e 58 2e ......X. 0d80: 46 2e 0d 0a 30 32 34 36 F...0246 0d88: 66 61 33 63 20 20 32 64 fa3c 2d 0d90: 20 34 34 20 30 30 20 36 44 00 6 0d98: 31 20 30 30 20 30 30 20 1 00 00 0da0: 30 30 20 30 30 20 2d 20 00 00 - 0da8: 30 30 20 38 62 20 30 31 00 8b 01 0db0: 20 30 30 20 38 62 20 30 00 8b 0 0db8: 30 20 30 30 20 30 30 20 0 00 00 0dc0: 20 2d 44 2e 61 2e 2e 2e -D.a... 0dc8: 2e 2e 2e 2e 2e 2e 2e 2e ........ 0dd0: 2e 0d 0a 30 32 34 36 66 ...0246f 0dd8: 61 34 63 20 20 39 38 20 a4c 98 0de0: 66 36 20 30 30 20 36 31 f6 00 61 0de8: 20 64 30 20 62 61 20 30 d0 ba 0 0df0: 39 20 36 31 20 2d 20 30 9 61 - 0 0df8: 31 20 30 30 20 30 30 20 1 00 00 0e00: 30 30 20 38 38 20 66 61 00 88 fa 0e08: 20 34 36 20 30 32 20 20 46 02 0e10: 2e 2e 2e 61 2e 2e 2e 61 ...a...a 0e18: 2e 2e 2e 2e 2e 2e 46 2e ......F. 0e20: 0d 0a 30 32 34 36 66 61 ..0246fa 0e28: 35 63 20 20 65 33 20 66 5c e3 f 0e30: 36 20 30 30 20 36 31 20 6 00 61 0e38: 30 30 20 38 62 20 30 31 00 8b 01 0e40: 20 30 30 20 2d 20 66 30 00 - f0 0e48: 20 66 66 20 66 66 20 66 ff ff f 0e50: 66 20 61 63 20 66 62 20 f ac fb 0e58: 34 36 20 30 32 20 20 2e 46 02 . 0e60: 2e 2e 61 2e 2e 2e 2e 2e ..a..... 0e68: 2e 2e 2e 2e 2e 46 2e 0d .....F.. 0e70: 0a 30 32 34 36 66 61 36 .0246fa6 0e78: 63 20 20 31 63 20 30 30 c 1c 00 0e80: 20 36 33 20 30 32 20 37 63 02 7 0e88: 63 20 66 63 20 34 36 20 c fc 46 0e90: 30 32 20 2d 20 61 63 20 02 - ac 0e98: 66 62 20 34 36 20 30 32 fb 46 02 0ea0: 20 65 38 20 66 61 20 34 e8 fa 4 0ea8: 36 20 30 32 20 20 2e 2e 6 02 .. 0eb0: 63 2e 7c 2e 46 2e 2e 2e c.|.F... 0eb8: 46 2e 2e 2e 46 2e 0d 0a F...F... 0ec0: 30 32 34 36 66 61 37 63 0246fa7c 0ec8: 20 20 65 36 20 64 66 20 e6 df 0ed0: 30 30 20 36 31 20 37 63 00 61 7c 0ed8: 20 66 63 20 34 36 20 30 fc 46 0 0ee0: 32 20 2d 20 30 30 20 30 2 - 00 0 0ee8: 30 20 30 30 20 30 30 20 0 00 00 0ef0: 65 38 20 66 61 20 34 36 e8 fa 46 0ef8: 20 30 32 20 20 2e 2e 2e 02 ... 0f00: 61 7c 2e 46 2e 2e 2e 2e a|.F.... 0f08: 2e 2e 2e 46 2e 0d 0a 30 ...F...0 0f10: 32 34 36 66 61 38 63 20 246fa8c 0f18: 20 66 39 20 64 66 20 30 f9 df 0 0f20: 30 20 36 31 20 38 62 20 0 61 8b 0f28: 30 30 20 30 30 20 30 30 00 00 00 0f30: 20 2d 20 63 38 20 66 62 - c8 fb 0f38: 20 34 36 20 30 32 20 65 46 02 e 0f40: 38 20 66 61 20 34 36 20 8 fa 46 0f48: 30 32 20 20 2e 2e 2e 61 02 ...a 0f50: 2e 2e 2e 2e 2e 2e 46 2e ......F. 0f58: 2e 2e 46 2e 0d 0a 30 32 ..F...02 0f60: 34 36 66 61 39 63 20 20 46fa9c 0f68: 63 35 20 64 66 20 30 30 c5 df 00 0f70: 20 36 31 20 30 38 20 66 61 08 f 0f78: 66 20 34 36 20 30 32 20 f 46 02 0f80: 2d 20 61 63 20 66 62 20 - ac fb 0f88: 34 36 20 30 32 20 64 38 46 02 d8 0f90: 20 30 30 20 35 35 20 36 00 55 6 0f98: 31 20 20 2e 2e 2e 61 2e 1 ...a. 0fa0: 2e 46 2e 2e 2e 46 2e 2e .F...F.. 0fa8: 2e 55 61 0d 0a 30 32 34 .Ua..024 0fb0: 36 66 61 61 63 20 20 30 6faac 0 0fb8: 30 20 30 30 20 30 30 20 0 00 00 0fc0: 30 30 20 33 33 20 32 39 00 33 29 0fc8: 20 66 38 20 37 37 20 2d f8 77 - 0fd0: 20 30 30 20 30 30 20 34 00 00 4 0fd8: 37 20 30 32 20 38 30 20 7 02 80 0fe0: 35 35 20 34 37 20 30 32 55 47 02 0fe8: 20 20 2e 2e 2e 2e 33 29 ....3) 0ff0: 2e 77 2e 2e 47 2e 2e 55 .w..G..U 0ff8: 47 2e 0d 0a 30 32 34 36 G...0246 1000: 66 61 62 63 20 20 30 30 fabc 00 1008: 20 30 30 20 30 30 20 30 00 00 0 1010: 30 20 62 34 20 66 61 20 0 b4 fa 1018: 34 36 20 30 32 20 2d 20 46 02 - 1020: 38 38 20 30 36 20 34 37 88 06 47 1028: 20 30 32 20 36 38 20 66 02 68 f 1030: 62 20 34 36 20 30 32 20 b 46 02 1038: 20 2e 2e 2e 2e 2e 2e 46 ......F 1040: 2e 2e 2e 47 2e 68 2e 46 ...G.h.F 1048: 2e 0d 0a 30 32 34 36 66 ...0246f 1050: 61 63 63 20 20 61 37 20 acc a7 1058: 39 64 20 66 62 20 37 37 9d fb 77 1060: 20 35 30 20 32 39 20 66 50 29 f 1068: 38 20 37 37 20 2d 20 65 8 77 - e 1070: 38 20 66 61 20 34 36 20 8 fa 46 1078: 30 32 20 37 38 20 66 62 02 78 fb 1080: 20 34 36 20 30 32 20 20 46 02 1088: 2e 2e 2e 77 50 29 2e 77 ...wP).w 1090: 2e 2e 46 2e 78 2e 46 2e ..F.x.F. 1098: 0d 0a 30 32 34 36 66 61 ..0246fa 10a0: 64 63 20 20 64 65 20 62 dc de b 10a8: 36 20 66 63 20 37 37 20 6 fc 77 10b0: 36 38 20 30 38 20 34 37 68 08 47 10b8: 20 30 32 20 2d 20 38 62 02 - 8b 10c0: 20 30 30 20 30 30 20 30 00 00 0 10c8: 30 20 30 63 20 66 62 20 0 0c fb 10d0: 34 36 20 30 32 20 20 2e 46 02 . 10d8: 2e 2e 77 68 2e 47 2e 2e ..wh.G.. 10e0: 2e 2e 2e 2e 2e 46 2e 0d .....F.. 10e8: 0a 30 32 34 36 66 61 65 .0246fae 10f0: 63 20 20 35 63 20 66 34 c 5c f4 10f8: 20 66 38 20 37 37 20 61 f8 77 a 1100: 63 20 66 62 20 34 36 20 c fb 46 1108: 30 32 20 2d 20 30 38 20 02 - 08 1110: 66 66 20 34 36 20 30 32 ff 46 02 1118: 20 63 38 20 66 62 20 34 c8 fb 4 1120: 36 20 30 32 20 20 5c 2e 6 02 \. 1128: 2e 77 2e 2e 46 2e 2e 2e .w..F... 1130: 46 2e 2e 2e 46 2e 0d 0a F...F... 1138: 30 32 34 36 66 61 66 63 0246fafc 1140: 20 20 38 34 20 66 62 20 84 fb 1148: 34 36 20 30 32 20 30 38 46 02 08 1150: 20 66 66 20 34 36 20 30 ff 46 0 1158: 32 20 2d 20 62 35 20 66 2 - b5 f 1160: 35 20 66 38 20 37 37 20 5 f8 77 1168: 30 38 20 66 66 20 34 36 08 ff 46 1170: 20 30 32 20 20 2e 2e 46 02 ..F 1178: 2e 2e 2e 46 2e 2e 2e 2e ...F.... 1180: 77 2e 2e 46 2e 0d 0a 30 w..F...0 1188: 32 34 36 66 62 30 63 20 246fb0c 1190: 20 39 34 20 66 62 20 34 94 fb 4 1198: 36 20 30 32 20 66 61 20 6 02 fa 11a0: 66 33 20 66 38 20 37 37 f3 f8 77 11a8: 20 2d 20 61 63 20 66 62 - ac fb 11b0: 20 34 36 20 30 32 20 30 46 02 0 11b8: 38 20 66 66 20 34 36 20 8 ff 46 11c0: 30 32 20 20 2e 2e 46 2e 02 ..F. 11c8: 2e 2e 2e 77 2e 2e 46 2e ...w..F. 11d0: 2e 2e 46 2e 0d 0a 30 32 ..F...02 11d8: 34 36 66 62 31 63 20 20 46fb1c 11e0: 63 38 20 66 62 20 34 36 c8 fb 46 11e8: 20 30 32 20 38 34 20 66 02 84 f 11f0: 62 20 34 36 20 30 32 20 b 46 02 11f8: 2d 20 37 38 20 64 62 20 - 78 db 1200: 30 30 20 36 31 20 64 38 00 61 d8 1208: 20 30 30 20 35 35 20 36 00 55 6 1210: 31 20 20 2e 2e 46 2e 2e 1 ..F.. 1218: 2e 46 2e 78 2e 2e 61 2e .F.x..a. 1220: 2e 55 61 0d 0a 30 32 34 .Ua..024 1228: 36 66 62 32 63 20 20 30 6fb2c 0 1230: 30 20 30 30 20 30 30 20 0 00 00 1238: 30 30 20 61 63 20 66 62 00 ac fb 1240: 20 34 36 20 30 32 20 2d 46 02 - 1248: 20 30 30 20 30 30 20 30 00 00 0 1250: 30 20 30 30 20 30 31 20 0 00 01 1258: 30 30 20 31 66 20 30 30 00 1f 00 1260: 20 20 2e 2e 2e 2e 2e 2e ...... 1268: 46 2e 2e 2e 2e 2e 2e 2e F....... 1270: 2e 2e 0d 0a 30 32 34 36 ....0246 1278: 66 62 33 63 20 20 38 38 fb3c 88 1280: 20 35 35 20 34 37 20 30 55 47 0 1288: 32 20 35 38 20 35 35 20 2 58 55 1290: 34 37 20 30 32 20 2d 20 47 02 - 1298: 30 30 20 30 30 20 34 37 00 00 47 12a0: 20 30 32 20 30 61 20 30 02 0a 0 12a8: 30 20 30 30 20 30 30 20 0 00 00 12b0: 20 2e 55 47 2e 58 55 47 .UG.XUG 12b8: 2e 2e 2e 47 2e 2e 2e 2e ...G.... 12c0: 2e 0d 0a 0d 0a ..... Here is the relivent sections of my startxwin.sh script. I get the error if I use this script or startx. # Start the X Server. XWin -screen 0 1280 1024 -emulate3buttons 100 & # Start the twm window manager. twm & # Set a background color to hide that nasty X stipple. xsetroot -solid midnightblue # Start an xterm. #xterm -n xterm-1 -j -ls -sb -sl 500 -rightbar -geometry +361+0 -e bash & xterm -geometry 80x50+507+0 -bg black -fg green -sb -sl 2500 & xterm -geometry 80x20+765-18 -bg black -fg yellow -sb -sl 2500 & xterm -geometry 80x66+0+0 -name login -bg black -fg yellow -sb -sl 2500 & # Return from sh. exit Kent -- 'My Fellow Americans, Let's Roll' -- President George W. Bush From briangenisio@yahoo.com Mon Dec 17 09:01:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 09:01:00 -0000 Subject: After upgrading last night, Xfree no longer works. In-Reply-To: <3C1E215B.6020008@oneco.net> Message-ID: <20011217170031.22672.qmail@web20803.mail.yahoo.com> Hmmmm... I just upgraded cygwin, and Xfree still works. Have you downloaded the most recent versions of the XFree binaries? When you say it doesnt work, what do you mean? Does it start, and when you connect an app, it dies? Does it Segfault? What does it do? I would recommend the most recent Xfree binaries. Brian --- Kent Perrier wrote: > Last night, I upgraded my cygwin (primarially to get the bc utulity, but > setup upgraded several other things as well) and I find out this morning > that XFree no longer works. Has anyone else seen this? Here is the > info out of the event log: > Event Type: Information > Event Source: DrWatson > Event Category: None > Event ID: 4097 > Date: > 12/17/2001 > Time: > 10:35:04 AM > User: > N/A > Computer: > SEAWOLF > Description: > The application, , generated an application error The error occurred on > 12/17/2001 @ 10:35:04.670 The exception generated was c0000005 at > address 00000000 () > Data: > 0000: 0d 0a 0d 0a 41 70 70 6c ....Appl > 0008: 69 63 61 74 69 6f 6e 20 ication > 0010: 65 78 63 65 70 74 69 6f exceptio > 0018: 6e 20 6f 63 63 75 72 72 n occurr > 0020: 65 64 3a 0d 0a 20 20 20 ed:.. > 0028: 20 20 20 20 20 41 70 70 App > 0030: 3a 20 20 28 70 69 64 3d : (pid= > 0038: 31 34 38 34 29 0d 0a 20 1484).. > 0040: 20 20 20 20 20 20 20 57 W > 0048: 68 65 6e 3a 20 31 32 2f hen: 12/ > 0050: 31 37 2f 32 30 30 31 20 17/2001 > 0058: 40 20 31 30 3a 33 35 3a @ 10:35: > 0060: 30 34 2e 36 37 30 0d 0a 04.670.. > 0068: 20 20 20 20 20 20 20 20 > 0070: 45 78 63 65 70 74 69 6f Exceptio > 0078: 6e 20 6e 75 6d 62 65 72 n number > 0080: 3a 20 63 30 30 30 30 30 : c00000 > 0088: 30 35 20 28 61 63 63 65 05 (acce > 0090: 73 73 20 76 69 6f 6c 61 ss viola > 0098: 74 69 6f 6e 29 0d 0a 0d tion)... > 00a0: 0a 2a 2d 2d 2d 2d 3e 20 .*----> > 00a8: 53 79 73 74 65 6d 20 49 System I > 00b0: 6e 66 6f 72 6d 61 74 69 nformati > 00b8: 6f 6e 20 3c 2d 2d 2d 2d on <---- > 00c0: 2a 0d 0a 20 20 20 20 20 *.. > 00c8: 20 20 20 43 6f 6d 70 75 Compu > 00d0: 74 65 72 20 4e 61 6d 65 ter Name > 00d8: 3a 20 53 45 41 57 4f 4c : SEAWOL > 00e0: 46 0d 0a 20 20 20 20 20 F.. > 00e8: 20 20 20 55 73 65 72 20 User > 00f0: 4e 61 6d 65 3a 20 6b 70 Name: kp > 00f8: 65 72 72 69 65 72 0d 0a errier.. > 0100: 20 20 20 20 20 20 20 20 > 0108: 4e 75 6d 62 65 72 20 6f Number o > 0110: 66 20 50 72 6f 63 65 73 f Proces > 0118: 73 6f 72 73 3a 20 31 0d sors: 1. > 0120: 0a 20 20 20 20 20 20 20 . > 0128: 20 50 72 6f 63 65 73 73 Process > 0130: 6f 72 20 54 79 70 65 3a or Type: > 0138: 20 78 38 36 20 46 61 6d x86 Fam > 0140: 69 6c 79 20 36 20 4d 6f ily 6 Mo > 0148: 64 65 6c 20 38 20 53 74 del 8 St > 0150: 65 70 70 69 6e 67 20 31 epping 1 > 0158: 30 0d 0a 20 20 20 20 20 0.. > 0160: 20 20 20 57 69 6e 64 6f Windo > 0168: 77 73 20 32 30 30 30 20 ws 2000 > 0170: 56 65 72 73 69 6f 6e 3a Version: > 0178: 20 35 2e 30 0d 0a 20 20 5.0.. > 0180: 20 20 20 20 20 20 43 75 Cu > 0188: 72 72 65 6e 74 20 42 75 rrent Bu > 0190: 69 6c 64 3a 20 32 31 39 ild: 219 > 0198: 35 0d 0a 20 20 20 20 20 5.. > 01a0: 20 20 20 53 65 72 76 69 Servi > 01a8: 63 65 20 50 61 63 6b 3a ce Pack: > 01b0: 20 32 0d 0a 20 20 20 20 2.. > 01b8: 20 20 20 20 43 75 72 72 Curr > 01c0: 65 6e 74 20 54 79 70 65 ent Type > 01c8: 3a 20 55 6e 69 70 72 6f : Unipro > 01d0: 63 65 73 73 6f 72 20 46 cessor F > 01d8: 72 65 65 0d 0a 20 20 20 ree.. > 01e0: 20 20 20 20 20 52 65 67 Reg > 01e8: 69 73 74 65 72 65 64 20 istered > 01f0: 4f 72 67 61 6e 69 7a 61 Organiza > 01f8: 74 69 6f 6e 3a 20 4f 6e tion: On > 0200: 65 20 43 6f 6d 6d 75 6e e Commun > 0208: 69 74 79 2c 20 49 6e 63 ity, Inc > 0210: 0d 0a 20 20 20 20 20 20 .. > 0218: 20 20 52 65 67 69 73 74 Regist > 0220: 65 72 65 64 20 4f 77 6e ered Own > 0228: 65 72 3a 20 4f 6e 65 20 er: One > 0230: 43 6f 6d 6d 75 6e 69 74 Communit > 0238: 79 2c 20 49 6e 63 0d 0a y, Inc.. > 0240: 0d 0a 2a 2d 2d 2d 2d 3e ..*----> > 0248: 20 54 61 73 6b 20 4c 69 Task Li > 0250: 73 74 20 3c 2d 2d 2d 2d st <---- > 0258: 2a 0d 0a 20 20 20 30 20 *.. 0 > 0260: 49 64 6c 65 2e 65 78 65 Idle.exe > 0268: 0d 0a 20 20 20 38 20 53 .. 8 S > 0270: 79 73 74 65 6d 2e 65 78 ystem.ex > 0278: 65 0d 0a 20 31 36 34 20 e.. 164 > 0280: 73 6d 73 73 2e 65 78 65 smss.exe > 0288: 0d 0a 20 31 39 32 20 63 .. 192 c > 0290: 73 72 73 73 2e 65 78 65 srss.exe > 0298: 0d 0a 20 32 31 32 20 77 .. 212 w > 02a0: 69 6e 6c 6f 67 6f 6e 2e inlogon. > 02a8: 65 78 65 0d 0a 20 32 34 exe.. 24 > 02b0: 34 20 73 65 72 76 69 63 4 servic > 02b8: 65 73 2e 65 78 65 0d 0a es.exe.. > 02c0: 20 32 35 36 20 6c 73 61 256 lsa > 02c8: 73 73 2e 65 78 65 0d 0a ss.exe.. > 02d0: 20 33 38 38 20 73 76 63 388 svc > 02d8: 68 6f 73 74 2e 65 78 65 host.exe > 02e0: 0d 0a 20 34 34 34 20 73 .. 444 s > 02e8: 76 63 68 6f 73 74 2e 65 vchost.e > 02f0: 78 65 0d 0a 20 34 39 32 xe.. 492 > 02f8: 20 73 70 6f 6f 6c 73 76 spoolsv > 0300: 2e 65 78 65 0d 0a 20 35 .exe.. 5 > 0308: 36 34 20 41 74 69 32 65 64 Ati2e > 0310: 76 78 78 2e 65 78 65 0d vxx.exe. > 0318: 0a 20 36 31 36 20 68 74 . 616 ht > 0320: 74 70 64 2e 65 78 65 0d tpd.exe. > 0328: 0a 20 36 32 30 20 69 6e . 620 in > 0330: 65 74 64 33 32 2e 65 78 etd32.ex > 0338: 65 0d 0a 20 36 33 32 20 e.. 632 > 0340: 68 74 74 70 64 2e 65 78 httpd.ex > 0348: 65 0d 0a 20 36 34 34 20 e.. 644 > 0350: 68 74 74 70 64 2e 65 78 httpd.ex > 0358: 65 0d 0a 20 36 38 30 20 e.. 680 > 0360: 6a 63 6f 6e 66 69 67 64 jconfigd > 0368: 4e 54 2e 65 78 65 0d 0a NT.exe.. > 0370: 20 36 39 36 20 68 6a 61 696 hja > 0378: 76 61 77 2e 65 78 65 0d vaw.exe. > 0380: 0a 20 37 30 34 20 6e 61 . 704 na > 0388: 76 61 70 73 76 63 2e 65 vapsvc.e > 0390: 78 65 0d 0a 20 37 31 32 xe.. 712 > 0398: 20 6a 61 76 61 77 2e 65 javaw.e > 03a0: 78 65 0d 0a 20 37 36 38 xe.. 768 > 03a8: 20 6e 70 73 73 76 63 2e npssvc. > 03b0: 65 78 65 0d 0a 20 37 39 exe.. 79 > 03b8: 32 20 72 65 67 73 76 63 2 regsvc > 03c0: 2e 65 78 65 0d 0a 20 38 .exe.. 8 > 03c8: 32 30 20 4d 53 54 61 73 20 MSTas > 03d0: 6b 2e 65 78 65 0d 0a 20 k.exe.. > 03d8: 38 34 34 20 57 69 6e 4d 844 WinM > 03e0: 67 6d 74 2e 65 78 65 0d gmt.exe. > 03e8: 0a 20 34 30 30 20 61 6c . 400 al > 03f0: 65 72 74 73 76 63 2e 65 ertsvc.e > 03f8: 78 65 0d 0a 20 35 36 38 xe.. 568 > 0400: 20 45 78 70 6c 6f 72 65 Explore > 0408: 72 2e 65 78 65 0d 0a 31 r.exe..1 > 0410: 32 35 36 20 41 74 69 70 256 Atip > 0418: 74 61 78 78 2e 65 78 65 taxx.exe > 0420: 0d 0a 31 32 38 30 20 64 ..1280 d > 0428: 61 65 6d 6f 6e 2e 65 78 aemon.ex > 0430: 65 0d 0a 20 39 39 32 20 e.. 992 > 0438: 52 65 61 6c 50 6c 61 79 RealPlay > 0440: 2e 65 78 65 0d 0a 31 32 .exe..12 > 0448: 36 38 20 57 69 6e 61 6d 68 Winam > 0450: 70 61 2e 65 78 65 0d 0a pa.exe.. > 0458: 31 33 30 30 20 64 69 72 1300 dir > 0460: 65 63 74 63 64 2e 65 78 ectcd.ex > 0468: 65 0d 0a 31 33 30 38 20 e..1308 > 0470: 43 72 65 61 74 65 43 44 CreateCD > 0478: 2e 65 78 65 0d 0a 31 33 .exe..13 > 0480: 32 30 20 4d 6f 7a 69 6c 20 Mozil > 0488: 6c 61 2e 65 78 65 0d 0a la.exe.. > 0490: 31 33 32 38 20 6e 61 76 1328 nav > 0498: 61 70 77 33 32 2e 65 78 apw32.ex > 04a0: 65 0d 0a 31 33 34 38 20 e..1348 > 04a8: 41 63 72 6f 54 72 61 79 AcroTray > 04b0: 2e 65 78 65 0d 0a 31 34 .exe..14 > 04b8: 30 30 20 6d 73 6f 66 66 00 msoff > 04c0: 69 63 65 2e 65 78 65 0d ice.exe. > 04c8: 0a 20 39 38 30 20 53 65 . 980 Se > 04d0: 63 75 72 65 43 52 54 2e cureCRT. > 04d8: 65 78 65 0d 0a 20 35 33 exe.. 53 > 04e0: 32 20 63 6d 64 2e 65 78 2 cmd.ex > 04e8: 65 0d 0a 20 38 38 30 20 e.. 880 > 04f0: 62 61 73 68 2e 65 78 65 bash.exe > 04f8: 0d 0a 31 30 39 32 20 63 ..1092 c > 0500: 6d 64 2e 65 78 65 0d 0a md.exe.. > 0508: 31 35 34 38 20 62 61 73 1548 bas > 0510: 68 2e 65 78 65 0d 0a 31 h.exe..1 > 0518: 34 36 38 20 73 68 2e 65 468 sh.e > 0520: 78 65 0d 0a 31 34 38 34 xe..1484 > 0528: 20 74 77 6d 2e 65 78 65 twm.exe > 0530: 0d 0a 20 37 35 36 20 64 .. 756 d > 0538: 72 77 74 73 6e 33 32 2e rwtsn32. > 0540: 65 78 65 0d 0a 31 35 34 exe..154 > 0548: 30 20 64 72 77 74 73 6e 0 drwtsn > 0550: 33 32 2e 65 78 65 0d 0a 32.exe.. > 0558: 31 34 37 36 20 64 72 77 1476 drw > 0560: 74 73 6e 33 32 2e 65 78 tsn32.ex > 0568: 65 0d 0a 31 35 31 36 20 e..1516 > 0570: 78 74 65 72 6d 2e 65 78 xterm.ex > 0578: 65 0d 0a 31 35 37 36 20 e..1576 > 0580: 78 74 65 72 6d 2e 65 78 xterm.ex > 0588: 65 0d 0a 31 35 39 36 20 e..1596 > 0590: 78 74 65 72 6d 2e 65 78 xterm.ex > 0598: 65 0d 0a 20 20 20 30 20 e.. 0 > === message truncated === __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From kent.perrier@oneco.net Mon Dec 17 09:32:00 2001 From: kent.perrier@oneco.net (Kent Perrier) Date: Mon, 17 Dec 2001 09:32:00 -0000 Subject: After upgrading last night, Xfree no longer works. References: <20011217170031.22672.qmail@web20803.mail.yahoo.com> Message-ID: <3C1E2B90.1010106@oneco.net> On 12/17/2001 11:00 AM, Brian Genisio wrote: > Hmmmm... I just upgraded cygwin, and Xfree still works. Have you downloaded > the most recent versions of the XFree binaries? When you say it doesnt work, > what do you mean? Does it start, and when you connect an app, it dies? Does > it Segfault? What does it do? I would recommend the most recent Xfree > binaries. As a followup, I cannot upgrade due to the extract.exe that I unbzip2'd crashes as well. Do I have to uninstall cygwin and reinstall to get a working XFree? Kent -- 'My Fellow Americans, Let's Roll' -- President George W. Bush From derk.steggewentz@autodesk.com Mon Dec 17 09:45:00 2001 From: derk.steggewentz@autodesk.com (derk.steggewentz@autodesk.com) Date: Mon, 17 Dec 2001 09:45:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: As Bo Zhang pointed out in an earlier posting, Solaris (at least version 8) has a fontserver running by default on port 7100. So there is no need to start one on your own on the solaris box. This should do it (on your win/xfree box): ./XWin.exe -query -from -fp tcp/:7100 To make text look a bit nicer on my windows box I changed some font settings on the Solaris box, in the file /usr/dt/config/C/Xresources. Derk -----Original Message----- From: Julien Gilles [mailto:jgilles@glmultimedia.com] Sent: December 17, 2001 7:58 AM To: cygwin-xfree@cygwin.com Subject: Re: XDMCP - Solaris hangs derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & Thanks a lot ! Should be added to the faq... (Q 4.9, http:?cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) -- Julien Gilles From briangenisio@yahoo.com Mon Dec 17 09:51:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 09:51:00 -0000 Subject: After upgrading last night, Xfree no longer works. In-Reply-To: <3C1E2B90.1010106@oneco.net> Message-ID: <20011217175010.73127.qmail@web20807.mail.yahoo.com> Well, if extract.exe is also "crashing" (Still dont know what "crashing" means), I assume your cygwin install is having some problems. I updated to the most recent dll 3 hours ago, and it all works for me, with the most recent version of extract.exe. If your cygwin install is having some problems, it is very easy to re-install it. Simply move your directory to a different name for a temporary backup, and re-install the cygwin binaries. Thats all I can say with what little I know about your problem. Brian --- Kent Perrier wrote: > On 12/17/2001 11:00 AM, Brian Genisio wrote: > > > Hmmmm... I just upgraded cygwin, and Xfree still works. Have you > downloaded > > the most recent versions of the XFree binaries? When you say it doesnt > work, > > what do you mean? Does it start, and when you connect an app, it dies? > Does > > it Segfault? What does it do? I would recommend the most recent Xfree > > binaries. > > > As a followup, I cannot upgrade due to the extract.exe that I unbzip2'd > crashes as well. Do I have to uninstall cygwin and reinstall to get a > working XFree? > > > Kent > -- > 'My Fellow Americans, Let's Roll' > > -- President George W. Bush __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From freeweb@nyckelpiga.de Mon Dec 17 10:08:00 2001 From: freeweb@nyckelpiga.de (Gerrit P. Haase) Date: Mon, 17 Dec 2001 10:08:00 -0000 Subject: Imlib patch updated, gtk patch extended (was:Re: esound.dll [gnome patches]) In-Reply-To: <72FAAE98015DD511B42600D0B747AC7F01471DCD@kipling.br.itc.hp.com> References: <72FAAE98015DD511B42600D0B747AC7F01471DCD@kipling.br.itc.hp.com> Message-ID: <17226821887.20011217190259@familiehaase.de> Hallo ex1), 2001-12-17 17:26:45, du schriebst: > Please do not send me personal mail re cygwin. I have put my gnome patches > at: > http://website.lineone.net/~steven_obrien > Sorry, no binaries, no ftp. I've updated the Imlib patch to version 1.9.11 and extended the gtk+ patch because I had problems building Imlib and gnomelibs because the configure couldn't figure out the version of gtk and some other undefined references, the new patches are replacements for the patches at Steven's site. All these patches doesn't work OOTB with libtool because the installed lib......la isn't correct after installation!!! The libs get installed in the correct ./bin directory, but libtool searches in ./lib , they all needs to be changed to look like this: # The name that we can dlopen(3). dlname='../bin/cygglib.dll' instead of: # The name that we can dlopen(3). dlname='cygglib.dll' This is NOT adressed by these patches!!! The NEW patches are attached, get the others at the site quoted above. Gerrit -- begin signature: =^..^= end signature -------------- next part -------------- A non-text attachment was scrubbed... Name: gtk-1.2.10-cygwin.patch Type: application/octet-stream Size: 16687 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: imlib-1.9.11-cygwin.patch Type: application/octet-stream Size: 11101 bytes Desc: not available URL: From JohanJvanWyk@eaton.com Mon Dec 17 14:13:00 2001 From: JohanJvanWyk@eaton.com (vanWyk, Johan J) Date: Mon, 17 Dec 2001 14:13:00 -0000 Subject: Xfree86 4.1.0 and Cygwin 1.3.6 Message-ID: <4E32301CBBCBFA47B7B4F91DBE97B5ED024A9656@pitpasmb06.ch.etn.com> I installed Cygwin 1.3.6 and tried to install Xfree86 4.1.0, the latest binaries. I get the following error "Could not find cygncurses5.dll" When I search the disk, I can only find cygncurses6.dll Is Xfree85 4.1.0 not compatible with Cygwin 1.3.6? thanks Johan From x-odus@iname.com Mon Dec 17 15:24:00 2001 From: x-odus@iname.com (Psyon) Date: Mon, 17 Dec 2001 15:24:00 -0000 Subject: libW11: xlib for native Windows programs Message-ID: <3C1E7EEA.2010808@iname.com> I have started a project to create an Xlib for Cygwin that does not require an X server. If anyone is intersted in contributing, please visit my project page http://www.sf.net/projects/libw11 contact me if you can help at all. --Don Becker From dwh@ovro.caltech.edu Mon Dec 17 17:00:00 2001 From: dwh@ovro.caltech.edu (David Hawkins) Date: Mon, 17 Dec 2001 17:00:00 -0000 Subject: XDVI problem Message-ID: Hi, I've just setup Cygwin/Latex/XFree86 and am trying to setup xdvi. I followed the previous threads to correct the xdvi makefile such that make, and make install, appear to work correctly. However, if I startx and try to open a dvi document, xdvi spits out some errors, and then dies. The errors I am seeing are: fcntl F_SETOWN (xdvi): Invalid argument setsid: Not owner - mktexpk --mfmode cx --bdpi 300 --mag 'magstep(0)' --dpi 300 cmtt10 '>&3' xdvi: fcntl F_SETOWN: Invalid argument xdvi: ! Out of memory (reallocating 134195587 bytes). I checked on the ownership flags of /usr/bin/xdvi.exe and they look ok. What have I overlooked / screwed up!? Thanks for the help. Regards, Dave Hawkins Caltech dwh@ovro.caltech.edu From spetreolle@yahoo.fr Mon Dec 17 18:41:00 2001 From: spetreolle@yahoo.fr (=?iso-8859-1?q?Sylvain=20Petreolle?=) Date: Mon, 17 Dec 2001 18:41:00 -0000 Subject: Xfree86 4.1.0 and Cygwin 1.3.6 In-Reply-To: <4E32301CBBCBFA47B7B4F91DBE97B5ED024A9656@pitpasmb06.ch.etn.com> Message-ID: <20011218024149.54693.qmail@web10104.mail.yahoo.com> Johan, http://cygwin.com/ml/cygwin-announce/2001/msg00124.html --- "vanWyk, Johan J" a ??crit??: > I installed Cygwin 1.3.6 and tried to install > Xfree86 4.1.0, the latest > binaries. > I get the following error "Could not find > cygncurses5.dll" > When I search the disk, I can only find > cygncurses6.dll > > Is Xfree85 4.1.0 not compatible with Cygwin 1.3.6? > > thanks > > Johan ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran??ais ! Yahoo! Courrier : http://courrier.yahoo.fr From Heatherx19@aol.com Mon Dec 17 21:22:00 2001 From: Heatherx19@aol.com (Heatherx19@aol.com) Date: Mon, 17 Dec 2001 21:22:00 -0000 Subject: Hey there Message-ID: <200112180548.VAA00566@modi.greco.com> Below is the result of your feedback form. It was submitted by (Heatherx19@aol.com) on Monday, December 17, 2001 at 21:48:51 --------------------------------------------------------------------------- message: Hi, my name is Heather and I am a 19 year old female from San Diego, California. Ever since my 14th birthday, I have been really sexually active, but I am still a virgin. Now I am 19 and away from home, attending school at San Diego State University and sharing a dorm with four of my girlfriends and are all VERY turned on to meet a guy and satisfy ALL of his pleasures. To see our sexy pictures we took just last week and to meet some other couples, go to our site
< a href="http://www.lllil.com/heather/livewebcam">http://www.lllil.com/heather/livewebcam


-1011 --------------------------------------------------------------------------- From Heather19x@aol.com Mon Dec 17 21:23:00 2001 From: Heather19x@aol.com (Heather19x@aol.com) Date: Mon, 17 Dec 2001 21:23:00 -0000 Subject: hey hey Message-ID: <200112180521.VAA14254@svs10.virtualis.com> Abajo esta la informaci??n que se nos envi??. Fue enviada por (Heather19x@aol.com) el Lunes, Diciembre 17, 2001 a las 21:21:45 --------------------------------------------------------------------------- message: Hi, my name is Heather and I am a 19 year old female from San Diego, California. Ever since my 14th birthday, I have been really sexually active, but I am still a virgin. Now I am 19 and away from home, attending school at San Diego State University and sharing a dorm with four of my girlfriends and are all VERY turned on to meet a guy and satisfy ALL of his pleasures. To see our sexy pictures we took just last week and to meet some other couples, go to our site
< a href="http://www.lllil.com/heather/livewebcam">http://www.lllil.com/heather/livewebcam


-1101 --------------------------------------------------------------------------- From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 05:32:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 05:32:00 -0000 Subject: HowTo: Submit Patches? Message-ID: Hi, I have found some incompatibilities with current CVS and cygwin port (eg. freetype2 build). To who should I send these patches? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From ssiddiqi@inspirepharm.com Tue Dec 18 05:41:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Tue, 18 Dec 2001 05:41:00 -0000 Subject: HowTo: Submit Patches? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831C4@ins-exch.inspirepharm.com> Sorry, I was out of country, therefore absent from list. You can send patches to patches@xfree86.org. Suhaib > -----Original Message----- > From: Alexander Gottwald > [mailto:alexander.gottwald@informatik.tu-chemnitz.de] > Sent: Tuesday, December 18, 2001 8:31 AM > To: cygwin-xfree@sources.redhat.com > Subject: HowTo: Submit Patches? > > > Hi, > > I have found some incompatibilities with current CVS and > cygwin port (eg. freetype2 build). To who should I send these patches? > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 05:52:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 05:52:00 -0000 Subject: HowTo: Submit Patches? In-Reply-To: <7F2B9185F0196F44B59990759B91B1C26831C4@ins-exch.inspirepharm.com> Message-ID: On Tue, 18 Dec 2001, Suhaib Siddiqi wrote: > You can send patches to patches@xfree86.org. Ok, I'll do this if I'm back home. Thanks bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From alanh@fairlite.demon.co.uk Tue Dec 18 05:53:00 2001 From: alanh@fairlite.demon.co.uk (Alan Hourihane) Date: Tue, 18 Dec 2001 05:53:00 -0000 Subject: HowTo: Submit Patches? In-Reply-To: References: Message-ID: <20011218135307.F2504@fairlite.demon.co.uk> On Tue, Dec 18, 2001 at 02:30:58PM +0100, Alexander Gottwald wrote: > Hi, > > I have found some incompatibilities with current CVS and cygwin port > (eg. freetype2 build). To who should I send these patches? > patch@xfree86.org Alan. From ewu@eskimo.com Tue Dec 18 09:15:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Tue, 18 Dec 2001 09:15:00 -0000 Subject: Does XWin.exe work on laptops' display? Message-ID: Hello, 1. Does it work on LCD Active Matrix Displays? 2. Are there any potential pitfalls ? 3. Are the XWin.exe codes generic - perhaps I should say display device independent? Thanks, Ew PS. Welcome back Suhaib! From briangenisio@yahoo.com Tue Dec 18 09:25:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Tue, 18 Dec 2001 09:25:00 -0000 Subject: Does XWin.exe work on laptops' display? In-Reply-To: Message-ID: <20011218172349.61645.qmail@web20802.mail.yahoo.com> Sure... XFree/Cygwin uses the MS Windows GDI to do it's display, so there is no worry about the hardware. Brian --- Enoch Wu wrote: > Hello, > > 1. Does it work on LCD Active Matrix Displays? > 2. Are there any potential pitfalls ? > 3. Are the XWin.exe codes generic - perhaps I should say display device > independent? > > Thanks, > > Ew > > PS. Welcome back Suhaib! > __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From jnorth@intrado.com Tue Dec 18 09:26:00 2001 From: jnorth@intrado.com (North, Jason) Date: Tue, 18 Dec 2001 09:26:00 -0000 Subject: Does XWin.exe work on laptops' display? Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have a Toshiba Satellite Pro 4300 and it works quite happily on mine. I run at 1024x768 using the default window manager (no KDE or any such just yet), and have encountered no trouble. JCN - -----Original Message----- From: Enoch Wu [mailto:ewu@eskimo.com] Sent: Tuesday, December 18, 2001 10:15 AM To: cygwin-xfree@cygwin.com Subject: Does XWin.exe work on laptops' display? Hello, 1. Does it work on LCD Active Matrix Displays? 2. Are there any potential pitfalls ? 3. Are the XWin.exe codes generic - perhaps I should say display device independent? Thanks, Ew PS. Welcome back Suhaib! -----BEGIN PGP SIGNATURE----- Version: PGP 7.1 iQA/AwUBPB98JtpXLiVQHNMSEQJxsgCgjXieTnI3MKa7HRMD2bb6pygNl8UAn3qr vc3e0uwPvcWEuyYusx6/EKe9 =c6Zb -----END PGP SIGNATURE----- From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 09:29:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 09:29:00 -0000 Subject: Does XWin.exe work on laptops' display? In-Reply-To: Message-ID: On Tue, 18 Dec 2001, Enoch Wu wrote: > Hello, > > 1. Does it work on LCD Active Matrix Displays? yes, it does. > 2. Are there any potential pitfalls ? Don't know any > 3. Are the XWin.exe codes generic - perhaps I should say display device > independent? Yes, they are. Actually it relys only on piece of memory where it draw the window. This region is managed by directx. So you can say XWin will work if the DirectX interface is supported by the videocard drivers. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From pirabhur@hotmail.com Tue Dec 18 18:49:00 2001 From: pirabhur@hotmail.com (Pirabhu Raman) Date: Tue, 18 Dec 2001 18:49:00 -0000 Subject: telnet problem Message-ID: hi, I downloaded and installed cygwin for windows 2000. everything is working fine except that I culdnt fnd the telnet program in the directory /usr/bin. Can anybody tell what is the package i have to download/install to use telnet. Then I cant find the gcc compiler in the cygwin. Is it nt built in the package. If not what package shud i download to have gcc running? Thanks in advance Pirabhu _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. From syver-en@online.no Tue Dec 18 19:47:00 2001 From: syver-en@online.no (Syver Enstad) Date: Tue, 18 Dec 2001 19:47:00 -0000 Subject: Newbie, cygncurses5.dll not found Message-ID: When starting Xfree86 on windows 2000 with cygwin I get the message from xterm. It is obiously an old version of Xterm that doesn't use the cygncurses6.dll that is provided with the version of cygwin that I have installed. Does anybody know what to do to solve this problem? -- Vennlig hilsen Syver Enstad From spetreolle@yahoo.fr Tue Dec 18 19:54:00 2001 From: spetreolle@yahoo.fr (=?iso-8859-1?q?Sylvain=20Petreolle?=) Date: Tue, 18 Dec 2001 19:54:00 -0000 Subject: telnet problem In-Reply-To: Message-ID: <20011219035356.15118.qmail@web10102.mail.yahoo.com> Hi Pirabhu, telnet is in the package inetutils. Bye, Sylvain --- Pirabhu Raman a ??crit??: > > > hi, > I downloaded and installed cygwin for windows > 2000. everything is working > fine except that I culdnt fnd the telnet program in > the directory /usr/bin. > Can anybody tell what is the package i have to > download/install to use > telnet. Then I cant find the gcc compiler in the > cygwin. Is it nt built in > the package. If not what package shud i download to > have gcc running? > Thanks in advance > Pirabhu > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at > http://explorer.msn.com/intl.asp. > ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran??ais ! Yahoo! Courrier : http://courrier.yahoo.fr From ten@sureteacher.co.jp Tue Dec 18 20:32:00 2001 From: ten@sureteacher.co.jp (tenplus) Date: Tue, 18 Dec 2001 20:32:00 -0000 Subject: email for email Message-ID: <200112190431.fBJ4VA707156@mail.pc5.so-net.ne.jp> ????????????????????????????????????????????????m(_ _)m??@??????????????????e??????v??????X??????\??????????????B ??????????????????e??????v??????X(http://www.sureteacher.com)??????\??????????????B ??j??????E??????????????????????????????????????????????????????????????????????????????B ??????????????????????T??C??g??????????????{??l10??????????A??O??l10??????????A ??r??f??I10??????????????T??C??g??????????I??????????????????B ??E??j??????p??????????????????[??????????????????n??????????????????^??A ??E??????????p??????????h??????I???????????????????????????????????????????????????? ??@??????????????????????????B ??@ ??@??{??????????I??????????????????????????I ??e??????v??????X??????F??l???????????????? ??????????????????????????????????????????????????????????????????????????B ??????????????????????????????????T??C??g???????????????? ??????i??????????????????T??????????????B ??T??????v??????????????p??????????????????????????????????????A ??????L??A??h??????X??????????????????????????????????????????????B http://www.sureteacher.com ??????????????[????????DM??????????B ???????????????????????????????????? ??????????????[??????????????????????????j??????????????????????????????????????????????????????????H ??????????f??????????????????????????????????????d??????????????l??????\??????????????????????B From flognat@flognat.myip.org Wed Dec 19 01:17:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Wed, 19 Dec 2001 01:17:00 -0000 Subject: Newbie, cygncurses5.dll not found In-Reply-To: References: Message-ID: / Syver Enstad wrote: | When starting Xfree86 on windows 2000 with cygwin I get the message | from xterm. It is obiously an old version of Xterm that doesn't use | the cygncurses6.dll that is provided with the version of cygwin that I | have installed. | | Does anybody know what to do to solve this problem? Select ncurses5 to download and install from setup... /Andy -- The eye of the beholder rests on the beauty! From sharminkabir@hotmail.com Wed Dec 19 13:58:00 2001 From: sharminkabir@hotmail.com (Sharmin Kabir) Date: Wed, 19 Dec 2001 13:58:00 -0000 Subject: bz2 help, I need...... Message-ID: Hello: I have been trying to install XFree86 in my computer, I installed cygwin in the mean time. I am having problem to extract "extract.exe.bz2" file. I put it with other required files in /tmp. Then, from the bash prompt, I execute the command bunzip2 extract.exe.bz2 . I gave me the message bunzip2: Can't open input file ...: No such file or directory. I found bzip2.exe, bunzip2.exe files in c:\cygwin\bin folder!!!! There are still there!!!!! I also found in /etc/profile the following path: PATH="/usr/local/bin:/usr/bin:/bin:$PATH" In the autoexce.bat file, I wrote: set PATH=c:\cygwin\bin But I gave me the same message!! Could you pl help me out? Whwre is the problems???????????? Thanks a lot in advance. Sharmin _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com From spetreolle@yahoo.fr Wed Dec 19 14:12:00 2001 From: spetreolle@yahoo.fr (=?iso-8859-1?q?Sylvain=20Petreolle?=) Date: Wed, 19 Dec 2001 14:12:00 -0000 Subject: telnet problem In-Reply-To: Message-ID: <20011219221223.50102.qmail@web10102.mail.yahoo.com> Do you use the standard setup.exe when installing packages ? If so, you will find inetutils package in the net section. (Perhaps you could have to update your setup.exe from www.cygwin.com/setup.exe) --- Pirabhu Raman a ??crit??: > hi, > Thanx for the immediate reply. But I culdnt find > the inetutils directory > in the packages I downloaded or in the site where I > downloaded from. Can you > please let me know the exact location of the > package. > Thanx in advance > Pirabhu > > > > > _________________________________________________________________ > Join the world??s largest e-mail service with MSN > Hotmail. > http://www.hotmail.com > ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran??ais ! Yahoo! Courrier : http://courrier.yahoo.fr From syhua3000@9dns.net Wed Dec 19 22:33:00 2001 From: syhua3000@9dns.net (°¢Ä¾) Date: Wed, 19 Dec 2001 22:33:00 -0000 Subject: 200MÖ÷»ú+1¸ö¹ú¼ÊÓòÃû=150Ôª Message-ID: ???????????????????????????????????????????????????????????????????? ????????????????????????,????????????????????????????????????(http://www.21cmm.com) ????CMM????????(http://www.21cmm.com)???????????????????????????????? --------------------------------------------------------------- ????????! 200M????HTML????????+1????????????????????????????????150????/???? 200M????????????????????ASP????+200M????????????????+30M Access????????????+1???????????????????????? ????????350????/???? ????????????????????????????????????????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????????????????????????????????? http://www.9dns.net ???? ????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????????????? ???????? ????????????????????0592-5567026 ???????????????????????? QQ????75522737 From JoopvandeWege@mococo.nl Thu Dec 20 01:21:00 2001 From: JoopvandeWege@mococo.nl (Joop) Date: Thu, 20 Dec 2001 01:21:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: <20011220101405.E8ED.JOOPVANDEWEGE@mococo.nl> derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & >Should be added to the faq... >(Q 4.9, http:?cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) I would to like to add the following: I had no problems connecting to Solaris8 using Reflection but using Xfree didn't work except on one server. After alot of playing around I seemed to have found the problem. If LOCALE is set to anything else then C then I can't connect using XFree. Solution: copy (onSolaris box) /usr/dt to /etc/dt and edit Xconfig, change LANG from undef to C. Joop -- Joop From cyu@mail.5151.jp Thu Dec 20 01:45:00 2001 From: cyu@mail.5151.jp (cyu@mail.5151.jp) Date: Thu, 20 Dec 2001 01:45:00 -0000 Subject: =?ISO-2022-JP?B?GyRCJE8hPCQkISobKEI=?= Message-ID: <20011220094430176.00000.103.cyu@yamato.mail.5151.jp> ????????? ?????????????????????????? ????????????????????? ?????? http://cyu.5151.jp/ ?????????????????????????? ?????i-mode,j-sky,ezweb,PC???? http://cyu.5151.jp/ ??????????MAN&WOMAN From stefan.meister@volkswagen.de Thu Dec 20 02:36:00 2001 From: stefan.meister@volkswagen.de (Meister, Stefan) Date: Thu, 20 Dec 2001 02:36:00 -0000 Subject: x3270 Client available? Message-ID: <478C61465902D411A05A0008C791F4840E1A5831@devwagwodx0007.wob.vw.de> Hello, is there a 3270 Client available for cygwin xfree86? kind regards Stefan Meister From ssiddiqi@inspirepharm.com Thu Dec 20 05:01:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 20 Dec 2001 05:01:00 -0000 Subject: bz2 help, I need...... Message-ID: <7F2B9185F0196F44B59990759B91B1C26831CF@ins-exch.inspirepharm.com> > Hello: > I have been trying to install XFree86 in my computer, I > installed cygwin in the mean time. I am having problem to > extract "extract.exe.bz2" file. I put it with other required > files in /tmp. Then, from the bash prompt, I execute the > command bunzip2 extract.exe.bz2 . I gave me the message > > bunzip2: Can't open input file ...: No such file or directory. This error is not because bunzip2 is not found, rather you are executing bunzip2 is unable to find extract.exe.b2. Make sure you execute bunzip2 command from a directory where you put extract.exe.bz2 Suhaib > > I found bzip2.exe, bunzip2.exe files in c:\cygwin\bin > folder!!!! There are still there!!!!! > > > I also found in /etc/profile the following path: > > PATH="/usr/local/bin:/usr/bin:/bin:$PATH" > > > In the autoexce.bat file, I wrote: > > set PATH=c:\cygwin\bin > > But I gave me the same message!! > > Could you pl help me out? Whwre is the problems???????????? > > Thanks a lot in advance. > > Sharmin > > > > _________________________________________________________________ > Chat with friends online, try MSN Messenger: http://messenger.msn.com > From garlicsalt2@yahoo.com Thu Dec 20 10:12:00 2001 From: garlicsalt2@yahoo.com (Aaron J. Outhier) Date: Thu, 20 Dec 2001 10:12:00 -0000 Subject: I goofed, what now? Message-ID: <20011220181055.40718.qmail@web9603.mail.yahoo.com> Hello all: I previously wrote to you, see if this looks familiar: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. To: cygwin-xfree at xfree86 dot cygwin dot com Subject: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. From: "Aaron J. Outhier" Date: Fri, 19 Oct 2001 15:36:16 -0700 (PDT) You'll have to forgive me for following-up on this so late, I was still waiting for a reply in my IN-BOX. Apparently, things don't work like that with you guys. I just read your reply to my message. Now, my question is: Since I've already used the wrong procedure for installing, and since the older files are probably gone on your server, and since I recently deleted all of my older packages on my system to make more disk space, etc. What do I do now? Is there any way to recover the required older packages, and run setup as per your instructions in your previous reply? Find out tomorrow, same Bat-Time, Same Bat-Channel. (Same Bat-Joke ;) ===== Sincerely, Aaron J. Outhier garlicsalt2@yahoo.com __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From ssiddiqi@inspirepharm.com Thu Dec 20 10:14:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 20 Dec 2001 10:14:00 -0000 Subject: I goofed, what now? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831D0@ins-exch.inspirepharm.com> > -----Original Message----- > From: Aaron J. Outhier [mailto:garlicsalt2@yahoo.com] > Sent: Thursday, December 20, 2001 1:11 PM > To: cygwin-xfree@xfree.cygwin.com > Subject: I goofed, what now? > > > Hello all: > I previously wrote to you, see if this looks familiar: > > Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. > > To: cygwin-xfree at xfree86 dot cygwin dot com > Subject: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT > fails when run. > From: "Aaron J. Outhier" > Date: Fri, 19 Oct 2001 15:36:16 -0700 (PDT) > > You'll have to forgive me for following-up on this so > late, I was still waiting for a reply in my IN-BOX. > > Apparently, things don't work like that with you guys. I > just read your reply to my message. Now, my question is: > Since I've already used the wrong procedure for installing, > and since the older files are probably gone on your server, > and since I recently deleted all of my older packages on my > system to make more disk space, etc. What do I do now? Is > there any way to recover the required older packages, and run > setup as per your instructions in your previous reply? Yes, you can recover older packages from your backup tape,CD or whatever you use as a backup media. Unfortunately we do not backup users PCs. Or reintsall everything Suhaib > > Find out tomorrow, same Bat-Time, Same Bat-Channel. (Same > Bat-Joke ;) > > > ===== > Sincerely, > Aaron J. Outhier > garlicsalt2@yahoo.com > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com > From alan.gauld@freenet.co.uk Thu Dec 20 14:51:00 2001 From: alan.gauld@freenet.co.uk (alan.gauld@freenet.co.uk) Date: Thu, 20 Dec 2001 14:51:00 -0000 Subject: Newbie xfree user cant start Message-ID: <22515839010729@mailth4.freenet.co.uk> I installed cygwin and xfree OK on my Win98 box, everything worked OK. I installed it on my XP Home edition box and not OK. I followed the instructions and everything seemed oK until I tried running startxwin.bat. The XWin window opens OK but then I get can't connect to display messages for twm and xterm. The bat file says I need a newer DLL but I have the latest one available (1.3.6-6) What now? Alan G. From flognat@flognat.myip.org Fri Dec 21 10:55:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 21 Dec 2001 10:55:00 -0000 Subject: bz2 help, I need...... In-Reply-To: References: Message-ID: Problem solved, seems to be that he used Netscape to download the stuff, is it mentioned somewhere to be careful with using netscape for downloading the files?? /Andy / "Sharmin Kabir" wrote: | Hello: | I have been trying to install XFree86 in my computer, I installed cygwin in | the mean time. I am having problem to extract "extract.exe.bz2" file. I put | it with other required files in /tmp. Then, from the bash prompt, I execute | the command bunzip2 extract.exe.bz2 . I gave me the message | | bunzip2: Can't open input file ...: No such file or directory. [...] -- The eye of the beholder rests on the beauty! From alan.gauld@freenet.co.uk Fri Dec 21 11:44:00 2001 From: alan.gauld@freenet.co.uk (alan.gauld@freenet.co.uk) Date: Fri, 21 Dec 2001 11:44:00 -0000 Subject: Sorry cancel last message Message-ID: <19445329657037@mailth4.freenet.co.uk> I found the FAQ - I had ZoneAlarm running. Sorry to waste bandwidth! Alan g From Gauthierp@anrad.com Fri Dec 21 11:54:00 2001 From: Gauthierp@anrad.com (Gauthier Philippe) Date: Fri, 21 Dec 2001 11:54:00 -0000 Subject: X server freeze on terminal bell Message-ID: I am having problem with a new installation of XFree and Cygwin. The X server freezes each time there should be a terminal bell. It does not seem to be related to the terminal (xterm, login, rxvt). I tried both the latest stable XWin and the development version. XFree installed perfectly with no errors. I am running on Windows 2000 Professionnal. It might be related to wrong termcap configurations, but I am unsure this would crash the server. I did not edit /etc/termcap as the Xinstall.sh script explains. Does someone have any clue about this? Thanks, Philippe Gauthier gauthierp at anrad dot com From flognat@flognat.myip.org Fri Dec 21 12:28:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 21 Dec 2001 12:28:00 -0000 Subject: X server freeze on terminal bell In-Reply-To: References: Message-ID: Just a quick thought.. it is not something like the terminal bell telling windows to fire off a sound to the soundcard?? Does the soundcard work fine, what is beep set to in the control panel?? What soundcard? /Andy / Gauthier Philippe wrote: | I am having problem with a new installation of XFree and Cygwin. The X | server freezes each time there should be a terminal bell. It does not seem | to be related to the terminal (xterm, login, rxvt). -- The eye of the beholder rests on the beauty! From Gauthierp@anrad.com Fri Dec 21 12:41:00 2001 From: Gauthierp@anrad.com (Gauthier Philippe) Date: Fri, 21 Dec 2001 12:41:00 -0000 Subject: X server freeze on terminal bell Message-ID: For now, the bell works when I open a terminal directly from cygwin works fine. Windows is set to play ding.wav, and works too. The soundcard is a SoundMAX OEM from Analog Devices, Inc. It seems to be very specific to X. Nedit can make the X server crash too. -----Original Message----- From: Andrew Markebo [mailto:flognat@flognat.myip.org] Sent: December 21, 2001 3:28 PM To: Gauthier Philippe Cc: 'cygwin-xfree@cygwin.com' Subject: Re: X server freeze on terminal bell Just a quick thought.. it is not something like the terminal bell telling windows to fire off a sound to the soundcard?? Does the soundcard work fine, what is beep set to in the control panel?? What soundcard? /Andy / Gauthier Philippe wrote: | I am having problem with a new installation of XFree and Cygwin. The X | server freezes each time there should be a terminal bell. It does not | seem to be related to the terminal (xterm, login, rxvt). -- The eye of the beholder rests on the beauty! From jgraves9876@yahoo.com Fri Dec 21 23:32:00 2001 From: jgraves9876@yahoo.com (Joel) Date: Fri, 21 Dec 2001 23:32:00 -0000 Subject: Current Events and the End Times - so what? Message-ID: <419.437246.99498796jgraves9876@yahoo.com> I can show conclusively in the scriptures that Jesus Christ is coming back WITHIN A CERTAIN DATE RANGE in the near future. Yes, people do not know the Day or the Hour of Jesus' return - I agree, "No one knows about that day or hour, " Matthew 24:27. or, 1 Thessalonians 5:1, "Now, brothers, about times and dates we do not need to write to you, for you know very well that the day of the Lord will come like a thief in the night." But consider this: Luke 21:31, "Even so, when you see these things happening, you know that the kingdom of God is near." What things? These things I explain in the booklet. I Thessalonians 5:2, 4-6, "For you know very well that the day of the Lord will come like a thief in the night. But you, brothers, are not in darkness so that this day should surprise you like a thief. You are all sons of the light and sons of the day. We do not belong to the night or to the darkness. So then, let us no be like others, who are asleep, but let us be alert and self- controlled." Revelations 3:3, "But if you do not wake up, I will come like a thief, and you will not know at what time I will come to you." Matthew 24:43, "But understand this: If the owner of the house had known at what time of the night the thief was coming, he would have kept watch and would not have let his house be broken into. So you also must be ready..." So, the believers in Jesus Christ will know He is coming very soon, if they are awake and ready. And I can show you the signs AND JUST HOW SOON! I have prepared a comprehensive study on the return of Jesus Christ, in a 32-page booklet, which I will email to you for $1.00 U.S., or postal mailed to you for $3.00. Please send cash or check (preferred) to: Summit Bay 4820 Yelm Hwy, S.E. Suite B, #215, Olympia, WA 98503-4903. The Summit Bay ministry is focused on current events and the biblical end times - a "top to bottom" Berean-study of the Word. Be sure to include your email address on the envelope or a piece of paper and the study will be emailed to you promptly. Also included in the study: What is the Rapture? Why is there a Rapture? When will it take place? Who will not be in the Rapture? Israel at war with Russia. The Great Falling Away. The Mark of the Beast. Who does not have the Mark? And more. Thank you and God bless, Joel Graves - Bible Scholar From jm@cmex.org Sun Dec 23 12:37:00 2001 From: jm@cmex.org (Jonathan Marks) Date: Sun, 23 Dec 2001 12:37:00 -0000 Subject: Open Office build 641b Message-ID: <3C26409B.1060702@cmex.org> Hi, Running XWin-Test53 on a Win2k box, OpenOffice installed and runs fine on a Linux box. Running Xwin on the Win2k box using it as a thin client to the Linux box - Can't run Open Office. The splash screen loads, followed by a small dialog box outline. The contents of the dialog box does not get displayed before it and the spash screen disappears. Hope I've given enough info to reproduce this. Happy Holls Jonathan From Ralf.Habacker@freenet.de Mon Dec 24 00:24:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 24 Dec 2001 00:24:00 -0000 Subject: xserver crashes on kde 2.2.1's kate Message-ID: <003a01c18c53$f935a060$205c07d5@BRAMSCHE> Hi, while porting kde 2.2.1 to cygwin I recognized a xserver crash while starting kate. The error is: Fatal server error: negative sized edge? Any ideas ? Regards Ralf From kaskalis@uom.gr Tue Dec 25 03:24:00 2001 From: kaskalis@uom.gr (Theodore H. Kaskalis) Date: Tue, 25 Dec 2001 03:24:00 -0000 Subject: Openoffice antialiasing fails Message-ID: Greetings from a newcommer. As the subject implies, I cannot get XWin.exe to remotely display openoffice windows with antialias support. I am trying to connect to a Linux machine with Openoffice 641b installed. If I turn off antialias from Openoffice (SAL_ANTIALIAS_DISABLE=true) everything works. I already checked the RENDER support of XWin and tried kde or simple xterm antialiasing successfully. Any hints? Thank you in advance for any help given. Theodore H. Kaskalis From sharad_sp@yahoo.com Tue Dec 25 16:45:00 2001 From: sharad_sp@yahoo.com (sharad patil) Date: Tue, 25 Dec 2001 16:45:00 -0000 Subject: Question @ cygwin Message-ID: <20011226004545.94246.qmail@web12906.mail.yahoo.com> Hi I have install cygwin on my PC. I got WIN ME os. I have install XWin too. But I am not able to logon as root. How to create the root logon for cygwin. and how to use the XWin. Thanks Sharad __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From ewu@eskimo.com Tue Dec 25 23:10:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Tue, 25 Dec 2001 23:10:00 -0000 Subject: Question @ cygwin In-Reply-To: <20011226004545.94246.qmail@web12906.mail.yahoo.com> References: <20011226004545.94246.qmail@web12906.mail.yahoo.com> Message-ID: <15401.30273.774000.696155@gargle.gargle.HOWL> Win ME does not have root logon. As far as I know from my brief exposure to Win ME, it does not have a root account. Why do you need to logon as root? You should be able to run XWin without a root account. EW sharad patil writes: > I have install cygwin on my PC. I got WIN ME os. I > have install XWin too. But I am not able to logon as > root. How to create the root logon for cygwin. and > how to use the XWin. > > Thanks > Sharad > > __________________________________________________ > Do You Yahoo!? > Send your FREE holiday greetings online! > http://greetings.yahoo.com > From machicaoeduardo@yahoo.com Wed Dec 26 09:52:00 2001 From: machicaoeduardo@yahoo.com (Eduardo Machicao) Date: Wed, 26 Dec 2001 09:52:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <20011226175248.99295.qmail@web20403.mail.yahoo.com> I am trying to install OpenDx for Cygwin-Xfree86 under Windows 98. All was according to the instructions given in http://cygwin.com. I used the file called "setup.exe" for Cygwin. For OpenDx, I used "opendx-4.1.3-2-WIN32-setup.zip". I start the X server using "sh /usr/X11r6/bin/startxwin.sh". Typing "dx" at the $ prompt the next message appears: "exec: /usr/local/dx/bin/dxworker: not found" And calling the *.bat files Buider, Editor, Menu, Prompter, Tutor appears: "CYGWIN1.DLL: Not Found" (But I can see "dxworker" and "cygwin.dll" in "c:\cygwin\usr\local\dx\bin\" and "c:\cygwin\bin\" respectively). The output for the "mount" command at the $ prompt is: $ mount C:\cygwin\bin on /usr/bin type user (binmode) C:\cygwin\lib on /usr/lib type user (binmode) C:\cygwin on / type user (binmode) c: on /cygdrive/c type user (binmode,noumount) d: on /cygdrive/d type user (binmode,noumount) And my "cygwin.bat" file is: @echo on C: chdir \cygwin\bin SET oldpath=%path% SET PATH=C:\cygwin\bin;C:\cygwin\usr\X11r6\bin;C:\cygwin\usr\local\bin;%oldpath%PATH bash --login -i I know similar questions were posted here before. Thanks for any help, Eduardo Machicao Valencia __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From machicaoeduardo@yahoo.com Wed Dec 26 10:10:00 2001 From: machicaoeduardo@yahoo.com (Eduardo Machicao) Date: Wed, 26 Dec 2001 10:10:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <20011226181040.10271.qmail@web20408.mail.yahoo.com> I am sorry, In my original message I was wrong in a line. I installed "opendx-4.1.3-cygwin.tar.gz" NOT "opendx-4.1.3-2-WIN32-setup.zip" Thanks, Eduardo Machicao Valencia __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From arnstein@panix.com Thu Dec 27 11:46:00 2001 From: arnstein@panix.com (David Arnstein) Date: Thu, 27 Dec 2001 11:46:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <200112271946.fBRJkBS05072@panix1.panix.com> Hello, I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 Professional, service pack 2. I am able to start the Xserver using the startxwin.sh script provided with the cygwin-xfree86 distribution. I can start an xterm client locally, too. I would like to start an xterm client on a remote machine and have it display on my local cygwin-xfree86 X server. However, this does not work. It appears that the X server is not even listening to port 6000. If I shut down the cygwin-xfree86 X server, and start the MicroImages MIX X server, then the same remote machine is able to display an xterm client on the local MIX X server. This indicates that networking is functional on my local machine, generally speaking. Any suggestions? Thanks. -- David Arnstein arnstein@pobox.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:17:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:17:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E6@ins-exch.inspirepharm.com> Did you set DISPLAY on remote machine to display on your local machine? Suhaib > -----Original Message----- > From: David Arnstein [mailto:arnstein@panix.com] > Sent: Thursday, December 27, 2001 2:46 PM > To: cygwin-xfree@cygwin.com > Subject: Remote client cannot display on local xfree-cygwin > > Hello, > > I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 > Professional, service pack 2. > > I am able to start the Xserver using the startxwin.sh script provided > with the cygwin-xfree86 distribution. I can start an xterm client > locally, too. > > I would like to start an xterm client on a remote machine and have it > display on my local cygwin-xfree86 X server. However, this does not > work. It appears that the X server is not even listening to port > 6000. > > If I shut down the cygwin-xfree86 X server, and start the MicroImages > MIX X server, then the same remote machine is able to display an xterm > client on the local MIX X server. This indicates that networking is > functional on my local machine, generally speaking. > > Any suggestions? Thanks. > -- > David Arnstein > arnstein@pobox.com From arnstein@panix.com Thu Dec 27 12:21:00 2001 From: arnstein@panix.com (David Arnstein) Date: Thu, 27 Dec 2001 12:21:00 -0000 Subject: Remote client cannot display on local xfree-cygwin In-Reply-To: <7F2B9185F0196F44B59990759B91B1C26831E6@ins-exch.inspirepharm.com> from "Suhaib Siddiqi" at Dec 27, 2001 03:17:37 PM Message-ID: <200112272021.fBRKL7O10902@panix1.panix.com> > Did you set DISPLAY on remote machine to display on your local machine? Yes. As I stated in my original post, I am able to connect when I use a different X server. Therefore, the remote client must be configured correctly. -- David Arnstein arnstein@pobox.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:24:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:24:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E7@ins-exch.inspirepharm.com> > -----Original Message----- > From: David Arnstein [mailto:arnstein@panix.com] > Sent: Thursday, December 27, 2001 3:21 PM > Cc: cygwin-xfree@cygwin.com > Subject: Re: Remote client cannot display on local xfree-cygwin > > > Did you set DISPLAY on remote machine to display on your local > machine? > > Yes. As I stated in my original post, I am able to connect when I use > a different X server. Therefore, the remote client must be configured > correctly. > -- > David Arnstein > arnstein@pobox.com How about from xterm telnet to remote machine then try export DISPLAY= And see if you can display From ssiddiqi@inspirepharm.com Thu Dec 27 12:56:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:56:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E9@ins-exch.inspirepharm.com> If I remember correctly, "not found" can be for two reasons: 1) you may have a text mounted cygwin disk or your dxworker script may be in DOS format. 2) you also need to install tcsh for cygwin else edit dxworker script Suhaib > -----Original Message----- > From: Eduardo Machicao [mailto:machicaoeduardo@yahoo.com] > Sent: Wednesday, December 26, 2001 12:53 PM > To: cygwin-xfree@cygwin.com > Subject: Help: OpenDx-Cygwin-Xfree86 > > I am trying to install OpenDx for Cygwin-Xfree86 under > Windows 98. All was according to the instructions > given in http://cygwin.com. I used the file called > "setup.exe" for Cygwin. For OpenDx, I used > "opendx-4.1.3-2-WIN32-setup.zip". > I start the X server using "sh > /usr/X11r6/bin/startxwin.sh". > Typing "dx" at the $ prompt the next message appears: > > "exec: /usr/local/dx/bin/dxworker: not found" > > And calling the *.bat files Buider, Editor, Menu, > Prompter, Tutor appears: > > "CYGWIN1.DLL: Not Found" > > (But I can see "dxworker" and "cygwin.dll" in > "c:\cygwin\usr\local\dx\bin\" and "c:\cygwin\bin\" > respectively). > > The output for the "mount" command at the $ prompt is: > > $ mount > C:\cygwin\bin on /usr/bin type user (binmode) > C:\cygwin\lib on /usr/lib type user (binmode) > C:\cygwin on / type user (binmode) > c: on /cygdrive/c type user (binmode,noumount) > d: on /cygdrive/d type user (binmode,noumount) > > And my "cygwin.bat" file is: > > @echo on > C: > chdir \cygwin\bin > SET oldpath=%path% > SET > PATH=C:\cygwin\bin;C:\cygwin\usr\X11r6\bin;C:\cygwin\usr\local\bin;%ol > dpath%PATH > bash --login -i > > I know similar questions were posted here before. > > Thanks for any help, > > Eduardo Machicao Valencia > > > __________________________________________________ > Do You Yahoo!? > Send your FREE holiday greetings online! > http://greetings.yahoo.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:57:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:57:00 -0000 Subject: Openoffice antialiasing fails Message-ID: <7F2B9185F0196F44B59990759B91B1C26831EA@ins-exch.inspirepharm.com> I do not have access to Open Office therefore I cannot test what actually is going on. Looks like two different users have same problems Suhaib > -----Original Message----- > From: Theodore H. Kaskalis [mailto:kaskalis@uom.gr] > Sent: Tuesday, December 25, 2001 6:29 AM > To: cygwin-xfree@xfree.cygwin.com > Subject: Openoffice antialiasing fails > > Greetings from a newcommer. > > As the subject implies, I cannot get XWin.exe to remotely > display openoffice windows with antialias support. > I am trying to connect to a Linux machine with Openoffice 641b > installed. > > If I turn off antialias from Openoffice (SAL_ANTIALIAS_DISABLE=true) > everything works. > > I already checked the RENDER support of XWin and tried kde or > simple xterm antialiasing successfully. > > Any hints? > > Thank you in advance for any help given. > Theodore H. Kaskalis From puve@yahoo.com Thu Dec 27 15:51:00 2001 From: puve@yahoo.com (Kevin Puvi Gunaratnam) Date: Thu, 27 Dec 2001 15:51:00 -0000 Subject: Displaying Problem Message-ID: <20011227235136.49301.qmail@web11501.mail.yahoo.com> Hi, My computer is setup in a home network. The main computer contains an ethernet card connected to internet with ip address something like 24.100.101.12 and a wireless card with ip address 192.168.0.1. My other computer (client) contains a wireless card with ip address 192.168.0.2. When I want to display an xwindows program running on a remote server what value should I set the DISPLAY variable on the remote session?. When I set the DISPLAY variable to 24.100.101.12:0.0 I was able to display the session on my main computer but it is not able to display in the clien computer giving an error that it cannot open the display. Any help on this matter is really appreciated. Thank you. Kevin. __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From ssou@engin.umich.edu Thu Dec 27 17:37:00 2001 From: ssou@engin.umich.edu (Socheat Sou) Date: Thu, 27 Dec 2001 17:37:00 -0000 Subject: Terminal Problems Message-ID: Just downloaded and installed the most recent version of Cygwin (1.3.6), using Blackbox, and I'm having problems with rxvt. Whenever I start it up, this is the prompt I get: " \[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ " On previous installations of cygwin, it would normally be " @ $ " On top of that, I can't backspace, or do tab completion. I've tried changing my TERM system variable from xterm, to rxvt, to rxvt-cygwin-native. None of that fixed my problem. Anybody know what's going on? I would use xterm, but for some reason, I can't get it to run from blackbox's menu. If I try running it from the menu, I get (in the console): "xterm: Error 14, errno 2: No such file or directory" I know xterm is in my path, because if I type 'xterm' in rxvt within blackbox, it'll startup with no problems. Thanks, Socheat From robert.collins@itdomain.com.au Thu Dec 27 17:43:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Thu, 27 Dec 2001 17:43:00 -0000 Subject: Terminal Problems References: Message-ID: <049d01c18f41$01aa78c0$0200a8c0@lifelesswks> What is BlackBox? Rob From gp@familiehaase.de Thu Dec 27 23:57:00 2001 From: gp@familiehaase.de (Gerrit P. Haase) Date: Thu, 27 Dec 2001 23:57:00 -0000 Subject: Terminal Problems In-Reply-To: <049d01c18f41$01aa78c0$0200a8c0@lifelesswks> References: <049d01c18f41$01aa78c0$0200a8c0@lifelesswks> Message-ID: <154296405768.20011228085839@familiehaase.de> Hallo Robert, Am 2001-12-28 um 02:43 schriebst du: > What is BlackBox? Just a windowmanager (a good one, I use it too). I have no problems with it. > " > \[\033]0;\w\007 > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > $ > " I get this if I start `sh' instead of bash. $ sh \[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ bash Siebenschlaefer@LORELEY / $ Gerrit -- =^..^= mailto:gp@familiehaase.de From ssou@engin.umich.edu Fri Dec 28 08:17:00 2001 From: ssou@engin.umich.edu (Socheat Sou) Date: Fri, 28 Dec 2001 08:17:00 -0000 Subject: Terminal Problems In-Reply-To: <154296405768.20011228085839@familiehaase.de> Message-ID: Wonderful! That fixed it. In my blackbox menu file, I changed it to: 'rxvt -e bash' which fixes everything. Strangely though, on previous installations, I know I didn't have to do this. It just worked. Any way I can tell rxvt to start up using bash instead of sh by default, rather than specifying it in the menu file? I tried removing sh and symlinking sh to bash, but then I just get this prompt instead: "sh- Hallo Robert, > > Am 2001-12-28 um 02:43 schriebst du: > > > What is BlackBox? > > Just a windowmanager (a good one, I use it too). > I have no problems with it. > > > " > > \[\033]0;\w\007 > > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > > $ > > " > > I get this if I start `sh' instead of bash. > > $ sh > \[\033]0;\w\007 > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > $ bash > > Siebenschlaefer@LORELEY / > $ > > Gerrit > -- > =^..^= mailto:gp@familiehaase.de > > From Alexander.Gottwald@informatik.tu-chemnitz.de Fri Dec 28 09:11:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 28 Dec 2001 09:11:00 -0000 Subject: Remote client cannot display on local xfree-cygwin In-Reply-To: <200112271946.fBRJkBS05072@panix1.panix.com> Message-ID: On Thu, 27 Dec 2001, David Arnstein wrote: > I would like to start an xterm client on a remote machine and have it > display on my local cygwin-xfree86 X server. However, this does not > work. It appears that the X server is not even listening to port > 6000. Do you have a firewall or VPN software installed? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From arnstein@panix.com Fri Dec 28 09:20:00 2001 From: arnstein@panix.com (David Arnstein) Date: Fri, 28 Dec 2001 09:20:00 -0000 Subject: Remote client cannot display on local xfree-cygwin In-Reply-To: from "Alexander Gottwald" at Dec 28, 2001 01:09:56 PM Message-ID: <200112281720.fBSHKHQ06622@panix3.panix.com> > Do you have a firewall or VPN software installed? Yes, I am using Norton Internet Security 2.0. My problem appears to involve this firewall. In order to properly configure this firewall, I need to identify the Cygwin/Xfree86 program(s) that do networking. I punched a hole through my firewall for XWin.exe, but this was not enough, for some reason. If I punch a hole through the firewall for any program using port 6000 (xserver) then the X server software seems to work. But I would prefer to identify the particular program(s) that access port 6000 and punch a special hole in the firewall just for these program(s). Any suggestions? Thanks to the group for your help! -- David Arnstein arnstein@pobox.com From ulvester@yahoo.com Fri Dec 28 09:38:00 2001 From: ulvester@yahoo.com (Richard Campbell) Date: Fri, 28 Dec 2001 09:38:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <20011228173855.68086.qmail@web12108.mail.yahoo.com> >I would like to start an xterm client on a >remote machine and have it display on my >local cygwin-xfree86 X server. However, this >does not work. It appears that the X server >is not even listening to port 6000. If you can start a local xterm, but can't display remotely, have you checked the security settings (xfree86 is pretty restrictive by default)? Have you tried starting a local xterm, running "xhost +", then starting a remote session (without closing down the first local xterm)? What is the error message you see when trying to connect? -Richard. __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From Alexander.Gottwald@informatik.tu-chemnitz.de Fri Dec 28 09:44:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 28 Dec 2001 09:44:00 -0000 Subject: Remote client cannot display on local xfree-cygwin In-Reply-To: <200112281720.fBSHKHQ06622@panix3.panix.com> Message-ID: On Fri, 28 Dec 2001, David Arnstein wrote: > > Do you have a firewall or VPN software installed? > > Yes, I am using Norton Internet Security 2.0. My problem appears to > involve this firewall. > > In order to properly configure this firewall, I need to identify the > Cygwin/Xfree86 program(s) that do networking. I punched a hole > through my firewall for XWin.exe, but this was not enough, for some > reason. > If I punch a hole through the firewall for any program using port 6000 > (xserver) then the X server software seems to work. But I would > prefer to identify the particular program(s) that access port 6000 and > punch a special hole in the firewall just for these program(s). Any > suggestions? Any program that wants to connect to the xserver does networking. So I thinks it's better to allow port 6000 for all programs. If XWin is not running then no program can respond to "attacks" and if it's running then the xserver has it's own authentication protocol. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From x-odus@iname.com Fri Dec 28 14:18:00 2001 From: x-odus@iname.com (Psyon) Date: Fri, 28 Dec 2001 14:18:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: <200112271946.fBRJkBS05072@panix1.panix.com> Message-ID: <3C2CF022.7040906@iname.com> I dont know if this went through the first time or not... but did you use xhost to add the remote ip to the access list? David Arnstein wrote: >Hello, > >I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 >Professional, service pack 2. > >I am able to start the Xserver using the startxwin.sh script provided >with the cygwin-xfree86 distribution. I can start an xterm client >locally, too. > >I would like to start an xterm client on a remote machine and have it >display on my local cygwin-xfree86 X server. However, this does not >work. It appears that the X server is not even listening to port >6000. > >If I shut down the cygwin-xfree86 X server, and start the MicroImages >MIX X server, then the same remote machine is able to display an xterm >client on the local MIX X server. This indicates that networking is >functional on my local machine, generally speaking. > >Any suggestions? Thanks. > From sharminkabir@hotmail.com Fri Dec 28 18:09:00 2001 From: sharminkabir@hotmail.com (Sharmin Kabir) Date: Fri, 28 Dec 2001 18:09:00 -0000 Subject: lesstif does not work in cygwin????? Message-ID: Hello: Coud someone pl help me? I am in big trouble! I have been trying to install lesstif in cygwin/win98. I will be really very much happy, if you help me out a little bit. I tried to install it like other packages in cygwin/win98, as bunzip2 lesstif-0.92.98.tar.bz2 tar xvf lesstif-0.92.98.tar Then I tried ./configure make make install But ./configure did not work in cygwin/XFree86!!! So what happened here? Could you pl help me out? I don't need to do ./configure, make and make install???? Sharmin _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From ssiddiqi@inspirepharm.com Fri Dec 28 18:15:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Fri, 28 Dec 2001 18:15:00 -0000 Subject: lesstif does not work in cygwin????? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831EE@ins-exch.inspirepharm.com> Did you read reply to this message on LessTif mailing list? You posted same message there too and I replied. Suhaib > -----Original Message----- > From: Sharmin Kabir [mailto:sharminkabir@hotmail.com] > Sent: Friday, December 28, 2001 9:10 PM > To: cygwin-xfree@cygwin.com > Subject: lesstif does not work in cygwin????? > > > Hello: > Coud someone pl help me? I am in big trouble! I have been trying to > install > lesstif in cygwin/win98. I will be really very much happy, if you help > me > out a little bit. > > I tried to install it like other packages in cygwin/win98, as > > bunzip2 lesstif-0.92.98.tar.bz2 > tar xvf lesstif-0.92.98.tar > > Then I tried > > ./configure > make > make install > > But ./configure did not work in cygwin/XFree86!!! So what happened > here? > Could you pl help me out? I don't need to do ./configure, make and > make > install???? > > Sharmin > > > > _________________________________________________________________ > MSN Photos is the easiest way to share and print your photos: > http://photos.msn.com/support/worldwide.aspx From Ralf.Habacker@freenet.de Sat Dec 29 00:41:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Sat, 29 Dec 2001 00:41:00 -0000 Subject: KDE 2.2.1 alpha2 release for cygwin released Message-ID: <002601c19044$471997c0$0e6307d5@BRAMSCHE> Currently the alpha-2 release of KDE 2.2.1 available on http://kde-cygwin.sf.net. It contains kdelibs, kdebase and kdegames. Many applications are running like kwin, konsole, kdesktop, kicker, kate, khelpcenter, all games and other. Regards Ralf Habacker From huntharo@msu.edu Sun Dec 2 21:07:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Sun, 02 Dec 2001 21:07:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: The following item was added to the Cygwin/XFree86 - Development - To-Do List. ( http://xfree86.cygwin.com/devel/todo.html ) Caveat: I will never personally implement this feature/bugfix because this item is so easy and I have given so much information here that it would take even a novice programmer less than two hours to implement. Summary: Release all keys when Cygwin/XFree86 loses focus Description: Cygwin/XFree86 currently releases mode keys (Alt, Ctrl, etc.) when it loses the keyboard focus. This is necessary because a user may press Alt+Tab to change to another window, in which case the Alt release message would never be received by Cygwin/XFree86; upon returning the keyboard focus to Cygwin/XFree86, the program will behave as it the Alt key is down. One shortcoming of the current system is that other keys (a, b, 1, 2, etc.) are not released when Cygwin/XFree86 loses the keyboard focus. Thus, a user may press the 'a' key, then another application may cause an event that forces Cygwin/XFree86 to lose keyboard focus, causing Cygwin/XFree86 not to receive the release message for the 'a' key. The end result is that Cygwin/XFree86 will endlessly repeat the 'a' key press until the user returns the keyboard focus to Cygwin/XFree86 and presses then releases the 'a' key to stop the automatic repeat. The desired solution would be to release any keys that are pressed. This will require some sort of table to indicate which key codes are in the pressed state, so that pressed keys may be released upon losing the keyboard focus. We can't use the Win32 API function GetKeyboardState () because that function gives us the Win32 Virtual Key codes, rather than the OEM scan code that we need to send a key event to the X MI (machine independent) input layer. It may be easier to send a release event for all keys except the mode keys, regardless of the key state, given that sending a release message for a key that is not down does not have any adverse side effect. We currently do this last method for the mod keys (Alt, Ctrl, Shift, Kana); earlier versions of Cygwin/XFree86 tracked the state of the mod keys and only released the pressed mod keys. No adverse effects have been observed from releasing all mod keys, and this method is also used by the Windows VNC client. Go forth and program, Harold From John_Tobey@notes.intdata.com Mon Dec 3 06:00:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Mon, 03 Dec 2001 06:00:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B17.004CD84F.00@notes.intdata.com> Caveat: By "novice programmer" he means one intimately familiar with X server internals and the Win32 API. :-) But thanks for the hints. -John "Harold Hunt" on 03-12-2001 12:06:59 AM To: "cygx" cc: (bcc: John Tobey/Intdata) Subject: New devel to-do item (release all pressed keyboard keys on focus loss) The following item was added to the Cygwin/XFree86 - Development - To-Do List. ( http://xfree86.cygwin.com/devel/todo.html ) Caveat: I will never personally implement this feature/bugfix because this item is so easy and I have given so much information here that it would take even a novice programmer less than two hours to implement. Summary: Release all keys when Cygwin/XFree86 loses focus Description: Cygwin/XFree86 currently releases mode keys (Alt, Ctrl, etc.) when it loses the keyboard focus. This is necessary because a user may press Alt+Tab to change to another window, in which case the Alt release message would never be received by Cygwin/XFree86; upon returning the keyboard focus to Cygwin/XFree86, the program will behave as it the Alt key is down. One shortcoming of the current system is that other keys (a, b, 1, 2, etc.) are not released when Cygwin/XFree86 loses the keyboard focus. Thus, a user may press the 'a' key, then another application may cause an event that forces Cygwin/XFree86 to lose keyboard focus, causing Cygwin/XFree86 not to receive the release message for the 'a' key. The end result is that Cygwin/XFree86 will endlessly repeat the 'a' key press until the user returns the keyboard focus to Cygwin/XFree86 and presses then releases the 'a' key to stop the automatic repeat. The desired solution would be to release any keys that are pressed. This will require some sort of table to indicate which key codes are in the pressed state, so that pressed keys may be released upon losing the keyboard focus. We can't use the Win32 API function GetKeyboardState () because that function gives us the Win32 Virtual Key codes, rather than the OEM scan code that we need to send a key event to the X MI (machine independent) input layer. It may be easier to send a release event for all keys except the mode keys, regardless of the key state, given that sending a release message for a key that is not down does not have any adverse side effect. We currently do this last method for the mod keys (Alt, Ctrl, Shift, Kana); earlier versions of Cygwin/XFree86 tracked the state of the mod keys and only released the pressed mod keys. No adverse effects have been observed from releasing all mod keys, and this method is also used by the Windows VNC client. Go forth and program, Harold From vervoom@hotmail.com Mon Dec 3 07:12:00 2001 From: vervoom@hotmail.com (pingu) Date: Mon, 03 Dec 2001 07:12:00 -0000 Subject: can't start xfree as user Message-ID: <3C0B9291.2020702@hotmail.com> Hi, Can anyone help out with this problem please? I have XFree86 running on Windows 2K and it is fine for me when I'm logged in as Admin but if I log in as a User it won't run. I have a feeling the answer is to set owner of xinit to root but as I'm using cygwin I don't think this is possible is it? I'd appreciate any help. Thanks. PS: Please could you copy any replies to me directly as I haven't subscribed to the user's list. Thanks. This is what I get when I try to run X: bash-2.05$ ./xinit ddxProcessArgument () _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root _XSERVTransSocketCreateListener: failed to bind listener _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed _XSERVTransMakeAllCOTSServerListeners: failed to create listener for local Fatal server error: Failed to establish all listening sockets giving up. ./xinit: No such file or directory (errno 2): unable to connect to X server ./xinit: No such process (errno 3): Server error. bash-2.05$ From RBodack@sseg.de Mon Dec 3 07:15:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Mon, 03 Dec 2001 07:15:00 -0000 Subject: AW: can't start xfree as user Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDA@ssegadmin> Hi, after A while I had enough with win2k rights and added my network user to the local administrator group. Now I am the boss on my computer. Not elegant, but works. R????diger > > Hi, > > Can anyone help out with this problem please? I have XFree86 > running on > Windows 2K and it is fine for me when I'm logged in as Admin but if I > log in as a User it won't run. I have a feeling the answer is to set > owner of xinit to root but as I'm using cygwin I don't think this is > possible is it? I'd appreciate any help. Thanks. From ouba@ouba.org Mon Dec 3 07:26:00 2001 From: ouba@ouba.org (Denis Sacchet) Date: Mon, 03 Dec 2001 07:26:00 -0000 Subject: How to get work a french keyword ? Message-ID: <007401c17c0e$df5d3ae0$0200a8c0@marsupilami> Hi everybody ... I installed xfree under cygwin 1 week ago, and after a lot of operations, I doesn't manage to make work my 'azerty' keyboard. I think I can obtain it with the -xkbcomp -xkbdb and -xkbmap parameters of XWin.exe, but ... Thanx for your help Ouba PS : Scuse me for my bad english ... From vervoom@hotmail.com Mon Dec 3 08:07:00 2001 From: vervoom@hotmail.com (J S) Date: Mon, 03 Dec 2001 08:07:00 -0000 Subject: AW: can't start xfree as user Message-ID: I'm doing that already, but as I've got to develop this for other people to use as well, it's not really an option for me. But thanks anyway. >From: R????diger Bodack >To: 'pingu' , cygwin-xfree@cygwin.com >Subject: AW: can't start xfree as user >Date: Mon, 3 Dec 2001 16:18:13 +0100 > > >Hi, > >after A while I had enough with win2k rights and added my network user to >the local administrator group. Now I am the boss on my computer. Not >elegant, but works. > >R????diger > > > > > Hi, > > > > Can anyone help out with this problem please? I have XFree86 > > running on > > Windows 2K and it is fine for me when I'm logged in as Admin but if I > > log in as a User it won't run. I have a feeling the answer is to set > > owner of xinit to root but as I'm using cygwin I don't think this is > > possible is it? I'd appreciate any help. Thanks. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From James_Martinez@Jabil.com Mon Dec 3 08:31:00 2001 From: James_Martinez@Jabil.com (James Martinez) Date: Mon, 03 Dec 2001 08:31:00 -0000 Subject: Openwindows remote on Sun Message-ID: Ok I have been able to set up Cygwin and Xfree86 on my computer to remotely login to a Sun Workstation. The only problem is that we use OpenWindows as a desktop and when I use Xfree86 to bring up the Suns desktop the colors and everything are wrong. Is this a problem with OpenWindows, XFree86, or just the way the sun is setup. Thanks for any help. From RBodack@sseg.de Mon Dec 3 08:32:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Mon, 03 Dec 2001 08:32:00 -0000 Subject: AW: How to get work a french keyword ? Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDC@ssegadmin> Place /etc/X11/xinit/xmodmap.fr and apppend the following line to startxwin.bat (right after the xsetroot line), assuming you are using this batch script. You can get the file anywhere on the web searching for xmodmap. xmodmap /etc/X11/xinit/xmodmap.fr R????diger > -----Urspr????ngliche Nachricht----- > Von: Denis Sacchet [ mailto:ouba@ouba.org ] > Gesendet: Montag, 3. Dezember 2001 16:26 > An: cygwin-xfree@xfree86.cygwin.com > Betreff: How to get work a french keyword ? > > > Hi everybody ... > > I installed xfree under cygwin 1 week ago, and after a lot of > operations, I > doesn't manage to make work my 'azerty' keyboard. > > I think I can obtain it with the -xkbcomp -xkbdb and -xkbmap > parameters of > XWin.exe, but ... > > Thanx for your help > > Ouba > > PS : Scuse me for my bad english ... > From alexander.gottwald@informatik.tu-chemnitz.de Mon Dec 3 08:36:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 03 Dec 2001 08:36:00 -0000 Subject: AW: can't start xfree as user References: <540D22115D0CD311BC2E00A0246200EE01531FDA@ssegadmin> Message-ID: On Mon, 3 Dec 2001, R????diger Bodack wrote: > > Can anyone help out with this problem please? I have XFree86 > > running on > > Windows 2K and it is fine for me when I'm logged in as Admin but if I > > log in as a User it won't run. I have a feeling the answer is to set > > owner of xinit to root but as I'm using cygwin I don't think this is > > possible is it? I'd appreciate any help. Thanks. > > after A while I had enough with win2k rights and added my network user to > the local administrator group. Now I am the boss on my computer. Not > elegant, but works. > it should help to mount /tmp to a directory where you have the right to create files. eg. mount -b /temp /tmp or mount -b c:/temp /tmp bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From huntharo@msu.edu Mon Dec 3 09:50:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Mon, 03 Dec 2001 09:50:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B17.004CD84F.00@notes.intdata.com> Message-ID: John, > By "novice programmer" he means one intimately familiar with X > server internals > and the Win32 API. > > :-) Not at all. I mean look in winkeybd.c for the function that pops the mod keys (Alt, Ctrl, Shift, etc.) and simply make it loop through all keys not including the mode keys (Num Lock, Caps Lock, etc.), popping each key. How hard is it to write a for loop based on example code? Harold From huntharo@msu.edu Mon Dec 3 15:14:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Mon, 03 Dec 2001 15:14:00 -0000 Subject: New FAQ Q/A for Xinstall.sh erroneously requesting Xmod.tgz Message-ID: I have added a new Q/A to the FAQ regarding Xinstall.sh requesting Xmod.tgz: http://xfree86.cygwin.com/docs/faq/cygwin-xfree-faq.html#q-xmod.tgz I need people affected by this problem to get back to me on whether or not the information provided is helpful. Please tell me how you solved the problem on your system. (Please CC me, as I am not subscribed to the list). Hope this helps, Harold From haglin@pike.cs.mnsu.edu Mon Dec 3 18:46:00 2001 From: haglin@pike.cs.mnsu.edu (David J. Haglin) Date: Mon, 03 Dec 2001 18:46:00 -0000 Subject: Tiny Suggestions Message-ID: <20011204024008.C54502BBF5@pike.cs.mnsu.edu> I would like to make a tiny suggestion that may improve the presence of XFree86 on a Cygwin/Wintel platform. It would be nice to have an installable/downloadable version of the X.png in window's own *.ico format. From petrie@snrc.stanford.edu Mon Dec 3 20:40:00 2001 From: petrie@snrc.stanford.edu (Charles J. Petrie) Date: Mon, 03 Dec 2001 20:40:00 -0000 Subject: ssh in cygwin Message-ID: <200112040440.UAA14915@snrc.stanford.edu> Hello, I installed Cygwin and XFree86 and can get an X window up and running with no errors. The user manual indicates that ssh should be available but I can't find it anywhere and it's not seen by "which". This is probably a dumb question but isn't ssh supposed to be included in the XFree or Cygwin distributions? Thanks for any help, Charles Petrie -- http://SNRC.stanford.edu/~petrie From cgf@redhat.com Mon Dec 3 20:46:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Mon, 03 Dec 2001 20:46:00 -0000 Subject: ssh in cygwin References: <200112040440.UAA14915@snrc.stanford.edu> Message-ID: <20011204044630.GC10232@redhat.com> On Mon, Dec 03, 2001 at 08:40:22PM -0800, Charles J. Petrie wrote: >Hello, > I installed Cygwin and XFree86 and can get an X window up and running >with no errors. The user manual indicates that ssh should be available >but I can't find it anywhere and it's not seen by "which". This >is probably a dumb question but isn't ssh supposed to be included >in the XFree or Cygwin distributions? Why not rerun setup.exe and look for the word "ssh". Or, you can go to http://cygwin.com/packages/ and search for it. cgf From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 00:51:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 00:51:00 -0000 Subject: Your XDMCP patch for Win 95 References: <3C0C8003.FFE37200@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > Hi, > I am having trouble getting XDMCP to work with Windows 95 and a RedHat > 7.1 Linux box. I have other X-terminals working fine but the Cygwin one > doesn't work. I downloaded your patch (cygwin1.fixed-netdev.dll.bz2) > but it appears to be for Cygwin version 1.3.3 while the current version > I have is 1.3.6-1. I tried to downgrade my version but I couldn't find > the old files anywhere. If I use your patched DLL, I get an error about > missing exports in the DLL. You don't need this patch anymore. It is in cygwin since 1.3.4. I'll throw a comment to the page. Did you have problems with xdmcp and the unpatched 1.3.6 cygwin? What was it? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From RBodack@sseg.de Tue Dec 4 00:55:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Tue, 04 Dec 2001 00:55:00 -0000 Subject: AW: Tiny Suggestions Message-ID: <540D22115D0CD311BC2E00A0246200EE01531FDE@ssegadmin> I can send you my selfmade X-icon. Its a modified Win2K icon, hence I should not post it to the group. Can you point me to the X.png ? I can try my luck to convert it. R????diger > -----Urspr????ngliche Nachricht----- > Von: haglin@pike.cs.mnsu.edu [ mailto:haglin@pike.cs.mnsu.edu ] > Gesendet: Dienstag, 4. Dezember 2001 03:40 > An: cygwin-xfree@xfree86.cygwin.com > Betreff: Tiny Suggestions > > > I would like to make a tiny suggestion that may improve the presence > of XFree86 on a Cygwin/Wintel platform. It would be nice to have an > installable/downloadable version of the X.png in window's own *.ico > format. > From family@watzlavick.com Tue Dec 4 07:02:00 2001 From: family@watzlavick.com (Watzlavick) Date: Tue, 04 Dec 2001 07:02:00 -0000 Subject: Your XDMCP patch for Win 95 Message-ID: <3C0CE5DA.3FC7B108@watzlavick.com> I'm getting the error: "XDMCP Fatal error: Session declined with no valid address". I can start an X session locally on the Win 95 box, telnet to the LInux box and run X programs remotely that way. However, If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. I've read all the previous posts about XDMCP problems but none of the suggestions worked. I do have the Win95 machine name in the /etc/hosts file and in the Xaccess file on the Linux box. My other machines (Netpliance I-Openers) can connect fine using xdm. They mount their entire filesystem over NFS and I assumed they are using XDMCP to get the logon screen. Maybe something is still messed up with my XDMCP configuration? Thanks for your help. -Robert You wrote: You don't need this patch anymore. It is in cygwin since 1.3.4. I'll throw a comment to the page. Did you have problems with xdmcp and the unpatched 1.3.6 cygwin? What was it? > Hi, > I am having trouble getting XDMCP to work with Windows 95 and a RedHat > 7.1 Linux box. I have other X-terminals working fine but the Cygwin one > doesn't work. I downloaded your patch (cygwin1.fixed-netdev.dll.bz2) > but it appears to be for Cygwin version 1.3.3 while the current version > I have is 1.3.6-1. I tried to downgrade my version but I couldn't find > the old files anywhere. If I use your patched DLL, I get an error about > missing exports in the DLL. From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 07:11:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 07:11:00 -0000 Subject: Your XDMCP patch for Win 95 References: <3C0CE5DA.3FC7B108@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > I'm getting the error: "XDMCP Fatal error: Session declined with no > valid address". I can start an X session locally on the Win 95 box, > telnet to the LInux box and run X programs remotely that way. However, > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > I've read all the previous posts about XDMCP problems but none of the > suggestions worked. I do have the Win95 machine name in the /etc/hosts > file and in the Xaccess file on the Linux box. What kind of network card have you installed? Token ring is known to make problems. On my homepage I've a small utility called ls_netdev. This try's to get all network devices from cygwin and also tries to grab it directly from windows. Can you please run it and send me the output? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 4 07:52:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 04 Dec 2001 07:52:00 -0000 Subject: Your XDMCP patch for Win 95 References: <3C0CED4C.763A06F7@watzlavick.com> Message-ID: On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 bye ago BTW: Please reply to the list-address -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From robert.watzlavick@ni.com Tue Dec 4 08:51:00 2001 From: robert.watzlavick@ni.com (Bob Watzlavick) Date: Tue, 04 Dec 2001 08:51:00 -0000 Subject: Your XDMCP patch for Win 95 Message-ID: <000601c17ce3$f7dfe330$4832a482@spike2k> I'm using DHCP and my dynamic IP is 192.168.1.10. Does Cygwin only work with static IP addresses? I suppose there's a chance that my router isn't keeping track of client names properly. -Robert On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 From OPidgornyy@kyiv.utel.com.ua Tue Dec 4 09:25:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Tue, 04 Dec 2001 09:25:00 -0000 Subject: Cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Hello there. I'm running under W2K. Downloaded Xfree binaries from: ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-binaries/4.1.0 The link was talen from the http://xfree86.cygwin.com/ Installed as described in the "Install" file. When trying to start xwin.exe got 'cygz.dll could not be found'. Where is it really? It seems to me it's not there at all. Searched in FAQ. Could not find anything on this. Thanks for help. Sincerely, Alexander Podgorny Kiev, Ukraine From huntharo@msu.edu Tue Dec 4 09:31:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 09:31:00 -0000 Subject: Linux-Mandrake 8.1 and XDMCP References: <00fa01c17cb9$91d369b0$04021eac@sinfopragma.it> Message-ID: Stefano, Thanks for looking into it, but the answer has been in the FAQ for some time now: http://xfree86.cygwin.com/docs/faq/cygwin-xfree-faq.html#q-mandrake-8.1-xdmc p Thanks again, Harold > -----Original Message----- > From: Stefano Conti [ mailto:stefano.conti@jumpy.it ] > Sent: Tuesday, December 04, 2001 6:48 AM > To: huntharo@msu.edu > Subject: Linux-Mandrake 8.1 and XDMCP > > > Found!!! I got this problem too but only today I found some > time to take a look at ... > You should edit the file /usr/share/config/kdm/kdmrc > at the end of the file under paragraph [Xdmcp] > Enable=False should be Enabled= True > Save the file the killall kdm and everything should work. > Excuse for my awful english. > Ste > From jgilles@glmultimedia.com Tue Dec 4 09:50:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 04 Dec 2001 09:50:00 -0000 Subject: Pb with XDMCP on Solaris Message-ID: Hi, [ Using CygWin/Xfree on Win2k, 1280x1024x24 ] if I use this to open a session : ./XWin -query sun.ip -from my.ip I have a session where bitmaps are completly messed up by vertical gray lines - in fact vertical lines seems to be mixed. Fonts are ok, colors ok also, but icons on the CDE toolbar have this problem. The background is also badly displayed. ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 24 => same problem ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 8 => no problem :-\ Is there something to fix on the Solaris Workstation ? or perhaps a tricky parameters under Win2K ? -- Julien Gilles From cwilson@ece.gatech.edu Tue Dec 4 10:23:00 2001 From: cwilson@ece.gatech.edu (Charles Wilson) Date: Tue, 04 Dec 2001 10:23:00 -0000 Subject: cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) References: <4B6D123ED7F0D311AD7B00508B656CB9044359D7@exchange.kyiv.internal.utel.com.ua> <20011204171158.GB16648@redhat.com> Message-ID: <3C0D14B4.4040001@ece.gatech.edu> Christopher Faylor wrote: > On Tue, Dec 04, 2001 at 07:06:13PM +0200, Pidgornyy, Oleksandr wrote: > >>I'm running under W2K. Downloaded Xfree binaries from: >> ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-binaries/4.1.0 >>Installed as described in the "Install" file. When trying to start >>xwin.exe got 'cygz.dll could not be found'. Where is it really? It >>seems to me it's not there at all. Searched in FAQ. Could not find >>anything on this. cygz.dll is provided by the 'zlib' package, and lives in /usr/bin (== /bin). Make sure that C:\cygwin\bin is in your system PATH before trying to run xwin. --Chuck From flognat@flognat.myip.org Tue Dec 4 10:56:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Tue, 04 Dec 2001 10:56:00 -0000 Subject: Cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) References: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Message-ID: | When trying to start xwin.exe got 'cygz.dll could not be found'. | Where is it really? I think we reuse it from standard cygwin installation.. So you have to install a bunch of cygwin packages too. /Andy -- The eye of the beholder rests on the beauty! From robert.watzlavick@ni.com Tue Dec 4 11:01:00 2001 From: robert.watzlavick@ni.com (Bob Watzlavick) Date: Tue, 04 Dec 2001 11:01:00 -0000 Subject: Your XDMCP patch for Win 95 References: <000601c17ce3$f7dfe330$4832a482@spike2k> Message-ID: <000901c17cf5$f1759050$4832a482@spike2k> Ok, I just tried using a static IP on the Windows 95 box and things work just dandy. Thanks! So do you think the problem with the dynamic IP is in my router or something in Cygwin? -Robert -----Original Message----- From: cygwin-xfree-owner@cygwin.com [ mailto:cygwin-xfree-owner@cygwin.com ] Sent: Tuesday, December 04, 2001 10:52 AM To: cygwin-xfree@sources.redhat.com Subject: Re: Your XDMCP patch for Win 95 I'm using DHCP and my dynamic IP is 192.168.1.10. Does Cygwin only work with static IP addresses? I suppose there's a chance that my router isn't keeping track of client names properly. -Robert On Tue, 4 Dec 2001, Watzlavick wrote: > > > I'm getting the error: "XDMCP Fatal error: Session declined with no > > > valid address". I can start an X session locally on the Win 95 box, > > > telnet to the LInux box and run X programs remotely that way. However, > > > If I use "XWin -query 192.168.1.1 -from 192.168.1.10" I get the error. > > OS Version: Windows 9x 4.0 Build 67306684 B > Querying devices using ioctl > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > Querying devices using internal function > lo: family=TCP/IP (0) addr=127.0.0.1 > eth0: family=TCP/IP (0) addr=0.0.0.0 > > Looks like something is wrong with the ethernet addresses but I don't know > how to fix it. You should be able to set the IP in the Preferences Dialog for the network. Choose the TCP-IP Protocol from the list in the networksettings-panel. Select Properties and Change the field IP-Adress to 192.168.1.10 From John_Tobey@notes.intdata.com Tue Dec 4 11:28:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Tue, 04 Dec 2001 11:28:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B18.006ADBB1.00@notes.intdata.com> There's nothing too hard about it, but it doesn't work. The winSendKeyEvent() calls seem to result in keydown events, judging by this output from my test. Here I sent myself an email, started slowly typing 'asdf' into an xterm, and waited until the email notification popped up. The text from 890-qwerty... on seems to have come from my patch, included below. (Apologies if the lines wrap.) I suppose the next step will be to keep an array of flags indicating what keys are down. When should one set/clear the flags? -John ==========BEGIN xterm OUTPUT============== [jtobey@BED-JTOBEY-W] (0) ~/x-devel/build/hacked/programs/Xserver $ asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfass890-qwertyuiop[] ~\\bash: asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfasdfass890-qwertyuiop[]: command not found [jtobey@BED-JTOBEY-W] (127) ~/x-devel/build/hacked/programs/Xserver $ adfghjkl;'`\zxcvbnm,./* ~~~~0~1~~~~<3~4~~~ > /9 ==========END xterm OUTPUT============== ==========BEGIN PATCH============== --- ../../../../xc/programs/Xserver/hw/xwin/winkeybd.c Mon Dec 3 16:38:20 2001 +++ hw/xwin/winkeybd.c Tue Dec 4 10:45:00 2001 @@ -403,12 +403,30 @@ if (g_fdMessageQueue == WIN_FD_INVALID) return; +#if 1 + ErrorF("Nuking 'modifier' keys!\n"); + { + int i; + for (i = 1; i < 128; i++) + switch (i) + { + default: + winSendKeyEvent (i, FALSE); + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + break; + } + } +#else winSendKeyEvent (KEY_Alt, FALSE); winSendKeyEvent (KEY_AltLang, FALSE); winSendKeyEvent (KEY_LCtrl, FALSE); winSendKeyEvent (KEY_RCtrl, FALSE); winSendKeyEvent (KEY_ShiftL, FALSE); winSendKeyEvent (KEY_ShiftR, FALSE); +#endif } ==========END PATCH============== "Harold Hunt" on 03-12-2001 12:50:08 PM To: John Tobey/Intdata@INTDATA cc: "cygx" Subject: RE: New devel to-do item (release all pressed keyboard keys on focus loss) John, > By "novice programmer" he means one intimately familiar with X > server internals > and the Win32 API. > > :-) Not at all. I mean look in winkeybd.c for the function that pops the mod keys (Alt, Ctrl, Shift, etc.) and simply make it loop through all keys not including the mode keys (Num Lock, Caps Lock, etc.), popping each key. How hard is it to write a for loop based on example code? Harold From cgf@redhat.com Tue Dec 4 11:37:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Tue, 04 Dec 2001 11:37:00 -0000 Subject: cygwin-xfree-4.1.0 binaries(cygz.dll could not be located) References: <4B6D123ED7F0D311AD7B00508B656CB9044359D8@exchange.kyiv.internal.utel.com.ua> Message-ID: <20011204193726.GB19946@redhat.com> On Tue, Dec 04, 2001 at 07:56:36PM +0100, Andrew Markebo wrote: > >| When trying to start xwin.exe got 'cygz.dll could not be found'. >| Where is it really? > >I think we reuse it from standard cygwin installation.. So you have to >install a bunch of cygwin packages too. Go to http://cygwin.com/packages/ and use the search facility to find the correct package. cgf From cwilson@ece.gatech.edu Tue Dec 4 11:52:00 2001 From: cwilson@ece.gatech.edu (Charles Wilson) Date: Tue, 04 Dec 2001 11:52:00 -0000 Subject: Speaking of debian cygwin Message-ID: <3C0D2982.1000503@ece.gatech.edu> There's another slashdot article: http://slashdot.org/article.pl?sid=01/12/04/13552388 Seems the debian-devel folks aren't too happy about this... --Chuck From huntharo@msu.edu Tue Dec 4 11:59:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 11:59:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B18.006ADBB1.00@notes.intdata.com> Message-ID: > There's nothing too hard about it, but it doesn't work. The > winSendKeyEvent() > calls seem to result in keydown events, judging by this output > from my test. Actually, I believe it indicates that X clients interpret alpha key releases without a press as a key event. I was afraid of that. You'll need to declare a global array in winkeybc.c, call it g_fKeyStates, of type Bool and length MAP_LENGTH, initialize the array to 0's in InitInput.c/InitInput (). Then, on each call to winSendKeyEvent (), look at the value of fDown and set the array entry corresponding to dwKey accordingly. Finally, have winKeybdReleaseModifierKeys () loop from 0 to MAP_LENGTH, calling winSendKeyEvent (dwKey, FALSE) for each array entry that indicates that the key is pressed. You know, I've also thought of an alternative that warrents trying. When we loose keyboard focus (WM_KILLFOCUS), try making InitInput.c/InitInput()/pKeyboard global, then call winKeybdProc (g_pKeyboard, DEVICE_OFF). When we regain focus, call winKeybdProc (g_pKeyboard, DEVICE_ON). I think this may have the effect of stopping key repeats due to a missing key release message. Give the latter case a shot before creating a key state array. Harold From march@indirect.com Tue Dec 4 12:16:00 2001 From: march@indirect.com (Michael F. March) Date: Tue, 04 Dec 2001 12:16:00 -0000 Subject: Speaking of debian cygwin References: <3C0D2982.1000503@ece.gatech.edu> Message-ID: <007c01c17d00$89b5f580$c3d256d1@D4LHBR01> I read all that and I still can not figure out what the EXACT issue is they have? GNU software running on Windows? DPKG specifically being ported to Windows? After reading all the /. and debian mailing list posts, I *still* can not tell.. > There's another slashdot article: > > http://slashdot.org/article.pl?sid=01/12/04/13552388 > > Seems the debian-devel folks aren't too happy about this... From marketing@ugetmore4less.net Tue Dec 4 12:55:00 2001 From: marketing@ugetmore4less.net (marketing@ugetmore4less.net) Date: Tue, 04 Dec 2001 12:55:00 -0000 Subject: Instant Success-Increased Sales leads guaranteed... Message-ID: <03cf73b79cf517b6629baa8d12046e57@NO-ID-FOUND.mhonarc.org> **************************************************** Proven Sales Formula! Successfull entrepreneurs around the world use our products. **************************************************** Is your website tired/run down? Need a Health check for your dot com? Not sure about commitment? Get a free health check At Trafficwow.net. Not only do we help you make a Success of building your profit. We tell you the Web secret that is making your competitor more money than you. Want to know more http://www.trafficwow.net/healthcheck ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Trafficwow makes web sites burst with targeted sales traffic. Just order your package and we do the rest. Guarenteed traffic or your money back. We have sent over 63 Million people to sites like your this month alone. Want to know more http://www.trafficwow.net/faq_wow.htm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Want to Buy? Simply visit http://www.trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Become a Winner with http://www.Trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Free Web Site Health Check with every package! Trafficwow will asses your web site and forward you an advice report. Be warned!! If it is no good. WE WILL TELL YOU!!!!!! Visit http://www.Trafficwow.net *********************************************************************************** We Are Fully Compliant to Senate bill1618,Title 3, section 301. < http://www.senate.gov/~murkowski/commercialmail/S771index.html > This message is sent in compliance of the new e-mail bill: Section 301.per section 301, paragraph (a)(2)(c) of S 1618. < http://www.senate.gov/#murkowshki/commerciale-mail?s77index.html > Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by sending a reply e-mail it to marketing@ugetmore4less.net with the word ????REMOVE???? in the subject line. *********************************************************************************** From marketing@ugetmore4less.net Tue Dec 4 12:55:00 2001 From: marketing@ugetmore4less.net (marketing@ugetmore4less.net) Date: Tue, 04 Dec 2001 12:55:00 -0000 Subject: Instant Success-Increased Sales leads guaranteed... Message-ID: **************************************************** Proven Sales Formula! Successfull entrepreneurs around the world use our products. **************************************************** Is your website tired/run down? Need a Health check for your dot com? Not sure about commitment? Get a free health check At Trafficwow.net. Not only do we help you make a Success of building your profit. We tell you the Web secret that is making your competitor more money than you. Want to know more http://www.trafficwow.net/healthcheck ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Trafficwow makes web sites burst with targeted sales traffic. Just order your package and we do the rest. Guarenteed traffic or your money back. We have sent over 63 Million people to sites like your this month alone. Want to know more http://www.trafficwow.net/faq_wow.htm ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Want to Buy? Simply visit http://www.trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Become a Winner with http://www.Trafficwow.net ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Free Web Site Health Check with every package! Trafficwow will asses your web site and forward you an advice report. Be warned!! If it is no good. WE WILL TELL YOU!!!!!! Visit http://www.Trafficwow.net *********************************************************************************** We Are Fully Compliant to Senate bill1618,Title 3, section 301. < http://www.senate.gov/~murkowski/commercialmail/S771index.html > This message is sent in compliance of the new e-mail bill: Section 301.per section 301, paragraph (a)(2)(c) of S 1618. < http://www.senate.gov/#murkowshki/commerciale-mail?s77index.html > Further Transmission to you by the sender of this e-mail may be stopped at no cost to you by sending a reply e-mail it to marketing@ugetmore4less.net with the word ????REMOVE???? in the subject line. *********************************************************************************** From cgf@redhat.com Tue Dec 4 13:05:00 2001 From: cgf@redhat.com (Christopher Faylor) Date: Tue, 04 Dec 2001 13:05:00 -0000 Subject: Speaking of debian cygwin References: <3C0D2982.1000503@ece.gatech.edu> Message-ID: <20011204210600.GG19946@redhat.com> On Tue, Dec 04, 2001 at 02:52:34PM -0500, Charles Wilson wrote: >There's another slashdot article: > > http://slashdot.org/article.pl?sid=01/12/04/13552388 > >Seems the debian-devel folks aren't too happy about this... I'm surprised that this has actually finally happened. This has been in discussion for *years*. I've been subscribed to the mailing list which discusses debian for win32 and it has gone through the standard ebbs and flows of a project that was apparently going nowhere. cgf From kevin.schnitzius@citrix.com Tue Dec 4 13:26:00 2001 From: kevin.schnitzius@citrix.com (Kevin Schnitzius) Date: Tue, 04 Dec 2001 13:26:00 -0000 Subject: Speaking of debian cygwin Message-ID: http://slashdot.org/article.pl?sid=01/12/04/1355238 Extra '8' in the mail. Kevin -----Original Message----- From: Randall R Schulz [ mailto:rrschulz@cris.com ] Sent: Tuesday, December 04, 2001 16:19 To: cygwin@cygwin.com; cygwin-xfree@cygwin.com Subject: Re: Speaking of debian cygwin Charles, Are they so upset they got the article pulled? All I get, beyond the Slahsdot page adornments, is this: "Nothing for you to see here. Please move along." Has this article been pulled, or is there an error in the URL you gave? Randall Schulz Mountain View, CA USA At 11:52 2001-12-04, Charles Wilson wrote: >There's another slashdot article: > > http://slashdot.org/article.pl?sid=01/12/04/13552388 > >Seems the debian-devel folks aren't too happy about this... > >--Chuck -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ From John_Tobey@notes.intdata.com Tue Dec 4 14:10:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Tue, 04 Dec 2001 14:10:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B18.0079B893.00@notes.intdata.com> Thanks for the help. It sort of works now. I see no autorepeat, but there seems to be one extra keystroke received. I have not tested enough to be sure what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is interpreted as a key event, which in addition to the original keydown results in a double keystroke seen by the application. This happens only in conjunction with an asynchronous focus loss, and it beats the earlier behavior, but perhaps it could be improved upon. I don't have any more time to work on it today. I would like to try using the new server for a while before I suggest applying this patch. Fiddling with InitInput.c and winwndproc.c as you suggested did not have a noticeable effect. -John --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 +++ winkeybd.c Tue Dec 4 16:42:28 2001 @@ -391,6 +391,11 @@ return FALSE; } +/* + * Remember which keys are down for when we lose focus. + */ + +Bool g_fKeyStates[MAP_LENGTH]; /* * Lift any modifier keys that are pressed @@ -399,16 +404,28 @@ void winKeybdReleaseModifierKeys () { + int i; + /* Verify that the mi input system has been initialized */ if (g_fdMessageQueue == WIN_FD_INVALID) return; - winSendKeyEvent (KEY_Alt, FALSE); - winSendKeyEvent (KEY_AltLang, FALSE); - winSendKeyEvent (KEY_LCtrl, FALSE); - winSendKeyEvent (KEY_RCtrl, FALSE); - winSendKeyEvent (KEY_ShiftL, FALSE); - winSendKeyEvent (KEY_ShiftR, FALSE); + for (i = 0; i < MAP_LENGTH; i++) + switch (i) + { + default: + if (g_fKeyStates[i]) + { + ErrorF ("Simulating release of key #%d!\n", i); + winSendKeyEvent (i, FALSE); + } + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + case KEY_HKTG: + break; + } } @@ -430,4 +447,5 @@ g_c32LastInputEventTime = GetTickCount (); xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; mieqEnqueue (&xCurrentEvent); + g_fKeyStates[dwKey] = fDown; } From gary.samuels@gbst.com Tue Dec 4 18:06:00 2001 From: gary.samuels@gbst.com (Gary Samuels) Date: Tue, 04 Dec 2001 18:06:00 -0000 Subject: bunzip2 - Where to locate utility? Message-ID: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> To whom it may concern, I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't find the bunzip2 utility to uncompress the extract utility. Where can I locate this? Gary.. Gary Samuels Team Leader - Unix Systems & DBA mailto: gary.samuels@gbst.com Global Banking & Securities Transactions 5 Cribb Street, Milton QLD 4064 Australia P.O. BOX 1511, Milton QLD 4064 Australia Telephone: 617 3331 5555 Fax: 617 3367 0181 < http://www.gbst.com.au > GBST is a trademark of Star Systems Pty Ltd From huntharo@msu.edu Tue Dec 4 18:19:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 18:19:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B18.0079B893.00@notes.intdata.com> Message-ID: Looks good to me. I agree that testing this for a bit would be a good idea. I wouldn't want to commit it until we figure out what is causing the extra key stroke that you talk about. Good work, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [ mailto:John_Tobey@notes.intdata.com ] > Sent: Tuesday, December 04, 2001 5:10 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > Thanks for the help. It sort of works now. I see no autorepeat, > but there > seems to be one extra keystroke received. I have not tested > enough to be sure > what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is > interpreted as a key event, which in addition to the original > keydown results in > a double keystroke seen by the application. > > This happens only in conjunction with an asynchronous focus loss, > and it beats > the earlier behavior, but perhaps it could be improved upon. I > don't have any > more time to work on it today. I would like to try using the new > server for a > while before I suggest applying this patch. > > Fiddling with InitInput.c and winwndproc.c as you suggested did not have a > noticeable effect. > > -John > > --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 > +++ winkeybd.c Tue Dec 4 16:42:28 2001 > @@ -391,6 +391,11 @@ > return FALSE; > } > > +/* > + * Remember which keys are down for when we lose focus. > + */ > + > +Bool g_fKeyStates[MAP_LENGTH]; > > /* > * Lift any modifier keys that are pressed > @@ -399,16 +404,28 @@ > void > winKeybdReleaseModifierKeys () > { > + int i; > + > /* Verify that the mi input system has been initialized */ > if (g_fdMessageQueue == WIN_FD_INVALID) > return; > > - winSendKeyEvent (KEY_Alt, FALSE); > - winSendKeyEvent (KEY_AltLang, FALSE); > - winSendKeyEvent (KEY_LCtrl, FALSE); > - winSendKeyEvent (KEY_RCtrl, FALSE); > - winSendKeyEvent (KEY_ShiftL, FALSE); > - winSendKeyEvent (KEY_ShiftR, FALSE); > + for (i = 0; i < MAP_LENGTH; i++) > + switch (i) > + { > + default: > + if (g_fKeyStates[i]) > + { > + ErrorF ("Simulating release of key #%d!\n", i); > + winSendKeyEvent (i, FALSE); > + } > + break; > + case KEY_CapsLock: > + case KEY_ScrollLock: > + case KEY_NumLock: > + case KEY_HKTG: > + break; > + } > } > > > @@ -430,4 +447,5 @@ > g_c32LastInputEventTime = GetTickCount (); > xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; > mieqEnqueue (&xCurrentEvent); > + g_fKeyStates[dwKey] = fDown; > } > > From spetreolle@yahoo.fr Tue Dec 4 19:31:00 2001 From: spetreolle@yahoo.fr (Sylvain Petreolle) Date: Tue, 04 Dec 2001 19:31:00 -0000 Subject: bunzip2 - Where to locate utility? References: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> Message-ID: <20011205033140.20195.qmail@web10102.mail.yahoo.com> Gary, using the setup.exe program, you must download and install the package bzip2. --- Gary Samuels a ????crit????: > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the > xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract > utility. Where can I > locate this? > > Gary.. > > Gary Samuels > Team Leader - Unix Systems & DBA > mailto: gary.samuels@gbst.com > > Global Banking & Securities Transactions > 5 Cribb Street, Milton QLD 4064 Australia > P.O. BOX 1511, Milton QLD 4064 Australia > Telephone: 617 3331 5555 Fax: 617 3367 0181 > < http://www.gbst.com.au > > GBST is a trademark of Star Systems Pty Ltd > > ___________________________________________________________ Nokia 5510 Dr????le de look... et quel son ! Cliquez sur http://fr.promotions.yahoo.com/nokia/ D????couvrez-le et tentez votre chance pour en gagner un ! Fin du concours le 16 d????cembre. From huntharo@msu.edu Tue Dec 4 19:59:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Tue, 04 Dec 2001 19:59:00 -0000 Subject: X11/gnuplot lines References: Message-ID: Marco, I'm a little more excited about passing my college classes and getting into graduate school than I am about working with gnuplot. Sorry. Perhaps someone on the list would like to help, Harold > -----Original Message----- > From: Marco Barcellona [ mailto:marco@rios3.insean.it ] > Sent: Tuesday, December 04, 2001 2:41 AM > To: huntharo@msu.edu > Subject: X11/gnuplot lines > > > Dear Harold, > > I just compiled gnuplot 3.71 under cygwin, using --with-x option, > without particular problems. > > When plotting on 'x11' terminal type of gnuplot, only symbols and > dots seems to work correctly. Lines are displayed in a very strange way... > > Exactly the same thing happens when exporting a gnuplot x11-graph from a > Linux/Unix host on cygwin-xfree86. > > It would be great for us to get rid of this odd behaviour, since gnuplot > is one of the most used graphical programs when developing/debugging CFD > software.... > > > Thanks for your interest > > > Marco > > From jgilles@glmultimedia.com Wed Dec 5 01:17:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Wed, 05 Dec 2001 01:17:00 -0000 Subject: Pb with XDMCP on Solaris References: Message-ID: "Harold Hunt" writes: > Julien, > >> ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 24 >> >> => same problem >> >> ./XWin -query 172.25.135.116 -from 172.25.135.11 -fullscreen -depth 8 >> >> => no problem :-\ > > I wonder if Solaris supports 24 bits per pixel? Try running with -depth > 15, -depth 16, or -depth 32, depending on which depths your card supports. Yes, it works with depth 16 - why didn't I have tried ? I set my Win2k depth to 16 bit, and now I can also have Xwin in 16 bits in windowed mode. Thanks. -- Julien Gilles From OPidgornyy@kyiv.utel.com.ua Wed Dec 5 03:10:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Wed, 05 Dec 2001 03:10:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question(where to put new font path to get it before all others) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359DB@exchange.kyiv.internal.utel.com.ua> Hi there. Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config under unixes? Where does it live? The configuration file for FontServer (/etc/X11/fs/config) seems to be not used at all. The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font dir to font path but only for current X session. It does not store it where it should have(???). Briefly saying where should I put the path of my new_font_dir to get it before all other font pathes? Thanks. Sincerely, Alexander Podgorny From John_Tobey@notes.intdata.com Wed Dec 5 06:55:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Wed, 05 Dec 2001 06:55:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B19.0051D621.00@notes.intdata.com> After some experimentation, I am somewhat confident that the doubling affects only certain clients, specifically xterm and not emacs or kedit. I doubt whether I can figure it out completely without a major time investment. It is still the case that whatever key I use to dismiss the non-X application and return focus to X gets passed on to an X client (including emacs and kedit). I suppose for this the solution would be to make winSendKeyEvent do nothing if its fDown already matches the array element (since in this case both would be false), but I fear that such a change might adversely affect other code that I don't know about. Perhaps we want a g_fLostFocus flag that winSendKeyEvent resets the first time it's called after X regains focus. By the way, the same thing happens for mouse buttons as for keys. If I have a mouse button down when a popup appears, X wrongly considers the button to be down when it gets focus back. In practice, I find this more amusing than annoying, but I suppose in some situations it could cause problems. Thanks for your help. -John "Harold Hunt" on 04-12-2001 09:19:48 PM To: John Tobey/Intdata@INTDATA cc: "cygx" Subject: RE: New devel to-do item (release all pressed keyboard keys on focus loss) Looks good to me. I agree that testing this for a bit would be a good idea. I wouldn't want to commit it until we figure out what is causing the extra key stroke that you talk about. Good work, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [ mailto:John_Tobey@notes.intdata.com ] > Sent: Tuesday, December 04, 2001 5:10 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > Thanks for the help. It sort of works now. I see no autorepeat, > but there > seems to be one extra keystroke received. I have not tested > enough to be sure > what the new behavior is. Perhaps the fake winSendKeyEvent(i, FALSE) is > interpreted as a key event, which in addition to the original > keydown results in > a double keystroke seen by the application. > > This happens only in conjunction with an asynchronous focus loss, > and it beats > the earlier behavior, but perhaps it could be improved upon. I > don't have any > more time to work on it today. I would like to try using the new > server for a > while before I suggest applying this patch. > > Fiddling with InitInput.c and winwndproc.c as you suggested did not have a > noticeable effect. > > -John > > --- winkeybd.c.dist Tue Dec 4 16:58:07 2001 > +++ winkeybd.c Tue Dec 4 16:42:28 2001 > @@ -391,6 +391,11 @@ > return FALSE; > } > > +/* > + * Remember which keys are down for when we lose focus. > + */ > + > +Bool g_fKeyStates[MAP_LENGTH]; > > /* > * Lift any modifier keys that are pressed > @@ -399,16 +404,28 @@ > void > winKeybdReleaseModifierKeys () > { > + int i; > + > /* Verify that the mi input system has been initialized */ > if (g_fdMessageQueue == WIN_FD_INVALID) > return; > > - winSendKeyEvent (KEY_Alt, FALSE); > - winSendKeyEvent (KEY_AltLang, FALSE); > - winSendKeyEvent (KEY_LCtrl, FALSE); > - winSendKeyEvent (KEY_RCtrl, FALSE); > - winSendKeyEvent (KEY_ShiftL, FALSE); > - winSendKeyEvent (KEY_ShiftR, FALSE); > + for (i = 0; i < MAP_LENGTH; i++) > + switch (i) > + { > + default: > + if (g_fKeyStates[i]) > + { > + ErrorF ("Simulating release of key #%d!\n", i); > + winSendKeyEvent (i, FALSE); > + } > + break; > + case KEY_CapsLock: > + case KEY_ScrollLock: > + case KEY_NumLock: > + case KEY_HKTG: > + break; > + } > } > > > @@ -430,4 +447,5 @@ > g_c32LastInputEventTime = GetTickCount (); > xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; > mieqEnqueue (&xCurrentEvent); > + g_fKeyStates[dwKey] = fDown; > } > > From francois.perrot@cgey.com Wed Dec 5 07:49:00 2001 From: francois.perrot@cgey.com (François PERROT) Date: Wed, 05 Dec 2001 07:49:00 -0000 Subject: app launch and xwinclip problem Message-ID: <00e801c17da2$f9640460$9b4e430a@fperrot.ism.capgemini.fr> Hi all, I have some problems when I try to open Microsoft office files by double-click. When I do so, the app is not launched and the machine freezes with 100 % cpu time used. When I kill -1 xwinclip, the app starts normally. I first thought this was a Microsoft office files openning problem only but I also have some xwinclip related problems with the windows time / date properties panel, and with windows explorer when it's launched by right-clicking on the start button. For those two last exemples the symptoms are different as the app is correctly launched but hangs until I kill xwinclip (kill -1 works) The behaviour of xwinclip is : "OpenClipboard () failed" message and xwinclip goes on working well, same message but I can paste on windows environment (and it works on xfree/KDE), or xwinclip is no longer running at all. I'm using Xwin-test53, cygwin version is 1.3.3, KDE 1.2 beta (but I had the same problems with twm, mwm and icewm) and xwinclip test 03. My win environment is NT 4 sp 6 with 96 Mo. I've searched the mailing-lists archives and didn't find any equivalent problem, witch I find weird : many office users and only one with what should be a common problem. Hey who put a spell on my machine ?!! From alexander.gottwald@informatik.tu-chemnitz.de Wed Dec 5 08:59:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 05 Dec 2001 08:59:00 -0000 Subject: Your XDMCP patch for Win 95 References: <000901c17cf5$f1759050$4832a482@spike2k> Message-ID: On Tue, 4 Dec 2001, Bob Watzlavick wrote: > Ok, I just tried using a static IP on the Windows 95 box and things work > just dandy. Thanks! So do you think the problem with the dynamic IP is in > my router or something in Cygwin? I guess it's something with win95. Imo, win95 should return the correct IP and not 0.0.0.0 since it's known when cygwin queries it. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From gmvist@yahoo.com Wed Dec 5 09:23:00 2001 From: gmvist@yahoo.com (Marius Ghita) Date: Wed, 05 Dec 2001 09:23:00 -0000 Subject: The error "Fatal server error: could not open default font 'fixed' Message-ID: <20011205172353.8989.qmail@web11206.mail.yahoo.com> Hello! I installed your software and when I want to start it with startxwin.bat I get the following message: "Fatal server error: could not open default font 'fixed'" What should I do? __________________________________________________ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com From huntharo@msu.edu Wed Dec 5 12:23:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 05 Dec 2001 12:23:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B19.0051D621.00@notes.intdata.com> Message-ID: John, > I suppose for this the solution would be to make winSendKeyEvent > do nothing if > its fDown already matches the array element Nah, you can't do that because we sometimes call winSendKeyEvent multiple times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat count. > After some experimentation, I am somewhat confident that the > doubling affects > only certain clients, specifically xterm and not emacs or kedit. I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and WM_KEYUP to see if the doubled key message is being sent again immediately after we regain focus. > I doubt > whether I can figure it out completely without a major time investment. This is your baby now, and you're making good progress. Don't be discouraged. These things take time to work out correctly. Harold From nidhibhatia@hotmail.com Wed Dec 5 13:06:00 2001 From: nidhibhatia@hotmail.com (Nidhi Bhatia) Date: Wed, 05 Dec 2001 13:06:00 -0000 Subject: install error Message-ID: I am having problems Installing XFree86. When attempting to extract the extract.exe.bz2 archive using the following command: bunzip2 extract.exe.bz2 the following error occurs: BASH: bunzip2: command not found I have followed the instructions in the user's guide and do not know how to correct this. Should I redownload something again? _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From John_Tobey@notes.intdata.com Wed Dec 5 14:09:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Wed, 05 Dec 2001 14:09:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B19.0079B237.00@notes.intdata.com> > > I suppose for this the solution would be to make winSendKeyEvent > > do nothing if > > its fDown already matches the array element > Nah, you can't do that because we sometimes call winSendKeyEvent multiple > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > count. But I can do it when both are *false*. This goes over my earlier patch: --- winkeybd.c~ Tue Dec 4 16:42:28 2001 +++ winkeybd.c Wed Dec 5 16:39:49 2001 @@ -439,7 +439,12 @@ winSendKeyEvent (DWORD dwKey, Bool fDown) { xEvent xCurrentEvent; - + + /* Ignore ups without a preceding down. This happens when a keystroke + causes X to gain focus. */ + if (!fDown && !g_fKeyStates[dwKey]) + return; + ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; > I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and > WM_KEYUP to see if the doubled key message is being sent again immediately > after we regain focus. Here is my XWin.log: keydown #16 at 22939 keyup #16 at 23250 keydown #17 at 23320 keyup #17 at 23570 keydown #18 at 23680 keyup #18 at 23981 keydown #19 at 24091 keyup #19 at 24412 keydown #16 at 24452 keyup #16 at 24752 keydown #17 at 24792 Simulating release of key #17! killfocus at 24862 setfocus at 32363 keyup #45 at 32483 killfocus at 42017 And here is my xterm after the setfocus at 32363 ms: $ qwerqww 'w' is key #17. The only thing that could be happening is that xterm is outsmarting itself by doing something with its own killfocus. My preference is to let xterm users deal. We're used to it. :-) > > I doubt > > whether I can figure it out completely without a major time investment. > This is your baby now, and you're making good progress. Don't be > discouraged. These things take time to work out correctly. Without your help, I would probably lose patience. -John From shemgp@aup.edu.ph Wed Dec 5 16:00:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Wed, 05 Dec 2001 16:00:00 -0000 Subject: The error "Fatal server error: could not open default font 'fixed' References: <20011205172353.8989.qmail@web11206.mail.yahoo.com> Message-ID: <3C0EB518.9AC460BB@aup.edu.ph> first, there's and answer in the mailing list archives. you should try using binary instead of text while installing. mount /usr using mount -b Marius Ghita wrote: > > Hello! > I installed your software and when I want to start it > with startxwin.bat I get the following message: > > "Fatal server error: could not open default font > 'fixed'" > > What should I do? > > __________________________________________________ > Do You Yahoo!? > Buy the perfect holiday gifts at Yahoo! Shopping. > http://shopping.yahoo.com From shemgp@aup.edu.ph Wed Dec 5 16:01:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Wed, 05 Dec 2001 16:01:00 -0000 Subject: install error References: Message-ID: <3C0EB56A.BB809662@aup.edu.ph> how about putting bunzip2 (if you have it) in a directory in the PATH Nidhi Bhatia wrote: > > I am having problems Installing XFree86. > > When attempting to extract the extract.exe.bz2 archive using the following > command: > > bunzip2 extract.exe.bz2 > > the following error occurs: > > BASH: bunzip2: command not found > > I have followed the instructions in the user's guide and do not know how to > correct this. Should I redownload something again? > > _________________________________________________________________ > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp From sarah.davis@etransmail2.com Wed Dec 5 20:50:00 2001 From: sarah.davis@etransmail2.com (Sarah Davis) Date: Wed, 05 Dec 2001 20:50:00 -0000 Subject: NEWS RELEASE: VersaCheck 2002 Message-ID: Subscriber verification requested for: cygwin-xfree@cygwin.com Good Afternoon! Your Email address has been submitted for inclusion into our FREE Email News Service. We provide News Release Information regarding productivity hardware and software available through major US Retail stores and select web sites. ********** PRESS & NEWS RELEASE ************** SAN DIEGO, CALIFORNIA, December 5, 2001 Effective immediately G7 Productivy Systems, Inc., a San Diego based publisher of productivity solutions, has made available new VersaCheck 2002 financial productivity software to its existing customers and new users. The new generation of significantly enhanced software titles offers a greatly improved user interface along with additional functionality in the areas: * creation of custom bankable checks for personal and business use (1), * comprehensive bank account and finance management, * bill payment and automatic scheduling of invoices (online or client based) * internet paper check processing, * built-in real-time credit card processing, * address book with payee/payor management * creation of check drafts (Home& Business Version only!) * financial reports * direct import and export of finacial data files from and to Quicken, Quickbooks, Money and other financial software (1) all checks created may be conveniently filled out on screen or by hand writing and are compatible with the major personal finance programs and accounting software. VersaCheck 2002 and many different styles of blank check paper are offered through computer retailers and nationwide superstores, such as CompUSA, Office Depot, Staples, Fry's Electronics, Micro Center and many others. Suggested retail prices, including an initial supply of 100 checks, are: $19.99 for the VersaCheck 2002 Personal BASIC, $29.99 for Personal GOLD, and $49.99 for the Home & Business version. Blank check paper is offered from $19.99 for 750 checks, which allow both personal and business users alike to take advantage of significant savings, up to 80%, when compared to equivalent offerings from banks and mail order check companies. Please click on the following link for further details http://www.g7ps.com ********************* Thank you very much. Regards, Sarah Davis Marketing / PR G7 Productivity Systems, Inc. sarah.davis@etransmail2.com 800-303-2620 To change your communication preference please click on: http://www.globalzon2k.com/scripts/mf_de.asp?e=cygwin-xfree@cygwin.com or simply reply to this Email with UNSUBSCRIBE in the subject line. From shemgp@aup.edu.ph Thu Dec 6 00:02:00 2001 From: shemgp@aup.edu.ph (Shem) Date: Thu, 06 Dec 2001 00:02:00 -0000 Subject: [Fwd: Re: install error] Message-ID: <3C0F25F3.7E4928FA@aup.edu.ph> From: "Nidhi Bhatia" Thank you so much. I have successfully installed but cannot connect to a remote session or display a remote client. I am somehow missing cygwin's telnet and if I try a secure shell using ssh, i get command not found. >From: Shem >Reply-To: shemgp@aup.edu.ph >To: Nidhi Bhatia >CC: cygwin-xfree@xfree.cygwin.com >Subject: Re: install error >Date: Thu, 06 Dec 2001 08:01:46 +0800 > >how about putting bunzip2 (if you have it) in a directory in the PATH >Nidhi Bhatia wrote: From paul.daly@gf-x.com Thu Dec 6 04:15:00 2001 From: paul.daly@gf-x.com (Paul Daly (GF-X)) Date: Thu, 06 Dec 2001 04:15:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: All, Hope this gets through. I have been using cygwin/xfree86 for a while on both NT4 and Win2K and have been experiencing the problem of Alt-Tabbing between KDE and Windows apps and losing keyboard focus. Anyway I tried the solutions of hitting modifiers and nothing happened. So I tried turning Num Lock OFF - and guess what - I can now happily Alt-Tab at will with no loss of keyboard focus. This has helped several people in our office here, so hopefully it will help many others who read this list. Cheers, Paul. From ccrawford@analogic.com Thu Dec 6 06:47:00 2001 From: ccrawford@analogic.com (Crawford, Carl) Date: Thu, 06 Dec 2001 06:47:00 -0000 Subject: xview toolkit ported to cygwin Message-ID: does a port of the xview x11 toolkit exist for cygwin? thanks, --carl From huntharo@msu.edu Thu Dec 6 07:48:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 06 Dec 2001 07:48:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B19.0079B237.00@notes.intdata.com> Message-ID: John, > > > I suppose for this the solution would be to make winSendKeyEvent > > > do nothing if > > > its fDown already matches the array element > > > Nah, you can't do that because we sometimes call > winSendKeyEvent multiple > > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > > count. > > But I can do it when both are *false*. This goes over my earlier patch: Hmm... yes, that seems correct. Just test it for awhile to make sure it all works as expected. Harold From huntharo@msu.edu Thu Dec 6 07:51:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 06 Dec 2001 07:51:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: Message-ID: Paul, > Anyway I tried the solutions of hitting modifiers and nothing > happened. So I > tried turning Num Lock OFF - and guess what - I can now happily Alt-Tab at > will with no loss of keyboard focus. Huh... that is strange. I really have no idea why that is causing the problem to go away. "Somebody" should look into that one. Harold From flognat@flognat.myip.org Thu Dec 6 07:54:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Thu, 06 Dec 2001 07:54:00 -0000 Subject: xview toolkit ported to cygwin References: Message-ID: Do you mean the ancient SUN xview toolkit?? Probably not because I haven't seen any source to it.. /Andy / "Crawford, Carl" wrote: | does a port of the xview x11 toolkit exist for cygwin? | | thanks, | | --carl | -- The eye of the beholder rests on the beauty! From tangm@oslo.geco-prakla.slb.com Thu Dec 6 13:21:00 2001 From: tangm@oslo.geco-prakla.slb.com (Michael Tang) Date: Thu, 06 Dec 2001 13:21:00 -0000 Subject: TCL/TK Message-ID: <5.1.0.14.2.20011206221831.01ee5468@oslo.geco-prakla.slb.com> Hi, I am new to this CYGWIN and I am impressed by its functionality, almost similar to UNIX to a very high degree. Anyway, I have installed the TCL/TK 8.0 libraries on my machine. But when I do "tclsh" at the prompt, it says it couldn't find it. I did a search and found "cygtclsh80". I would like to know if this is the same as "tclsh" command? I see similar with c++ and g++. What the differences in them? Thanks and regards, Michael From JohanJvanWyk@eaton.com Thu Dec 6 14:00:00 2001 From: JohanJvanWyk@eaton.com (vanWyk, Johan J) Date: Thu, 06 Dec 2001 14:00:00 -0000 Subject: Cygwin 1.3.6 Message-ID: <4E32301CBBCBFA47B7B4F91DBE97B5ED02A7C5A5@pitpasmb06.ch.etn.com> I run the 1.3.6 release of Cygwin and tried to run the XFree86 X server and it complained that I do not have the right .dll. What do I do? Johan From epsteinm@noos.fr Thu Dec 6 14:03:00 2001 From: epsteinm@noos.fr (epstein monique) Date: Thu, 06 Dec 2001 14:03:00 -0000 Subject: working with windows XP? Message-ID: <5.1.0.14.2.20011206230306.00bcae90@mail.micronet.fr> Did anybody succeed to open a remote session from windows XP to a linux machine with redhat 7.1 I succeed only to get the grey box with the black cross but no login box. Any suggestions? Monique Epstein Paris From aszomor@pointer.hu Fri Dec 7 00:33:00 2001 From: aszomor@pointer.hu (Attila Szomor) Date: Fri, 07 Dec 2001 00:33:00 -0000 Subject: X Server Message-ID: <000601c17ef9$d5dfe060$a20110ac@pointer.hu> Hi All, I downloaded CigWin, but how can I get XFree for it ? Thanks, Attila. From epsteinm@noos.fr Fri Dec 7 01:24:00 2001 From: epsteinm@noos.fr (epstein monique) Date: Fri, 07 Dec 2001 01:24:00 -0000 Subject: cygwin font fixed not found Message-ID: <5.1.0.14.2.20011207101504.02db7250@mail.micronet.fr> Hi to shemgp@aup.edu.ph ! I saw your answer on the mailing list CYGWIN XFREE86 You answer to Marius Gita that "he should try using binary instead of text while installing" but the new installation gives only the possibility of choosing "default text file type : DOS or UNIX" So which one would be the right to choose? I had the same problem and I think it is linked to WINDOWS 2000 because I don't have that problem with XP. Monique Epstein Monique Epstein 06 85 43 05 00 From RBodack@sseg.de Fri Dec 7 02:27:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Fri, 07 Dec 2001 02:27:00 -0000 Subject: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532001@ssegadmin> Hi All, I tried to run icewm under win2K. While twm is working well, I only get the windows in the upper left corner under icewm, no menu, no window bar. Seems it is not running at all. I am using icewm-cygwin-1.0.9-2.tar.gz. Icewm is in the $PATH and I exchanged the xterm as described somewhere. Is there any other WM known to work under W2K? Any Ideas? R????diger Bodack From RBodack@sseg.de Fri Dec 7 02:39:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Fri, 07 Dec 2001 02:39:00 -0000 Subject: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532003@ssegadmin> > > What happens if you type icewm in the xterm you get popped up? > > /Andy Nothing. The task seems to run, gives no messages. I stopped it after 1 min and found it in the process list. But I cannot see any effect. Strange? From flognat@flognat.myip.org Fri Dec 7 02:48:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 07 Dec 2001 02:48:00 -0000 Subject: AW: icewm not starting on Win2K References: <540D22115D0CD311BC2E00A0246200EE01532003@ssegadmin> Message-ID: / R????diger Bodack wrote: | > | > What happens if you type icewm in the xterm you get popped up? | > | > /Andy | | Nothing. The task seems to run, gives no messages. I stopped it after 1 min | and found it in the process list. But I cannot see any effect. Strange? Hmm try twm in the same window.. To see if it is a general problem, or just icewm? You don't happen to have cygwin.dll's lying around and so on? Could it be that the icewm is compiled for old cygwin, and you have a new and modern? /Andy -- The eye of the beholder rests on the beauty! From RBodack@sseg.de Fri Dec 7 02:57:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Fri, 07 Dec 2001 02:57:00 -0000 Subject: AW: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532004@ssegadmin> > Hmm try twm in the same window.. To see if it is a general problem, or > just icewm? You don't happen to have cygwin.dll's lying around and so > on? twm is working from that shell window. > > Could it be that the icewm is compiled for old cygwin, and you have a > new and modern? Dont think so, couldn't find the version, but I installed it 2 weeks ago. I found remarks in the older icewm releasenotes that it is not working under w2k. Thanks for your help BTW. From Janos.Sebestyen@eth.ericsson.se Fri Dec 7 04:27:00 2001 From: Janos.Sebestyen@eth.ericsson.se (Janos Sebestyen (ETH)) Date: Fri, 07 Dec 2001 04:27:00 -0000 Subject: xdm Message-ID: Hi, My name is Janos and I am trying to use cygwin and Xfree under win2k, it is working fine, but I have a question! How can I use xdm and chooser, because it is allways said Only root wants to run xdm? So, I am an Administrator on my machine (uid=500) and there is no root on it, because it is a win2k. The /etc/passwd file is: Everyone:*:0:0:,S-1-1-0:: SYSTEM:*:18:18:,S-1-5-18:: Administrators:*:544:544:,S-1-5-32-544:: Administrator:unused_by_nt/2000/xp:500:513:U-3NJ1G00454FTP6C\Administrator,S-1-5-21-372014698-1648304418-1196229020-500:/home/Administrator:/bin/bash Guest:unused_by_nt/2000/xp:501:513:U-3NJ1G00454FTP6C\Guest,S-1-5-21-372014698-1648304418-1196229020-501:/home/Guest:/bin/bash My cygwin is 1.3.5-cygwin-1-3-5-2, Cygwin\Xfree86 is 4.1.0. Would you give me some good hints how can I configure and customise my Xfree for the best solution. Brgs, Janos From alexander.gottwald@informatik.tu-chemnitz.de Fri Dec 7 04:37:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 07 Dec 2001 04:37:00 -0000 Subject: xdm References: Message-ID: On Fri, 7 Dec 2001, Janos Sebestyen (ETH) wrote: > Hi, > > My name is Janos and I am trying to use cygwin and Xfree under win2k, it is working fine, but I have a question! > How can I use xdm and chooser, because it is allways said Only root wants to run xdm? There is no such user root on winnt. But there is a workaround. Start xdm with the option "-debug 1". This should allow you start it. But I don't know if the authentication via xdm works on windows. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From briangenisio@yahoo.com Fri Dec 7 04:47:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 07 Dec 2001 04:47:00 -0000 Subject: X Server References: <000601c17ef9$d5dfe060$a20110ac@pointer.hu> Message-ID: <20011207124722.80713.qmail@web20801.mail.yahoo.com> Go to xfree.cygwin.com. Right on the site, it tells you how to download it. There is even a user's guide, which holds your hand through the process, if you need some help. Brian --- Attila Szomor wrote: > Hi All, > > I downloaded CigWin, but how can I get XFree for it ? > > Thanks, > Attila. > __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From wilper-8@ludd.luth.se Fri Dec 7 05:27:00 2001 From: wilper-8@ludd.luth.se (Wilhelm Person) Date: Fri, 07 Dec 2001 05:27:00 -0000 Subject: Secure x-terminal Message-ID: It's already covered in the User's Guide, sort of. But I thought I'd share it with you anyway. I changed my startxwin.bat a bit to make it do a secure connection to a host with unix, and then I start a window-manager there. It makes the windows-box behave like a secure x-terminal, and I don't have to bother installing XDM on the remote machine. I have Win2k, but assume that it should work with other versions too: The tail of my startxwin.bat: --- REM REM Use the /B switch. This starts the specified process in the background; REM in other words, it does not cause a new Command Prompt window to be REM opened for each 'start' command. REM :USE-B-SWITCH REM Startup the X Server. start /B XWin -fullscreen -terminate start /B xterm -T "Login" -e ssh -C -X user@some.host.foo :END --- When run it goes fullscreen and starts an xterm which automatically runs ssh with X-forwarding and compression (I have fast computers, but a rather slow link). Once I have logged in I run a script that changes the keyboard layout and starts a window manager. ~/bin/cygwinup echo Please wait. xmodmap /etc/X11/xmodmap.se twm & /W +-------------------------------+ | Home: http://wilper.cjb.net | +-------------------------------+ From frank.hendrik@vdi.de Fri Dec 7 05:35:00 2001 From: frank.hendrik@vdi.de (Hendrik Frank) Date: Fri, 07 Dec 2001 05:35:00 -0000 Subject: bunzip2 - Where to locate utility? Message-ID: <9924475cd10d578fd0612aaab37dd880@NO-ID-FOUND.mhonarc.org> Hi Sylvain, I've got the same problem as Gary. Now, I've tried your tip, Sylvain, but my setup keeps ignoring my clicking-on-the-install-button. By now, I've no idea how to install bzip2 Hendrik Frank D-69115 Heidelberg Gary, using the setup.exe program, you must download and install the package bzip2. --- Gary Samuels a ????crit : > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the > xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract > utility. Where can I > locate this? > > Gary.. > > Gary Samuels > Team Leader - Unix Systems & DBA > mailto: gary.samuels@gbst.com > > Global Banking & Securities Transactions > 5 Cribb Street, Milton QLD 4064 Australia > P.O. BOX 1511, Milton QLD 4064 Australia > Telephone: 617 3331 5555 Fax: 617 3367 0181 > < http://www.gbst.com.au > > GBST is a trademark of Star Systems Pty Ltd From jgilles@glmultimedia.com Fri Dec 7 08:13:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Fri, 07 Dec 2001 08:13:00 -0000 Subject: Another XDMCP problem Message-ID: Until this morning I had no problem to start Xfree using 'Xwin -query sun_ip -from my-ip', but now X stay black, with the wait cursor, no login window. On Solaris, I have the following error in /var/dt/Xerrors : Fri Dec 7 15:58:48 2001 error (pid 3893): Impossible d'initialiser l'????cran 172.25.135.11:0. Saisie proba ble du serveur. Sorry, the error message is in french, it means : "Can't initialize the display 172.25.135.11:0.". I don't know how to translate the second part, I even don't understand it in french... (172.25.135.11 is the IP of my Win2K). -- Julien Gilles From ddhuyvet@san.rr.com Fri Dec 7 09:22:00 2001 From: ddhuyvet@san.rr.com (David Dhuyvetter) Date: Fri, 07 Dec 2001 09:22:00 -0000 Subject: icewm not starting on Win2K Message-ID: <3C10FB1A.3030209@san.rr.com> R????diger: I built and run icewm-cygwin-1.0.9-2.tar.gz under W2K, so it should work. The specific versions on the machine I used to build it are: W2K SP 1 W2K XFree86 4.1.0(157) CYGWIN_NT-5.0 XXXXXXX 1.3.3(0.46/3/2) 2001-09-12 23:54 i686 unknown Are you trying to start icewm from startxwin.bat? See the following notes from the page where you downloaded icewm: * For some reason I can't launch IceWM from a .bat file. When I try I get the following: | 0 [main] icewm 2564 handle_exceptions: Exception: STATUS_ACCESS_VIOLATION 1198 [main] icewm 2564 open_stackdumpfile: Dumping stack trace to icewm.exe.stackdump | To get around this I launch everything from a shell script. I have a shortcut on my desktop with the following target: | C:\cygwin\bin\bash.exe --login /usr/X11R6/bin/startxwin.sh | Jirko Cassuben added the following: I think I found the reason, why IceWM doesn't start from the startxwin.bat. (That is: it does for me :-). IceWM needs the USER and HOME environment variables and they are not set by default on a windows system. I'd consider that a bug in IceWM, because there is no real guarantee that the variables are set on unix systems, either. At least that means it's easy to workaround the problem in XFree/Cygwin. Just set USER and HOME in the batchfile. Also: * Others have reported a problem with icewm.exe hanging on W2K systems during start. The problem appears to be with the default theme (Infadel2) on those systems. To work around this problem use a different theme, such as the win95 theme, when starting icewm, either the -t command line switch or a change in a preference file (see icewm-15.html for info) seems work. Also, if you want to launch xterm from the icewm menu, you need to download a patched xterm.exe from http://home.san.rr.com/dhuyvetter/david/CygwinXFree86.html Let me know if any of this helps. David From eyal@eyal.emu.id.au Fri Dec 7 17:43:00 2001 From: eyal@eyal.emu.id.au (Eyal Lebedinsky) Date: Fri, 07 Dec 2001 17:43:00 -0000 Subject: bunzip2 - Where to locate utility? References: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> Message-ID: <3C116C86.B552756F@eyal.emu.id.au> Gary Samuels wrote: > > To whom it may concern, > > I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't > find the bunzip2 utility to uncompress the extract utility. Where can I > locate this? Use 'bzip2 -d' to unzip '.bz2' files. -- Eyal Lebedinsky (eyal@eyal.emu.id.au) < http://samba.anu.edu.au/eyal/ > From ssharpe@iglide.net Sat Dec 8 11:13:00 2001 From: ssharpe@iglide.net (Scott Sharpe) Date: Sat, 08 Dec 2001 11:13:00 -0000 Subject: bunzip2 - Where to locate utility? References: <1CDB101F0CB6D311882F0000F806392404F088F4@aquarius.bne.star.com.au> <3C116C86.B552756F@eyal.emu.id.au> Message-ID: <3C126636.5070603@iglide.net> My last experience with cygwin I noted that bzip was not installed by default. You can rerun setup, then select view in the upper right corner of the select packages screen. When you get to bzip2 make sure you have a version listed. If no version is listed it is not installed . Just click the new column to get the version you want. then continue by selecting next. Hope this helps Scott Eyal Lebedinsky wrote: >Gary Samuels wrote: > >>To whom it may concern, >> >>I have downloaded Cygwin/XFree86 and the xc-4-binaries. However, I can't >>find the bunzip2 utility to uncompress the extract utility. Where can I >>locate this? >> > >Use 'bzip2 -d' to unzip '.bz2' files. > >-- >Eyal Lebedinsky (eyal@eyal.emu.id.au) < http://samba.anu.edu.au/eyal/ > > >. > From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 8 11:26:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 08 Dec 2001 11:26:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question(where to put new font path to get it before all others) References: <4B6D123ED7F0D311AD7B00508B656CB9044359DB@exchange.kyiv.internal.utel.com.ua> Message-ID: On Wed, 5 Dec 2001, Pidgornyy, Oleksandr wrote: > Hi there. > Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config > under unixes? Where does it live? No. There is no such configuration file. > The configuration file for FontServer (/etc/X11/fs/config) seems to > be not used at all. This is only used by xfs. > The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font > dir to font path but only for current X session. It does not store it > where it should have(???). You can use the fontserver and store the path configuration there. The X-Server is the started with the option -fp tcp/:7100. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 8 12:41:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 08 Dec 2001 12:41:00 -0000 Subject: New to-do item - configuration Message-ID: Hi, after several requests, we should add the following point to the todo-list: Configuration: Implementation of a static configuration. Either as file as in the Linux version Xfree86 or via the Windows registry. The configuration should contain these points: - Dimension and location of the window - Fontpath configuration - XKB configuration - Other options (3 Button emulation,...) The preferred format of the configuration file is the format of XF86Config used by other XFree86 X-servers. If a reuse of the configfile reader of XFree86 is not possible/ _very_ complicated I would not mind if we use a different format. The registry variant would require a configuration program which allows the user to adjust these values. Comments? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From welcome Sat Dec 8 20:24:00 2001 From: welcome (welcome) Date: Sat, 08 Dec 2001 20:24:00 -0000 Subject: Your New Account Info Message-ID: <3966732eba1c6cf8480b11af8e70e59a@NO-ID-FOUND.mhonarc.org> Your E-mail Address Removal/Deletion Instructions at the end of this email: We visited your site and thought the following might benefit you. Dear Advertiser: VnetFind.Com is currently achieving over 1,000,000 hits a month! We had been a meta search engine for quite sometime and just recently went to paid rankings (pay per click)! Most of our search terms are still available for only $.01! And with our Amazing Bonuses of up to 800% you could get highly targeted search engine traffic for as little as $.001 per unique visitor! You have nothing to lose and everything to gain! You pay only for traffic you receive NO OTHER FEES, NO MONTHLY MINIMUMS! Check out what VnetFind.Com has to offer! List your site now and VnetFind.Com will give you: Traffic - We deliver hundreds of thousands of searches every month. Targeting - Directly connect with specific audiences through custom titles and descriptions. Cost effectiveness - Pay when targeted customers click through to your site. Control - Choose how much to pay for each visitor. Easy account management - Get 24 hours a day, 7 days a week account access at Vnetfind.Com Free Money- VnetFind.Com will match your deposit with up to an 800% bonus! When you put in the promo code MPTSTAR YOU WILL get $10 free just for signing up plus the following bonuses on deposits! Deposit $10 USD into your account and receive a 100% Bonus ($20 in your account) Deposit $25 USD into your account and receive a 500% Bonus ($150 in your account) Deposit $50 USD into your account and receive a 600% Bonus ($350 in your account) Deposit $100 USD into your account and receive a 700% Bonus ($800 in your account) Deposit $200 USD into your account and receive a 800% Bonus($1800 in your account) Within minutes you can place your site in our top rated search engine and be receiving highly targeted traffic for only pennies a click. Here are the details: We are a bid-for-placement search engine. You bid a certain number of cents you are willing to pay to have people come to your site. The more you pay, the higher you appear in our search. The best part is that you only pay for traffic you receive ... there are no other fees! Register for an account it's easy and only takes a few minutes! Deposit funds into your VnetFind account via check order or by credit card. Select the keywords you wish to place your site under. For example, if you run a site that sells rare coins, you might choose the keywords "rare coins" or "shillings". Create a description of your site for the keywords you chose. Choose how much you wish to pay per click for your sites link. The more you are willing to pay, the higher you will appear in our search engine. You will only be charged for traffic you receive. If you are paying .01 cents per click and receive 8 unique clicks, your account will be debited .08 cents. If a visitor clicks on your entry multiple times in the same day, you will only be charged once. We have special systems in place to make sure that you are only charged for unique clicks and not overcharged. You can request any remaining funds be returned to you at any time and there are no membership fees to use our service! That's it! You will begin receiving highly targeted search engine traffic for as little as $.001 per visitor in no time! Remember this is a special offer and you MUST enter the promo code MPTSTAR to receive your bonuses! Thanks and Good Luck! Jennifer C Account Manager $$$$$$$$$$$$$$$$$$$-REMOVAL INSTRUCTION-$$$$$$$$$$ This message is sent in compliance of the new email Bill HR 1910. Under Bill HR 1910 passed by the 106th US Congress on May 24, 1999, this message cannot be considered SPAM as long as I include a valid return address and the way to be removed. ONCE AGAIN THIS IS NOT SPAM. PLEASE IF YOU WANT TO BE REMOVED SEND AN E-MAIL WITH "REMOVE" IN THE SUBJECT TO THE FOLLOWING ADDRESS: remove@cn-starnet.com From anders@fix.no Sun Dec 9 05:30:00 2001 From: anders@fix.no (Anders Nordby) Date: Sun, 09 Dec 2001 05:30:00 -0000 Subject: Pwm binaries Message-ID: <20011209132846.GA5982@totem.fix.no> Hello, I've made a tarball of pwm 1.0 for Cygwin 1.3.6/XFree86 4.1.0: http://anders.fix.no/test/pwm-1.0-cygwin1.3.6-xfree86-4.1.0-binaries.tar.bz2 Pwm is a much more usable window manager for X, IMHO. :-) Feel free to put it in the xfree/contrib dir on the mirrors. Thanks for great work with XFree86 for Cygwin guys! Cheers, -- Anders. From RBodack@sseg.de Mon Dec 10 07:50:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Mon, 10 Dec 2001 07:50:00 -0000 Subject: AW: icewm not starting on Win2K Message-ID: <540D22115D0CD311BC2E00A0246200EE01532017@ssegadmin> David, thanks for your help. I changed the startxwin.bat to: start /B c:\apps\cygwin\bin\bash --login c:\apps\cygwin\usr\X11R6\bin\startxwin.sh This is a good idea in general, because it eliminates the maintenance for two files (.sh and .bat). I still have some trouble with changing the theme, but icewm is working. R????diger Bodack > From OPidgornyy@kyiv.utel.com.ua Mon Dec 10 23:11:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Mon, 10 Dec 2001 23:11:00 -0000 Subject: New to-do item - configuration Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359E3@exchange.kyiv.internal.utel.com.ua> I would suggest to make it as in the Linux if this is not more complicated than via registry. Arguments: the configuration will be in the same manner as everything rest otherwise configuration via registry would make the configuration process dissimilar. Sincerely, Alex -----Original Message----- From: Alexander Gottwald [ mailto:Alexander.Gottwald@informatik.tu-chemnitz.de ] Sent: Saturday, December 08, 2001 10:39 PM To: cygwin-xfree@cygwin.com Subject: New to-do item - configuration Hi, after several requests, we should add the following point to the todo-list: Configuration: Implementation of a static configuration. Either as file as in the Linux version Xfree86 or via the Windows registry. The configuration should contain these points: - Dimension and location of the window - Fontpath configuration - XKB configuration - Other options (3 Button emulation,...) The preferred format of the configuration file is the format of XF86Config used by other XFree86 X-servers. If a reuse of the configfile reader of XFree86 is not possible/ _very_ complicated I would not mind if we use a different format. The registry variant would require a configuration program which allows the user to adjust these values. Comments? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From market@now.net.cn Mon Dec 10 23:35:00 2001 From: market@now.net.cn (Today's Network) Date: Mon, 10 Dec 2001 23:35:00 -0000 Subject: ×¢²áÓòÃû¡¢ÐéÄâÖ÷»ú´óÓŻݣ¡Ëʹμ¶ÓòÃû£¬ËÍÉÌÓÃÓÊÏ䣬Ãâ·ÑÊÔÓÃ15 Message-ID: <20011211045459.6018.qmail@localhost.localdomain> ???????????????????????????????????????????????? ???????????????????????? ????????????????????????????????( http://www.now.net.cn )????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????150M???????????????????????????????? (????????????????????????????????????????????????????????????????????????????????????????15????????!) ???????????????????????????????????????? ????????VDNS????????????????????????????????????????????????????????100????????/????????????????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????15????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????? ????????????????????????????????????????????????ASP????????PHP ????????JSP????????PERL????????CGI????????????????????????????????????????????????????????????????????????????????????????300????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????POP???????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????? http://www.now.net.cn ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????! From silveredge18@mediaone.net Tue Dec 11 02:19:00 2001 From: silveredge18@mediaone.net (Early Bird) Date: Tue, 11 Dec 2001 02:19:00 -0000 Subject: 2 Airfare vouchers for $49.95 Message-ID: Sign up today and receive two round trip airfare vouchers, open dated for 18 months! You will also receive a three month subscription. To learn more visit us at: http://www.earlybirdstockpicks.com From silveredge18@mediaone.net Tue Dec 11 02:19:00 2001 From: silveredge18@mediaone.net (Early Bird) Date: Tue, 11 Dec 2001 02:19:00 -0000 Subject: 2 Airfare vouchers for $49.95 Message-ID: Sign up today and receive two round trip airfare vouchers, open dated for 18 months! You will also receive a three month subscription. To learn more visit us at: http://www.earlybirdstockpicks.com From briangenisio@yahoo.com Tue Dec 11 03:37:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Tue, 11 Dec 2001 03:37:00 -0000 Subject: New to-do item - configuration References: <4B6D123ED7F0D311AD7B00508B656CB9044359E3@exchange.kyiv.internal.utel.com.ua> Message-ID: <20011211113602.10229.qmail@web20808.mail.yahoo.com> Though I do not know what the issues are with porting the configfile reader, it also seems to be the most portable solution. One of the things I like the most about the X server, is that it is so similar to the *nix ports out there. The auto-configurability obviously is not necessary, as with the settings that go along with it (refresh rates, etc) since it has a graphics library to sit on top of, so it may be a bit easier. A Registry solution would be extremely quick to implement, but you loose the instant familiarity. The very first thing I did when I downloaded the X server for the first time was go directly to the XF86Config file, and was confused to not find it. (This was before the fabulous documentation of course... Thanks Harold :)) But who am I to complain? I havent had a part in the development... only in some debugging. For that matter, I like it just the way it is :) Brian --- "Pidgornyy, Oleksandr" wrote: > I would suggest to make it as in the Linux if this is not more complicated > than via registry. > Arguments: the configuration will be in the same manner as everything rest > otherwise configuration via registry > would make the configuration process dissimilar. > > Sincerely, > Alex > > > > -----Original Message----- > From: Alexander Gottwald > [ mailto:Alexander.Gottwald@informatik.tu-chemnitz.de ] > Sent: Saturday, December 08, 2001 10:39 PM > To: cygwin-xfree@cygwin.com > Subject: New to-do item - configuration > > > Hi, > > after several requests, we should add the following point to the todo-list: > > Configuration: > Implementation of a static configuration. Either as file as in the > Linux version Xfree86 or via the Windows registry. > > The configuration should contain these points: > > - Dimension and location of the window > - Fontpath configuration > - XKB configuration > - Other options (3 Button emulation,...) > > The preferred format of the configuration file is the format of > XF86Config used by other XFree86 X-servers. > If a reuse of the configfile reader of XFree86 is not possible/ > _very_ complicated I would not mind if we use a different format. > > The registry variant would require a configuration program which > allows the user to adjust these values. > > Comments? > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From _rednun@gmavt.net Tue Dec 11 06:56:00 2001 From: _rednun@gmavt.net (Bob Boie) Date: Tue, 11 Dec 2001 06:56:00 -0000 Subject: No subject Message-ID: <565572a7069604df4f28420a5d61a8da@NO-ID-FOUND.mhonarc.org> --====_ABC1234567890DEF_==== Content-Type: multipart/alternative; boundary="====_ABC0987654321DEF_====" --====_ABC0987654321DEF_==== Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable --====_ABC0987654321DEF_====-- --====_ABC1234567890DEF_==== Content-Type: audio/x-wav; name="Pics.DOC.scr" Content-Transfer-Encoding: base64 Content-ID: TVqQAAMAAAAEAAAA//8AALgAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAA8AAAAA4fug4AtAnNIbgBTM0hVGhpcyBwcm9ncmFtIGNhbm5vdCBiZSBydW4gaW4gRE9TIG1v ZGUuDQ0KJAAAAAAAAAAoxs1SbKejAWynowFsp6MBF7uvAWinowHvu60BbqejAYS4qQF2p6MBhLin AW6nowEOuLABZaejAWynogHyp6MBhLioAWCnowHUoaUBbaejAVJpY2hsp6MBAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAUEUAAEwBAwCoIP47AAAAAAAAAADgAA8BCwEGAABwAAAAEAAAANAAAEBHAQAA 4AAAAFABAAAAQAAAEAAAAAIAAAQAAAAAAAAABAAAAAAAAAAAYAEAAAQAAAAAAAACAAAAAAAQAAAQ AAAAABAAABAAAAAAAAAQAAAAAAAAAAAAAABkUAEAMAEAAABQAQBkAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAAAAAAAAEAAAA AAAAAAAAAAAAAACAAADgAAAAAAAAAAAAcAAAAOAAAABqAAAABAAAAAAAAAAAAAAAAAAAQAAA4C5y c3JjAAAAABAAAABQAQAAAgAAAG4AAAAAAAAAAAAAAAAAAEAAAMAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 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 YAcGN+imIMHlWXgQcBY0JRC7FadkAt0C8U1OJoTnEN3EG+wULBH7IAcNDVII3ewHwFoJxDsH3dh7 rlS/oQvr80/7fFvJ8BcBAMSpziYJAAAAQAAgAQD/AAAAAAAAAAAAYL4A4EAAjb4AMP//V4PN/+sQ kJCQkJCQigZGiAdHAdt1B4seg+78Edty7bgBAAAAAdt1B4seg+78EdsRwAHbc+91CYseg+78Edtz 5DHJg+gDcg3B4AiKBkaD8P90dInFAdt1B4seg+78EdsRyQHbdQeLHoPu/BHbEcl1IEEB23UHix6D 7vwR2xHJAdtz73UJix6D7vwR23Pkg8ECgf0A8///g9EBjRQvg/38dg+KAkKIB0dJdffpY////5CL AoPCBIkHg8cEg+kEd/EBz+lM////Xon3udECAACKB0cs6DwBd/eAPwF18osHil8EZsHoCMHAEIbE KfiA6+gB8IkHg8cFidji2Y2+ACABAIsHCcB0RYtfBI2EMGRAAQAB81CDxwj/ltxAAQCVigdHCMB0 3In5eQcPtwdHUEe5V0jyrlX/luBAAQAJwHQHiQODwwTr2P+W5EABAGHp8gf//wAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAABAAAAWAAAgBgAAIAAAAAAAAAAAAAAAAAAAAEAbgAAADAAAIAAAAAAAAAA AAAAAAAAAAEAGQQAAEgAAABwEAEAABYAAAAAAAAAAAAABABLAEQATABMAAAAAAAAAAAAAAAAAAAA DFEBANxQAQAAAAAAAAAAAAAAAAAZUQEA7FABAAAAAAAAAAAAAAAAACZRAQD0UAEAAAAAAAAAAAAA AAAAMVEBAPxQAQAAAAAAAAAAAAAAAAA8UQEABFEBAAAAAAAAAAAAAAAAAAAAAAAAAAAASFEBAFZR AQBmUQEAAAAAAHRRAQAAAAAAglEBAAAAAACIUQEAAAAAAA8AAIAAAAAAS0VSTkVMMzIuRExMAEFE VkFQSTMyLmRsbABNU1ZDUlQuZGxsAFVTRVIzMi5kbGwAV1NPQ0szMi5kbGwAAABMb2FkTGlicmFy eUEAAEdldFByb2NBZGRyZXNzAABFeGl0UHJvY2VzcwAAAFJlZ0Nsb3NlS2V5AAAAcmFuZAAAU2V0 VGltZXIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA AEylVPhKoVL+u09O/s3Mxf7LxMD8SLVN4E69U/7PIND4sk9H8DAy3/zIJdD+ySHS/s083/6DgWps lQozMvC2Q7WlX7JPQ7myX029s7a1TLVai2+GinedaFVCjWWDbI9rb4ZEUoeVbpqPd0tau3FyaJmO SJSBjGOVb05YqGlQj2ibZf5jgWpslQozKqyVdmX+Y5RsEK6UbGz+g04fyDHDxiWubopz/m2RkRCu lo9qbZGREKibb23+cZOLZYR3sJaPam2RkRCom29t/nGTi2WEd7CWj2ptkZEQqJtvbfykcZNr3mWP ddksnrdv3JaKed5h3muBamUh/nd3d/jisZzqAODOdQD4tHAA/r1wAPxicAD+b3AA/g0AAADgcADw WHAA/kVwAPw2cAD+KXAA+BxwAPz2cAD+GQAAAAAAAP4BAAAAAAAAAAAAAAAAAAD8QgAAAAAAAAAA /l/9D/3yCg== --====_ABC1234567890DEF_==== From NotesSMTP@wink.com Tue Dec 11 07:00:00 2001 From: NotesSMTP@wink.com (NotesSMTP@wink.com) Date: Tue, 11 Dec 2001 07:00:00 -0000 Subject: Report to Recipient(s) Message-ID: Incident Information:- Originator: cygwin-xfree-owner@cygwin.com Recipients: cygwin-xfree@xfree.cygwin.com Subject: Re: WARNING: The file Pics.DOC.scr you received was infected with the W32/BadTrans@MM virus. The file attachment was not successfully cleaned. From jvermillard@technicoffice.fr Tue Dec 11 08:58:00 2001 From: jvermillard@technicoffice.fr (Julien Vermillard) Date: Tue, 11 Dec 2001 08:58:00 -0000 Subject: problem with xhost + Message-ID: <000601c18264$ee10bf60$4202a8c0@univers> Hi all I'm running Xwin32 on my Win98 comp local connection are working I ran : xhost + for permit remote access, but when a client try to connect : $ winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () AUDIT: Tue Dec 11 17:50:47 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2655 AUDIT: Tue Dec 11 17:50:47 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2656 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2657 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2658 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2659 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2660 AUDIT: Tue Dec 11 17:50:48 2001: 1565035 XWin: client 1 rejected from IP 192.168 .2.74 port 2661 Anyone got a tip ? Regards, Julien From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 11 09:06:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 11 Dec 2001 09:06:00 -0000 Subject: New to-do item - configuration References: <1A292AB81CCFD2118F590008C7A4EF2E13A70E0E@summer.bcsc.gov.bc.ca> Message-ID: On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > I think one ot he great things about cygwin is that it doesn't muck with the > registry. If you want to get rid of it just delete it. Although who would > want to get rid of it I have know idea. I'd like to see that tradition > carry on. Thanks for a great product. Agreed. I think it's a clear vote against the registry. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From jvermillard@technicoffice.fr Tue Dec 11 09:19:00 2001 From: jvermillard@technicoffice.fr (Julien Vermillard) Date: Tue, 11 Dec 2001 09:19:00 -0000 Subject: xhost problem : Message-ID: <000801c18267$e343d380$4202a8c0@univers> Hi (again), a bit more about my xhost problem : $ xhost access control enabled, only authorized clients can connect INET:localhost INET:jvd.univers INET:JVD LOCAL: jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- ------- $ xhost + access control disabled, clients can connect from any host jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- -------- Then xhost again for verify : $ xhost access control enabled, only authorized clients can connect INET:localhost INET:jvd.univers INET:JVD LOCAL: jvd@JVD / $ winDetectSupportedEngines () - Windows 95/98/Me winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Returning, supported engines 00000013 winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 b 995 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 winCreateDefColormap () - Deferring to fbCreateDefColormap () ---------------------------------------------------------------------------- --- Apparently xhost is not writting the configuration :( Regards, Julien From Sepehr.Ramezani@ensem.inpl-nancy.fr Tue Dec 11 11:48:00 2001 From: Sepehr.Ramezani@ensem.inpl-nancy.fr (Sepehr Ramezani) Date: Tue, 11 Dec 2001 11:48:00 -0000 Subject: keyborad Message-ID: <4.2.0.58.20011211204505.00c05460@pop3.norton.antivirus> Hi, I would like to configure my French keyboard, how I must do it? ---------------------------------------------------------------------------- Sepehr Ramezani Laboratoire d'Energ????tique et de M????canique Th????orique et Appliqu????e (L.E.M.T.A.), C.N.R.S. - I.N.P.L. 2, avenue de la for????t de Haye, B. P. 160 54504 VANDOEUVRE CEDEX - FRANCE TEL : 03 83 59 57 12 Email: sramezan@ensem.inpl-nancy.fr ---------------------------------------------------------------------------- From david.w.dawson@lmco.com Tue Dec 11 11:49:00 2001 From: david.w.dawson@lmco.com (Dawson, David W) Date: Tue, 11 Dec 2001 11:49:00 -0000 Subject: xhost problem : Message-ID: <0C73AA5F720CD311AC2A0008C7DBA9B403BDF5D5@emss09m13.ems.lmco.com> This may be of help... Did you know (or: Did you realize) that the X-Server performs a reset when the last client closes it's connection? The repetition of the startup messages ("winDetect...") seems to indicate that the server is restarting. IF there are no other X-clients running (like a x-term or window manager) then when the xhost program ends, the X-Serer resets and the authorizations are lost. If you are trying to set up permissions in your startxwin script, you need to re-arrange your client programs. If you are trying to setup permissions for an XDM session, you need to: a) use xhost on the remote machine, b) use the -ac parameter on the XWin command, or c) use the $HOME/.Xauthority file Good luck, -D. --------------------- David Dawson david.w.dawson@lmco.com 703-367-3885 > -----Original Message----- > From: Julien Vermillard [SMTP:jvermillard@technicoffice.fr] > Sent: Tuesday, December 11, 2001 12:19 PM > To: cygwin-xfree@xfree.cygwin.com > Subject: xhost problem : > > Hi (again), > > a bit more about my xhost problem : > > > $ xhost > access control enabled, only authorized clients can connect > INET:localhost > INET:jvd.univers > INET:JVD > LOCAL: > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > -------------------------------------------------------------------------- > -- > ------- > > $ xhost + > access control disabled, clients can connect from any host > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > > -------------------------------------------------------------------------- > -- > -------- > Then xhost again for verify : > > $ xhost > access control enabled, only authorized clients can connect > INET:localhost > INET:jvd.univers > INET:JVD > LOCAL: > > jvd@JVD / > $ winDetectSupportedEngines () - Windows 95/98/Me > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Returning, supported engines 00000013 > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 995 r 1274 l 0 > b > 995 > t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 24 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > > -------------------------------------------------------------------------- > -- > --- > > Apparently xhost is not writting the configuration :( > > > Regards, > > Julien From bzhang@convergentnet.com Tue Dec 11 15:44:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Tue, 11 Dec 2001 15:44:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: Hello, everyone, I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine as a standalone X-server. However, I couldn't get XDM to work with my Solaris 2.8. The root window is opened, but it hangs there. It looks like some kind of infinite loop (CPU ustilization on my PC goes 100% for a very long time), but Alt-F4 still works. Has anyone experienced this before? Does anyone has solutions to it? Thanks, Bo Zhang From ecom@my.tramonline.net Tue Dec 11 15:59:00 2001 From: ecom@my.tramonline.net (info) Date: Tue, 11 Dec 2001 15:59:00 -0000 Subject: =?ISO-2022-JP?B?GyRCJDREczdIJE43bxsoQg==?= Message-ID: <200109200058.JAA03614@smtp1.docono.nejp> $B#H#P!u%a%k%^%,1?1D ?&7hDj$G4pK\E*$K!X(B1O$BK|1_(B/$B7o!Y$r$*;YJ'(B $B$$CW$7$^$9!#(B $B"($4Ds7H6b(B3000$B1_$r?JDhCW$7$^$9!#!J:#2s$N$_!K(B ----------------------------------------------------- $B"#1Q2qOC65:`HNGd$NJs=7@)%P! e#1%;%C%H$G!X(B6000$B1_!Y%P%C%/$G$9!#(B $B"($4Ds7H6b(B1000$B1_$r?JDhCW$7$^$9!#(B $B!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!="#(B $B"($4O"Mm$$$?$@$1$l$P>\:Y$r$*Aw$jCW$7$^$9!#(B $B$G$O!"$h$m$7$/$*4j$$?=$7>e$2$^$9!#(B $B%3%`!&%W%i%s;vL36I(B http://walk.to/career/ planin@bigfoot.com From john.turner@pobox.com Tue Dec 11 21:22:00 2001 From: john.turner@pobox.com (John A. Turner) Date: Tue, 11 Dec 2001 21:22:00 -0000 Subject: New to-do item - configuration References: Message-ID: <3C16E999.2B0F056D@pobox.com> Alexander Gottwald wrote: > > On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > > I think one ot he great things about cygwin is that it doesn't muck with the > > registry. If you want to get rid of it just delete it. Although who would > > want to get rid of it I have know idea. I'd like to see that tradition > > carry on. Thanks for a great product. > > Agreed. I think it's a clear vote against the registry. uh, actually cygwin does use the registry - mount info is stored there -John Turner From jgilles@glmultimedia.com Tue Dec 11 23:40:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 11 Dec 2001 23:40:00 -0000 Subject: Help on XDM with Solaris Host References: Message-ID: "Zhang, Bo" writes: > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? Yes, I think I have the same problem, look in the /usr/dt/Xerrors file (on the Sun workstation), you should have an error message "Server should be grabbed". Sorry, I have no solution. But I think it's related to cygwin/Xfree, not a bad parameter on the sun side. -- Julien Gilles From jgilles@glmultimedia.com Tue Dec 11 23:41:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Tue, 11 Dec 2001 23:41:00 -0000 Subject: Help on XDM with Solaris Host References: Message-ID: "Zhang, Bo" writes: > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? Shouldn't be better/easier/natural to use an /etc/fstab file to declare all mount points ? -- Julien Gilles From briangenisio@yahoo.com Wed Dec 12 03:27:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Wed, 12 Dec 2001 03:27:00 -0000 Subject: New to-do item - configuration References: <3C16E999.2B0F056D@pobox.com> Message-ID: <20011212112551.66228.qmail@web20809.mail.yahoo.com> --- "John A. Turner" wrote: > Alexander Gottwald wrote: > > > > On Tue, 11 Dec 2001, Oeste, Hans P BCGC:EX wrote: > > > > > > I think one ot he great things about cygwin is that it doesn't muck with > the > > > registry. If you want to get rid of it just delete it. Although who > would > > > want to get rid of it I have know idea. I'd like to see that tradition > > > carry on. Thanks for a great product. > > > > Agreed. I think it's a clear vote against the registry. > > uh, actually cygwin does use the registry - mount info is stored there > > -John Turner Very True, but Xfree/Cygwin does not... It should probably stay that way :). The way cygwin uses the registry for mounts makes it less flexible. For instance, it is not easy to maintain multiple installs of Cygwin for this reason. I would hate to have it that way for XFree as well... development and debugging would be a bear. I OFTEN run multiple XFree servers with different configurations at the same time. A relative config file would be much more flexible. Brian __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From armin-ml@hartinger.ws Wed Dec 12 05:10:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Wed, 12 Dec 2001 05:10:00 -0000 Subject: get rid of dos window? Message-ID: <1008162540.1760.0.camel@linus.uk.insight.com> Hello all, I've been using Cygwin/XFree86 for myself for a while now and I'm quite happy. Great work! However, I'm planning on migrating my kids and wife to using Linux on an Xserver on their Windoze-machines (they play games, so no way around that really) for all their internet activity. IE might still be installed, hard to get rid of it, but the individual machines will not be able to connect to the outside internet. Anyway, to the point: I want to just throw a batch-file into the windows-startup folder, which starts up the X-server and subsequently, their Gnome-desktop starts up automatically. I'm almost there, but is there no way to get rid of the DOS-window which accompanies the X-server application? I've looked around and asked but ppl seem to think that when an app sends output to STDOUT (for lack of a better term atm), the DOS-window will stick around. Any way known to get rid of it? Sure, it's nit-picky, but I want to make the setup as newbie-friendly as possible. After all, it's already hard enough to sell them on the new setup as it is ... -Armin From RBodack@sseg.de Wed Dec 12 09:11:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Wed, 12 Dec 2001 09:11:00 -0000 Subject: md5sum and xauth Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202B@ssegadmin> Hi all, I am trying to create a magic cookie for .Xauthority, using this nice command line I found somewhere: dd if=/dev/urandom count=1|md5sum|sed -e 's/^/add :0 . /'|xauth -q It seems that the md5sum shows unexpected behavior on my W2K. md5sum always gives something like this: f3f7d6844351a99aaeb44751037112ad *- The *- seems to be strange. Am I am doing a stupid mistake? Thanks for helping, R????diger From andrewmcrae@yahoo.com Wed Dec 12 09:28:00 2001 From: andrewmcrae@yahoo.com (Andrew McRae) Date: Wed, 12 Dec 2001 09:28:00 -0000 Subject: get rid of dos window? Message-ID: <20011212172728.80646.qmail@web10903.mail.yahoo.com> Armin Hartinger wrote: > Anyway, to the point: I want to just throw a > batch-file into the windows-startup folder, > which starts up the X-server and subsequently, > their Gnome-desktop starts up automatically. > I'm almost there, but is there no way to get > rid of the DOS-window which accompanies the > X-server application? For what it's worth, I find the following works very well indeed for me. Some small variant of it will probably solve your problem.(I'm using the Test53 server, but I would expect this to work with any version.) 1) Write a shell script that redirects stdin/stdout/stderr before starting the X server in the background. For example, I'm using the following (you'll want different arguments to the server): #!/bin/bash exec 0< /dev/null exec 1> ~/.xdmcp-errors exec 2>& 1 X :0 -screen 0 1024 768 -xkbmap gb -nowinkill -broadcast -once & 2) Run that shell script in the background from a suitable Windows shortcut. I run the above from a "run minimized" shortcut whose target is: C:\cygwin\bin\bash.exe --login -c "~/bin/start-xdmcp&" (where "~/bin/start-xdmcp" is the POSIX path of the shell script). The DOS window appears only for as long as it takes bash to start up and fork off the background process, and because it's minimized, I usually don't even notice it. (I use a similar shortcut on the Windows taskbar to launch rxvt -- no ugly console windows for me!) 3) I have found that this (sometimes?) does not work when the CYGWIN environment variable includes "tty". (I think I sort of understand why, but I haven't looked at it carefully.) So I use CYGWIN="binmode ntsec". Regards, Andrew. ===== Andrew McRae __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com From alexander.gottwald@informatik.tu-chemnitz.de Wed Dec 12 09:33:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Wed, 12 Dec 2001 09:33:00 -0000 Subject: md5sum and xauth References: <540D22115D0CD311BC2E00A0246200EE0153202B@ssegadmin> Message-ID: On Wed, 12 Dec 2001, R????diger Bodack wrote: > > Hi all, > > I am trying to create a magic cookie for .Xauthority, using this nice > command line I found somewhere: > dd if=/dev/urandom count=1|md5sum|sed -e 's/^/add :0 . /'|xauth -q > > It seems that the md5sum shows unexpected behavior on my W2K. md5sum always > gives something like this: > f3f7d6844351a99aaeb44751037112ad *- > The *- seems to be strange. Am I am doing a stupid mistake? md5sum --help: The sums are computed as described in RFC 1321. When checking, the input should be a former output of this program. The default mode is to print a line with checksum, a character indicating type (`*' for binary, ` ' for Text), and name for each FILE. This means md5sum read the file - (stdin) in binary mode. Try dd if=/dev/urandom count=1|md5sum|cut -f1 -d\ |sed [...skipped] bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From armin-ml@hartinger.ws Wed Dec 12 09:46:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Wed, 12 Dec 2001 09:46:00 -0000 Subject: get rid of dos window? References: <20011212172728.80646.qmail@web10903.mail.yahoo.com> Message-ID: <1008179086.3156.0.camel@linus.uk.insight.com> I had this reply to my posting (see below). I'm using this utility right now and it works very smoothly ... actually, it runs so good it doesn't wanna go away! :) -Armin From: Plamen Alexandrov To: Armin Hartinger Subject: Re: get rid of dos window? Date: 12 Dec 2001 15:41:24 +0200 ----- Original Message ----- From: "Armin Hartinger" To: Sent: Wednesday, December 12, 2001 3:08 PM Subject: get rid of dos window? > Hello all, > > I've been using Cygwin/XFree86 for myself for a while now and I'm quite > happy. Great work! However, I'm planning on migrating my kids and wife > to using Linux on an Xserver on their Windoze-machines (they play games, > so no way around that really) for all their internet activity. IE might > still be installed, hard to get rid of it, but the individual machines > will not be able to connect to the outside internet. > > Anyway, to the point: I want to just throw a batch-file into the > windows-startup folder, which starts up the X-server and subsequently, > their Gnome-desktop starts up automatically. I'm almost there, but is > there no way to get rid of the DOS-window which accompanies the X-server > application? I've looked around and asked but ppl seem to think that > when an app sends output to STDOUT (for lack of a better term atm), the > DOS-window will stick around. > > Any way known to get rid of it? > > Sure, it's nit-picky, but I want to make the setup as newbie-friendly as > possible. After all, it's already hard enough to sell them on the new > setup as it is ... > > -Armin > > Free Utility: Quiet The archives of Joeware.Net have a number of intriguing Windows 2000 and Windows XP utilities, but one that caught my eye is a little program called Quiet ( http://home.earthlink.net/~joewarenet/win32/zips/Quiet.zip ). The idea is simple: you use Quiet to run a program in such a way that the program doesn't show up on the task bar, but will appear in Task Manager (or any other app that you use to enumerate processes). Obviously, logging off will kill any processes spawned through Quiet. On Wed, 2001-12-12 at 17:27, Andrew McRae wrote: > Armin Hartinger wrote: > > Anyway, to the point: I want to just throw a > > batch-file into the windows-startup folder, > > which starts up the X-server and subsequently, > > their Gnome-desktop starts up automatically. > > I'm almost there, but is there no way to get > > rid of the DOS-window which accompanies the > > X-server application? > > For what it's worth, I find the following works very well indeed for > me. Some small variant of it will probably solve your problem.(I'm > using the Test53 server, but I would expect this to work with any > version.) > > 1) Write a shell script that redirects stdin/stdout/stderr before > starting the X server in the background. For example, I'm using the > following (you'll want different arguments to > the server): > > #!/bin/bash > exec 0< /dev/null > exec 1> ~/.xdmcp-errors > exec 2>& 1 > X :0 -screen 0 1024 768 -xkbmap gb -nowinkill -broadcast -once & > > 2) Run that shell script in the background from a suitable Windows > shortcut. I run the above from a "run minimized" shortcut whose > target is: > > C:\cygwin\bin\bash.exe --login -c "~/bin/start-xdmcp&" > > (where "~/bin/start-xdmcp" is the POSIX path of the shell script). > > The DOS window appears only for as long as it takes bash to start up > and fork off the background process, and because it's minimized, I > usually don't even notice it. (I use a similar shortcut on the > Windows taskbar to launch rxvt -- no ugly console windows for me!) > > 3) I have found that this (sometimes?) does not work when the CYGWIN > environment variable includes "tty". (I think I sort of understand > why, but I haven't looked at it carefully.) > So I use CYGWIN="binmode ntsec". > > Regards, > Andrew. > > > ===== > Andrew McRae > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > From x-odus@iname.com Wed Dec 12 09:52:00 2001 From: x-odus@iname.com (Psyon) Date: Wed, 12 Dec 2001 09:52:00 -0000 Subject: libw11: make x windows programs run nativly. Message-ID: <3C179940.5040000@iname.com> http://www.sf.net/projects/libw11 I just wanted to let people know about the library I am working on. My goal is to make a library that is 100% compatible with libX11.dll but not require an X server. My work is still in the early stages, but many of the example programs that are distributed with the QT widgets are beginning to work. Please let me know what you think of the idea, and if any wishes to help, let me know. --Don Becker From huntharo@msu.edu Wed Dec 12 10:03:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 10:03:00 -0000 Subject: New to-do item - configuration Message-ID: Let me step in here and tell you what I think. I think, no, I know, that the configuration feature will never get implemented unless I do it myself. So, I'll just do it however I want to when that time comes, if ever. What do you think about that? Harold From RBodack@sseg.de Wed Dec 12 10:04:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Wed, 12 Dec 2001 10:04:00 -0000 Subject: AW: md5sum and xauth Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202C@ssegadmin> Thanks and sorry, I indeed should have found that out by myself. R????diger > Try dd if=/dev/urandom count=1|md5sum|cut -f1 -d\ |sed [...skipped] > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > From RBodack@sseg.de Wed Dec 12 10:13:00 2001 From: RBodack@sseg.de (Rüdiger Bodack) Date: Wed, 12 Dec 2001 10:13:00 -0000 Subject: AW: libw11: make x windows programs run nativly. Message-ID: <540D22115D0CD311BC2E00A0246200EE0153202D@ssegadmin> Don, does this mean, that all X-applications will appear in a Windows-window like the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk C. R????diger > > http://www.sf.net/projects/libw11 > > I just wanted to let people know about the library I am > working on. My > goal is to make a library that is 100% compatible with > libX11.dll but > not require an X server. My work is still in the early > stages, but many > of the example programs that are distributed with the QT widgets are > beginning to work. > > Please let me know what you think of the idea, and if any wishes to > help, let me know. > > --Don Becker > From huntharo@msu.edu Wed Dec 12 16:58:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 16:58:00 -0000 Subject: Care to help your fearless programmer? Message-ID: Well, I have to break down and get a part time job to pay off an engagement ring and to pay for car repairs. I'm currently in college at Michigan State University in East Lansing, MI and I'm looking for some part-time work. Working remotely, and/or on contracts doesn't bother me. If you have any leads for me, please contact me privately, as I don't wish to abuse the list anymore than I currently am. Thanks in advance for any leads/offers, Harold From huntharo@msu.edu Wed Dec 12 19:20:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 19:20:00 -0000 Subject: [ANNOUNCEMENT] Cygwin/XFree86 Documentation 0.9.5 Message-ID: Links: I just posted release 0.9.5 to the documentation development page: http://xfree86.cygwin.com/devel/documentation/ Documentation, formatted, direct links: Contributor's Guide http://xfree86.cygwin.com/docs/cg User's Guide http://xfree86.cygwin.com/docs/ug/ FAQ http://xfree86.cygwin.com/docs/faq/ Documentation source releases are now available via the sources.redhat.com ftp mirror network ( http://cygwin.com/mirrors.html ) in the pub/cygwin/xfree/devel/documentation/ directory. You may wish to note the desired filename in the links below, then download from your closest mirror ( http://cygwin.com/mirrors.html ). Documentation source, direct link: http://www.msu.edu/~huntharo/xwin/docs/cygwin-xfree-doc-0.9.5.tar.gz (272 KiB) Changes: 1) FAQ - Solaris XDMCP bit depth question. 2) FAQ - Xinstall.sh erroneously requesting Xmod.tgz< 3) FAQ - Give each question an id to generate a static URL for each question. Enjoy, Harold From pinaar@austin.rr.com Wed Dec 12 20:57:00 2001 From: pinaar@austin.rr.com (Art) Date: Wed, 12 Dec 2001 20:57:00 -0000 Subject: FW: source code link to xc-4-src - Cygwin/Xfree is broken Message-ID: -----Original Message----- From: Art [ mailto:pinaar@austin.rr.com ] Sent: Wednesday, December 12, 2001 10:56 PM To: cygwin@cygwin.com Subject: source code link to xc-4-src - Cygwin/Xfree is broken Hi! This link is broken on your Cygwin/Xfree web page: href=" ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src" ;>source code. Is the source code available otherwise? I'll look in the mailing list and email it if I don't find an answer there. Thanks & Regards, Art From huntharo@msu.edu Wed Dec 12 22:30:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Wed, 12 Dec 2001 22:30:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken Message-ID: > This link is broken on your Cygwin/Xfree web page: > href=" ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src" ;;>source > code. Fixed. Forgot that one. Look at the home page for the updates: http://xfree86.cygwin.com/ Thanks for the notice, Harold From OPidgornyy@kyiv.utel.com.ua Thu Dec 13 00:32:00 2001 From: OPidgornyy@kyiv.utel.com.ua (Pidgornyy, Oleksandr) Date: Thu, 13 Dec 2001 00:32:00 -0000 Subject: Cygwin Xfree configuration/ FontServer Configuration question(whe re to put new font path to get it before all others) Message-ID: <4B6D123ED7F0D311AD7B00508B656CB9044359EC@exchange.kyiv.internal.utel.com.ua> Thnaks for the answer. But... I started X font server by xfs -config /etc/X11/fs/config The answer was: "xfs notice: listening on port 7100" Then I tried to start X-Server as xwin -fp tcp/my_host_name:7100 and got the next: "Could not init font path element tcp/my_host_name:7100, removing from list! Fatal server error: could not open default font 'fixed' [1]- Segmentation fault (core dumped) xfs" Actually having looked through the usage pages of the XWin I did not find any option of using arguments for the X font server when starting XWin. -----Original Message----- From: Alexander Gottwald [ mailto:Alexander.Gottwald@informatik.tu-chemnitz.de ] Sent: Saturday, December 08, 2001 8:33 PM Cc: 'cygwin-xfree@xfree86.cygwin.com' Subject: Re: Cygwin Xfree configuration/ FontServer Configuration question(whe re to put new font path to get it before all others) On Wed, 5 Dec 2001, Pidgornyy, Oleksandr wrote: > Hi there. > Is there a configuration file for Cygwin Xfree like /etc/X11/XF86Config > under unixes? Where does it live? No. There is no such configuration file. > The configuration file for FontServer (/etc/X11/fs/config) seems to > be not used at all. This is only used by xfs. > The command xset +fp /usr/X11R6/lib/X11/fonts/new_fondir adds new font > dir to font path but only for current X session. It does not store it > where it should have(???). You can use the fontserver and store the path configuration there. The X-Server is the started with the option -fp tcp/:7100. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 02:08:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 02:08:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Wed, 12 Dec 2001, Harold Hunt wrote: > Let me step in here and tell you what I think. I think, no, I know, that > the configuration feature will never get implemented unless I do it myself. Hey, I wanted to draw a closer look on it around christmas. > So, I'll just do it however I want to when that time comes, if ever. What > do you think about that? Ok, you took a real close look to the DIX layer and I guess you know where to hook in to set the configuration parameters. But if I find some time I'll start implementing some parts. Most important is that that we make clear waht we want. There is no need building something that needs to be modified or even rebuild later. I advise you continue with the GDI engine and I will build the configuration engine. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 02:13:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 02:13:00 -0000 Subject: [Fwd: XDMCP "No valid address" error...] References: <3C17E9E4.907BCF4A@noaa.gov> Message-ID: On Wed, 12 Dec 2001, Arthur Taylor wrote: > I wasn't sure how to put this on the cygwin-xfree mailing list, but I > noticed that you were talking about an error back in Oct 9, 2001, which > I am now getting... > > I have cygwin on a Win2k machine using token-ring. Its a problem with the socket ioctl in cygwin with token ring. > I try: > ./XWin -querry -from > and I get: > > Fatal server error: > XDMCP fatal error: Session declined No valid address This need to be fixed in cygwin1.dll bye ago FUp to cygwin@cygwin.com -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From huntharo@msu.edu Thu Dec 13 05:28:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 05:28:00 -0000 Subject: New to-do item - configuration Message-ID: Alexander, > I advise you continue with the GDI engine and I will build the configuration > engine. Thanks for taking that one. I'll tell you now that I don't really like the idea of using the XF86Config file, as it wasn't really suited to our needs (we don't have monitors with different capabilities, etc.) so I think a lot of changes will need to be made to the config file reader and to the list of options available. I'm not sure that that is the best way to approach things. I'm leaving this up to you, but I must say that I really prefer the registry approach as it is very simple. There could be a simple "configuration profile" mechanism where you would pass "-profile 1" or "-profile my_profile_name" as the only command line parameter and that would load the specified parameters from the registry. Just an idea... Also, don't forget that command line parameters always override the configuration. In fact, just ignore the configuration if any command line parameters are specified. Have fun, Harold From robert.collins@itdomain.com.au Thu Dec 13 05:33:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Thu, 13 Dec 2001 05:33:00 -0000 Subject: New to-do item - configuration References: Message-ID: <09a801c183da$b0f092f0$0200a8c0@lifelesswks> ----- Original Message ----- From: "Harold Hunt" > > I'm leaving this up to you, but I must say that I really prefer the registry > approach as it is very simple. There could be a simple "configuration > profile" mechanism where you would pass "-profile 1" or "-profile > my_profile_name" as the only command line parameter and that would load the > specified parameters from the registry. Just an idea... Just my 2c: Using a file has some benefits: 1) configurations running off a network share don't require machine alterations to change the setup. (imagine a student lab). 2) There are more tools available to script changes. 3) No registry import is needed for distributed packages (again, thinking labs or corporates, not cygwin net release). As a data point. Earnie has created a variant of cygwin with a mount table on disk, for (as I understand it) similar reasons to those above. Secondly, using the current X config reader could be done quite easily by having the video driver as Win32 override the modelines to what windows reports. Again, just my 2c, as I'm not planning helping implement this feel free to ignore me :}. Rob From j.kunkis@aixplain.de Thu Dec 13 06:46:00 2001 From: j.kunkis@aixplain.de (Jan Kunkis) Date: Thu, 13 Dec 2001 06:46:00 -0000 Subject: Bug in xeyes? Message-ID: <0112131545330B.01121@muenchen> Hello, since an Cygwin / Xfree Update in about August, the program "xeyes" seems to have a bug. The right eye hasn't a pupil, and the left eye is very strange. The pupil is OK only in a small range. The pupil is mostly not visible, and sometimes a white pupil occurs on the inner left side of the eye... Possibly this is only a small bug and you can fix it (if you have time) :-) With best Regards Jan From bzhang@convergentnet.com Thu Dec 13 07:07:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Thu, 13 Dec 2001 07:07:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: I found in the Cygwin/Xfree86 FAQ there is a similar issue, which was supposed to have been solved by installing the latest Solaris patches. I did install all the recommended patches. And my XWin still can't come up with XDMCP. I got the following error messages after XWin hang for a long time and timed-out: winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - Returning, supported engines 0000001b winSetEngine () - Using Shadow DirectDraw winCreateBoundingWindowWindowed () - WindowClient w 1274 h 970 r 1274 l 0 b 970 t 0 winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d 32 winCreateDefColormap () - Deferring to fbCreateDefColormap () AUDIT: Wed Dec 12 16:50:25 2001: 255 XWin: client 1 rejected from IP 172.16.33.210 port 33748 Auth name: MIT-MAGIC-COOKIE-1 ID: -1 XDM: too many keepalive retransmissions, declaring session dead Can anyone help me out? Thanks, Bo > -----Original Message----- > From: Zhang, Bo > Sent: Tuesday, December 11, 2001 6:37 PM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with my > Solaris 2.8. The root window is opened, but it hangs there. It looks like > some kind of infinite loop (CPU ustilization on my PC goes 100% for a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? > > Thanks, > > Bo Zhang From pinaar@austin.rr.com Thu Dec 13 07:09:00 2001 From: pinaar@austin.rr.com (Art) Date: Thu, 13 Dec 2001 07:09:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: Message-ID: > -----Original Message----- > From: Harold Hunt [ mailto:huntharo@msu.edu ] > Sent: Thursday, December 13, 2001 12:30 AM > To: pinaar@austin.rr.com > Cc: cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > This link is broken on your Cygwin/Xfree web page: > > > href=" ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src" ;;>source > > code. > > Fixed. Forgot that one. Look at the home page for the updates: > > http://xfree86.cygwin.com/ > > Thanks for the notice, Thanks, Harold. I downloaded the xfree 4.1.0 source code, which, according to some messages in the "mailing-list" archive can build Cygwin/Xfree. Art From alexander.gottwald@informatik.tu-chemnitz.de Thu Dec 13 07:13:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 07:13:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Thu, 13 Dec 2001, Harold Hunt wrote: > I'll tell you now that I don't really like the idea of using the XF86Config > file, as it wasn't really suited to our needs (we don't have monitors with > different capabilities, etc.) so I think a lot of changes will need to be > made to the config file reader and to the list of options available. I'm > not sure that that is the best way to approach things. The config file reader from xfree86 is heavily integrated into the common/xfree86 tree. They use tons of includes and I think it's more work to get it compiling without the common/xfree86 tree than to implement a new one. I'll make the config file as close as possible to XF86Config to give users from Linux and other Unices a similar environment. > I'm leaving this up to you, but I must say that I really prefer the registry > approach as it is very simple. There could be a simple "configuration > profile" mechanism where you would pass "-profile 1" or "-profile > my_profile_name" as the only command line parameter and that would load the > specified parameters from the registry. Just an idea... It's as easy with config files. And as others have stated, config files can be easily modified, removed and backuped. > Also, don't forget that command line parameters always override the > configuration. In fact, just ignore the configuration if any command line > parameters are specified. I'll check what XFree86 does and use that method of discarding preset configurations. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From lhall@rfk.com Thu Dec 13 07:13:00 2001 From: lhall@rfk.com (Larry Hall (RFK Partners, Inc)) Date: Thu, 13 Dec 2001 07:13:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: Message-ID: <4.3.1.2.20011213100040.024e54f8@pop.ma.ultranet.com> At 11:55 PM 12/12/2001, Art wrote: >Hi! > >This link is broken on your Cygwin/Xfree web page: > > href=" ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src" ;>source >code. > >Is the source code available otherwise? >I'll look in the mailing list and email it if I don't find >an answer there. > > >Thanks & Regards, Please direct questions about Cygwin's XFree implementation to the XFree list. I've forwarded this message for you. In terms of the availability of software from particular mirrors, each site maintainer is responsible for their own mirror. If there is something missing, you'll want to contact that site to determine why it's missing. Obviously, if the maintainer has opted to no longer mirror a particular software set, communicating the fact that this site is now a dead link to those who link to it is a "Good Thing" (tm). ;-) Larry Hall lhall@rfk.com RFK Partners, Inc. http://www.rfk.com 838 Washington Street (508) 893-9779 - RFK Office Holliston, MA 01746 (508) 893-9889 - FAX From huntharo@msu.edu Thu Dec 13 09:33:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:33:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: Message-ID: For complete build instructions, see the Contributor's Guide. I thought that one would be kind of hard to miss... but, I guess not. http://xfree86.cygwin.com/docs/cg/ Harold > -----Original Message----- > From: Art [ mailto:pinaar@austin.rr.com ] > Sent: Thursday, December 13, 2001 10:09 AM > To: Harold Hunt > Cc: cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > -----Original Message----- > > From: Harold Hunt [ mailto:huntharo@msu.edu ] > > Sent: Thursday, December 13, 2001 12:30 AM > > To: pinaar@austin.rr.com > > Cc: cygx > > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > > > > > This link is broken on your Cygwin/Xfree web page: > > > > > > href=" ftp://mirrors.rcn.net/pub/sourceware/cygwin/xfree/xc-4-src" ;;>source > > > code. > > > > Fixed. Forgot that one. Look at the home page for the updates: > > > > http://xfree86.cygwin.com/ > > > > Thanks for the notice, > > Thanks, Harold. > > I downloaded the xfree 4.1.0 source code, which, according > to some messages in the "mailing-list" archive can build Cygwin/Xfree. > > Art From armin-ml@hartinger.ws Thu Dec 13 09:39:00 2001 From: armin-ml@hartinger.ws (Armin Hartinger) Date: Thu, 13 Dec 2001 09:39:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: Message-ID: <1008265015.3051.6.camel@linus.uk.insight.com> On Thu, 2001-12-13 at 17:33, Harold Hunt wrote: > For complete build instructions, see the Contributor's Guide. I thought > that one would be kind of hard to miss... but, I guess not. Wow, I just loved that subtle remark. It sounds so much better than so much abusive crap one has to read every day on such lists :) -Armin From huntharo@msu.edu Thu Dec 13 09:40:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:40:00 -0000 Subject: New to-do item - configuration References: <09a801c183da$b0f092f0$0200a8c0@lifelesswks> Message-ID: Alexander is probably right that the XF86Config file parser is deeply integrated into the hw/xfree86 section of the tree, which we don't use at all. Rather than re-invent the XF86Config parser, I'd like to know how feasible it would be to do an XML config file. We'd need to get the XML libraries into Cygwin first, but I don't think that's an insurmountable task (barring evidence to the contrary from someone that has tried to do so). That's just my two cents, as I have no intention of implementing the feature myself. Harold From pinaar@austin.rr.com Thu Dec 13 09:48:00 2001 From: pinaar@austin.rr.com (Art) Date: Thu, 13 Dec 2001 09:48:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: <1008265015.3051.6.camel@linus.uk.insight.com> Message-ID: > -----Original Message----- > From: Armin Hartinger [ mailto:armin-ml@hartinger.ws ] > Sent: Thursday, December 13, 2001 11:37 AM > To: Harold Hunt > Cc: Art; cygx > Subject: RE: source code link to xc-4-src - Cygwin/Xfree is broken > > > On Thu, 2001-12-13 at 17:33, Harold Hunt wrote: > > For complete build instructions, see the Contributor's Guide. I thought > > that one would be kind of hard to miss... but, I guess not. > > Wow, I just loved that subtle remark. It sounds so much better than so > much abusive crap one has to read every day on such lists :) > > -Armin Yeah - It got my attention! ;-> I just looked at the link - Pretty good! I missed it, initially, because I was a) not thinking b) had just attempted build X11r6.6 from X Org with no success (high frustration level) c) it didn't say "How to Build Cygwin/Xfree" Art From huntharo@msu.edu Thu Dec 13 09:50:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 09:50:00 -0000 Subject: source code link to xc-4-src - Cygwin/Xfree is broken References: Message-ID: Art, > Yeah - It got my attention! ;-> > > I just looked at the link - Pretty good! > I missed it, initially, because I was > a) not thinking > b) had just attempted build X11r6.6 from X Org with no success > (high frustration level) > c) it didn't say "How to Build Cygwin/Xfree" You didn't miss anything that direct. Notice that the timestamp of the Cygwin/XFree86 page has changed since you last looked at it. I just added the link to the Contributor's Guide that I think you are referring to. I was saying that I thought it would be pretty hard to miss the other links to the Contributor's Guide that are sprinkled all over the web site and mailing list... Don't worry about missing it. Harold From Alexander.Gottwald@informatik.tu-chemnitz.de Thu Dec 13 12:07:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Thu, 13 Dec 2001 12:07:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Thu, 13 Dec 2001, Harold Hunt wrote: > Alexander is probably right that the XF86Config file parser is deeply > integrated into the hw/xfree86 section of the tree, which we don't use at > all. No, I was wrong. There is a part of the parser which is heavily integrated but the important part, the reader, seems to quite good encapsulated and I even got this library to link with our code. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From chris@wildcharacters.com Thu Dec 13 15:26:00 2001 From: chris@wildcharacters.com (Chris Hubbard) Date: Thu, 13 Dec 2001 15:26:00 -0000 Subject: I'm unable to run XFree on Cygwin Message-ID: <200112131523210200.00D7DD28@mail.wildcharacters.com> I'm unable to run XFree on Cygwin. I've downloaded and installed the most recent version of Cygwin (1.3.5). I've downloaded and installed XFree per the instructions. I've searched through the mailing list archives and read the faq. And I still can't get XFree to start. I installed Cygwin to c:\cygwin When I run startxwin.bat I get the following: Four error dialog boxes with "A required .DLL file, CYGWIN1.DLL, was not found. OK Looking at the command window I see: start XWin -screen 0 1024 768 Cannot find file 'XWin' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. start xterm -s1 1000 -sb -rightbar -ms red -fg yellow -g black e /usr/bin/bash Cannot find file 'xterm' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. start twm Cannot find file 'twm' (or one of its components). Check to ensure the path and filename are correct and that all required libraries are available. Here's the lines from the startxwin.bat file: SET CYGWIN_ROOT=c:\cygwin (I've tried both with and without the c: in the var) SET PATH=.;%CYGWIN_ROOT%\bin;%CYGWIN_ROOT%\usr\X11R6\bin;%PATH% From huntharo@msu.edu Thu Dec 13 18:47:00 2001 From: huntharo@msu.edu (Harold Hunt) Date: Thu, 13 Dec 2001 18:47:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) References: <85256B19.0079B237.00@notes.intdata.com> Message-ID: John, Have you finished up your patches for key releasing on loss of keyboard focus? If so, please submit a patch by doing the following: cd xc/programs/Xserver/hw cvs diff -U3 xwin > xwin.diff If not, good luck figuring out those last little details, Harold > -----Original Message----- > From: John_Tobey@notes.intdata.com [ mailto:John_Tobey@notes.intdata.com ] > Sent: Wednesday, December 05, 2001 5:09 PM > To: Harold Hunt > Cc: cygx > Subject: RE: New devel to-do item (release all pressed keyboard keys on > focus loss) > > > > > > > I suppose for this the solution would be to make winSendKeyEvent > > > do nothing if > > > its fDown already matches the array element > > > Nah, you can't do that because we sometimes call > winSendKeyEvent multiple > > times from winwndproc/winWindowProc()/WM_KEYDOWN if the key has a repeat > > count. > > But I can do it when both are *false*. This goes over my earlier patch: > > --- winkeybd.c~ Tue Dec 4 16:42:28 2001 > +++ winkeybd.c Wed Dec 5 16:39:49 2001 > @@ -439,7 +439,12 @@ > winSendKeyEvent (DWORD dwKey, Bool fDown) > { > xEvent xCurrentEvent; > - > + > + /* Ignore ups without a preceding down. This happens when a keystroke > + causes X to gain focus. */ > + if (!fDown && !g_fKeyStates[dwKey]) > + return; > + > ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); > > xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; > > > I'm kinda confused here. You need to add an ErrorF () to WM_KEYDOWN and > > WM_KEYUP to see if the doubled key message is being sent again > immediately > > after we regain focus. > > Here is my XWin.log: > > keydown #16 at 22939 > keyup #16 at 23250 > keydown #17 at 23320 > keyup #17 at 23570 > keydown #18 at 23680 > keyup #18 at 23981 > keydown #19 at 24091 > keyup #19 at 24412 > keydown #16 at 24452 > keyup #16 at 24752 > keydown #17 at 24792 > Simulating release of key #17! > killfocus at 24862 > setfocus at 32363 > keyup #45 at 32483 > killfocus at 42017 > > And here is my xterm after the setfocus at 32363 ms: > > $ qwerqww > > 'w' is key #17. The only thing that could be happening is that xterm is > outsmarting itself by doing something with its own killfocus. My > preference is > to let xterm users deal. We're used to it. :-) > > > > I doubt > > > whether I can figure it out completely without a major time > investment. > > > This is your baby now, and you're making good progress. Don't be > > discouraged. These things take time to work out correctly. > > Without your help, I would probably lose patience. > > -John > > From flognat@flognat.myip.org Fri Dec 14 00:15:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 14 Dec 2001 00:15:00 -0000 Subject: I'm unable to run XFree on Cygwin References: <200112131523210200.00D7DD28@mail.wildcharacters.com> Message-ID: Do you have Xwin.exe,xterm.exe in c:\cygwin\usr\X11R6\bin, do you have cygwin1.dll in c:\cygwin\bin? What happens if you do a "echo %PATH%" after the path is set.. Give the shell-script, startxwin.sh or similar a try from within bash.. Which OS BTW? /Andy -- The eye of the beholder rests on the beauty! From locutusenterprises@yahoo.com Fri Dec 14 05:38:00 2001 From: locutusenterprises@yahoo.com (Shane Shields) Date: Fri, 14 Dec 2001 05:38:00 -0000 Subject: closing xfree86 Message-ID: <20011214133721.10046.qmail@web10003.mail.yahoo.com> we are using the startxwin.bat to open xfree, start an ssh session on a linux server and run a program remotely. when the ssh session finishes the x server on the windows machine respawns leaving a background x window (full screen). does anyone know how to stop that respawn. In linux you can do a killall -SIGTERM X in a script but I cant find an equivalent in windows. can anyone help? __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From briangenisio@yahoo.com Fri Dec 14 05:56:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 14 Dec 2001 05:56:00 -0000 Subject: closing xfree86 References: <20011214133721.10046.qmail@web10003.mail.yahoo.com> Message-ID: <20011214135500.85268.qmail@web20810.mail.yahoo.com> >From a script, you might try : ps | grep Xwin | sed 's/ *\([0-9]*\).*/kill \1/' | sh in english, that is : get a process list pull out the line that has Xwin use sed to find the first unber in a list, and print "kill #" send that output to sh Or, you might try : Xwin.exe -commands & XWINPID=$! ... ... kill $XWINPID What that does, is stores the PID of the last executed program. ($! is a bash variable for that). Then, as long as you have the XWINPID in your scope, you can use it to kill the Xwin server. Hope these 2 options help Brian --- Shane Shields wrote: > we are using the startxwin.bat to open xfree, start an > ssh session on a linux server and run a program > remotely. when the ssh session finishes the x server > on the windows machine respawns leaving a background x > window (full screen). does anyone know how to stop > that respawn. In linux you can do a killall -SIGTERM X > in a script but I cant find an equivalent in windows. > > can anyone help? > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From wilper-8@ludd.luth.se Fri Dec 14 06:14:00 2001 From: wilper-8@ludd.luth.se (Wilhelm Person) Date: Fri, 14 Dec 2001 06:14:00 -0000 Subject: closing xfree86 References: <20011214133721.10046.qmail@web10003.mail.yahoo.com> Message-ID: Try the -terminate switch for XWin. I'd like to see how you do to automatically start a program on the remote machine from startxwin.bat, as I myself have failed to do this. /W On Fri, 14 Dec 2001, Shane Shields wrote: > we are using the startxwin.bat to open xfree, start an > ssh session on a linux server and run a program > remotely. when the ssh session finishes the x server > on the windows machine respawns leaving a background x > window (full screen). does anyone know how to stop > that respawn. In linux you can do a killall -SIGTERM X > in a script but I cant find an equivalent in windows. > > can anyone help? > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com > +-------------------------------+ | Home: http://wilper.cjb.net | | E-mail: wilper@home.se | | ICQ: 18390479 | +-------------------------------+ From John_Tobey@notes.intdata.com Fri Dec 14 06:35:00 2001 From: John_Tobey@notes.intdata.com (John_Tobey@notes.intdata.com) Date: Fri, 14 Dec 2001 06:35:00 -0000 Subject: New devel to-do item (release all pressed keyboard keys on focus loss) Message-ID: <85256B22.0050034A.00@notes.intdata.com> > John, > > Have you finished up your patches for key releasing on loss of keyboard > focus? > > If so, please submit a patch by doing the following: > > cd xc/programs/Xserver/hw > cvs diff -U3 xwin > xwin.diff > > If not, good luck figuring out those last little details, > > Harold Well unfortunately I don't know whether this patch should be applied or not. I've been using it for the past week, but occasionally I see duplicate keystrokes. It seems pretty random and not dependent on focus changes, but not completely random. It does not happen during normal typing, only with temporally isolated presses, which is pretty vague, but it's the best I can do at the moment. And it does not happen often, maybe once a day under moderate use. I thought I was having a serious problem with X crashing whenever I returned to my session after having locked NT 4 with CtrlAltDel, but it turned out that this continued when I switched back to Test 53, and it stopped when I uninstalled Folding@Home, so I blamed Folding@Home and resumed use of my patched server. That's part of my delay. I don't really have much time to work on this. I'll keep reporting how it's going if you ask, but it looks as if I will put up with the duplicates as being a lesser evil than the autorepeat. Of course, people not suffering from the autorepeat may see it differently. -John Index: xwin/winkeybd.c =================================================================== RCS file: /cvs/xc/programs/Xserver/hw/xwin/winkeybd.c,v retrieving revision 1.8 diff -U3 -r1.8 winkeybd.c --- xwin/winkeybd.c 2001/11/12 08:47:53 1.8 +++ xwin/winkeybd.c 2001/12/14 14:07:44 @@ -391,7 +391,12 @@ return FALSE; } +/* + * Remember which keys are down for when we lose focus. + */ +Bool g_fKeyStates[MAP_LENGTH]; + /* * Lift any modifier keys that are pressed */ @@ -399,16 +404,28 @@ void winKeybdReleaseModifierKeys () { + int i; + /* Verify that the mi input system has been initialized */ if (g_fdMessageQueue == WIN_FD_INVALID) return; - winSendKeyEvent (KEY_Alt, FALSE); - winSendKeyEvent (KEY_AltLang, FALSE); - winSendKeyEvent (KEY_LCtrl, FALSE); - winSendKeyEvent (KEY_RCtrl, FALSE); - winSendKeyEvent (KEY_ShiftL, FALSE); - winSendKeyEvent (KEY_ShiftR, FALSE); + for (i = 0; i < MAP_LENGTH; i++) + switch (i) + { + default: + if (g_fKeyStates[i]) + { + ErrorF ("Simulating release of key #%d!\n", i); + winSendKeyEvent (i, FALSE); + } + break; + case KEY_CapsLock: + case KEY_ScrollLock: + case KEY_NumLock: + case KEY_HKTG: + break; + } } @@ -422,7 +439,12 @@ winSendKeyEvent (DWORD dwKey, Bool fDown) { xEvent xCurrentEvent; - + + /* Ignore ups without a preceding down. This happens when a keystroke + causes X to gain focus. */ + if (!fDown && !g_fKeyStates[dwKey]) + return; + ZeroMemory (&xCurrentEvent, sizeof (xCurrentEvent)); xCurrentEvent.u.u.type = fDown ? KeyPress : KeyRelease; @@ -430,4 +452,5 @@ g_c32LastInputEventTime = GetTickCount (); xCurrentEvent.u.u.detail = dwKey + MIN_KEYCODE; mieqEnqueue (&xCurrentEvent); + g_fKeyStates[dwKey] = fDown; } From briangenisio@yahoo.com Fri Dec 14 06:41:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Fri, 14 Dec 2001 06:41:00 -0000 Subject: closing xfree86 References: Message-ID: <20011214143950.42558.qmail@web20809.mail.yahoo.com> --- Wilhelm Person wrote: > Try the -terminate switch for XWin. > > I'd like to see how you do to automatically start a program on the remote > machine from startxwin.bat, as I myself have failed to do this. > ssh or rsh will do this for you > /W > > On Fri, 14 Dec 2001, Shane Shields wrote: > > > we are using the startxwin.bat to open xfree, start an > > ssh session on a linux server and run a program > > remotely. when the ssh session finishes the x server > > on the windows machine respawns leaving a background x > > window (full screen). does anyone know how to stop > > that respawn. In linux you can do a killall -SIGTERM X > > in a script but I cant find an equivalent in windows. > > > > can anyone help? > > > > __________________________________________________ > > Do You Yahoo!? > > Check out Yahoo! Shopping and Yahoo! Auctions for all of > > your unique holiday gifts! Buy at http://shopping.yahoo.com > > or bid at http://auctions.yahoo.com > > > > +-------------------------------+ > | Home: http://wilper.cjb.net | > | E-mail: wilper@home.se | > | ICQ: 18390479 | > +-------------------------------+ > __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From robert.collins@itdomain.com.au Fri Dec 14 08:43:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Fri, 14 Dec 2001 08:43:00 -0000 Subject: New to-do item - configuration References: Message-ID: <0b5201c184be$85da8d70$0200a8c0@lifelesswks> ----- Original Message ----- From: "Harold Hunt" > Rather than re-invent the XF86Config parser, I'd like to know how feasible > it would be to do an XML config file. We'd need to get the XML libraries > into Cygwin first, but I don't think that's an insurmountable task (barring > evidence to the contrary from someone that has tried to do so). libxml ports with little effort. I've done so several times. Rob From blape@symantec.com Fri Dec 14 10:55:00 2001 From: blape@symantec.com (Burton Lape) Date: Fri, 14 Dec 2001 10:55:00 -0000 Subject: cygwin loops when connecting to xdmcp server running kdm Message-ID: I installed cygwin and xfree86 for cygwin. I am unable to connect to the xdmcp server. I run "/etc/X11R6/XWin.exe -query xxx.xxx.xxx.xxx -from xxx.xxx.xxx.xxx" The screen open then closes then opens then closes. It sits there and loops. Here is what is in the dos screen. winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources winDetectSupportedEngines () - Windows NT/2000 winDetectSupportedEngines () - DirectDraw installed winDetectSupportedEngines () - Allowing PrimaryDD winDetectSupportedEngines () - DirectDraw4 installed winDetectSupportedEngines () - Returning, supported engines 0000001f winSetEngine () - Using Shadow DirectDraw NonLocking winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 b 117 4 t 0 winAllocateFBShadowDDNL () - lPitch: 3188 winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 winCreateDefColormap () - Deferring to fbCreateDefColormap () winCloseScreenShadowDDNL () - Freeing screen resources Here is what is in /var/log/messages Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session opened for user nobody by ( uid=0) Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session closed for user nobody Dec 14 12:32:00 tslinux kdm[27140]: Unknown session exit code 127 from process 2 7266 Dec 14 12:32:00 tslinux kdm[27140]: Display hostname:0 is bein g disabled (exit frequency too high) Now I know this is not a configuration issue that I know of on the linux box running the XDMCP Server. I have also installed X-Win32 which is a commercial application. It connects just fine. Thanks, Burton Lape From blape@symantec.com Fri Dec 14 12:04:00 2001 From: blape@symantec.com (Burton Lape) Date: Fri, 14 Dec 2001 12:04:00 -0000 Subject: cygwin loops when connecting to xdmcp server running kdm Message-ID: Did the same exact thing only in a smaller window. Thanks for the help. Any other suggestions? |--------+------------------------> | | "Bruce Dobrin"| | | | | | | | | 12/14/2001 | | | 12:34 PM | | | | |--------+------------------------> >--------------------------------------------------------------------------------------------------------------------| | | | To: "Burton Lape" | | cc: | | Subject: Re: cygwin loops when connecting to xdmcp server running kdm | >--------------------------------------------------------------------------------------------------------------------| try "/etc/X11R6/XWin.exe -screen 0 1024x768x16 -query xxx.xxx.xxx.xxx -from xx.xxx.xxx.xxx" That often works for me. ----- Original Message ----- From: "Burton Lape" To: Sent: Friday, December 14, 2001 10:36 AM Subject: cygwin loops when connecting to xdmcp server running kdm > I installed cygwin and xfree86 for cygwin. I am unable to connect to the > xdmcp server. I run "/etc/X11R6/XWin.exe -query xxx.xxx.xxx.xxx -from > xxx.xxx.xxx.xxx" > The screen open then closes then opens then closes. It sits there and > loops. Here is what is in the dos screen. > > > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - DirectDraw4 installed > winDetectSupportedEngines () - Returning, supported engines 0000001f > winSetEngine () - Using Shadow DirectDraw NonLocking > winCreateBoundingWindowWindowed () - WindowClient w 1594 h 1174 r 1594 l 0 > b 117 > 4 t 0 > winAllocateFBShadowDDNL () - lPitch: 3188 > winInitVisualsShadowDDNL () - Masks 0000f800 000007e0 0000001f BPRGB 6 d 16 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > winCloseScreenShadowDDNL () - Freeing screen resources > > > Here is what is in /var/log/messages > > Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session opened for user nobody > by ( > uid=0) > Dec 14 12:31:59 tslinux su(pam_unix)[27263]: session closed for user nobody > Dec 14 12:32:00 tslinux kdm[27140]: Unknown session exit code 127 from > process 2 > 7266 > Dec 14 12:32:00 tslinux kdm[27140]: Display hostname:0 is bein > g disabled (exit frequency too high) > > > Now I know this is not a configuration issue that I know of on the linux > box running the XDMCP Server. > I have also installed X-Win32 which is a commercial application. It > connects just fine. > > > Thanks, > > Burton Lape > From derk.steggewentz@autodesk.com Fri Dec 14 15:06:00 2001 From: derk.steggewentz@autodesk.com (derk.steggewentz@autodesk.com) Date: Fri, 14 Dec 2001 15:06:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & substitute <...> with your specifics. Let me know if it works for you. derk From ewu@eskimo.com Fri Dec 14 15:44:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Fri, 14 Dec 2001 15:44:00 -0000 Subject: Does XDMCP work on these platforms? Message-ID: Hi, Does XDMCP work on - 1. Win95 2. Win98 Thanks EW From ewu@eskimo.com Fri Dec 14 19:40:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Fri, 14 Dec 2001 19:40:00 -0000 Subject: Has Cygwin-Xfree Team "downsized" ? Message-ID: <20011214195017.A4130347@PAVILION> Perhaps the Team has not self "downsized" heh? -ew From bzhang@convergentnet.com Fri Dec 14 20:05:00 2001 From: bzhang@convergentnet.com (Zhang, Bo) Date: Fri, 14 Dec 2001 20:05:00 -0000 Subject: Help on XDM with Solaris Host Message-ID: Thanks to derk.steggewentz. The problem was solved. I only need to point the font path to the font server which is already running on my Solaris box. XWin -query solaris_box -fp tcp/solaris_box:7100 Bo > -----Original Message----- > From: Zhang, Bo > Sent: Thursday, December 13, 2001 10:01 AM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > I found in the Cygwin/Xfree86 FAQ there is a similar issue, which > was supposed to have been solved by installing the latest Solaris > patches. > > I did install all the recommended patches. And my XWin still can't > come up with XDMCP. > > I got the following error messages after XWin hang for a long time > and timed-out: > > winDetectSupportedEngines () - Windows NT/2000 > winDetectSupportedEngines () - DirectDraw installed > winDetectSupportedEngines () - Allowing PrimaryDD > winDetectSupportedEngines () - Returning, supported engines 0000001b > winSetEngine () - Using Shadow DirectDraw > winCreateBoundingWindowWindowed () - WindowClient w 1274 h 970 r 1274 > l 0 b 970 t 0 > winInitVisualsShadowDD () - Masks 00ff0000 0000ff00 000000ff BPRGB 8 d > 32 > winCreateDefColormap () - Deferring to fbCreateDefColormap () > AUDIT: Wed Dec 12 16:50:25 2001: 255 XWin: client 1 rejected from IP > 172.16.33.210 port 33748 > Auth name: MIT-MAGIC-COOKIE-1 ID: -1 > XDM: too many keepalive retransmissions, declaring session dead > > Can anyone help me out? > > Thanks, > > Bo > > > -----Original Message----- > From: Zhang, Bo > Sent: Tuesday, December 11, 2001 6:37 PM > To: 'cygwin-xfree@xfree86.cygwin.com' > Subject: Help on XDM with Solaris Host > > > Hello, everyone, > > I have installed Cygwin/Xfree86 on my NT machine. XWin worked fine > as a standalone X-server. However, I couldn't get XDM to work with > my > Solaris 2.8. The root window is opened, but it hangs there. It looks > like > some kind of infinite loop (CPU ustilization on my PC goes 100% for > a > very long time), but Alt-F4 still works. > > Has anyone experienced this before? Does anyone has solutions to it? > > Thanks, > > Bo Zhang From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 15 04:48:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 15 Dec 2001 04:48:00 -0000 Subject: Does XDMCP work on these platforms? References: Message-ID: On Fri, 14 Dec 2001, Enoch Wu wrote: > > Hi, > > Does XDMCP work on - > 1. Win95 > 2. Win98 Yes. But XDMCP won't work with Tokenring cards (or better: won't work with any card except ethernet, loopback and ppp) bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sat Dec 15 07:27:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sat, 15 Dec 2001 07:27:00 -0000 Subject: Does XDMCP work on these platforms? References: <3C1B4B47.23C3C93F@homeshopping.com.br> Message-ID: On Sat, 15 Dec 2001, Ricardo wrote: > Stranger. My company has a tokenring network and I have tested > Xfree/XDMCP. > It's working fine!!!!! Which OS? We had a case with win2k and Tokenring where the cygwin kernel did not report that interface. Maybe this is fixed now. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From ewu@eskimo.com Sat Dec 15 14:09:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Sat, 15 Dec 2001 14:09:00 -0000 Subject: Does XDMCP work on these platforms? References: <3C1B4B47.23C3C93F@homeshopping.com.br> Message-ID: <3.0.3.32.20011215141939.0069cb34@mail.eskimo.com> Thanks Alexander. I'll try them. At 04:26 PM 12/15/01 +0100, Alexander Gottwald wrote: >On Sat, 15 Dec 2001, Ricardo wrote: > >> Stranger. My company has a tokenring network and I have tested >> Xfree/XDMCP. >> It's working fine!!!!! > >Which OS? > >We had a case with win2k and Tokenring where the cygwin kernel did >not report that interface. Maybe this is fixed now. > >bye > ago >-- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 > > From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 08:50:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 08:50:00 -0000 Subject: New to-do item - configuration References: Message-ID: Hi, this is just a little status report. I managed: - to read in the XF86Config file and parse it - set the default fontpath (cool thing :) ) - set the default keyboard and XKB settings These are the two most wanted topics from the configfile wishlist. But XKB has massive problems. Each keymap needs to be compiled via the program xkbcomp. This seems to be broken with cygwin. Any keymap compiled with the cygwin port of xkbcomp contains no valid keymap. Compiling with a linux native app works fine. So the next open topics are: - creating code for pointer device - creating code for full layout (binding keyboard and pointer to screen, setting monitor==window for screen) - cleanup code There are two problems with the server which I can't solve - There is no automatic redrawing. I only get the current output when I move a window over the XWin window and force a redraw - SEGFAULT in shadowRemove. The pointer to the second node in the screenPriv list points to 0x7e0. Maybe an initialization problem. Hope you can give me a pointer where to look :) bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:14:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:14:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > There are two problems with the server which I can't solve > > - There is no automatic redrawing. I only get the current output > when I move a window over the XWin window and force a redraw > - SEGFAULT in shadowRemove. The pointer to the second node in > the screenPriv list points to 0x7e0. Maybe an initialization > problem. Think I got the last one. Before calling shadowAdd, we have to init the shadow layer. See attached diff bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:20:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:20:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > - There is no automatic redrawing. I only get the current output > when I move a window over the XWin window and force a redraw This was the layer support. Switched it off and now it works again. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 10:22:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 10:22:00 -0000 Subject: New to-do item - configuration References: Message-ID: On Sun, 16 Dec 2001, Alexander Gottwald wrote: > Think I got the last one. Before calling shadowAdd, we have to init > the shadow layer. See attached diff I was wrong. We don't have to call shadowInit() before, but _instead_ shadowAdd(). Or we have to use shadowSetup(). bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Alexander.Gottwald@informatik.tu-chemnitz.de Sun Dec 16 15:28:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Sun, 16 Dec 2001 15:28:00 -0000 Subject: New to-do item - configuration References: Message-ID: A preview version is now ready at < http://www-usercgi.tu-chemnitz.de/~goal/index.php3?jump=xfree#config > Please treat this as experimental version. Some features of the regular version are not available (eg. logging to /tmp/XWin.log) and it is barly tested for sideeffect of new development. It has support for reading the Fontpath and the keyboard (XKB) settings from the config file. If you want to use the XKB features, please make sure that the /tmp directory is mounted in binary mode and that the XKB files are installed in /usr/X11R6/lib/X11/xkb Please report bugs (which you will surely find) the mailing list and state in the bugreport that you are running this experimental version. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From Ralf.Habacker@freenet.de Mon Dec 17 03:30:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 17 Dec 2001 03:30:00 -0000 Subject: libw11: make x windows programs run nativly. References: <540D22115D0CD311BC2E00A0246200EE0153202D@ssegadmin> Message-ID: <018601c186ef$006b6af0$9a5f07d5@BRAMSCHE> > Don, > > does this mean, that all X-applications will appear in a Windows-window like > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > C. Yes, it mean this. Regards Ralf > > > > > http://www.sf.net/projects/libw11 > > > > I just wanted to let people know about the library I am > > working on. My > > goal is to make a library that is 100% compatible with > > libX11.dll but > > not require an X server. My work is still in the early > > stages, but many > > of the example programs that are distributed with the QT widgets are > > beginning to work. > > > > Please let me know what you think of the idea, and if any wishes to > > help, let me know. > > > > --Don Becker > > > From alexander.gottwald@informatik.tu-chemnitz.de Mon Dec 17 03:36:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Mon, 17 Dec 2001 03:36:00 -0000 Subject: libw11: make x windows programs run nativly. References: <018601c186ef$006b6af0$9a5f07d5@BRAMSCHE> Message-ID: On Mon, 17 Dec 2001, Ralf Habacker wrote: > > does this mean, that all X-applications will appear in a Windows-window like > > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > > C. > Yes, it mean this. Rxvt seems to use this. And it looked nice. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From h.nardmann@secunet.de Mon Dec 17 04:33:00 2001 From: h.nardmann@secunet.de (Heiko Nardmann) Date: Mon, 17 Dec 2001 04:33:00 -0000 Subject: font problem Message-ID: <200112171233.NAA16344@mail-int.cubis.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! I have a problem with a font inside KDE Konsole. Until end of last week I used Exceed as my primary X server. Then I switched to XFree86 (on Windows NT). I start it using XDMCP with the '-indirect' option to get the chooser menu from a Linux server. Inside the KDE Konsole the font provided by Exceed is fine but now a proportional font is used in XFree86. When I try to choose a better font from the "Custom..." menu I only see "Tahoma" being the only font offered. Probably I have to provide some more fonts to the X server? - From another mail I saw that it is possible to give some '-fp ...' to the XWin command line; so now I have the following inside startxwin.bat: start /B XWin.exe :1 -indirect 10.151.4.13 -from 10.151.4.101 -screen 0 1600 1200 -fullscreen -fp tcp/10.151.4.13:7101 10.151.4.13 is the linux server. 10.151.4.101 is my machine. On port 7101 xfstt is running. No xfs is running on the linux machine additionally. But then I get the following fatal error message: could not open default font 'fixed' Any idea how to fix this? - -- Heiko Nardmann (Dipl.-Ing.), h.nardmann@secunet.de, Software Development secunet Security Networks AG - Sicherheit in Netzwerken (www.secunet.de), Weidenauer Str. 223-225, D-57076 Siegen Tel. : +49 271 48950-13, Fax : +49 271 48950-50 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8HeYspm53PRScYygRAhdXAJ0QZJCtX7QeRo/jBZX0vnqwjUr9MACgnyE1 jnnzLuz6b2QzgfDdrefVXtA= =pRbO -----END PGP SIGNATURE----- From briangenisio@yahoo.com Mon Dec 17 04:47:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 04:47:00 -0000 Subject: font problem References: <200112171233.NAA16344@mail-int.cubis.de> Message-ID: <20011217124616.3532.qmail@web20805.mail.yahoo.com> By default, the X server uses a bunch of font paths. They are all included in /usr/X11R6/lib/X11/fonts . Of those, I am not sure which are defaulted, but misc contains the "fixed" font alias. Sooooo.... by overriding your font path, you are clobbering the defaulted misc. I usually set misc, 75dpi and 100dpi in my font path... You have two options... 1. Add the font server to the font path : -fp /usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi,tcp/10.151.4.13:7101 2. Add the font path AFTER the X server has started up, NOT overriding the font path. Use xset for this. I am not completely sure of the syntax (take a look at the manpage), but it is something like : xset fp+ tcp/10.151.4.13:7101 xset fp rehash Brian --- Heiko Nardmann wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi! > > I have a problem with a font inside KDE Konsole. Until end of last week I > used Exceed as my primary X server. Then I switched to XFree86 (on Windows > NT). > > I start it using XDMCP with the '-indirect' option to get the chooser menu > from a Linux server. > > Inside the KDE Konsole the font provided by Exceed is fine but now a > proportional font is used in XFree86. > > When I try to choose a better font from the "Custom..." menu I only see > "Tahoma" being the only font offered. > > Probably I have to provide some more fonts to the X server? > > - From another mail I saw that it is possible to give some '-fp ...' to the > XWin command line; so now I have the following inside startxwin.bat: > > start /B XWin.exe :1 -indirect 10.151.4.13 -from 10.151.4.101 -screen 0 1600 > 1200 -fullscreen -fp tcp/10.151.4.13:7101 > > 10.151.4.13 is the linux server. > 10.151.4.101 is my machine. > > On port 7101 xfstt is running. No xfs is running on the linux machine > additionally. > > But then I get the following fatal error message: > > could not open default font 'fixed' > > Any idea how to fix this? > > - -- > Heiko Nardmann (Dipl.-Ing.), h.nardmann@secunet.de, Software Development > secunet Security Networks AG - Sicherheit in Netzwerken (www.secunet.de), > Weidenauer Str. 223-225, D-57076 Siegen > Tel. : +49 271 48950-13, Fax : +49 271 48950-50 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.0.6 (GNU/Linux) > Comment: For info see http://www.gnupg.org > > iD8DBQE8HeYspm53PRScYygRAhdXAJ0QZJCtX7QeRo/jBZX0vnqwjUr9MACgnyE1 > jnnzLuz6b2QzgfDdrefVXtA= > =pRbO > -----END PGP SIGNATURE----- __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From Ralf.Habacker@freenet.de Mon Dec 17 06:54:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 17 Dec 2001 06:54:00 -0000 Subject: libw11: make x windows programs run nativly. References: Message-ID: <000401c1870b$7fce48a0$e26407d5@BRAMSCHE> > -----Original Message----- > From: cygwin-xfree-owner@cygwin.com > [ mailto:cygwin-xfree-owner@cygwin.com]On Behalf Of Alexander Gottwald > Sent: Monday, December 17, 2001 12:35 PM > Cc: Cygwin-Xfree > Subject: RE: libw11: make x windows programs run nativly. > > > On Mon, 17 Dec 2001, Ralf Habacker wrote: > > > does this mean, that all X-applications will appear in a Windows-window like > > > the HCL eXceed? Sounds like a great Idea. No help from me though, don't talk > > > C. > > Yes, it mean this. > > Rxvt seems to use this. And it looked nice. libw11 is based on the x11lib, which rxvt uses. Ralf From jgilles@glmultimedia.com Mon Dec 17 07:59:00 2001 From: jgilles@glmultimedia.com (Julien Gilles) Date: Mon, 17 Dec 2001 07:59:00 -0000 Subject: XDMCP - Solaris hangs References: Message-ID: derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & Thanks a lot ! Should be added to the faq... (Q 4.9, http:????cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) -- Julien Gilles From kent.perrier@oneco.net Mon Dec 17 08:48:00 2001 From: kent.perrier@oneco.net (Kent Perrier) Date: Mon, 17 Dec 2001 08:48:00 -0000 Subject: After upgrading last night, Xfree no longer works. Message-ID: <3C1E215B.6020008@oneco.net> Last night, I upgraded my cygwin (primarially to get the bc utulity, but setup upgraded several other things as well) and I find out this morning that XFree no longer works. Has anyone else seen this? Here is the info out of the event log: Event Type: Information Event Source: DrWatson Event Category: None Event ID: 4097 Date: 12/17/2001 Time: 10:35:04 AM User: N/A Computer: SEAWOLF Description: The application, , generated an application error The error occurred on 12/17/2001 @ 10:35:04.670 The exception generated was c0000005 at address 00000000 () Data: 0000: 0d 0a 0d 0a 41 70 70 6c ....Appl 0008: 69 63 61 74 69 6f 6e 20 ication 0010: 65 78 63 65 70 74 69 6f exceptio 0018: 6e 20 6f 63 63 75 72 72 n occurr 0020: 65 64 3a 0d 0a 20 20 20 ed:.. 0028: 20 20 20 20 20 41 70 70 App 0030: 3a 20 20 28 70 69 64 3d : (pid= 0038: 31 34 38 34 29 0d 0a 20 1484).. 0040: 20 20 20 20 20 20 20 57 W 0048: 68 65 6e 3a 20 31 32 2f hen: 12/ 0050: 31 37 2f 32 30 30 31 20 17/2001 0058: 40 20 31 30 3a 33 35 3a @ 10:35: 0060: 30 34 2e 36 37 30 0d 0a 04.670.. 0068: 20 20 20 20 20 20 20 20 0070: 45 78 63 65 70 74 69 6f Exceptio 0078: 6e 20 6e 75 6d 62 65 72 n number 0080: 3a 20 63 30 30 30 30 30 : c00000 0088: 30 35 20 28 61 63 63 65 05 (acce 0090: 73 73 20 76 69 6f 6c 61 ss viola 0098: 74 69 6f 6e 29 0d 0a 0d tion)... 00a0: 0a 2a 2d 2d 2d 2d 3e 20 .*----> 00a8: 53 79 73 74 65 6d 20 49 System I 00b0: 6e 66 6f 72 6d 61 74 69 nformati 00b8: 6f 6e 20 3c 2d 2d 2d 2d on <---- 00c0: 2a 0d 0a 20 20 20 20 20 *.. 00c8: 20 20 20 43 6f 6d 70 75 Compu 00d0: 74 65 72 20 4e 61 6d 65 ter Name 00d8: 3a 20 53 45 41 57 4f 4c : SEAWOL 00e0: 46 0d 0a 20 20 20 20 20 F.. 00e8: 20 20 20 55 73 65 72 20 User 00f0: 4e 61 6d 65 3a 20 6b 70 Name: kp 00f8: 65 72 72 69 65 72 0d 0a errier.. 0100: 20 20 20 20 20 20 20 20 0108: 4e 75 6d 62 65 72 20 6f Number o 0110: 66 20 50 72 6f 63 65 73 f Proces 0118: 73 6f 72 73 3a 20 31 0d sors: 1. 0120: 0a 20 20 20 20 20 20 20 . 0128: 20 50 72 6f 63 65 73 73 Process 0130: 6f 72 20 54 79 70 65 3a or Type: 0138: 20 78 38 36 20 46 61 6d x86 Fam 0140: 69 6c 79 20 36 20 4d 6f ily 6 Mo 0148: 64 65 6c 20 38 20 53 74 del 8 St 0150: 65 70 70 69 6e 67 20 31 epping 1 0158: 30 0d 0a 20 20 20 20 20 0.. 0160: 20 20 20 57 69 6e 64 6f Windo 0168: 77 73 20 32 30 30 30 20 ws 2000 0170: 56 65 72 73 69 6f 6e 3a Version: 0178: 20 35 2e 30 0d 0a 20 20 5.0.. 0180: 20 20 20 20 20 20 43 75 Cu 0188: 72 72 65 6e 74 20 42 75 rrent Bu 0190: 69 6c 64 3a 20 32 31 39 ild: 219 0198: 35 0d 0a 20 20 20 20 20 5.. 01a0: 20 20 20 53 65 72 76 69 Servi 01a8: 63 65 20 50 61 63 6b 3a ce Pack: 01b0: 20 32 0d 0a 20 20 20 20 2.. 01b8: 20 20 20 20 43 75 72 72 Curr 01c0: 65 6e 74 20 54 79 70 65 ent Type 01c8: 3a 20 55 6e 69 70 72 6f : Unipro 01d0: 63 65 73 73 6f 72 20 46 cessor F 01d8: 72 65 65 0d 0a 20 20 20 ree.. 01e0: 20 20 20 20 20 52 65 67 Reg 01e8: 69 73 74 65 72 65 64 20 istered 01f0: 4f 72 67 61 6e 69 7a 61 Organiza 01f8: 74 69 6f 6e 3a 20 4f 6e tion: On 0200: 65 20 43 6f 6d 6d 75 6e e Commun 0208: 69 74 79 2c 20 49 6e 63 ity, Inc 0210: 0d 0a 20 20 20 20 20 20 .. 0218: 20 20 52 65 67 69 73 74 Regist 0220: 65 72 65 64 20 4f 77 6e ered Own 0228: 65 72 3a 20 4f 6e 65 20 er: One 0230: 43 6f 6d 6d 75 6e 69 74 Communit 0238: 79 2c 20 49 6e 63 0d 0a y, Inc.. 0240: 0d 0a 2a 2d 2d 2d 2d 3e ..*----> 0248: 20 54 61 73 6b 20 4c 69 Task Li 0250: 73 74 20 3c 2d 2d 2d 2d st <---- 0258: 2a 0d 0a 20 20 20 30 20 *.. 0 0260: 49 64 6c 65 2e 65 78 65 Idle.exe 0268: 0d 0a 20 20 20 38 20 53 .. 8 S 0270: 79 73 74 65 6d 2e 65 78 ystem.ex 0278: 65 0d 0a 20 31 36 34 20 e.. 164 0280: 73 6d 73 73 2e 65 78 65 smss.exe 0288: 0d 0a 20 31 39 32 20 63 .. 192 c 0290: 73 72 73 73 2e 65 78 65 srss.exe 0298: 0d 0a 20 32 31 32 20 77 .. 212 w 02a0: 69 6e 6c 6f 67 6f 6e 2e inlogon. 02a8: 65 78 65 0d 0a 20 32 34 exe.. 24 02b0: 34 20 73 65 72 76 69 63 4 servic 02b8: 65 73 2e 65 78 65 0d 0a es.exe.. 02c0: 20 32 35 36 20 6c 73 61 256 lsa 02c8: 73 73 2e 65 78 65 0d 0a ss.exe.. 02d0: 20 33 38 38 20 73 76 63 388 svc 02d8: 68 6f 73 74 2e 65 78 65 host.exe 02e0: 0d 0a 20 34 34 34 20 73 .. 444 s 02e8: 76 63 68 6f 73 74 2e 65 vchost.e 02f0: 78 65 0d 0a 20 34 39 32 xe.. 492 02f8: 20 73 70 6f 6f 6c 73 76 spoolsv 0300: 2e 65 78 65 0d 0a 20 35 .exe.. 5 0308: 36 34 20 41 74 69 32 65 64 Ati2e 0310: 76 78 78 2e 65 78 65 0d vxx.exe. 0318: 0a 20 36 31 36 20 68 74 . 616 ht 0320: 74 70 64 2e 65 78 65 0d tpd.exe. 0328: 0a 20 36 32 30 20 69 6e . 620 in 0330: 65 74 64 33 32 2e 65 78 etd32.ex 0338: 65 0d 0a 20 36 33 32 20 e.. 632 0340: 68 74 74 70 64 2e 65 78 httpd.ex 0348: 65 0d 0a 20 36 34 34 20 e.. 644 0350: 68 74 74 70 64 2e 65 78 httpd.ex 0358: 65 0d 0a 20 36 38 30 20 e.. 680 0360: 6a 63 6f 6e 66 69 67 64 jconfigd 0368: 4e 54 2e 65 78 65 0d 0a NT.exe.. 0370: 20 36 39 36 20 68 6a 61 696 hja 0378: 76 61 77 2e 65 78 65 0d vaw.exe. 0380: 0a 20 37 30 34 20 6e 61 . 704 na 0388: 76 61 70 73 76 63 2e 65 vapsvc.e 0390: 78 65 0d 0a 20 37 31 32 xe.. 712 0398: 20 6a 61 76 61 77 2e 65 javaw.e 03a0: 78 65 0d 0a 20 37 36 38 xe.. 768 03a8: 20 6e 70 73 73 76 63 2e npssvc. 03b0: 65 78 65 0d 0a 20 37 39 exe.. 79 03b8: 32 20 72 65 67 73 76 63 2 regsvc 03c0: 2e 65 78 65 0d 0a 20 38 .exe.. 8 03c8: 32 30 20 4d 53 54 61 73 20 MSTas 03d0: 6b 2e 65 78 65 0d 0a 20 k.exe.. 03d8: 38 34 34 20 57 69 6e 4d 844 WinM 03e0: 67 6d 74 2e 65 78 65 0d gmt.exe. 03e8: 0a 20 34 30 30 20 61 6c . 400 al 03f0: 65 72 74 73 76 63 2e 65 ertsvc.e 03f8: 78 65 0d 0a 20 35 36 38 xe.. 568 0400: 20 45 78 70 6c 6f 72 65 Explore 0408: 72 2e 65 78 65 0d 0a 31 r.exe..1 0410: 32 35 36 20 41 74 69 70 256 Atip 0418: 74 61 78 78 2e 65 78 65 taxx.exe 0420: 0d 0a 31 32 38 30 20 64 ..1280 d 0428: 61 65 6d 6f 6e 2e 65 78 aemon.ex 0430: 65 0d 0a 20 39 39 32 20 e.. 992 0438: 52 65 61 6c 50 6c 61 79 RealPlay 0440: 2e 65 78 65 0d 0a 31 32 .exe..12 0448: 36 38 20 57 69 6e 61 6d 68 Winam 0450: 70 61 2e 65 78 65 0d 0a pa.exe.. 0458: 31 33 30 30 20 64 69 72 1300 dir 0460: 65 63 74 63 64 2e 65 78 ectcd.ex 0468: 65 0d 0a 31 33 30 38 20 e..1308 0470: 43 72 65 61 74 65 43 44 CreateCD 0478: 2e 65 78 65 0d 0a 31 33 .exe..13 0480: 32 30 20 4d 6f 7a 69 6c 20 Mozil 0488: 6c 61 2e 65 78 65 0d 0a la.exe.. 0490: 31 33 32 38 20 6e 61 76 1328 nav 0498: 61 70 77 33 32 2e 65 78 apw32.ex 04a0: 65 0d 0a 31 33 34 38 20 e..1348 04a8: 41 63 72 6f 54 72 61 79 AcroTray 04b0: 2e 65 78 65 0d 0a 31 34 .exe..14 04b8: 30 30 20 6d 73 6f 66 66 00 msoff 04c0: 69 63 65 2e 65 78 65 0d ice.exe. 04c8: 0a 20 39 38 30 20 53 65 . 980 Se 04d0: 63 75 72 65 43 52 54 2e cureCRT. 04d8: 65 78 65 0d 0a 20 35 33 exe.. 53 04e0: 32 20 63 6d 64 2e 65 78 2 cmd.ex 04e8: 65 0d 0a 20 38 38 30 20 e.. 880 04f0: 62 61 73 68 2e 65 78 65 bash.exe 04f8: 0d 0a 31 30 39 32 20 63 ..1092 c 0500: 6d 64 2e 65 78 65 0d 0a md.exe.. 0508: 31 35 34 38 20 62 61 73 1548 bas 0510: 68 2e 65 78 65 0d 0a 31 h.exe..1 0518: 34 36 38 20 73 68 2e 65 468 sh.e 0520: 78 65 0d 0a 31 34 38 34 xe..1484 0528: 20 74 77 6d 2e 65 78 65 twm.exe 0530: 0d 0a 20 37 35 36 20 64 .. 756 d 0538: 72 77 74 73 6e 33 32 2e rwtsn32. 0540: 65 78 65 0d 0a 31 35 34 exe..154 0548: 30 20 64 72 77 74 73 6e 0 drwtsn 0550: 33 32 2e 65 78 65 0d 0a 32.exe.. 0558: 31 34 37 36 20 64 72 77 1476 drw 0560: 74 73 6e 33 32 2e 65 78 tsn32.ex 0568: 65 0d 0a 31 35 31 36 20 e..1516 0570: 78 74 65 72 6d 2e 65 78 xterm.ex 0578: 65 0d 0a 31 35 37 36 20 e..1576 0580: 78 74 65 72 6d 2e 65 78 xterm.ex 0588: 65 0d 0a 31 35 39 36 20 e..1596 0590: 78 74 65 72 6d 2e 65 78 xterm.ex 0598: 65 0d 0a 20 20 20 30 20 e.. 0 05a0: 5f 54 6f 74 61 6c 2e 65 _Total.e 05a8: 78 65 0d 0a 0d 0a 28 30 xe....(0 05b0: 30 34 30 30 30 30 30 20 0400000 05b8: 2d 20 30 30 34 37 30 30 - 004700 05c0: 30 30 29 20 0d 0a 28 37 00) ..(7 05c8: 37 46 38 30 30 30 30 20 7F80000 05d0: 2d 20 37 37 46 46 42 30 - 77FFB0 05d8: 30 30 29 20 0d 0a 28 36 00) ..(6 05e0: 37 35 43 30 30 30 30 20 75C0000 05e8: 2d 20 36 37 35 44 37 30 - 675D70 05f0: 30 30 29 20 0d 0a 28 36 00) ..(6 05f8: 31 30 30 30 30 30 30 20 1000000 0600: 2d 20 36 31 31 30 31 30 - 611010 0608: 30 30 29 20 0d 0a 28 37 00) ..(7 0610: 37 45 38 30 30 30 30 20 7E80000 0618: 2d 20 37 37 46 33 35 30 - 77F350 0620: 30 30 29 20 0d 0a 28 36 00) ..(6 0628: 37 35 45 30 30 30 30 20 75E0000 0630: 2d 20 36 37 35 45 43 30 - 675EC0 0638: 30 30 29 20 0d 0a 28 36 00) ..(6 0640: 37 34 45 30 30 30 30 20 74E0000 0648: 2d 20 36 37 35 41 38 30 - 675A80 0650: 30 30 29 20 0d 0a 28 36 00) ..(6 0658: 37 35 46 30 30 30 30 20 75F0000 0660: 2d 20 36 37 35 46 44 30 - 675FD0 0668: 30 30 29 20 0d 0a 28 37 00) ..(7 0670: 37 44 42 30 30 30 30 20 7DB0000 0678: 2d 20 37 37 45 30 42 30 - 77E0B0 0680: 30 30 29 20 0d 0a 28 37 00) ..(7 0688: 37 44 34 30 30 30 30 20 7D40000 0690: 2d 20 37 37 44 42 30 30 - 77DB00 0698: 30 30 29 20 0d 0a 0d 0a 00) .... 06a0: 53 74 61 74 65 20 44 75 State Du 06a8: 6d 70 20 66 6f 72 20 54 mp for T 06b0: 68 72 65 61 64 20 49 64 hread Id 06b8: 20 30 78 31 63 30 0d 0a 0x1c0.. 06c0: 0d 0a 65 61 78 3d 30 30 ..eax=00 06c8: 30 30 30 30 30 30 20 65 000000 e 06d0: 62 78 3d 30 30 30 30 30 bx=00000 06d8: 30 30 30 20 65 63 78 3d 000 ecx= 06e0: 36 31 35 35 36 31 37 30 61556170 06e8: 20 65 64 78 3d 36 31 30 edx=610 06f0: 39 62 37 34 63 20 65 73 9b74c es 06f8: 69 3d 30 30 30 31 38 62 i=00018b 0700: 30 30 20 65 64 69 3d 30 00 edi=0 0708: 30 30 30 30 30 38 62 0d 000008b. 0710: 0a 65 69 70 3d 30 30 30 .eip=000 0718: 30 30 30 30 30 20 65 73 00000 es 0720: 70 3d 30 32 34 36 66 61 p=0246fa 0728: 30 63 20 65 62 70 3d 30 0c ebp=0 0730: 32 34 36 66 61 33 38 20 246fa38 0738: 69 6f 70 6c 3d 30 20 20 iopl=0 0740: 20 20 20 20 20 20 20 6e n 0748: 76 20 75 70 20 65 69 20 v up ei 0750: 70 6c 20 6e 7a 20 6e 61 pl nz na 0758: 20 70 65 20 6e 63 0d 0a pe nc.. 0760: 63 73 3d 30 30 31 62 20 cs=001b 0768: 20 73 73 3d 30 30 32 33 ss=0023 0770: 20 20 64 73 3d 30 30 32 ds=002 0778: 33 20 20 65 73 3d 30 30 3 es=00 0780: 32 33 20 20 66 73 3d 30 23 fs=0 0788: 30 33 62 20 20 67 73 3d 03b gs= 0790: 30 30 30 30 20 20 20 20 0000 0798: 20 20 20 20 20 20 20 20 07a0: 20 65 66 6c 3d 30 30 30 efl=000 07a8: 30 30 32 30 32 0d 0a 0d 00202... 07b0: 0a 0d 0a 66 75 6e 63 74 ...funct 07b8: 69 6f 6e 3a 20 3c 6e 6f ion: 07c8: 0d 0a 46 41 55 4c 54 20 ..FAULT 07d0: 2d 3e 30 30 30 30 30 30 ->000000 07d8: 30 30 20 3f 3f 3f 0d 0a 00 ???.. 07e0: 20 20 20 20 20 20 20 20 07e8: 30 30 30 30 30 30 30 31 00000001 07f0: 20 3f 3f 3f 0d 0a 20 20 ???.. 07f8: 20 20 20 20 20 20 30 30 00 0800: 30 30 30 30 30 32 20 3f 000002 ? 0808: 3f 3f 0d 0a 20 20 20 20 ??.. 0810: 20 20 20 20 30 30 30 30 0000 0818: 30 30 30 33 20 3f 3f 3f 0003 ??? 0820: 0d 0a 0d 0a 2a 2d 2d 2d ....*--- 0828: 2d 3e 20 53 74 61 63 6b -> Stack 0830: 20 42 61 63 6b 20 54 72 Back Tr 0838: 61 63 65 20 3c 2d 2d 2d ace <--- 0840: 2d 2a 0d 0a 0d 0a 46 72 -*....Fr 0848: 61 6d 65 50 74 72 20 52 amePtr R 0850: 65 74 75 72 6e 41 64 20 eturnAd 0858: 50 61 72 61 6d 23 31 20 Param#1 0860: 20 50 61 72 61 6d 23 32 Param#2 0868: 20 20 50 61 72 61 6d 23 Param# 0870: 33 20 20 50 61 72 61 6d 3 Param 0878: 23 34 20 20 46 75 6e 63 #4 Func 0880: 74 69 6f 6e 20 4e 61 6d tion Nam 0888: 65 0d 0a 30 32 34 36 46 e..0246F 0890: 41 30 38 20 36 31 30 35 A08 6105 0898: 41 37 41 37 20 36 31 35 A7A7 615 08a0: 35 36 31 37 30 20 30 30 56170 00 08a8: 30 31 38 42 30 30 20 30 018B00 0 08b0: 32 34 36 46 41 33 38 20 246FA38 08b8: 36 31 30 35 41 37 38 33 6105A783 08c0: 20 21 3c 6e 6f 73 79 6d ! .. 08d0: 30 32 34 36 46 41 33 38 0246FA38 08d8: 20 36 31 30 30 34 34 32 6100442 08e0: 44 20 30 30 30 30 30 30 D 000000 08e8: 30 30 20 30 30 30 31 38 00 00018 08f0: 42 30 30 20 30 30 30 30 B00 0000 08f8: 30 30 38 42 20 36 31 30 008B 610 0900: 30 46 36 39 38 20 21 73 0F698 !s 0908: 74 72 73 65 70 20 0d 0a trsep .. 0910: 30 32 34 36 46 41 35 38 0246FA58 0918: 20 36 31 30 30 46 36 45 6100F6E 0920: 33 20 30 30 30 31 38 42 3 00018B 0928: 30 30 20 46 46 46 46 46 00 FFFFF 0930: 46 46 30 20 30 32 34 36 FF0 0246 0938: 46 42 41 43 20 30 32 36 FBAC 026 0940: 33 30 30 31 43 20 21 5f 3001C !_ 0948: 6d 61 69 6e 20 0d 0a 30 main ..0 0950: 32 34 36 46 41 38 38 20 246FA88 0958: 36 31 30 30 44 46 46 39 6100DFF9 0960: 20 30 30 30 30 30 30 38 0000008 0968: 42 20 30 32 34 36 46 42 B 0246FB 0970: 43 38 20 30 32 34 36 46 C8 0246F 0978: 41 45 38 20 36 31 30 30 AE8 6100 0980: 44 46 43 35 20 21 63 79 DFC5 !cy 0988: 67 77 69 6e 5f 73 74 61 gwin_sta 0990: 63 6b 64 75 6d 70 20 0d ckdump . 0998: 0a 30 32 34 36 46 41 45 .0246FAE 09a0: 38 20 37 37 46 38 46 34 8 77F8F4 09a8: 35 43 20 30 32 34 36 46 5C 0246F 09b0: 42 41 43 20 30 32 34 36 BAC 0246 09b8: 46 46 30 38 20 30 32 34 FF08 024 09c0: 36 46 42 43 38 20 30 32 6FBC8 02 09c8: 34 36 46 42 38 34 20 21 46FB84 ! 09d0: 63 79 67 77 69 6e 5f 73 cygwin_s 09d8: 74 61 63 6b 64 75 6d 70 tackdump 09e0: 20 0d 0a 30 32 34 36 46 ..0246F 09e8: 42 30 43 20 37 37 46 38 B0C 77F8 09f0: 46 33 46 41 20 30 32 34 F3FA 024 09f8: 36 46 42 41 43 20 30 32 6FBAC 02 0a00: 34 36 46 46 30 38 20 30 46FF08 0 0a08: 32 34 36 46 42 43 38 20 246FBC8 0a10: 30 32 34 36 46 42 38 34 0246FB84 0a18: 20 6e 74 64 6c 6c 21 77 ntdll!w 0a20: 63 73 6e 63 6d 70 20 0d csncmp . 0a28: 0a 30 32 34 36 46 42 39 .0246FB9 0a30: 34 20 37 37 46 41 30 33 4 77FA03 0a38: 34 36 20 30 32 34 36 46 46 0246F 0a40: 42 41 43 20 30 32 34 36 BAC 0246 0a48: 46 42 43 38 20 30 32 34 FBC8 024 0a50: 36 46 42 41 43 20 30 32 6FBAC 02 0a58: 34 36 46 42 43 38 20 6e 46FBC8 n 0a60: 74 64 6c 6c 21 77 63 73 tdll!wcs 0a68: 6e 63 6d 70 20 0d 0a 30 ncmp ..0 0a70: 32 34 36 46 45 43 30 20 246FEC0 0a78: 36 31 30 30 33 42 30 39 61003B09 0a80: 20 36 31 35 35 30 30 44 615500D 0a88: 38 20 30 30 30 30 30 30 8 000000 0a90: 46 30 20 30 32 34 36 46 F0 0246F 0a98: 46 31 30 20 36 31 30 30 F10 6100 0aa0: 33 39 38 42 20 6e 74 64 398B ntd 0aa8: 6c 6c 21 4b 69 55 73 65 ll!KiUse 0ab0: 72 45 78 63 65 70 74 69 rExcepti 0ab8: 6f 6e 44 69 73 70 61 74 onDispat 0ac0: 63 68 65 72 20 0d 0a 30 cher ..0 0ac8: 32 34 36 46 46 31 30 20 246FF10 0ad0: 36 31 30 30 34 31 42 39 610041B9 0ad8: 20 30 30 30 30 30 30 30 0000000 0ae0: 30 20 30 30 34 31 32 41 0 00412A 0ae8: 30 43 20 42 41 45 46 45 0C BAEFE 0af0: 43 34 43 20 30 30 30 30 C4C 0000 0af8: 30 30 30 31 20 21 5f 61 0001 !_a 0b00: 73 73 65 72 74 20 0d 0a ssert .. 0b08: 30 32 34 36 46 46 34 30 0246FF40 0b10: 20 36 31 30 30 34 31 46 610041F 0b18: 38 20 30 30 34 30 39 46 8 00409F 0b20: 33 43 20 30 30 34 31 32 3C 00412 0b28: 41 30 43 20 38 31 33 38 A0C 8138 0b30: 44 44 41 30 20 30 30 30 DDA0 000 0b38: 30 30 30 30 30 20 21 64 00000 !d 0b40: 6c 6c 5f 63 72 74 30 20 ll_crt0 0b48: 0d 0a 30 32 34 36 46 46 ..0246FF 0b50: 36 30 20 30 30 34 34 45 60 0044E 0b58: 43 46 38 20 30 30 30 30 CF8 0000 0b60: 30 30 30 30 20 30 30 30 0000 000 0b68: 30 30 30 30 30 20 38 31 00000 81 0b70: 33 38 44 46 33 30 20 30 38DF30 0 0b78: 30 30 30 30 30 30 35 20 0000005 0b80: 21 64 6c 6c 5f 63 72 74 !dll_crt 0b88: 30 5f 5f 46 50 31 31 70 0__FP11p 0b90: 65 72 5f 70 72 6f 63 65 er_proce 0b98: 73 73 20 0d 0a 30 32 34 ss ..024 0ba0: 36 46 46 39 30 20 30 30 6FF90 00 0ba8: 34 30 31 30 33 42 20 30 40103B 0 0bb0: 30 34 30 39 46 33 43 20 0409F3C 0bb8: 46 46 46 46 46 46 46 46 FFFFFFFF 0bc0: 20 38 30 34 33 30 44 37 80430D7 0bc8: 37 20 30 30 30 30 30 30 7 000000 0bd0: 30 30 20 21 3c 6e 6f 73 00 ! 0be0: 0d 0a 30 32 34 36 46 46 ..0246FF 0be8: 43 30 20 37 37 45 39 37 C0 77E97 0bf0: 44 30 38 20 30 30 34 31 D08 0041 0bf8: 32 41 30 43 20 30 30 32 2A0C 002 0c00: 32 46 37 36 34 20 37 46 2F764 7F 0c08: 46 44 46 30 30 30 20 43 FDF000 C 0c10: 30 30 30 30 30 30 35 20 0000005 0c18: 21 3c 6e 6f 73 79 6d 62 ! ..0 0c28: 32 34 36 46 46 46 30 20 246FFF0 0c30: 30 30 30 30 30 30 30 30 00000000 0c38: 20 30 30 34 30 31 30 30 0040100 0c40: 30 20 30 30 30 30 30 30 0 000000 0c48: 30 30 20 30 30 30 30 30 00 00000 0c50: 30 43 38 20 30 30 30 30 0C8 0000 0c58: 30 31 30 30 20 6b 65 72 0100 ker 0c60: 6e 65 6c 33 32 21 43 72 nel32!Cr 0c68: 65 61 74 65 50 72 6f 63 eateProc 0c70: 65 73 73 57 20 0d 0a 0d essW ... 0c78: 0a 2a 2d 2d 2d 2d 3e 20 .*----> 0c80: 52 61 77 20 53 74 61 63 Raw Stac 0c88: 6b 20 44 75 6d 70 20 3c k Dump < 0c90: 2d 2d 2d 2d 2a 0d 0a 30 ----*..0 0c98: 32 34 36 66 61 30 63 20 246fa0c 0ca0: 20 61 37 20 61 37 20 30 a7 a7 0 0ca8: 35 20 36 31 20 37 30 20 5 61 70 0cb0: 36 31 20 35 35 20 36 31 61 55 61 0cb8: 20 2d 20 30 30 20 38 62 - 00 8b 0cc0: 20 30 31 20 30 30 20 33 01 00 3 0cc8: 38 20 66 61 20 34 36 20 8 fa 46 0cd0: 30 32 20 20 2e 2e 2e 61 02 ...a 0cd8: 70 61 55 61 2e 2e 2e 2e paUa.... 0ce0: 38 2e 46 2e 0d 0a 30 32 8.F...02 0ce8: 34 36 66 61 31 63 20 20 46fa1c 0cf0: 38 33 20 61 37 20 30 35 83 a7 05 0cf8: 20 36 31 20 30 30 20 38 61 00 8 0d00: 62 20 30 31 20 30 30 20 b 01 00 0d08: 2d 20 30 31 20 30 30 20 - 01 00 0d10: 30 30 20 30 30 20 35 38 00 00 58 0d18: 20 66 61 20 34 36 20 30 fa 46 0 0d20: 32 20 20 2e 2e 2e 61 2e 2 ...a. 0d28: 2e 2e 2e 2e 2e 2e 2e 58 .......X 0d30: 2e 46 2e 0d 0a 30 32 34 .F...024 0d38: 36 66 61 32 63 20 20 30 6fa2c 0 0d40: 36 20 34 34 20 30 30 20 6 44 00 0d48: 36 31 20 30 32 20 30 30 61 02 00 0d50: 20 30 30 20 30 30 20 2d 00 00 - 0d58: 20 30 31 20 30 30 20 30 01 00 0 0d60: 30 20 30 30 20 35 38 20 0 00 58 0d68: 66 61 20 34 36 20 30 32 fa 46 02 0d70: 20 20 2e 44 2e 61 2e 2e .D.a.. 0d78: 2e 2e 2e 2e 2e 2e 58 2e ......X. 0d80: 46 2e 0d 0a 30 32 34 36 F...0246 0d88: 66 61 33 63 20 20 32 64 fa3c 2d 0d90: 20 34 34 20 30 30 20 36 44 00 6 0d98: 31 20 30 30 20 30 30 20 1 00 00 0da0: 30 30 20 30 30 20 2d 20 00 00 - 0da8: 30 30 20 38 62 20 30 31 00 8b 01 0db0: 20 30 30 20 38 62 20 30 00 8b 0 0db8: 30 20 30 30 20 30 30 20 0 00 00 0dc0: 20 2d 44 2e 61 2e 2e 2e -D.a... 0dc8: 2e 2e 2e 2e 2e 2e 2e 2e ........ 0dd0: 2e 0d 0a 30 32 34 36 66 ...0246f 0dd8: 61 34 63 20 20 39 38 20 a4c 98 0de0: 66 36 20 30 30 20 36 31 f6 00 61 0de8: 20 64 30 20 62 61 20 30 d0 ba 0 0df0: 39 20 36 31 20 2d 20 30 9 61 - 0 0df8: 31 20 30 30 20 30 30 20 1 00 00 0e00: 30 30 20 38 38 20 66 61 00 88 fa 0e08: 20 34 36 20 30 32 20 20 46 02 0e10: 2e 2e 2e 61 2e 2e 2e 61 ...a...a 0e18: 2e 2e 2e 2e 2e 2e 46 2e ......F. 0e20: 0d 0a 30 32 34 36 66 61 ..0246fa 0e28: 35 63 20 20 65 33 20 66 5c e3 f 0e30: 36 20 30 30 20 36 31 20 6 00 61 0e38: 30 30 20 38 62 20 30 31 00 8b 01 0e40: 20 30 30 20 2d 20 66 30 00 - f0 0e48: 20 66 66 20 66 66 20 66 ff ff f 0e50: 66 20 61 63 20 66 62 20 f ac fb 0e58: 34 36 20 30 32 20 20 2e 46 02 . 0e60: 2e 2e 61 2e 2e 2e 2e 2e ..a..... 0e68: 2e 2e 2e 2e 2e 46 2e 0d .....F.. 0e70: 0a 30 32 34 36 66 61 36 .0246fa6 0e78: 63 20 20 31 63 20 30 30 c 1c 00 0e80: 20 36 33 20 30 32 20 37 63 02 7 0e88: 63 20 66 63 20 34 36 20 c fc 46 0e90: 30 32 20 2d 20 61 63 20 02 - ac 0e98: 66 62 20 34 36 20 30 32 fb 46 02 0ea0: 20 65 38 20 66 61 20 34 e8 fa 4 0ea8: 36 20 30 32 20 20 2e 2e 6 02 .. 0eb0: 63 2e 7c 2e 46 2e 2e 2e c.|.F... 0eb8: 46 2e 2e 2e 46 2e 0d 0a F...F... 0ec0: 30 32 34 36 66 61 37 63 0246fa7c 0ec8: 20 20 65 36 20 64 66 20 e6 df 0ed0: 30 30 20 36 31 20 37 63 00 61 7c 0ed8: 20 66 63 20 34 36 20 30 fc 46 0 0ee0: 32 20 2d 20 30 30 20 30 2 - 00 0 0ee8: 30 20 30 30 20 30 30 20 0 00 00 0ef0: 65 38 20 66 61 20 34 36 e8 fa 46 0ef8: 20 30 32 20 20 2e 2e 2e 02 ... 0f00: 61 7c 2e 46 2e 2e 2e 2e a|.F.... 0f08: 2e 2e 2e 46 2e 0d 0a 30 ...F...0 0f10: 32 34 36 66 61 38 63 20 246fa8c 0f18: 20 66 39 20 64 66 20 30 f9 df 0 0f20: 30 20 36 31 20 38 62 20 0 61 8b 0f28: 30 30 20 30 30 20 30 30 00 00 00 0f30: 20 2d 20 63 38 20 66 62 - c8 fb 0f38: 20 34 36 20 30 32 20 65 46 02 e 0f40: 38 20 66 61 20 34 36 20 8 fa 46 0f48: 30 32 20 20 2e 2e 2e 61 02 ...a 0f50: 2e 2e 2e 2e 2e 2e 46 2e ......F. 0f58: 2e 2e 46 2e 0d 0a 30 32 ..F...02 0f60: 34 36 66 61 39 63 20 20 46fa9c 0f68: 63 35 20 64 66 20 30 30 c5 df 00 0f70: 20 36 31 20 30 38 20 66 61 08 f 0f78: 66 20 34 36 20 30 32 20 f 46 02 0f80: 2d 20 61 63 20 66 62 20 - ac fb 0f88: 34 36 20 30 32 20 64 38 46 02 d8 0f90: 20 30 30 20 35 35 20 36 00 55 6 0f98: 31 20 20 2e 2e 2e 61 2e 1 ...a. 0fa0: 2e 46 2e 2e 2e 46 2e 2e .F...F.. 0fa8: 2e 55 61 0d 0a 30 32 34 .Ua..024 0fb0: 36 66 61 61 63 20 20 30 6faac 0 0fb8: 30 20 30 30 20 30 30 20 0 00 00 0fc0: 30 30 20 33 33 20 32 39 00 33 29 0fc8: 20 66 38 20 37 37 20 2d f8 77 - 0fd0: 20 30 30 20 30 30 20 34 00 00 4 0fd8: 37 20 30 32 20 38 30 20 7 02 80 0fe0: 35 35 20 34 37 20 30 32 55 47 02 0fe8: 20 20 2e 2e 2e 2e 33 29 ....3) 0ff0: 2e 77 2e 2e 47 2e 2e 55 .w..G..U 0ff8: 47 2e 0d 0a 30 32 34 36 G...0246 1000: 66 61 62 63 20 20 30 30 fabc 00 1008: 20 30 30 20 30 30 20 30 00 00 0 1010: 30 20 62 34 20 66 61 20 0 b4 fa 1018: 34 36 20 30 32 20 2d 20 46 02 - 1020: 38 38 20 30 36 20 34 37 88 06 47 1028: 20 30 32 20 36 38 20 66 02 68 f 1030: 62 20 34 36 20 30 32 20 b 46 02 1038: 20 2e 2e 2e 2e 2e 2e 46 ......F 1040: 2e 2e 2e 47 2e 68 2e 46 ...G.h.F 1048: 2e 0d 0a 30 32 34 36 66 ...0246f 1050: 61 63 63 20 20 61 37 20 acc a7 1058: 39 64 20 66 62 20 37 37 9d fb 77 1060: 20 35 30 20 32 39 20 66 50 29 f 1068: 38 20 37 37 20 2d 20 65 8 77 - e 1070: 38 20 66 61 20 34 36 20 8 fa 46 1078: 30 32 20 37 38 20 66 62 02 78 fb 1080: 20 34 36 20 30 32 20 20 46 02 1088: 2e 2e 2e 77 50 29 2e 77 ...wP).w 1090: 2e 2e 46 2e 78 2e 46 2e ..F.x.F. 1098: 0d 0a 30 32 34 36 66 61 ..0246fa 10a0: 64 63 20 20 64 65 20 62 dc de b 10a8: 36 20 66 63 20 37 37 20 6 fc 77 10b0: 36 38 20 30 38 20 34 37 68 08 47 10b8: 20 30 32 20 2d 20 38 62 02 - 8b 10c0: 20 30 30 20 30 30 20 30 00 00 0 10c8: 30 20 30 63 20 66 62 20 0 0c fb 10d0: 34 36 20 30 32 20 20 2e 46 02 . 10d8: 2e 2e 77 68 2e 47 2e 2e ..wh.G.. 10e0: 2e 2e 2e 2e 2e 46 2e 0d .....F.. 10e8: 0a 30 32 34 36 66 61 65 .0246fae 10f0: 63 20 20 35 63 20 66 34 c 5c f4 10f8: 20 66 38 20 37 37 20 61 f8 77 a 1100: 63 20 66 62 20 34 36 20 c fb 46 1108: 30 32 20 2d 20 30 38 20 02 - 08 1110: 66 66 20 34 36 20 30 32 ff 46 02 1118: 20 63 38 20 66 62 20 34 c8 fb 4 1120: 36 20 30 32 20 20 5c 2e 6 02 \. 1128: 2e 77 2e 2e 46 2e 2e 2e .w..F... 1130: 46 2e 2e 2e 46 2e 0d 0a F...F... 1138: 30 32 34 36 66 61 66 63 0246fafc 1140: 20 20 38 34 20 66 62 20 84 fb 1148: 34 36 20 30 32 20 30 38 46 02 08 1150: 20 66 66 20 34 36 20 30 ff 46 0 1158: 32 20 2d 20 62 35 20 66 2 - b5 f 1160: 35 20 66 38 20 37 37 20 5 f8 77 1168: 30 38 20 66 66 20 34 36 08 ff 46 1170: 20 30 32 20 20 2e 2e 46 02 ..F 1178: 2e 2e 2e 46 2e 2e 2e 2e ...F.... 1180: 77 2e 2e 46 2e 0d 0a 30 w..F...0 1188: 32 34 36 66 62 30 63 20 246fb0c 1190: 20 39 34 20 66 62 20 34 94 fb 4 1198: 36 20 30 32 20 66 61 20 6 02 fa 11a0: 66 33 20 66 38 20 37 37 f3 f8 77 11a8: 20 2d 20 61 63 20 66 62 - ac fb 11b0: 20 34 36 20 30 32 20 30 46 02 0 11b8: 38 20 66 66 20 34 36 20 8 ff 46 11c0: 30 32 20 20 2e 2e 46 2e 02 ..F. 11c8: 2e 2e 2e 77 2e 2e 46 2e ...w..F. 11d0: 2e 2e 46 2e 0d 0a 30 32 ..F...02 11d8: 34 36 66 62 31 63 20 20 46fb1c 11e0: 63 38 20 66 62 20 34 36 c8 fb 46 11e8: 20 30 32 20 38 34 20 66 02 84 f 11f0: 62 20 34 36 20 30 32 20 b 46 02 11f8: 2d 20 37 38 20 64 62 20 - 78 db 1200: 30 30 20 36 31 20 64 38 00 61 d8 1208: 20 30 30 20 35 35 20 36 00 55 6 1210: 31 20 20 2e 2e 46 2e 2e 1 ..F.. 1218: 2e 46 2e 78 2e 2e 61 2e .F.x..a. 1220: 2e 55 61 0d 0a 30 32 34 .Ua..024 1228: 36 66 62 32 63 20 20 30 6fb2c 0 1230: 30 20 30 30 20 30 30 20 0 00 00 1238: 30 30 20 61 63 20 66 62 00 ac fb 1240: 20 34 36 20 30 32 20 2d 46 02 - 1248: 20 30 30 20 30 30 20 30 00 00 0 1250: 30 20 30 30 20 30 31 20 0 00 01 1258: 30 30 20 31 66 20 30 30 00 1f 00 1260: 20 20 2e 2e 2e 2e 2e 2e ...... 1268: 46 2e 2e 2e 2e 2e 2e 2e F....... 1270: 2e 2e 0d 0a 30 32 34 36 ....0246 1278: 66 62 33 63 20 20 38 38 fb3c 88 1280: 20 35 35 20 34 37 20 30 55 47 0 1288: 32 20 35 38 20 35 35 20 2 58 55 1290: 34 37 20 30 32 20 2d 20 47 02 - 1298: 30 30 20 30 30 20 34 37 00 00 47 12a0: 20 30 32 20 30 61 20 30 02 0a 0 12a8: 30 20 30 30 20 30 30 20 0 00 00 12b0: 20 2e 55 47 2e 58 55 47 .UG.XUG 12b8: 2e 2e 2e 47 2e 2e 2e 2e ...G.... 12c0: 2e 0d 0a 0d 0a ..... Here is the relivent sections of my startxwin.sh script. I get the error if I use this script or startx. # Start the X Server. XWin -screen 0 1280 1024 -emulate3buttons 100 & # Start the twm window manager. twm & # Set a background color to hide that nasty X stipple. xsetroot -solid midnightblue # Start an xterm. #xterm -n xterm-1 -j -ls -sb -sl 500 -rightbar -geometry +361+0 -e bash & xterm -geometry 80x50+507+0 -bg black -fg green -sb -sl 2500 & xterm -geometry 80x20+765-18 -bg black -fg yellow -sb -sl 2500 & xterm -geometry 80x66+0+0 -name login -bg black -fg yellow -sb -sl 2500 & # Return from sh. exit Kent -- 'My Fellow Americans, Let's Roll' -- President George W. Bush From briangenisio@yahoo.com Mon Dec 17 09:01:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 09:01:00 -0000 Subject: After upgrading last night, Xfree no longer works. References: <3C1E215B.6020008@oneco.net> Message-ID: <20011217170031.22672.qmail@web20803.mail.yahoo.com> Hmmmm... I just upgraded cygwin, and Xfree still works. Have you downloaded the most recent versions of the XFree binaries? When you say it doesnt work, what do you mean? Does it start, and when you connect an app, it dies? Does it Segfault? What does it do? I would recommend the most recent Xfree binaries. Brian --- Kent Perrier wrote: > Last night, I upgraded my cygwin (primarially to get the bc utulity, but > setup upgraded several other things as well) and I find out this morning > that XFree no longer works. Has anyone else seen this? Here is the > info out of the event log: > Event Type: Information > Event Source: DrWatson > Event Category: None > Event ID: 4097 > Date: > 12/17/2001 > Time: > 10:35:04 AM > User: > N/A > Computer: > SEAWOLF > Description: > The application, , generated an application error The error occurred on > 12/17/2001 @ 10:35:04.670 The exception generated was c0000005 at > address 00000000 () > Data: > 0000: 0d 0a 0d 0a 41 70 70 6c ....Appl > 0008: 69 63 61 74 69 6f 6e 20 ication > 0010: 65 78 63 65 70 74 69 6f exceptio > 0018: 6e 20 6f 63 63 75 72 72 n occurr > 0020: 65 64 3a 0d 0a 20 20 20 ed:.. > 0028: 20 20 20 20 20 41 70 70 App > 0030: 3a 20 20 28 70 69 64 3d : (pid= > 0038: 31 34 38 34 29 0d 0a 20 1484).. > 0040: 20 20 20 20 20 20 20 57 W > 0048: 68 65 6e 3a 20 31 32 2f hen: 12/ > 0050: 31 37 2f 32 30 30 31 20 17/2001 > 0058: 40 20 31 30 3a 33 35 3a @ 10:35: > 0060: 30 34 2e 36 37 30 0d 0a 04.670.. > 0068: 20 20 20 20 20 20 20 20 > 0070: 45 78 63 65 70 74 69 6f Exceptio > 0078: 6e 20 6e 75 6d 62 65 72 n number > 0080: 3a 20 63 30 30 30 30 30 : c00000 > 0088: 30 35 20 28 61 63 63 65 05 (acce > 0090: 73 73 20 76 69 6f 6c 61 ss viola > 0098: 74 69 6f 6e 29 0d 0a 0d tion)... > 00a0: 0a 2a 2d 2d 2d 2d 3e 20 .*----> > 00a8: 53 79 73 74 65 6d 20 49 System I > 00b0: 6e 66 6f 72 6d 61 74 69 nformati > 00b8: 6f 6e 20 3c 2d 2d 2d 2d on <---- > 00c0: 2a 0d 0a 20 20 20 20 20 *.. > 00c8: 20 20 20 43 6f 6d 70 75 Compu > 00d0: 74 65 72 20 4e 61 6d 65 ter Name > 00d8: 3a 20 53 45 41 57 4f 4c : SEAWOL > 00e0: 46 0d 0a 20 20 20 20 20 F.. > 00e8: 20 20 20 55 73 65 72 20 User > 00f0: 4e 61 6d 65 3a 20 6b 70 Name: kp > 00f8: 65 72 72 69 65 72 0d 0a errier.. > 0100: 20 20 20 20 20 20 20 20 > 0108: 4e 75 6d 62 65 72 20 6f Number o > 0110: 66 20 50 72 6f 63 65 73 f Proces > 0118: 73 6f 72 73 3a 20 31 0d sors: 1. > 0120: 0a 20 20 20 20 20 20 20 . > 0128: 20 50 72 6f 63 65 73 73 Process > 0130: 6f 72 20 54 79 70 65 3a or Type: > 0138: 20 78 38 36 20 46 61 6d x86 Fam > 0140: 69 6c 79 20 36 20 4d 6f ily 6 Mo > 0148: 64 65 6c 20 38 20 53 74 del 8 St > 0150: 65 70 70 69 6e 67 20 31 epping 1 > 0158: 30 0d 0a 20 20 20 20 20 0.. > 0160: 20 20 20 57 69 6e 64 6f Windo > 0168: 77 73 20 32 30 30 30 20 ws 2000 > 0170: 56 65 72 73 69 6f 6e 3a Version: > 0178: 20 35 2e 30 0d 0a 20 20 5.0.. > 0180: 20 20 20 20 20 20 43 75 Cu > 0188: 72 72 65 6e 74 20 42 75 rrent Bu > 0190: 69 6c 64 3a 20 32 31 39 ild: 219 > 0198: 35 0d 0a 20 20 20 20 20 5.. > 01a0: 20 20 20 53 65 72 76 69 Servi > 01a8: 63 65 20 50 61 63 6b 3a ce Pack: > 01b0: 20 32 0d 0a 20 20 20 20 2.. > 01b8: 20 20 20 20 43 75 72 72 Curr > 01c0: 65 6e 74 20 54 79 70 65 ent Type > 01c8: 3a 20 55 6e 69 70 72 6f : Unipro > 01d0: 63 65 73 73 6f 72 20 46 cessor F > 01d8: 72 65 65 0d 0a 20 20 20 ree.. > 01e0: 20 20 20 20 20 52 65 67 Reg > 01e8: 69 73 74 65 72 65 64 20 istered > 01f0: 4f 72 67 61 6e 69 7a 61 Organiza > 01f8: 74 69 6f 6e 3a 20 4f 6e tion: On > 0200: 65 20 43 6f 6d 6d 75 6e e Commun > 0208: 69 74 79 2c 20 49 6e 63 ity, Inc > 0210: 0d 0a 20 20 20 20 20 20 .. > 0218: 20 20 52 65 67 69 73 74 Regist > 0220: 65 72 65 64 20 4f 77 6e ered Own > 0228: 65 72 3a 20 4f 6e 65 20 er: One > 0230: 43 6f 6d 6d 75 6e 69 74 Communit > 0238: 79 2c 20 49 6e 63 0d 0a y, Inc.. > 0240: 0d 0a 2a 2d 2d 2d 2d 3e ..*----> > 0248: 20 54 61 73 6b 20 4c 69 Task Li > 0250: 73 74 20 3c 2d 2d 2d 2d st <---- > 0258: 2a 0d 0a 20 20 20 30 20 *.. 0 > 0260: 49 64 6c 65 2e 65 78 65 Idle.exe > 0268: 0d 0a 20 20 20 38 20 53 .. 8 S > 0270: 79 73 74 65 6d 2e 65 78 ystem.ex > 0278: 65 0d 0a 20 31 36 34 20 e.. 164 > 0280: 73 6d 73 73 2e 65 78 65 smss.exe > 0288: 0d 0a 20 31 39 32 20 63 .. 192 c > 0290: 73 72 73 73 2e 65 78 65 srss.exe > 0298: 0d 0a 20 32 31 32 20 77 .. 212 w > 02a0: 69 6e 6c 6f 67 6f 6e 2e inlogon. > 02a8: 65 78 65 0d 0a 20 32 34 exe.. 24 > 02b0: 34 20 73 65 72 76 69 63 4 servic > 02b8: 65 73 2e 65 78 65 0d 0a es.exe.. > 02c0: 20 32 35 36 20 6c 73 61 256 lsa > 02c8: 73 73 2e 65 78 65 0d 0a ss.exe.. > 02d0: 20 33 38 38 20 73 76 63 388 svc > 02d8: 68 6f 73 74 2e 65 78 65 host.exe > 02e0: 0d 0a 20 34 34 34 20 73 .. 444 s > 02e8: 76 63 68 6f 73 74 2e 65 vchost.e > 02f0: 78 65 0d 0a 20 34 39 32 xe.. 492 > 02f8: 20 73 70 6f 6f 6c 73 76 spoolsv > 0300: 2e 65 78 65 0d 0a 20 35 .exe.. 5 > 0308: 36 34 20 41 74 69 32 65 64 Ati2e > 0310: 76 78 78 2e 65 78 65 0d vxx.exe. > 0318: 0a 20 36 31 36 20 68 74 . 616 ht > 0320: 74 70 64 2e 65 78 65 0d tpd.exe. > 0328: 0a 20 36 32 30 20 69 6e . 620 in > 0330: 65 74 64 33 32 2e 65 78 etd32.ex > 0338: 65 0d 0a 20 36 33 32 20 e.. 632 > 0340: 68 74 74 70 64 2e 65 78 httpd.ex > 0348: 65 0d 0a 20 36 34 34 20 e.. 644 > 0350: 68 74 74 70 64 2e 65 78 httpd.ex > 0358: 65 0d 0a 20 36 38 30 20 e.. 680 > 0360: 6a 63 6f 6e 66 69 67 64 jconfigd > 0368: 4e 54 2e 65 78 65 0d 0a NT.exe.. > 0370: 20 36 39 36 20 68 6a 61 696 hja > 0378: 76 61 77 2e 65 78 65 0d vaw.exe. > 0380: 0a 20 37 30 34 20 6e 61 . 704 na > 0388: 76 61 70 73 76 63 2e 65 vapsvc.e > 0390: 78 65 0d 0a 20 37 31 32 xe.. 712 > 0398: 20 6a 61 76 61 77 2e 65 javaw.e > 03a0: 78 65 0d 0a 20 37 36 38 xe.. 768 > 03a8: 20 6e 70 73 73 76 63 2e npssvc. > 03b0: 65 78 65 0d 0a 20 37 39 exe.. 79 > 03b8: 32 20 72 65 67 73 76 63 2 regsvc > 03c0: 2e 65 78 65 0d 0a 20 38 .exe.. 8 > 03c8: 32 30 20 4d 53 54 61 73 20 MSTas > 03d0: 6b 2e 65 78 65 0d 0a 20 k.exe.. > 03d8: 38 34 34 20 57 69 6e 4d 844 WinM > 03e0: 67 6d 74 2e 65 78 65 0d gmt.exe. > 03e8: 0a 20 34 30 30 20 61 6c . 400 al > 03f0: 65 72 74 73 76 63 2e 65 ertsvc.e > 03f8: 78 65 0d 0a 20 35 36 38 xe.. 568 > 0400: 20 45 78 70 6c 6f 72 65 Explore > 0408: 72 2e 65 78 65 0d 0a 31 r.exe..1 > 0410: 32 35 36 20 41 74 69 70 256 Atip > 0418: 74 61 78 78 2e 65 78 65 taxx.exe > 0420: 0d 0a 31 32 38 30 20 64 ..1280 d > 0428: 61 65 6d 6f 6e 2e 65 78 aemon.ex > 0430: 65 0d 0a 20 39 39 32 20 e.. 992 > 0438: 52 65 61 6c 50 6c 61 79 RealPlay > 0440: 2e 65 78 65 0d 0a 31 32 .exe..12 > 0448: 36 38 20 57 69 6e 61 6d 68 Winam > 0450: 70 61 2e 65 78 65 0d 0a pa.exe.. > 0458: 31 33 30 30 20 64 69 72 1300 dir > 0460: 65 63 74 63 64 2e 65 78 ectcd.ex > 0468: 65 0d 0a 31 33 30 38 20 e..1308 > 0470: 43 72 65 61 74 65 43 44 CreateCD > 0478: 2e 65 78 65 0d 0a 31 33 .exe..13 > 0480: 32 30 20 4d 6f 7a 69 6c 20 Mozil > 0488: 6c 61 2e 65 78 65 0d 0a la.exe.. > 0490: 31 33 32 38 20 6e 61 76 1328 nav > 0498: 61 70 77 33 32 2e 65 78 apw32.ex > 04a0: 65 0d 0a 31 33 34 38 20 e..1348 > 04a8: 41 63 72 6f 54 72 61 79 AcroTray > 04b0: 2e 65 78 65 0d 0a 31 34 .exe..14 > 04b8: 30 30 20 6d 73 6f 66 66 00 msoff > 04c0: 69 63 65 2e 65 78 65 0d ice.exe. > 04c8: 0a 20 39 38 30 20 53 65 . 980 Se > 04d0: 63 75 72 65 43 52 54 2e cureCRT. > 04d8: 65 78 65 0d 0a 20 35 33 exe.. 53 > 04e0: 32 20 63 6d 64 2e 65 78 2 cmd.ex > 04e8: 65 0d 0a 20 38 38 30 20 e.. 880 > 04f0: 62 61 73 68 2e 65 78 65 bash.exe > 04f8: 0d 0a 31 30 39 32 20 63 ..1092 c > 0500: 6d 64 2e 65 78 65 0d 0a md.exe.. > 0508: 31 35 34 38 20 62 61 73 1548 bas > 0510: 68 2e 65 78 65 0d 0a 31 h.exe..1 > 0518: 34 36 38 20 73 68 2e 65 468 sh.e > 0520: 78 65 0d 0a 31 34 38 34 xe..1484 > 0528: 20 74 77 6d 2e 65 78 65 twm.exe > 0530: 0d 0a 20 37 35 36 20 64 .. 756 d > 0538: 72 77 74 73 6e 33 32 2e rwtsn32. > 0540: 65 78 65 0d 0a 31 35 34 exe..154 > 0548: 30 20 64 72 77 74 73 6e 0 drwtsn > 0550: 33 32 2e 65 78 65 0d 0a 32.exe.. > 0558: 31 34 37 36 20 64 72 77 1476 drw > 0560: 74 73 6e 33 32 2e 65 78 tsn32.ex > 0568: 65 0d 0a 31 35 31 36 20 e..1516 > 0570: 78 74 65 72 6d 2e 65 78 xterm.ex > 0578: 65 0d 0a 31 35 37 36 20 e..1576 > 0580: 78 74 65 72 6d 2e 65 78 xterm.ex > 0588: 65 0d 0a 31 35 39 36 20 e..1596 > 0590: 78 74 65 72 6d 2e 65 78 xterm.ex > 0598: 65 0d 0a 20 20 20 30 20 e.. 0 > === message truncated === __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From kent.perrier@oneco.net Mon Dec 17 09:32:00 2001 From: kent.perrier@oneco.net (Kent Perrier) Date: Mon, 17 Dec 2001 09:32:00 -0000 Subject: After upgrading last night, Xfree no longer works. References: <20011217170031.22672.qmail@web20803.mail.yahoo.com> Message-ID: <3C1E2B90.1010106@oneco.net> On 12/17/2001 11:00 AM, Brian Genisio wrote: > Hmmmm... I just upgraded cygwin, and Xfree still works. Have you downloaded > the most recent versions of the XFree binaries? When you say it doesnt work, > what do you mean? Does it start, and when you connect an app, it dies? Does > it Segfault? What does it do? I would recommend the most recent Xfree > binaries. As a followup, I cannot upgrade due to the extract.exe that I unbzip2'd crashes as well. Do I have to uninstall cygwin and reinstall to get a working XFree? Kent -- 'My Fellow Americans, Let's Roll' -- President George W. Bush From derk.steggewentz@autodesk.com Mon Dec 17 09:45:00 2001 From: derk.steggewentz@autodesk.com (derk.steggewentz@autodesk.com) Date: Mon, 17 Dec 2001 09:45:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: As Bo Zhang pointed out in an earlier posting, Solaris (at least version 8) has a fontserver running by default on port 7100. So there is no need to start one on your own on the solaris box. This should do it (on your win/xfree box): ./XWin.exe -query -from -fp tcp/:7100 To make text look a bit nicer on my windows box I changed some font settings on the Solaris box, in the file /usr/dt/config/C/Xresources. Derk -----Original Message----- From: Julien Gilles [ mailto:jgilles@glmultimedia.com ] Sent: December 17, 2001 7:58 AM To: cygwin-xfree@cygwin.com Subject: Re: XDMCP - Solaris hangs derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & Thanks a lot ! Should be added to the faq... (Q 4.9, http:????cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) -- Julien Gilles From briangenisio@yahoo.com Mon Dec 17 09:51:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Mon, 17 Dec 2001 09:51:00 -0000 Subject: After upgrading last night, Xfree no longer works. References: <3C1E2B90.1010106@oneco.net> Message-ID: <20011217175010.73127.qmail@web20807.mail.yahoo.com> Well, if extract.exe is also "crashing" (Still dont know what "crashing" means), I assume your cygwin install is having some problems. I updated to the most recent dll 3 hours ago, and it all works for me, with the most recent version of extract.exe. If your cygwin install is having some problems, it is very easy to re-install it. Simply move your directory to a different name for a temporary backup, and re-install the cygwin binaries. Thats all I can say with what little I know about your problem. Brian --- Kent Perrier wrote: > On 12/17/2001 11:00 AM, Brian Genisio wrote: > > > Hmmmm... I just upgraded cygwin, and Xfree still works. Have you > downloaded > > the most recent versions of the XFree binaries? When you say it doesnt > work, > > what do you mean? Does it start, and when you connect an app, it dies? > Does > > it Segfault? What does it do? I would recommend the most recent Xfree > > binaries. > > > As a followup, I cannot upgrade due to the extract.exe that I unbzip2'd > crashes as well. Do I have to uninstall cygwin and reinstall to get a > working XFree? > > > Kent > -- > 'My Fellow Americans, Let's Roll' > > -- President George W. Bush __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From freeweb@nyckelpiga.de Mon Dec 17 10:08:00 2001 From: freeweb@nyckelpiga.de (Gerrit P. Haase) Date: Mon, 17 Dec 2001 10:08:00 -0000 Subject: Imlib patch updated, gtk patch extended (was:Re: esound.dll [gnome patches]) References: <72FAAE98015DD511B42600D0B747AC7F01471DCD@kipling.br.itc.hp.com> Message-ID: <17226821887.20011217190259@familiehaase.de> Hallo ex1), 2001-12-17 17:26:45, du schriebst: > Please do not send me personal mail re cygwin. I have put my gnome patches > at: > http://website.lineone.net/~steven_obrien > Sorry, no binaries, no ftp. I've updated the Imlib patch to version 1.9.11 and extended the gtk+ patch because I had problems building Imlib and gnomelibs because the configure couldn't figure out the version of gtk and some other undefined references, the new patches are replacements for the patches at Steven's site. All these patches doesn't work OOTB with libtool because the installed lib......la isn't correct after installation!!! The libs get installed in the correct ./bin directory, but libtool searches in ./lib , they all needs to be changed to look like this: # The name that we can dlopen(3). dlname='../bin/cygglib.dll' instead of: # The name that we can dlopen(3). dlname='cygglib.dll' This is NOT adressed by these patches!!! The NEW patches are attached, get the others at the site quoted above. Gerrit -- begin signature: =^..^= end signature Attachment: gtk-1.2.10-cygwin.patch Description: Binary data Attachment: imlib-1.9.11-cygwin.patch Description: Binary data -------------- next part -------------- A non-text attachment was scrubbed... Name: gtk-1.2.10-cygwin.patch Type: text/x-diff Size: 16687 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: imlib-1.9.11-cygwin.patch Type: text/x-diff Size: 11101 bytes Desc: not available URL: From JohanJvanWyk@eaton.com Mon Dec 17 14:13:00 2001 From: JohanJvanWyk@eaton.com (vanWyk, Johan J) Date: Mon, 17 Dec 2001 14:13:00 -0000 Subject: Xfree86 4.1.0 and Cygwin 1.3.6 Message-ID: <4E32301CBBCBFA47B7B4F91DBE97B5ED024A9656@pitpasmb06.ch.etn.com> I installed Cygwin 1.3.6 and tried to install Xfree86 4.1.0, the latest binaries. I get the following error "Could not find cygncurses5.dll" When I search the disk, I can only find cygncurses6.dll Is Xfree85 4.1.0 not compatible with Cygwin 1.3.6? thanks Johan From x-odus@iname.com Mon Dec 17 15:24:00 2001 From: x-odus@iname.com (Psyon) Date: Mon, 17 Dec 2001 15:24:00 -0000 Subject: libW11: xlib for native Windows programs Message-ID: <3C1E7EEA.2010808@iname.com> I have started a project to create an Xlib for Cygwin that does not require an X server. If anyone is intersted in contributing, please visit my project page http://www.sf.net/projects/libw11 contact me if you can help at all. --Don Becker From dwh@ovro.caltech.edu Mon Dec 17 17:00:00 2001 From: dwh@ovro.caltech.edu (David Hawkins) Date: Mon, 17 Dec 2001 17:00:00 -0000 Subject: XDVI problem Message-ID: Hi, I've just setup Cygwin/Latex/XFree86 and am trying to setup xdvi. I followed the previous threads to correct the xdvi makefile such that make, and make install, appear to work correctly. However, if I startx and try to open a dvi document, xdvi spits out some errors, and then dies. The errors I am seeing are: fcntl F_SETOWN (xdvi): Invalid argument setsid: Not owner - mktexpk --mfmode cx --bdpi 300 --mag 'magstep(0)' --dpi 300 cmtt10 '>&3' xdvi: fcntl F_SETOWN: Invalid argument xdvi: ! Out of memory (reallocating 134195587 bytes). I checked on the ownership flags of /usr/bin/xdvi.exe and they look ok. What have I overlooked / screwed up!? Thanks for the help. Regards, Dave Hawkins Caltech dwh@ovro.caltech.edu From spetreolle@yahoo.fr Mon Dec 17 18:41:00 2001 From: spetreolle@yahoo.fr (Sylvain Petreolle) Date: Mon, 17 Dec 2001 18:41:00 -0000 Subject: Xfree86 4.1.0 and Cygwin 1.3.6 References: <4E32301CBBCBFA47B7B4F91DBE97B5ED024A9656@pitpasmb06.ch.etn.com> Message-ID: <20011218024149.54693.qmail@web10104.mail.yahoo.com> Johan, http://cygwin.com/ml/cygwin-announce/2001/msg00124.html --- "vanWyk, Johan J" a ????crit????: > I installed Cygwin 1.3.6 and tried to install > Xfree86 4.1.0, the latest > binaries. > I get the following error "Could not find > cygncurses5.dll" > When I search the disk, I can only find > cygncurses6.dll > > Is Xfree85 4.1.0 not compatible with Cygwin 1.3.6? > > thanks > > Johan ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran????ais ! Yahoo! Courrier : http://courrier.yahoo.fr From Heatherx19@aol.com Mon Dec 17 21:22:00 2001 From: Heatherx19@aol.com (Heatherx19@aol.com) Date: Mon, 17 Dec 2001 21:22:00 -0000 Subject: Hey there Message-ID: <200112180548.VAA00566@modi.greco.com> Below is the result of your feedback form. It was submitted by (Heatherx19@aol.com) on Monday, December 17, 2001 at 21:48:51 --------------------------------------------------------------------------- message: Hi, my name is Heather and I am a 19 year old female from San Diego, California. Ever since my 14th birthday, I have been really sexually active, but I am still a virgin. Now I am 19 and away from home, attending school at San Diego State University and sharing a dorm with four of my girlfriends and are all VERY turned on to meet a guy and satisfy ALL of his pleasures. To see our sexy pictures we took just last week and to meet some other couples, go to our site
< a href=" http://www.lllil.com/heather/livewebcam" ;> http://www.lllil.com/heather/livewebcam


-1011 --------------------------------------------------------------------------- From Heather19x@aol.com Mon Dec 17 21:23:00 2001 From: Heather19x@aol.com (Heather19x@aol.com) Date: Mon, 17 Dec 2001 21:23:00 -0000 Subject: hey hey Message-ID: <200112180521.VAA14254@svs10.virtualis.com> Abajo esta la informaci????n que se nos envi????. Fue enviada por (Heather19x@aol.com) el Lunes, Diciembre 17, 2001 a las 21:21:45 --------------------------------------------------------------------------- message: Hi, my name is Heather and I am a 19 year old female from San Diego, California. Ever since my 14th birthday, I have been really sexually active, but I am still a virgin. Now I am 19 and away from home, attending school at San Diego State University and sharing a dorm with four of my girlfriends and are all VERY turned on to meet a guy and satisfy ALL of his pleasures. To see our sexy pictures we took just last week and to meet some other couples, go to our site
< a href=" http://www.lllil.com/heather/livewebcam" ;> http://www.lllil.com/heather/livewebcam


-1101 --------------------------------------------------------------------------- From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 05:32:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 05:32:00 -0000 Subject: HowTo: Submit Patches? Message-ID: Hi, I have found some incompatibilities with current CVS and cygwin port (eg. freetype2 build). To who should I send these patches? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From ssiddiqi@inspirepharm.com Tue Dec 18 05:41:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Tue, 18 Dec 2001 05:41:00 -0000 Subject: HowTo: Submit Patches? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831C4@ins-exch.inspirepharm.com> Sorry, I was out of country, therefore absent from list. You can send patches to patches@xfree86.org. Suhaib > -----Original Message----- > From: Alexander Gottwald > [ mailto:alexander.gottwald@informatik.tu-chemnitz.de ] > Sent: Tuesday, December 18, 2001 8:31 AM > To: cygwin-xfree@sources.redhat.com > Subject: HowTo: Submit Patches? > > > Hi, > > I have found some incompatibilities with current CVS and > cygwin port (eg. freetype2 build). To who should I send these patches? > > bye > ago > -- > Alexander.Gottwald@informatik.tu-chemnitz.de > http://www.gotti.org ICQ: 126018723 > phone: +49 3725 349 80 80 mobile: +49 172 7854017 > From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 05:52:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 05:52:00 -0000 Subject: HowTo: Submit Patches? References: <7F2B9185F0196F44B59990759B91B1C26831C4@ins-exch.inspirepharm.com> Message-ID: On Tue, 18 Dec 2001, Suhaib Siddiqi wrote: > You can send patches to patches@xfree86.org. Ok, I'll do this if I'm back home. Thanks bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From alanh@fairlite.demon.co.uk Tue Dec 18 05:53:00 2001 From: alanh@fairlite.demon.co.uk (Alan Hourihane) Date: Tue, 18 Dec 2001 05:53:00 -0000 Subject: HowTo: Submit Patches? References: Message-ID: <20011218135307.F2504@fairlite.demon.co.uk> On Tue, Dec 18, 2001 at 02:30:58PM +0100, Alexander Gottwald wrote: > Hi, > > I have found some incompatibilities with current CVS and cygwin port > (eg. freetype2 build). To who should I send these patches? > patch@xfree86.org Alan. From ewu@eskimo.com Tue Dec 18 09:15:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Tue, 18 Dec 2001 09:15:00 -0000 Subject: Does XWin.exe work on laptops' display? Message-ID: Hello, 1. Does it work on LCD Active Matrix Displays? 2. Are there any potential pitfalls ? 3. Are the XWin.exe codes generic - perhaps I should say display device independent? Thanks, Ew PS. Welcome back Suhaib! From briangenisio@yahoo.com Tue Dec 18 09:25:00 2001 From: briangenisio@yahoo.com (Brian Genisio) Date: Tue, 18 Dec 2001 09:25:00 -0000 Subject: Does XWin.exe work on laptops' display? References: Message-ID: <20011218172349.61645.qmail@web20802.mail.yahoo.com> Sure... XFree/Cygwin uses the MS Windows GDI to do it's display, so there is no worry about the hardware. Brian --- Enoch Wu wrote: > Hello, > > 1. Does it work on LCD Active Matrix Displays? > 2. Are there any potential pitfalls ? > 3. Are the XWin.exe codes generic - perhaps I should say display device > independent? > > Thanks, > > Ew > > PS. Welcome back Suhaib! > __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From jnorth@intrado.com Tue Dec 18 09:26:00 2001 From: jnorth@intrado.com (North, Jason) Date: Tue, 18 Dec 2001 09:26:00 -0000 Subject: Does XWin.exe work on laptops' display? Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have a Toshiba Satellite Pro 4300 and it works quite happily on mine. I run at 1024x768 using the default window manager (no KDE or any such just yet), and have encountered no trouble. JCN - -----Original Message----- From: Enoch Wu [ mailto:ewu@eskimo.com ] Sent: Tuesday, December 18, 2001 10:15 AM To: cygwin-xfree@cygwin.com Subject: Does XWin.exe work on laptops' display? Hello, 1. Does it work on LCD Active Matrix Displays? 2. Are there any potential pitfalls ? 3. Are the XWin.exe codes generic - perhaps I should say display device independent? Thanks, Ew PS. Welcome back Suhaib! -----BEGIN PGP SIGNATURE----- Version: PGP 7.1 iQA/AwUBPB98JtpXLiVQHNMSEQJxsgCgjXieTnI3MKa7HRMD2bb6pygNl8UAn3qr vc3e0uwPvcWEuyYusx6/EKe9 =c6Zb -----END PGP SIGNATURE----- From alexander.gottwald@informatik.tu-chemnitz.de Tue Dec 18 09:29:00 2001 From: alexander.gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Tue, 18 Dec 2001 09:29:00 -0000 Subject: Does XWin.exe work on laptops' display? References: Message-ID: On Tue, 18 Dec 2001, Enoch Wu wrote: > Hello, > > 1. Does it work on LCD Active Matrix Displays? yes, it does. > 2. Are there any potential pitfalls ? Don't know any > 3. Are the XWin.exe codes generic - perhaps I should say display device > independent? Yes, they are. Actually it relys only on piece of memory where it draw the window. This region is managed by directx. So you can say XWin will work if the DirectX interface is supported by the videocard drivers. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 From pirabhur@hotmail.com Tue Dec 18 18:49:00 2001 From: pirabhur@hotmail.com (Pirabhu Raman) Date: Tue, 18 Dec 2001 18:49:00 -0000 Subject: telnet problem Message-ID: hi, I downloaded and installed cygwin for windows 2000. everything is working fine except that I culdnt fnd the telnet program in the directory /usr/bin. Can anybody tell what is the package i have to download/install to use telnet. Then I cant find the gcc compiler in the cygwin. Is it nt built in the package. If not what package shud i download to have gcc running? Thanks in advance Pirabhu _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp . From syver-en@online.no Tue Dec 18 19:47:00 2001 From: syver-en@online.no (Syver Enstad) Date: Tue, 18 Dec 2001 19:47:00 -0000 Subject: Newbie, cygncurses5.dll not found Message-ID: When starting Xfree86 on windows 2000 with cygwin I get the message from xterm. It is obiously an old version of Xterm that doesn't use the cygncurses6.dll that is provided with the version of cygwin that I have installed. Does anybody know what to do to solve this problem? -- Vennlig hilsen Syver Enstad From spetreolle@yahoo.fr Tue Dec 18 19:54:00 2001 From: spetreolle@yahoo.fr (Sylvain Petreolle) Date: Tue, 18 Dec 2001 19:54:00 -0000 Subject: telnet problem References: Message-ID: <20011219035356.15118.qmail@web10102.mail.yahoo.com> Hi Pirabhu, telnet is in the package inetutils. Bye, Sylvain --- Pirabhu Raman a ????crit????: > > > hi, > I downloaded and installed cygwin for windows > 2000. everything is working > fine except that I culdnt fnd the telnet program in > the directory /usr/bin. > Can anybody tell what is the package i have to > download/install to use > telnet. Then I cant find the gcc compiler in the > cygwin. Is it nt built in > the package. If not what package shud i download to > have gcc running? > Thanks in advance > Pirabhu > > > _________________________________________________________________ > Get your FREE download of MSN Explorer at > http://explorer.msn.com/intl.asp . > ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran????ais ! Yahoo! Courrier : http://courrier.yahoo.fr From ten@sureteacher.co.jp Tue Dec 18 20:32:00 2001 From: ten@sureteacher.co.jp (tenplus) Date: Tue, 18 Dec 2001 20:32:00 -0000 Subject: email for email Message-ID: <200112190431.fBJ4VA707156@mail.pc5.so-net.ne.jp> ????????????????????????????????????????????????????????????????????????????????????????????????m(_ _)m????@????????????????????????????????????e????????????v????????????X????????????\????????????????????????????B ????????????????????????????????????e????????????v????????????X( http://www.sureteacher.com )????????????\????????????????????????????B ????j????????????E????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????B ????????????????????????????????????????????T????C????g????????????????????????????{????l10????????????????????A????O????l10????????????????????A ????r????f????I10????????????????????????????T????C????g????????????????????I????????????????????????????????????B ????E????j????????????p????????????????????????????????????[????????????????????????????????????n????????????????????????????????????^????A ????E????????????????????p????????????????????h????????????I???????????????????????????????????????????????????????????????????????????????????????????????????????? ????@????????????????????????????????????????????????????B ????@ ????@????{????????????????????I????????????????????????????????????????????????????I ????e????????????v????????????X????????????F????l???????????????????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????B ????????????????????????????????????????????????????????????????????T????C????g???????????????????????????????? ????????????i????????????????????????????????????T????????????????????????????B ????T????????????v????????????????????????????p????????????????????????????????????????????????????????????????????????????A ????????????L????A????h????????????X????????????????????????????????????????????????????????????????????????????????????????????B http://www.sureteacher.com ????????????????????????????[????????????????DM????????????????????B ???????????????????????????????????????????????????????????????????????? ????????????????????????????[????????????????????????????????????????????????????j????????????????????????????????????????????????????????????????????????????????????????????????????????????????????H ????????????????????f????????????????????????????????????????????????????????????????????????????d????????????????????????????l????????????\????????????????????????????????????????????B From flognat@flognat.myip.org Wed Dec 19 01:17:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Wed, 19 Dec 2001 01:17:00 -0000 Subject: Newbie, cygncurses5.dll not found References: Message-ID: / Syver Enstad wrote: | When starting Xfree86 on windows 2000 with cygwin I get the message | from xterm. It is obiously an old version of Xterm that doesn't use | the cygncurses6.dll that is provided with the version of cygwin that I | have installed. | | Does anybody know what to do to solve this problem? Select ncurses5 to download and install from setup... /Andy -- The eye of the beholder rests on the beauty! From sharminkabir@hotmail.com Wed Dec 19 13:58:00 2001 From: sharminkabir@hotmail.com (Sharmin Kabir) Date: Wed, 19 Dec 2001 13:58:00 -0000 Subject: bz2 help, I need...... Message-ID: Hello: I have been trying to install XFree86 in my computer, I installed cygwin in the mean time. I am having problem to extract "extract.exe.bz2" file. I put it with other required files in /tmp. Then, from the bash prompt, I execute the command bunzip2 extract.exe.bz2 . I gave me the message bunzip2: Can't open input file ...: No such file or directory. I found bzip2.exe, bunzip2.exe files in c:\cygwin\bin folder!!!! There are still there!!!!! I also found in /etc/profile the following path: PATH="/usr/local/bin:/usr/bin:/bin:$PATH" In the autoexce.bat file, I wrote: set PATH=c:\cygwin\bin But I gave me the same message!! Could you pl help me out? Whwre is the problems???????????? Thanks a lot in advance. Sharmin _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com From spetreolle@yahoo.fr Wed Dec 19 14:12:00 2001 From: spetreolle@yahoo.fr (Sylvain Petreolle) Date: Wed, 19 Dec 2001 14:12:00 -0000 Subject: telnet problem References: Message-ID: <20011219221223.50102.qmail@web10102.mail.yahoo.com> Do you use the standard setup.exe when installing packages ? If so, you will find inetutils package in the net section. (Perhaps you could have to update your setup.exe from www.cygwin.com/setup.exe) --- Pirabhu Raman a ????crit????: > hi, > Thanx for the immediate reply. But I culdnt find > the inetutils directory > in the packages I downloaded or in the site where I > downloaded from. Can you > please let me know the exact location of the > package. > Thanx in advance > Pirabhu > > > > > _________________________________________________________________ > Join the world????s largest e-mail service with MSN > Hotmail. > http://www.hotmail.com > ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran????ais ! Yahoo! Courrier : http://courrier.yahoo.fr From syhua3000@9dns.net Wed Dec 19 22:33:00 2001 From: syhua3000@9dns.net (°¢Ä¾) Date: Wed, 19 Dec 2001 22:33:00 -0000 Subject: 200MÖ÷»ú+1¸ö¹ú¼ÊÓòÃû=150Ôª Message-ID: <3d30e0a744cabd1de40bb436c3f90606@NO-ID-FOUND.mhonarc.org> ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? ????????????????????????????????????????????????,????????????????????????????????????????????????????????????????????????( http://www.21cmm.com ) ????????CMM????????????????( http://www.21cmm.com )???????????????????????????????????????????????????????????????? --------------------------------------------------------------- ????????????????! 200M????????HTML????????????????+1????????????????????????????????????????????????????????????????150????????/???????? 200M????????????????????????????????????????ASP????????+200M????????????????????????????????+30M Access????????????????????????+1???????????????????????????????????????????????? ????????????????350????????/???????? ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? http://www.9dns.net ???????? ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????! ???????????????????????????????????????????????????????????????????????????????????????????????????????????????? ???????????????? ????????????????????????????????????????0592-5567026 ???????????????????????????????????????????????? QQ????????75522737 From JoopvandeWege@mococo.nl Thu Dec 20 01:21:00 2001 From: JoopvandeWege@mococo.nl (Joop) Date: Thu, 20 Dec 2001 01:21:00 -0000 Subject: XDMCP - Solaris hangs Message-ID: <20011220101405.E8ED.JOOPVANDEWEGE@mococo.nl> derk.steggewentz@autodesk.com writes: > I had the problem of not being able to setup a XDMCP connection to Solaris from cygwin-xfree. A black screen popped up with the hourglass cursor and nothing else happend. I noticed that there are a few similar problems posted on the list but couldn't find an answer. I solved the problem for me and I assume that the other posted problems are similar if not the same. The problem turned out to be that fonts needed by the CDE login screen are not part of the cygwin-xfree distribution and therefore couldn't be found on my windows machine. What I did was starting up a font server on the Solaris box. You can do it on the command line or in a terminal window on the Sun Box using something like: > /usr/X/bin/xfs -config /usr/openwin/lib/X11/fontserver.cfg -port 7101 > > Now if you invoke XWin on cygwin/xfree you have to tell it to use the font server instead of the local fonts: > > ./XWin.exe -query -from -fp tcp/:7101 && ./xhost + & >Should be added to the faq... >(Q 4.9, http:????cygwin.com/xfree/docs/faq/cygwin-xfree-faq.html#q-remote-solaris ) I would to like to add the following: I had no problems connecting to Solaris8 using Reflection but using Xfree didn't work except on one server. After alot of playing around I seemed to have found the problem. If LOCALE is set to anything else then C then I can't connect using XFree. Solution: copy (onSolaris box) /usr/dt to /etc/dt and edit Xconfig, change LANG from undef to C. Joop -- Joop From cyu@mail.5151.jp Thu Dec 20 01:45:00 2001 From: cyu@mail.5151.jp (cyu@mail.5151.jp) Date: Thu, 20 Dec 2001 01:45:00 -0000 Subject: =?ISO-2022-JP?B?GyRCJE8hPCQkISobKEI=?= Message-ID: <20011220094430176.00000.103.cyu@yamato.mail.5151.jp> $B=w@-$KM%$7$$=P2q$$(B $B!|=w@-%9%?%C%U$_$s$J$G:n$C$?=w@-$KM%$7$$%5%$%H$@$h!#(B $B$b$A$m$sL5NA!#$"$J$?$,K>$`H`$r8+$D$1$F$M!#(B $B?75!G=Ek:\!y(B http://cyu.5151.jp/ $BCK@-$OL5NA%]%$%s%H From stefan.meister@volkswagen.de Thu Dec 20 02:36:00 2001 From: stefan.meister@volkswagen.de (Meister, Stefan) Date: Thu, 20 Dec 2001 02:36:00 -0000 Subject: x3270 Client available? Message-ID: <478C61465902D411A05A0008C791F4840E1A5831@devwagwodx0007.wob.vw.de> Hello, is there a 3270 Client available for cygwin xfree86? kind regards Stefan Meister From ssiddiqi@inspirepharm.com Thu Dec 20 05:01:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 20 Dec 2001 05:01:00 -0000 Subject: bz2 help, I need...... Message-ID: <7F2B9185F0196F44B59990759B91B1C26831CF@ins-exch.inspirepharm.com> > Hello: > I have been trying to install XFree86 in my computer, I > installed cygwin in the mean time. I am having problem to > extract "extract.exe.bz2" file. I put it with other required > files in /tmp. Then, from the bash prompt, I execute the > command bunzip2 extract.exe.bz2 . I gave me the message > > bunzip2: Can't open input file ...: No such file or directory. This error is not because bunzip2 is not found, rather you are executing bunzip2 is unable to find extract.exe.b2. Make sure you execute bunzip2 command from a directory where you put extract.exe.bz2 Suhaib > > I found bzip2.exe, bunzip2.exe files in c:\cygwin\bin > folder!!!! There are still there!!!!! > > > I also found in /etc/profile the following path: > > PATH="/usr/local/bin:/usr/bin:/bin:$PATH" > > > In the autoexce.bat file, I wrote: > > set PATH=c:\cygwin\bin > > But I gave me the same message!! > > Could you pl help me out? Whwre is the problems???????????? > > Thanks a lot in advance. > > Sharmin > > > > _________________________________________________________________ > Chat with friends online, try MSN Messenger: http://messenger.msn.com > From garlicsalt2@yahoo.com Thu Dec 20 10:12:00 2001 From: garlicsalt2@yahoo.com (Aaron J. Outhier) Date: Thu, 20 Dec 2001 10:12:00 -0000 Subject: I goofed, what now? Message-ID: <20011220181055.40718.qmail@web9603.mail.yahoo.com> Hello all: I previously wrote to you, see if this looks familiar: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. To: cygwin-xfree at xfree86 dot cygwin dot com Subject: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. From: "Aaron J. Outhier" Date: Fri, 19 Oct 2001 15:36:16 -0700 (PDT) You'll have to forgive me for following-up on this so late, I was still waiting for a reply in my IN-BOX. Apparently, things don't work like that with you guys. I just read your reply to my message. Now, my question is: Since I've already used the wrong procedure for installing, and since the older files are probably gone on your server, and since I recently deleted all of my older packages on my system to make more disk space, etc. What do I do now? Is there any way to recover the required older packages, and run setup as per your instructions in your previous reply? Find out tomorrow, same Bat-Time, Same Bat-Channel. (Same Bat-Joke ;) ===== Sincerely, Aaron J. Outhier garlicsalt2@yahoo.com __________________________________________________ Do You Yahoo!? Check out Yahoo! Shopping and Yahoo! Auctions for all of your unique holiday gifts! Buy at http://shopping.yahoo.com or bid at http://auctions.yahoo.com From ssiddiqi@inspirepharm.com Thu Dec 20 10:14:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 20 Dec 2001 10:14:00 -0000 Subject: I goofed, what now? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831D0@ins-exch.inspirepharm.com> > -----Original Message----- > From: Aaron J. Outhier [ mailto:garlicsalt2@yahoo.com ] > Sent: Thursday, December 20, 2001 1:11 PM > To: cygwin-xfree@xfree.cygwin.com > Subject: I goofed, what now? > > > Hello all: > I previously wrote to you, see if this looks familiar: > > Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT fails when run. > > To: cygwin-xfree at xfree86 dot cygwin dot com > Subject: Cygwin ver. 1.3.3 + XFREE86 4.1.0: STARTXWIN.BAT > fails when run. > From: "Aaron J. Outhier" > Date: Fri, 19 Oct 2001 15:36:16 -0700 (PDT) > > You'll have to forgive me for following-up on this so > late, I was still waiting for a reply in my IN-BOX. > > Apparently, things don't work like that with you guys. I > just read your reply to my message. Now, my question is: > Since I've already used the wrong procedure for installing, > and since the older files are probably gone on your server, > and since I recently deleted all of my older packages on my > system to make more disk space, etc. What do I do now? Is > there any way to recover the required older packages, and run > setup as per your instructions in your previous reply? Yes, you can recover older packages from your backup tape,CD or whatever you use as a backup media. Unfortunately we do not backup users PCs. Or reintsall everything Suhaib > > Find out tomorrow, same Bat-Time, Same Bat-Channel. (Same > Bat-Joke ;) > > > ===== > Sincerely, > Aaron J. Outhier > garlicsalt2@yahoo.com > > __________________________________________________ > Do You Yahoo!? > Check out Yahoo! Shopping and Yahoo! Auctions for all of > your unique holiday gifts! Buy at http://shopping.yahoo.com > or bid at http://auctions.yahoo.com > From alan.gauld@freenet.co.uk Thu Dec 20 14:51:00 2001 From: alan.gauld@freenet.co.uk (alan.gauld@freenet.co.uk) Date: Thu, 20 Dec 2001 14:51:00 -0000 Subject: Newbie xfree user cant start Message-ID: <22515839010729@mailth4.freenet.co.uk> I installed cygwin and xfree OK on my Win98 box, everything worked OK. I installed it on my XP Home edition box and not OK. I followed the instructions and everything seemed oK until I tried running startxwin.bat. The XWin window opens OK but then I get can't connect to display messages for twm and xterm. The bat file says I need a newer DLL but I have the latest one available (1.3.6-6) What now? Alan G. From flognat@flognat.myip.org Fri Dec 21 10:55:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 21 Dec 2001 10:55:00 -0000 Subject: bz2 help, I need...... References: Message-ID: Problem solved, seems to be that he used Netscape to download the stuff, is it mentioned somewhere to be careful with using netscape for downloading the files?? /Andy / "Sharmin Kabir" wrote: | Hello: | I have been trying to install XFree86 in my computer, I installed cygwin in | the mean time. I am having problem to extract "extract.exe.bz2" file. I put | it with other required files in /tmp. Then, from the bash prompt, I execute | the command bunzip2 extract.exe.bz2 . I gave me the message | | bunzip2: Can't open input file ...: No such file or directory. [...] -- The eye of the beholder rests on the beauty! From alan.gauld@freenet.co.uk Fri Dec 21 11:44:00 2001 From: alan.gauld@freenet.co.uk (alan.gauld@freenet.co.uk) Date: Fri, 21 Dec 2001 11:44:00 -0000 Subject: Sorry cancel last message Message-ID: <19445329657037@mailth4.freenet.co.uk> I found the FAQ - I had ZoneAlarm running. Sorry to waste bandwidth! Alan g From Gauthierp@anrad.com Fri Dec 21 11:54:00 2001 From: Gauthierp@anrad.com (Gauthier Philippe) Date: Fri, 21 Dec 2001 11:54:00 -0000 Subject: X server freeze on terminal bell Message-ID: I am having problem with a new installation of XFree and Cygwin. The X server freezes each time there should be a terminal bell. It does not seem to be related to the terminal (xterm, login, rxvt). I tried both the latest stable XWin and the development version. XFree installed perfectly with no errors. I am running on Windows 2000 Professionnal. It might be related to wrong termcap configurations, but I am unsure this would crash the server. I did not edit /etc/termcap as the Xinstall.sh script explains. Does someone have any clue about this? Thanks, Philippe Gauthier gauthierp at anrad dot com From flognat@flognat.myip.org Fri Dec 21 12:28:00 2001 From: flognat@flognat.myip.org (Andrew Markebo) Date: Fri, 21 Dec 2001 12:28:00 -0000 Subject: X server freeze on terminal bell References: Message-ID: Just a quick thought.. it is not something like the terminal bell telling windows to fire off a sound to the soundcard?? Does the soundcard work fine, what is beep set to in the control panel?? What soundcard? /Andy / Gauthier Philippe wrote: | I am having problem with a new installation of XFree and Cygwin. The X | server freezes each time there should be a terminal bell. It does not seem | to be related to the terminal (xterm, login, rxvt). -- The eye of the beholder rests on the beauty! From Gauthierp@anrad.com Fri Dec 21 12:41:00 2001 From: Gauthierp@anrad.com (Gauthier Philippe) Date: Fri, 21 Dec 2001 12:41:00 -0000 Subject: X server freeze on terminal bell Message-ID: For now, the bell works when I open a terminal directly from cygwin works fine. Windows is set to play ding.wav, and works too. The soundcard is a SoundMAX OEM from Analog Devices, Inc. It seems to be very specific to X. Nedit can make the X server crash too. -----Original Message----- From: Andrew Markebo [ mailto:flognat@flognat.myip.org ] Sent: December 21, 2001 3:28 PM To: Gauthier Philippe Cc: 'cygwin-xfree@cygwin.com' Subject: Re: X server freeze on terminal bell Just a quick thought.. it is not something like the terminal bell telling windows to fire off a sound to the soundcard?? Does the soundcard work fine, what is beep set to in the control panel?? What soundcard? /Andy / Gauthier Philippe wrote: | I am having problem with a new installation of XFree and Cygwin. The X | server freezes each time there should be a terminal bell. It does not | seem to be related to the terminal (xterm, login, rxvt). -- The eye of the beholder rests on the beauty! From jgraves9876@yahoo.com Fri Dec 21 23:32:00 2001 From: jgraves9876@yahoo.com (Joel) Date: Fri, 21 Dec 2001 23:32:00 -0000 Subject: Current Events and the End Times - so what? Message-ID: <419.437246.99498796jgraves9876@yahoo.com> I can show conclusively in the scriptures that Jesus Christ is coming back WITHIN A CERTAIN DATE RANGE in the near future. Yes, people do not know the Day or the Hour of Jesus' return - I agree, "No one knows about that day or hour, " Matthew 24:27. or, 1 Thessalonians 5:1, "Now, brothers, about times and dates we do not need to write to you, for you know very well that the day of the Lord will come like a thief in the night." But consider this: Luke 21:31, "Even so, when you see these things happening, you know that the kingdom of God is near." What things? These things I explain in the booklet. I Thessalonians 5:2, 4-6, "For you know very well that the day of the Lord will come like a thief in the night. But you, brothers, are not in darkness so that this day should surprise you like a thief. You are all sons of the light and sons of the day. We do not belong to the night or to the darkness. So then, let us no be like others, who are asleep, but let us be alert and self- controlled." Revelations 3:3, "But if you do not wake up, I will come like a thief, and you will not know at what time I will come to you." Matthew 24:43, "But understand this: If the owner of the house had known at what time of the night the thief was coming, he would have kept watch and would not have let his house be broken into. So you also must be ready..." So, the believers in Jesus Christ will know He is coming very soon, if they are awake and ready. And I can show you the signs AND JUST HOW SOON! I have prepared a comprehensive study on the return of Jesus Christ, in a 32-page booklet, which I will email to you for $1.00 U.S., or postal mailed to you for $3.00. Please send cash or check (preferred) to: Summit Bay 4820 Yelm Hwy, S.E. Suite B, #215, Olympia, WA 98503-4903. The Summit Bay ministry is focused on current events and the biblical end times - a "top to bottom" Berean-study of the Word. Be sure to include your email address on the envelope or a piece of paper and the study will be emailed to you promptly. Also included in the study: What is the Rapture? Why is there a Rapture? When will it take place? Who will not be in the Rapture? Israel at war with Russia. The Great Falling Away. The Mark of the Beast. Who does not have the Mark? And more. Thank you and God bless, Joel Graves - Bible Scholar From jm@cmex.org Sun Dec 23 12:37:00 2001 From: jm@cmex.org (Jonathan Marks) Date: Sun, 23 Dec 2001 12:37:00 -0000 Subject: Open Office build 641b Message-ID: <3C26409B.1060702@cmex.org> Hi, Running XWin-Test53 on a Win2k box, OpenOffice installed and runs fine on a Linux box. Running Xwin on the Win2k box using it as a thin client to the Linux box - Can't run Open Office. The splash screen loads, followed by a small dialog box outline. The contents of the dialog box does not get displayed before it and the spash screen disappears. Hope I've given enough info to reproduce this. Happy Holls Jonathan From Ralf.Habacker@freenet.de Mon Dec 24 00:24:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Mon, 24 Dec 2001 00:24:00 -0000 Subject: xserver crashes on kde 2.2.1's kate Message-ID: <003a01c18c53$f935a060$205c07d5@BRAMSCHE> Hi, while porting kde 2.2.1 to cygwin I recognized a xserver crash while starting kate. The error is: Fatal server error: negative sized edge? Any ideas ? Regards Ralf From kaskalis@uom.gr Tue Dec 25 03:24:00 2001 From: kaskalis@uom.gr (Theodore H. Kaskalis) Date: Tue, 25 Dec 2001 03:24:00 -0000 Subject: Openoffice antialiasing fails Message-ID: Greetings from a newcommer. As the subject implies, I cannot get XWin.exe to remotely display openoffice windows with antialias support. I am trying to connect to a Linux machine with Openoffice 641b installed. If I turn off antialias from Openoffice (SAL_ANTIALIAS_DISABLE=true) everything works. I already checked the RENDER support of XWin and tried kde or simple xterm antialiasing successfully. Any hints? Thank you in advance for any help given. Theodore H. Kaskalis From sharad_sp@yahoo.com Tue Dec 25 16:45:00 2001 From: sharad_sp@yahoo.com (sharad patil) Date: Tue, 25 Dec 2001 16:45:00 -0000 Subject: Question @ cygwin Message-ID: <20011226004545.94246.qmail@web12906.mail.yahoo.com> Hi I have install cygwin on my PC. I got WIN ME os. I have install XWin too. But I am not able to logon as root. How to create the root logon for cygwin. and how to use the XWin. Thanks Sharad __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From ewu@eskimo.com Tue Dec 25 23:10:00 2001 From: ewu@eskimo.com (Enoch Wu) Date: Tue, 25 Dec 2001 23:10:00 -0000 Subject: Question @ cygwin References: <20011226004545.94246.qmail@web12906.mail.yahoo.com> Message-ID: <15401.30273.774000.696155@gargle.gargle.HOWL> Win ME does not have root logon. As far as I know from my brief exposure to Win ME, it does not have a root account. Why do you need to logon as root? You should be able to run XWin without a root account. EW sharad patil writes: > I have install cygwin on my PC. I got WIN ME os. I > have install XWin too. But I am not able to logon as > root. How to create the root logon for cygwin. and > how to use the XWin. > > Thanks > Sharad > > __________________________________________________ > Do You Yahoo!? > Send your FREE holiday greetings online! > http://greetings.yahoo.com > From machicaoeduardo@yahoo.com Wed Dec 26 09:52:00 2001 From: machicaoeduardo@yahoo.com (Eduardo Machicao) Date: Wed, 26 Dec 2001 09:52:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <20011226175248.99295.qmail@web20403.mail.yahoo.com> I am trying to install OpenDx for Cygwin-Xfree86 under Windows 98. All was according to the instructions given in http://cygwin.com . I used the file called "setup.exe" for Cygwin. For OpenDx, I used "opendx-4.1.3-2-WIN32-setup.zip". I start the X server using "sh /usr/X11r6/bin/startxwin.sh". Typing "dx" at the $ prompt the next message appears: "exec: /usr/local/dx/bin/dxworker: not found" And calling the *.bat files Buider, Editor, Menu, Prompter, Tutor appears: "CYGWIN1.DLL: Not Found" (But I can see "dxworker" and "cygwin.dll" in "c:\cygwin\usr\local\dx\bin\" and "c:\cygwin\bin\" respectively). The output for the "mount" command at the $ prompt is: $ mount C:\cygwin\bin on /usr/bin type user (binmode) C:\cygwin\lib on /usr/lib type user (binmode) C:\cygwin on / type user (binmode) c: on /cygdrive/c type user (binmode,noumount) d: on /cygdrive/d type user (binmode,noumount) And my "cygwin.bat" file is: @echo on C: chdir \cygwin\bin SET oldpath=%path% SET PATH=C:\cygwin\bin;C:\cygwin\usr\X11r6\bin;C:\cygwin\usr\local\bin;%oldpath%PATH bash --login -i I know similar questions were posted here before. Thanks for any help, Eduardo Machicao Valencia __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From machicaoeduardo@yahoo.com Wed Dec 26 10:10:00 2001 From: machicaoeduardo@yahoo.com (Eduardo Machicao) Date: Wed, 26 Dec 2001 10:10:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <20011226181040.10271.qmail@web20408.mail.yahoo.com> I am sorry, In my original message I was wrong in a line. I installed "opendx-4.1.3-cygwin.tar.gz" NOT "opendx-4.1.3-2-WIN32-setup.zip" Thanks, Eduardo Machicao Valencia __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From arnstein@panix.com Thu Dec 27 11:46:00 2001 From: arnstein@panix.com (David Arnstein) Date: Thu, 27 Dec 2001 11:46:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <200112271946.fBRJkBS05072@panix1.panix.com> Hello, I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 Professional, service pack 2. I am able to start the Xserver using the startxwin.sh script provided with the cygwin-xfree86 distribution. I can start an xterm client locally, too. I would like to start an xterm client on a remote machine and have it display on my local cygwin-xfree86 X server. However, this does not work. It appears that the X server is not even listening to port 6000. If I shut down the cygwin-xfree86 X server, and start the MicroImages MIX X server, then the same remote machine is able to display an xterm client on the local MIX X server. This indicates that networking is functional on my local machine, generally speaking. Any suggestions? Thanks. -- David Arnstein arnstein@pobox.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:17:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:17:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E6@ins-exch.inspirepharm.com> Did you set DISPLAY on remote machine to display on your local machine? Suhaib > -----Original Message----- > From: David Arnstein [ mailto:arnstein@panix.com ] > Sent: Thursday, December 27, 2001 2:46 PM > To: cygwin-xfree@cygwin.com > Subject: Remote client cannot display on local xfree-cygwin > > Hello, > > I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 > Professional, service pack 2. > > I am able to start the Xserver using the startxwin.sh script provided > with the cygwin-xfree86 distribution. I can start an xterm client > locally, too. > > I would like to start an xterm client on a remote machine and have it > display on my local cygwin-xfree86 X server. However, this does not > work. It appears that the X server is not even listening to port > 6000. > > If I shut down the cygwin-xfree86 X server, and start the MicroImages > MIX X server, then the same remote machine is able to display an xterm > client on the local MIX X server. This indicates that networking is > functional on my local machine, generally speaking. > > Any suggestions? Thanks. > -- > David Arnstein > arnstein@pobox.com From arnstein@panix.com Thu Dec 27 12:21:00 2001 From: arnstein@panix.com (David Arnstein) Date: Thu, 27 Dec 2001 12:21:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: <7F2B9185F0196F44B59990759B91B1C26831E6@ins-exch.inspirepharm.com> Message-ID: <200112272021.fBRKL7O10902@panix1.panix.com> > Did you set DISPLAY on remote machine to display on your local machine? Yes. As I stated in my original post, I am able to connect when I use a different X server. Therefore, the remote client must be configured correctly. -- David Arnstein arnstein@pobox.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:24:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:24:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E7@ins-exch.inspirepharm.com> > -----Original Message----- > From: David Arnstein [ mailto:arnstein@panix.com ] > Sent: Thursday, December 27, 2001 3:21 PM > Cc: cygwin-xfree@cygwin.com > Subject: Re: Remote client cannot display on local xfree-cygwin > > > Did you set DISPLAY on remote machine to display on your local > machine? > > Yes. As I stated in my original post, I am able to connect when I use > a different X server. Therefore, the remote client must be configured > correctly. > -- > David Arnstein > arnstein@pobox.com How about from xterm telnet to remote machine then try export DISPLAY= And see if you can display From ssiddiqi@inspirepharm.com Thu Dec 27 12:56:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:56:00 -0000 Subject: Help: OpenDx-Cygwin-Xfree86 Message-ID: <7F2B9185F0196F44B59990759B91B1C26831E9@ins-exch.inspirepharm.com> If I remember correctly, "not found" can be for two reasons: 1) you may have a text mounted cygwin disk or your dxworker script may be in DOS format. 2) you also need to install tcsh for cygwin else edit dxworker script Suhaib > -----Original Message----- > From: Eduardo Machicao [ mailto:machicaoeduardo@yahoo.com ] > Sent: Wednesday, December 26, 2001 12:53 PM > To: cygwin-xfree@cygwin.com > Subject: Help: OpenDx-Cygwin-Xfree86 > > I am trying to install OpenDx for Cygwin-Xfree86 under > Windows 98. All was according to the instructions > given in http://cygwin.com . I used the file called > "setup.exe" for Cygwin. For OpenDx, I used > "opendx-4.1.3-2-WIN32-setup.zip". > I start the X server using "sh > /usr/X11r6/bin/startxwin.sh". > Typing "dx" at the $ prompt the next message appears: > > "exec: /usr/local/dx/bin/dxworker: not found" > > And calling the *.bat files Buider, Editor, Menu, > Prompter, Tutor appears: > > "CYGWIN1.DLL: Not Found" > > (But I can see "dxworker" and "cygwin.dll" in > "c:\cygwin\usr\local\dx\bin\" and "c:\cygwin\bin\" > respectively). > > The output for the "mount" command at the $ prompt is: > > $ mount > C:\cygwin\bin on /usr/bin type user (binmode) > C:\cygwin\lib on /usr/lib type user (binmode) > C:\cygwin on / type user (binmode) > c: on /cygdrive/c type user (binmode,noumount) > d: on /cygdrive/d type user (binmode,noumount) > > And my "cygwin.bat" file is: > > @echo on > C: > chdir \cygwin\bin > SET oldpath=%path% > SET > PATH=C:\cygwin\bin;C:\cygwin\usr\X11r6\bin;C:\cygwin\usr\local\bin;%ol > dpath%PATH > bash --login -i > > I know similar questions were posted here before. > > Thanks for any help, > > Eduardo Machicao Valencia > > > __________________________________________________ > Do You Yahoo!? > Send your FREE holiday greetings online! > http://greetings.yahoo.com From ssiddiqi@inspirepharm.com Thu Dec 27 12:57:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Thu, 27 Dec 2001 12:57:00 -0000 Subject: Openoffice antialiasing fails Message-ID: <7F2B9185F0196F44B59990759B91B1C26831EA@ins-exch.inspirepharm.com> I do not have access to Open Office therefore I cannot test what actually is going on. Looks like two different users have same problems Suhaib > -----Original Message----- > From: Theodore H. Kaskalis [ mailto:kaskalis@uom.gr ] > Sent: Tuesday, December 25, 2001 6:29 AM > To: cygwin-xfree@xfree.cygwin.com > Subject: Openoffice antialiasing fails > > Greetings from a newcommer. > > As the subject implies, I cannot get XWin.exe to remotely > display openoffice windows with antialias support. > I am trying to connect to a Linux machine with Openoffice 641b > installed. > > If I turn off antialias from Openoffice (SAL_ANTIALIAS_DISABLE=true) > everything works. > > I already checked the RENDER support of XWin and tried kde or > simple xterm antialiasing successfully. > > Any hints? > > Thank you in advance for any help given. > Theodore H. Kaskalis From puve@yahoo.com Thu Dec 27 15:51:00 2001 From: puve@yahoo.com (Kevin Puvi Gunaratnam) Date: Thu, 27 Dec 2001 15:51:00 -0000 Subject: Displaying Problem Message-ID: <20011227235136.49301.qmail@web11501.mail.yahoo.com> Hi, My computer is setup in a home network. The main computer contains an ethernet card connected to internet with ip address something like 24.100.101.12 and a wireless card with ip address 192.168.0.1. My other computer (client) contains a wireless card with ip address 192.168.0.2. When I want to display an xwindows program running on a remote server what value should I set the DISPLAY variable on the remote session?. When I set the DISPLAY variable to 24.100.101.12:0.0 I was able to display the session on my main computer but it is not able to display in the clien computer giving an error that it cannot open the display. Any help on this matter is really appreciated. Thank you. Kevin. __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From ssou@engin.umich.edu Thu Dec 27 17:37:00 2001 From: ssou@engin.umich.edu (Socheat Sou) Date: Thu, 27 Dec 2001 17:37:00 -0000 Subject: Terminal Problems Message-ID: Just downloaded and installed the most recent version of Cygwin (1.3.6), using Blackbox, and I'm having problems with rxvt. Whenever I start it up, this is the prompt I get: " \[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ " On previous installations of cygwin, it would normally be " @ $ " On top of that, I can't backspace, or do tab completion. I've tried changing my TERM system variable from xterm, to rxvt, to rxvt-cygwin-native. None of that fixed my problem. Anybody know what's going on? I would use xterm, but for some reason, I can't get it to run from blackbox's menu. If I try running it from the menu, I get (in the console): "xterm: Error 14, errno 2: No such file or directory" I know xterm is in my path, because if I type 'xterm' in rxvt within blackbox, it'll startup with no problems. Thanks, Socheat From robert.collins@itdomain.com.au Thu Dec 27 17:43:00 2001 From: robert.collins@itdomain.com.au (Robert Collins) Date: Thu, 27 Dec 2001 17:43:00 -0000 Subject: Terminal Problems References: Message-ID: <049d01c18f41$01aa78c0$0200a8c0@lifelesswks> What is BlackBox? Rob From gp@familiehaase.de Thu Dec 27 23:57:00 2001 From: gp@familiehaase.de (Gerrit P. Haase) Date: Thu, 27 Dec 2001 23:57:00 -0000 Subject: Terminal Problems References: <049d01c18f41$01aa78c0$0200a8c0@lifelesswks> Message-ID: <154296405768.20011228085839@familiehaase.de> Hallo Robert, Am 2001-12-28 um 02:43 schriebst du: > What is BlackBox? Just a windowmanager (a good one, I use it too). I have no problems with it. > " > \[\033]0;\w\007 > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > $ > " I get this if I start `sh' instead of bash. $ sh \[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ bash Siebenschlaefer@LORELEY / $ Gerrit -- =^..^= mailto:gp@familiehaase.de From ssou@engin.umich.edu Fri Dec 28 08:17:00 2001 From: ssou@engin.umich.edu (Socheat Sou) Date: Fri, 28 Dec 2001 08:17:00 -0000 Subject: Terminal Problems References: <154296405768.20011228085839@familiehaase.de> Message-ID: Wonderful! That fixed it. In my blackbox menu file, I changed it to: 'rxvt -e bash' which fixes everything. Strangely though, on previous installations, I know I didn't have to do this. It just worked. Any way I can tell rxvt to start up using bash instead of sh by default, rather than specifying it in the menu file? I tried removing sh and symlinking sh to bash, but then I just get this prompt instead: "sh- Hallo Robert, > > Am 2001-12-28 um 02:43 schriebst du: > > > What is BlackBox? > > Just a windowmanager (a good one, I use it too). > I have no problems with it. > > > " > > \[\033]0;\w\007 > > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > > $ > > " > > I get this if I start `sh' instead of bash. > > $ sh > \[\033]0;\w\007 > \033[32m\]\u@\h \[\033[33m\w\033[0m\] > $ bash > > Siebenschlaefer@LORELEY / > $ > > Gerrit > -- > =^..^= mailto:gp@familiehaase.de > > From Alexander.Gottwald@informatik.tu-chemnitz.de Fri Dec 28 09:11:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 28 Dec 2001 09:11:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: <200112271946.fBRJkBS05072@panix1.panix.com> Message-ID: On Thu, 27 Dec 2001, David Arnstein wrote: > I would like to start an xterm client on a remote machine and have it > display on my local cygwin-xfree86 X server. However, this does not > work. It appears that the X server is not even listening to port > 6000. Do you have a firewall or VPN software installed? bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From arnstein@panix.com Fri Dec 28 09:20:00 2001 From: arnstein@panix.com (David Arnstein) Date: Fri, 28 Dec 2001 09:20:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: Message-ID: <200112281720.fBSHKHQ06622@panix3.panix.com> > Do you have a firewall or VPN software installed? Yes, I am using Norton Internet Security 2.0. My problem appears to involve this firewall. In order to properly configure this firewall, I need to identify the Cygwin/Xfree86 program(s) that do networking. I punched a hole through my firewall for XWin.exe, but this was not enough, for some reason. If I punch a hole through the firewall for any program using port 6000 (xserver) then the X server software seems to work. But I would prefer to identify the particular program(s) that access port 6000 and punch a special hole in the firewall just for these program(s). Any suggestions? Thanks to the group for your help! -- David Arnstein arnstein@pobox.com From ulvester@yahoo.com Fri Dec 28 09:38:00 2001 From: ulvester@yahoo.com (Richard Campbell) Date: Fri, 28 Dec 2001 09:38:00 -0000 Subject: Remote client cannot display on local xfree-cygwin Message-ID: <20011228173855.68086.qmail@web12108.mail.yahoo.com> >I would like to start an xterm client on a >remote machine and have it display on my >local cygwin-xfree86 X server. However, this >does not work. It appears that the X server >is not even listening to port 6000. If you can start a local xterm, but can't display remotely, have you checked the security settings (xfree86 is pretty restrictive by default)? Have you tried starting a local xterm, running "xhost +", then starting a remote session (without closing down the first local xterm)? What is the error message you see when trying to connect? -Richard. __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com From Alexander.Gottwald@informatik.tu-chemnitz.de Fri Dec 28 09:44:00 2001 From: Alexander.Gottwald@informatik.tu-chemnitz.de (Alexander Gottwald) Date: Fri, 28 Dec 2001 09:44:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: <200112281720.fBSHKHQ06622@panix3.panix.com> Message-ID: On Fri, 28 Dec 2001, David Arnstein wrote: > > Do you have a firewall or VPN software installed? > > Yes, I am using Norton Internet Security 2.0. My problem appears to > involve this firewall. > > In order to properly configure this firewall, I need to identify the > Cygwin/Xfree86 program(s) that do networking. I punched a hole > through my firewall for XWin.exe, but this was not enough, for some > reason. > If I punch a hole through the firewall for any program using port 6000 > (xserver) then the X server software seems to work. But I would > prefer to identify the particular program(s) that access port 6000 and > punch a special hole in the firewall just for these program(s). Any > suggestions? Any program that wants to connect to the xserver does networking. So I thinks it's better to allow port 6000 for all programs. If XWin is not running then no program can respond to "attacks" and if it's running then the xserver has it's own authentication protocol. bye ago -- Alexander.Gottwald@informatik.tu-chemnitz.de http://www.gotti.org ICQ: 126018723 phone: +49 3725 349 80 80 mobile: +49 172 7854017 4. Chemnitzer Linux-Tag http://www.tu-chemnitz.de/linux/tag/lt4 From x-odus@iname.com Fri Dec 28 14:18:00 2001 From: x-odus@iname.com (Psyon) Date: Fri, 28 Dec 2001 14:18:00 -0000 Subject: Remote client cannot display on local xfree-cygwin References: <200112271946.fBRJkBS05072@panix1.panix.com> Message-ID: <3C2CF022.7040906@iname.com> I dont know if this went through the first time or not... but did you use xhost to add the remote ip to the access list? David Arnstein wrote: >Hello, > >I just installed the latest cygwin and cygwin-xfree86 on Windows 2000 >Professional, service pack 2. > >I am able to start the Xserver using the startxwin.sh script provided >with the cygwin-xfree86 distribution. I can start an xterm client >locally, too. > >I would like to start an xterm client on a remote machine and have it >display on my local cygwin-xfree86 X server. However, this does not >work. It appears that the X server is not even listening to port >6000. > >If I shut down the cygwin-xfree86 X server, and start the MicroImages >MIX X server, then the same remote machine is able to display an xterm >client on the local MIX X server. This indicates that networking is >functional on my local machine, generally speaking. > >Any suggestions? Thanks. > From sharminkabir@hotmail.com Fri Dec 28 18:09:00 2001 From: sharminkabir@hotmail.com (Sharmin Kabir) Date: Fri, 28 Dec 2001 18:09:00 -0000 Subject: lesstif does not work in cygwin????? Message-ID: Hello: Coud someone pl help me? I am in big trouble! I have been trying to install lesstif in cygwin/win98. I will be really very much happy, if you help me out a little bit. I tried to install it like other packages in cygwin/win98, as bunzip2 lesstif-0.92.98.tar.bz2 tar xvf lesstif-0.92.98.tar Then I tried ./configure make make install But ./configure did not work in cygwin/XFree86!!! So what happened here? Could you pl help me out? I don't need to do ./configure, make and make install???? Sharmin _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From ssiddiqi@inspirepharm.com Fri Dec 28 18:15:00 2001 From: ssiddiqi@inspirepharm.com (Suhaib Siddiqi) Date: Fri, 28 Dec 2001 18:15:00 -0000 Subject: lesstif does not work in cygwin????? Message-ID: <7F2B9185F0196F44B59990759B91B1C26831EE@ins-exch.inspirepharm.com> Did you read reply to this message on LessTif mailing list? You posted same message there too and I replied. Suhaib > -----Original Message----- > From: Sharmin Kabir [ mailto:sharminkabir@hotmail.com ] > Sent: Friday, December 28, 2001 9:10 PM > To: cygwin-xfree@cygwin.com > Subject: lesstif does not work in cygwin????? > > > Hello: > Coud someone pl help me? I am in big trouble! I have been trying to > install > lesstif in cygwin/win98. I will be really very much happy, if you help > me > out a little bit. > > I tried to install it like other packages in cygwin/win98, as > > bunzip2 lesstif-0.92.98.tar.bz2 > tar xvf lesstif-0.92.98.tar > > Then I tried > > ./configure > make > make install > > But ./configure did not work in cygwin/XFree86!!! So what happened > here? > Could you pl help me out? I don't need to do ./configure, make and > make > install???? > > Sharmin > > > > _________________________________________________________________ > MSN Photos is the easiest way to share and print your photos: > http://photos.msn.com/support/worldwide.aspx From Ralf.Habacker@freenet.de Sat Dec 29 00:41:00 2001 From: Ralf.Habacker@freenet.de (Ralf Habacker) Date: Sat, 29 Dec 2001 00:41:00 -0000 Subject: KDE 2.2.1 alpha2 release for cygwin released Message-ID: <002601c19044$471997c0$0e6307d5@BRAMSCHE> Currently the alpha-2 release of KDE 2.2.1 available on http://kde-cygwin.sf.net . It contains kdelibs, kdebase and kdegames. Many applications are running like kwin, konsole, kdesktop, kicker, kate, khelpcenter, all games and other. Regards Ralf Habacker