![]() |
2007-12-26
, 11:05
|
Posts: 148 |
Thanked: 20 times |
Joined on Sep 2007
|
#11
|
![]() |
2007-12-26
, 22:27
|
Posts: 30 |
Thanked: 0 times |
Joined on Mar 2007
|
#12
|
![]() |
2007-12-29
, 01:42
|
Posts: 160 |
Thanked: 7 times |
Joined on Nov 2007
|
#13
|
![]() |
2008-01-04
, 01:21
|
Posts: 41 |
Thanked: 7 times |
Joined on Dec 2007
|
#14
|
![]() |
2008-01-04
, 01:44
|
Posts: 24 |
Thanked: 7 times |
Joined on Dec 2007
|
#15
|
![]() |
2008-01-04
, 01:46
|
|
Posts: 693 |
Thanked: 502 times |
Joined on Jul 2007
|
#16
|
![]() |
2008-01-04
, 01:54
|
|
Posts: 1,674 |
Thanked: 171 times |
Joined on Mar 2007
@ Anderson, IN
|
#17
|
![]() |
2008-01-04
, 22:05
|
Posts: 41 |
Thanked: 7 times |
Joined on Dec 2007
|
#18
|
![]() |
2008-01-05
, 02:22
|
Posts: 67 |
Thanked: 6 times |
Joined on Dec 2007
|
#19
|
![]() |
2008-01-05
, 04:59
|
Posts: 12 |
Thanked: 0 times |
Joined on Aug 2007
@ Seattle,WA
|
#20
|
how can i make it so i can start up emelfm2 in root with out having to type it in xterm everytime.
user ALL = NOPASSWD: /usr/local/lib/emelfm2/emelfm2
#!/bin/sh cd /usr/local/lib/emelfm2 # Don't use 'sudo' if already root... UID=`id -ur 2> /dev/null` if [ $UID -eq 0 ]; then ./emelfm2 & else sudo ./emelfm2 & fi