Re: ssh help with X11Forwarding
On Mon, 13 Apr 2015 16:49:02 +0530 Hrishikesh Murukkathampoondi wrote: > $ xterm & > [1] 29542 > $ xterm: Xt error: Can't open display: > xterm: DISPLAY is not set > did you install xauth program? if not, try to install it and try again.
Re: openbsd x2goclient
On Thu, 19 Feb 2015 12:20:38 +0400 Joseph Oficre wrote: > But when i try to connect i get "segmentation fault". Core file > attached below. Can someone help me to solve it, please? > this list is not allowed to attach a file. put it somewhere else, and share the url here. > [demime 1.01d removed an attachment of type application/octet-stream > which had a name of x2goclient.core]
Re: MEDION S4222 UMTS stick not recognized
On Fri, 2 Jan 2015 12:26:53 +0100 Ingo Feinerer wrote: > The manual of the stick claims that "Linux 2.6" (or newer) is > supported (if this is of any help). > this need "usb mode switch" under linux, searching on google there no solution yet even compiling from source for openbsd.
Re: Xorg fails PIII agp
On Fri, 12 Dec 2014 07:03:56 -0430 elvis fuentes wrote: > [demime 1.01d removed an attachment of type application/octet-stream > which had a name of LogXorg5.6] > > [demime 1.01d removed an attachment of type application/octet-stream > which had a name of dmesg54] > > [demime 1.01d removed an attachment of type application/octet-stream > which had a name of Xorg54Log] > > [demime 1.01d removed an attachment of type application/octet-stream > which had a name of dmesg5.6] Your attachment is removed by list manager. Copy paste inline within your email...
Re: fastcgi support in httpd(8)
On Sat, 22 Nov 2014 20:53:51 +1100 Riley Baird wrote: > A script as simple as the below brings up this error, but it has been > tested with other scripts: > > #!/usr/bin/perl > print "Hello!" > Try this: ---begin--- #!/usr/bin/perl print "Content-Type: text/html\n\n"; print "Hello!"; ---end---