Re: Headless server, no GUI, no idea

2014-05-11 Thread stiffyrabbit jr
I seem to have it working for now. I managed to make a sample program launch a OS X native dialog. I had to first create the xfvb service and chmod its permissions. Then I set the /etc/ennvironment/DISPLAY variable to my server IP address. With Tomcat started, I launched a repl, and opened

Re: Headless server, no GUI, no idea

2014-05-10 Thread stiffyrabbit jr
I was running it as displayed but, I get the same result under sudo. For sh, I can't resolve: $ su - sh -e /etc/init.d/xvfb start *su: invalid option -- 'e'* -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: Headless server, no GUI, no idea

2014-05-10 Thread stiffyrabbit jr
This line also fails: $ sudo sh -e /etc/init.d/xvfb start *sh: 0: Can't open /etc/init.d/xvfb* -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are

Re: Headless server, no GUI, no idea

2014-05-10 Thread Atamert Ölçgen
When you use sudo or su, I don't think you need sh (or another shell). On Sat, May 10, 2014 at 7:35 PM, stiffyrabbit jr deliverebay...@googlemail.com wrote: This line also fails: $ sudo sh -e /etc/init.d/xvfb start *sh: 0: Can't open /etc/init.d/xvfb* -- You received this message

Re: Headless server, no GUI, no idea

2014-05-10 Thread stiffyrabbit jr
And it doesn't work, using sudo. Can anybody break me out of this cycle? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient

Re: Headless server, no GUI, no idea

2014-05-09 Thread Stuart Sierra
This sounds more like a problem with remote access to X-Windows (the Unix graphical back-end) than a Clojure-specific problem. You might find some helpful answers in Ubuntu docs, forums, or chat rooms. -S On Friday, May 9, 2014 6:57:26 AM UTC-4, stiffyrabbit jr wrote: Hi, What should my

Re: Headless server, no GUI, no idea

2014-05-09 Thread Dave Ray
I'm not exactly clear what you're trying to do, but I had similar problems with running Seesaw tests on Travis CI. Here's the settings I used to work around it: https://github.com/daveray/seesaw/blob/develop/.travis.yml Hope this helps, Dave On Fri, May 9, 2014 at 10:52 AM, Stuart Sierra

Re: Headless server, no GUI, no idea

2014-05-09 Thread Sean Corfield
Indeed. The OP contacted me offlist and I suggested running a virtual framebuffer for X11 and sent them a link. Sean On May 9, 2014, at 10:52 AM, Stuart Sierra the.stuart.sie...@gmail.com wrote: This sounds more like a problem with remote access to X-Windows (the Unix graphical back-end)

Re: Headless server, no GUI, no idea

2014-05-09 Thread stiffyrabbit jr
And I thank you both. I was advised to set the display: *export DISPLAY=:99.0*I'm just wrestling with the line *sh -e /etc/init.d/xvfb start* which returns: sh: 0: Can't open /etc/init.d/xvfb My machine reports that *xvfb is already the newest version but, *I get the same response. I

Re: Headless server, no GUI, no idea

2014-05-09 Thread Atamert Ölçgen
Are you running this as a superuser? (su or sudo) On Sat, May 10, 2014 at 1:03 AM, stiffyrabbit jr deliverebay...@googlemail.com wrote: And I thank you both. I was advised to set the display: *export DISPLAY=:99.0*I'm just wrestling with the line *sh -e /etc/init.d/xvfb start* which