Tagged Questions
sudo - Execute a command with superuser privileges.
3
votes
1answer
48 views
How to run a GUI program as a different user (Debian)?
Using a terminal, I can change the running user with su and sudo — but how can I do that by clicking on an icon/shortcut on the desktop/start menu?
If I have to be root to execute I will be asked ...
1
vote
6answers
190 views
Minimize need for sudo
Very often I need to use the sudo command because the command I'm running needs higher privileges. Is there some method to minimize the usage of sudo and/or a way to use it that's faster than typing ...
1
vote
3answers
88 views
Difference between “make install” and “sudo make install”
Sometimes I encounter problems with using make install which gives me a permission denied error when writing to some folders. So instinctively I use sudo make install. Will this introduce additional ...
4
votes
2answers
143 views
Does mount always require root privileges?
I was under the impression that any sort of call to mount requires root privileges.
But recently I was told "You should instead create appropriate entries in /etc/fstab so that the filesystems can be ...
1
vote
1answer
59 views
Default fedora 15 install, how do you get a network drive to mount after login?
I am running a default fedora 15 install. My goal is to have a couple of network drives get mounted right after the user logs in graphically (not via ssh).
The script I want to execute is basically ...
1
vote
0answers
33 views
What is the difference between these two sudoers lines? [closed]
Possible Duplicate:
What is the proper sudoers syntax to add a user?
What is the difference between these two lines of /etc/sudoers:
USERNAME ALL=NOPASSWD:ALL
USERNAME ALL=(ALL) ...
0
votes
1answer
93 views
How do you get NOPASSWD sudo option to work in Fedora 15? [closed]
Possible Duplicate:
How to run a specific program as root without a password prompt?
I installed fedora 15. I use sudo visudo to modify sudoers file and add the following line:
USERNAME ...
4
votes
2answers
93 views
Should I be using 'sudo' in scripts that I write?
I'm setting up a new machine (well actually, an Ubuntu VM) and am trying to write a script to setup a few common things that I use when doing this (Git, curl, vim + janus).
So my script looks a bit ...
1
vote
4answers
89 views
sudo without password - security? [closed]
Possible Duplicate:
What specific vulnerabilities am I creating by disabling the sudo password?
I'm involved yet again in the old argument on whether sudo without password is secure enough ...
2
votes
2answers
65 views
When running sudo make install environment variables are not passed
I have problems with using pkg-config in a Makefile, while running in sudo mode. I need to have PKG_CONFIG_PATH set for pkg-config to find geany.pc file that is held in /usr/local/lib/pkgconfig.
If I ...
1
vote
1answer
84 views
Why can't sudo redirect stdout to /etc/file, but sudo 'nano' or 'cp' can?
Why does redirection, using sudo give me an error for the following commands?
$ sudo printf "foo" >/etc/file
bash: /etc/file: Permission denied
$ sudo printf "foo" ~/file; cat ~file ...
2
votes
4answers
121 views
sudo to remember password for list of commands?
Is there a way in Linux to make sudo command to remember the password the user entered for in the first of the lines?
For example, for a list of commands that the user has to enter, the some of then ...
2
votes
1answer
34 views
Run Python Portio script as normal user without root access
I know there are risks running a root script as a normal user, but in this case I don't have a choice and what I am doing is machine related. I have an Small Board Computer that has GPIO ports and I ...
6
votes
2answers
101 views
What is the proper sudoers syntax to add a user?
According to the comments in /etc/sudoers (Fedora 13):
## Syntax:
##
## user MACHINE=COMMANDS
##
## The COMMANDS section may have other options added to it.
My two related questions:
What ...
2
votes
4answers
275 views
How to run a specific program as root without a password prompt?
I need to run something as sudo without a password, so I used visudo and added this to my sudoers file:
MYUSERNAME ALL = NOPASSWD: /path/to/my/program
Then I tried it out:
$ sudo ...