The command below works in IRB but does not work from inside a Ruby program.
DISPLAY=:5 nohup firefox youtube.com &
In irb it successfully returns:
nohup: redirecting stderr to stdout
When called from a Ruby program within backticks ("`") it returns:
** (firefox:12402): WARNING **: Could not connect: Connection refused
** (firefox:12470): CRITICAL **: unable to create '/var/www/.cache/dconf'; dconf will not work properly.
Xlib: extension "RANDR" missing on display ":5".
Failed to stat home directory /var/www: No such file or directory
(firefox:12470): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
Failed to connect to socket /tmp/dbus-989cWYOeP6: Connection refused
/usr/bin/env DISPLAY=:5 nohup ...as your command, in order to handle the environment variable correctly. – d11wtq May 6 '12 at 3:41