View Single Post
Saturn's Avatar
Posts: 1,648 | Thanked: 2,122 times | Joined on Mar 2007 @ UNKLE's Never Never Land
#9
Originally Posted by Kieron View Post
JonWW, another problem...

I've tried what you've said doing the following:



But its still not running as root. If I manually paste it in Xterm, it doesn't work either. If I type 'root' first, then type it, it works. Get what I mean?

What can I do to get around this?

Thanks again.
Put your code in a script which starts like:
Code:
#!/bin/sh

# gain superuser rights.

if [ `id -u` != 0 ] ; then
    exec sudo gainroot <<EOF
exec sh $0 $*
EOF
	exit $?
fi   

# put your code below
make it executable and you will be able to call it as user.

Cheers
 

The Following 4 Users Say Thank You to Saturn For This Useful Post: