Tagged Questions

The sudo command is an abbreviation for "substitute user do" (as in, do a command as if started by another user). Sudo is a program for Unix and Unix-like computer operating systems that allows a user to run programs with the security privileges of another user (normally the superuser, or root).

learn more… | top users | synonyms

61
votes
14answers
32k views

sudo changes PATH - why?

This is the PATH variable without sudo: $ echo 'echo $PATH' | sh /opt/local/ruby/bin:/usr/bin:/bin This is the PATH variable with sudo: $echo 'echo $PATH' | sudo sh ...
41
votes
6answers
8k views

Open a file with su/sudo inside Emacs

Suppose I want to open a file in an existing Emacs session using su or sudo, without dropping down to a shell and doing sudoedit or sudo emacs. One way to do this is (require 'tramp) C-c C-f ...
41
votes
8answers
9k views

How do I use sudo to redirect output to a location I don't have permission to write to?

I've been given sudo access on one of our development RedHat linux boxes, and I seem to find myself quite often needing to redirect output to a location I don't normally have write access to. The ...
36
votes
3answers
5k views

How does the vim “write with sudo” trick work?

Many of you have probably seen the command that allows you to write on a file that needs root permission, even when you forgot to open vim with sudo: :w !sudo tee % The thing is that I don't get ...
34
votes
9answers
18k views

Is there a way for non-root processes to bind to “privileged” ports (<1024) on Linux?

It's very annoying to have this limitation on my development box, when there won't ever be any users other than me. I'm aware of the standard workarounds, but none of them do exactly what I want: ...
12
votes
7answers
9k views

Ruby on Rails Beta 3 Install Problem on Snow Leopard

i tryed to install the new beta on my system with the command: sudo gem install rails --pre but no matter what i tryed, i still get this damn error: Successfully installed rails-3.0.0.beta3 1 ...
10
votes
3answers
3k views

RVM and thin, root vs. local user

So I'm trying to get thin to run as a service with RVM. After a thin install I manually updated /etc/init.d/thin to use an su - user when running the config command so that thin was running as a local ...
10
votes
3answers
2k views

Open file via SSH and Sudo with Emacs

I want to open a file inside Emacs which is located on a remote server, with sudo powers on the server. I can open local files with sudo via Tramp like this: C-x C-f /sudo::/home/user/file But I ...
10
votes
4answers
4k views

Run a linux system command as a superuser, using a python script

I have got postfix installed on my machine and I am updating virtual_alias on the fly programmatically(using python)(on some action). Once I update the entry in the /etc/postfix/virtual_alias, I am ...
9
votes
4answers
2k views

Can I prevent fabric from prompting me for a sudo password?

I am using Fabric to run commands on a remote server. The user with which I connect on that server has some sudo privileges, and does not require a password to use these privileges. When SSH'ing into ...
8
votes
1answer
122 views

Not receiving SIGCHLD for processes executed with sudo

I'm currently in the process of writing a shell. I execute processes and utilize a SIGCHLD signal handler to clean up (wait on them) when they are complete. Everything has been working -- except ...
8
votes
6answers
338 views

Save file as root after editing as non-root

Ok so this happens to me all the time. There has to be a better solution. Let's say you do vim /etc/somefile.conf and then you do i but realize you are not sudo and you can't write. So then I lose my ...
8
votes
4answers
4k views

Root user/sudo equivalent in Cygwin?

I'm trying to run a bash script in Cygwin. I get Must run as root, i.e. sudo ./scriptname errors. chmod 777 scriptname does nothing to help. I've looked for ways to imitate sudo on Cygwin, to ...
8
votes
5answers
2k views

Is there any graphical “sudo” for Mac OS X?

I'm designing a little software in Java. I don't know the term/definition to what I'm doing, but I'm prompting commands from Java to the terminal. Something like this: Process process = ...
8
votes
2answers
4k views

Unable to install Python without sudo access

I extracted, configured and used make for the installation package in my server. However, I could not use make install. I get the error [~/wepapps/python/Python-2.6.1]# make install /usr/bin/install ...
7
votes
3answers
802 views

How do you find the original user through multiple sudo and su commands?

When running a script via sudo or su I want to get the original user. This should happen regardless of multiple sudo or su runs inside of each other and specifically sudo su -.
7
votes
3answers
4k views

Capistrano is hanging when prompting for SUDO password to an Ubuntu box

I have a capistrano deployment recipe I've been using for some time to deploy my web app and then restart apache/nginx using the sudo command. Recently cap deploy is hanging when I try to execute ...
7
votes
4answers
6k views

How do I edit /etc/sudoers from a script?

I need to edit /etc/sudoers from a script to add/remove stuff from white lists. Assuming I have a command that would work on a normal file, how could I apply it to .etc/sudoers? Can I copy and ...
7
votes
12answers
16k views

pass password to su/sudo/ssh

I'm writing a C Shell program that will be doing su or sudo or ssh. They all want their passwords in console input rather than stdin. Does anybody know a solution? Setting up password-less sudo is ...
6
votes
4answers
560 views

identify user in a bash script called by sudo

If I create the script /root/bin/whoami.sh conatining: #!/bin/bash whoami And this script is called by a user with a properly configured sudo, it will indicate root Is there a fast way to ...
6
votes
6answers
234 views

Automatically invoking gksudo like UAC

This is about me being stressed by playing the game "type a command and remember to prepend sudo or your fingers will get slapped". I am wondering if it is possible somehow to configure my Linux ...
6
votes
6answers
4k views

sudo nohup nice <— in what order?

So I have a script that I want to run as root, without hangup and nicely. What order should I put the commands in? sudo nohup nice foo.bash & or nohup nice sudo foo.bash & etc. I suspect ...
5
votes
3answers
209 views

Run sudo commands in Haskell

I am having ghc 6.12.3 and Ubuntu 11.04 installed on my laptop. I would like to have a function which take some shell commands and execute them as the superuser (like sudo update-manager, sudo iwlist ...
5
votes
1answer
2k views

rvmsudo vs sudo?

I just move to RVM. sudo bundle install gives me and error:- sudo bundle install /usr/local/rvm/rubies/ruby-1.9.2-p180/lib/ruby/site_ruby/1.9.1/rubygems.rb:900:in `report_activate_error': Could not ...
5
votes
3answers
1k views

How to call shell script from php that requires SUDO?

I have a file that is a bash script that requires SUDO to work. I can run it from the command line using SUDO but I will be prompted to put in the SUDO password. I want to run this script from php ...
5
votes
8answers
956 views

How do I run a sudo command in Emacs?

I'm trying to create shortcut keys for some commonly used sudo shell commands (for example, having C-c s run (shell-command "sudo /etc/init.d/apache2 restart")). I tried using a straight-up ...
5
votes
3answers
881 views

How can I avoid sudo-ing when installing Perl modules with cpan?

I have installed Perl from source into /usr/local, and adjusted my path accordingly, following brian d foy's suggestion here. I'm sure I'm missing something, but, now I'm trying to install stuff with ...
4
votes
2answers
324 views

How to open Perl file handle to write data via sudo (or as another user)

I'd like to write data to a file, but the file handle should be opened with access permissions for a specific user. Thus, the following statement: open (FH, "> $filename") or die "$@\n"; would ...
4
votes
6answers
2k views

On EC2: sudo node command not found, but node without sudo is ok

I have just installed nodejs on a new EC2 micro instance. I installed it normally, ./configure -> make -> sudo make install. Problem: When I run "node" under ec2-user, it runs perfectly. When I run ...
4
votes
1answer
865 views

How to make a sudo command using Paramiko

ok i have some problem with comands that have sudo using paramiko f.ex sudo apt-get update here is my code: try: import paramiko except: try: import paramiko except: print ...
4
votes
3answers
757 views

How can I run a Perl script as root yet still affect user gconf settings

THE NEW QUERY: I am trying to make a unified script that initializes a new Ubuntu install to my liking, it must be run under sudo to install packages, but using gconftool-2 to affect gconf setting ...
4
votes
4answers
1k views

Storing sudo password as variable in script - is it safe?

Is storing my password this way safe? echo 'Write sudo password (will not be displayed) and hit enter' read -s password I need it to make commands like this: echo $password | sudo -S apt-get ...
4
votes
2answers
223 views

Script doesn't work when executed with sudo

Linux bash script: function Print() { echo $1 } Print "OK" This script runs successfully, when executed directly, and gives an error running with sudo: alex@alex-linux:~/tmp$ ...
4
votes
4answers
1k views

X11: run a gnome app as another user

I have ubuntu + x11 + gnome. I want to run a graphical application as another user. However, when I start it from the command line using sudo -u otheruser app I get the error "No protocol ...
3
votes
1answer
141 views

Fabric - sudo -u

I'm using fabric to launch a command on a remote server. I'd like to launch this command as a different user (neither the one connected nor root). def colstat(): run('python manage.py ...
3
votes
2answers
95 views

To run sudo commands on a ec2 instance

I cannot run "sudo su" on my ec2 client , I ssh into the client through a java program and run the command through a program. I can run commands like "ls" and "ifconfig" though. I get an error saying ...
3
votes
1answer
92 views

How can I use Emacs tramp to ssh to a remote host and edit a file as another user on an ad-hoc basis?

/multi used to work for me, now it's gone and I'm frustrated. What I want to do is, in my dream world: /myuser@remotehost:sudo:anotheruser:/some/path/to/file ...and have ido-mode work. The key ...
3
votes
1answer
322 views

Running commands from within python that need root access

I have been playing around with subprocess lately. As I do more and more; I find myself needing root access. I was wondering if there is an easy way to enter the root password for a command that needs ...
3
votes
2answers
152 views

Can't change users within system() in php

My command is echo root_password | sudo -u root -S executable_full_path arguments The error message I get in the browser is [sudo] password for www-data: Sorry, try again. From phpinfo(), ...
3
votes
1answer
683 views

Paramiko and sudo

I've been searching the nets for some time now for a solution to my problem, and no luck. My issue is that I can't seem to get sudo commands to run with paramiko. At first, I tried to simply use ...
3
votes
5answers
1k views

su and sudo in a shell script

There is a shell script (/bin/sh, not bash) that requires root permissions for execution. If it is ran by a normal user it should ask user a password to get root access and re-run itself. Now it ...
3
votes
3answers
540 views

unable to install gems using `sudo`

I have just setup a new Ubuntu 10.04 PC and am trying to install some gems. gerhard@superserver:~$ sudo gem install rake ERROR: http://gems.rubyforge.org/ does not appear to be a repository ERROR: ...
3
votes
2answers
340 views

Most reliable way to identify the current user through a sudo

I have an application that may or may not be run while users are sudo'ed to a shared user account. I would like to reliably identify who the real user is for a sort of "honor-system" ACL. I think ...
3
votes
4answers
1k views

Get netbeans to run my project with sudo?

I am working on a project in netbeans that requires the running project to have root privileges. I would like it so that each time I push "Run Project" (F6) my project is run as root, so with the ...
3
votes
4answers
2k views

Using Git without Sudo in many accounts

How can you use Git without Sudo in multiple accounts in one Ubuntu? My Ubuntu has many accounts. The creation of new accounts has made Git inaccessible by me without sudo. I changed the owner to be ...
3
votes
4answers
3k views

How do I run a command as a different user from a root cronjob?

I seem to be stuck between an NFS limitation and a Cron limitation. So I've got root cron (on RHEL5) running a shell script that, among other things, needs to rsync some files over an NFS mount. And ...
3
votes
3answers
8k views

running a command as a super user from a python script

So I'm trying to get a process to be run as a super user from within a python script using subprocess. In the ipython shell something like proc = subprocess.Popen('sudo apach2ctl restart', ...
3
votes
8answers
3k views

Using shell_exec('passwd') to change a user's password

I need to be able to change the users' password through a web page (in a controlled environment). So, for that, I'm using this code: <?php $output = shell_exec("sudo -u dummy passwd testUser ...
2
votes
1answer
58 views

Repeatedly using one subprocess.Popen instance in python

I am working on scripting a process in Python, and in my code I make several command line calls using p = subprocess.Popen(['example', 'command', 'and', 'args'). I recently ran into an issue that ...
2
votes
3answers
75 views

Environment Variables when Using SUDO

When I use any command with sudo the Enviroment Variables were not there for example when I set HTTP_PROXY it works fine with wget without sudo but when I type sudo wget it said It cant bypass the ...

1 2 3 4 5