Ubuntu 9.04 Root Terminal (Entry Nr. 496, by user 1 | edit) |
|
|
With Ubuntu 9.04 all of a sudden you cannot start the root terminal from the Gnome menu any more. To fix this, use this command in your application starter:
gksu /some/where/root_terminal.sh
and put this into root_terminal.sh:
#!/bin/bash
if [ "$EUID" = "0" ] ; then
eval `dbus-launch --sh-syntax --exit-with-session`
/usr/lib/libgconf2-4/gconfd-2&
fi
exec /usr/bin/gnome-terminal $*
|
|
|
Create a new entry at this position
|
|
|