Re: Following update to XWin or xorg-server: changed syntax to get a xterm terminal window
Michael DePaulo <[email protected]> Wed, 10 Jun 2015 07:37:29 -0400
| Newsgroups | gmane.os.cygwin.xfree |
|---|---|
| Message-ID | <CAMKht8jui05HnCu4a4vYXRo9by=hjH518BoMBmxrprvBAnAfhA@mail.gmail.com> |
On Wed, Jun 10, 2015 at 7:28 AM, Fergus Daly <[email protected]> wrote: > For ages I used > XWin -nolock -nolisten local -multiwindow & > xterm -display localhost:0.0 > to get a xterm terminal. > Following recent updates I get a fatal error: "Cannot establish any listening sockets." > In the past, updates to XWin have sometimes led to similar difficulties, but I have always managed to iterate to a new successful joint syntax > XWin <arguments> > xterm <arguments> > but this time I am totally stymied. > Can anybody offer me a working syntax please? > Thank you. > Fergus By default, XWin 1.17 no longer listens on TCP sockets, only on unix domain sockets. https://www.cygwin.com/ml/cygwin-announce/2015-06/msg00003.html However, "-nolisten local" disables unix domain sockets., So to use unix domain sockets: XWin -nolock -multiwindow & xterm -display :0.0 Or to keep using TCP sockets: XWin -nolock -nolisten local -listen tcp -multiwindow & xterm -display localhost:0.0 -Mike -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://x.cygwin.com/docs/ FAQ: http://x.cygwin.com/docs/faq/