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

0
votes
1answer
15 views

sudo in expect script

How to use sudo with an expect script ? Like I want to do spawn sudo apt-get install wine expect "*?assword: " send "$passwd\r" interact But it does not send password. How can I resolve this ?
0
votes
1answer
23 views

I have an error in this command: sudo ./install

I'm trying to install PhalconPHP by it's documentation. in the compilation step i have an error! When i Perform this command: sudo ./install Error: 'sudo' is not recognized as an internal or ...
0
votes
0answers
14 views

sudo su or just su to manage remote servers? [closed]

I was wondering which practice is best for managing remote servers ... I access my servers via ssh as user myuser with my key . Then I have to sudo su ( in some server ) or just su ( ...
0
votes
0answers
22 views

CC and CXX unchanged when using sudo

This may be similar or even a duplicate of this question but when I export the CC and CXX flags on my Mac OSX, anything that I try to compile only uses the c and c++ compilers specified by the export ...
0
votes
0answers
11 views

Sudo password not required? OS X 10.8 (Mountain Lion) [migrated]

I recently upgraded to a Macbook Pro Retina running OS X 10.8.3. I was going through the process of installing various command line tools when I noticed that it wasn't asking for my root password when ...
0
votes
2answers
29 views

Permissions difference between sudo su and just being the user? (Specifically with git)

I'm having a weird permissions issue. It seems that being logged in as a particular user I have different permissions than when I sudo su into that user. Using su to become quantka causes a git ...
0
votes
0answers
21 views

PHP shell_exec touch file permission issue running as sudo

I want to create a file in PHP using shell_exec. Here's the statement I'm trying: $out = shell_exec('sudo touch maintenance.flag 2>&1 1> /dev/null'); And contents of $out are sudo: no ...
0
votes
2answers
45 views

Raspberry PI: PHP call pyhton script with sudo

i'm running Nginx on my Raspberry PI with PHP 5.4.14 (fpm-fcgi). It all works well. But in one script i make a shell call using shell_exec. echo shell_exec("sudo python " . $file); it works well ...
-2
votes
1answer
29 views

Add user to sudoers not work [closed]

su - root visudo Add this line roy ALL=(ALL)NOPASSWD:ALL, roy is my username I want to use sudo. Then i su roy, and trying to use sudo, but it doesn't work: sudo: must be setuid root
0
votes
0answers
18 views

How to get rid off - sudo: /usr/lib/sudo/sudoers.so must be only be writable by owner sudo: fatal error, unable to load plugins

I am trying to configure apache2 with cgi (python). For that, I have to change permissions of some folders and files but I am getting sudo fatal errors every time I try to change permission of a file ...
0
votes
0answers
18 views

bash can't find sudo command on friendlyarm [migrated]

I'm trying to work with this friendlyarm 9 board I got recently but it can't find some basic bash commands and I couldn't find a solution for it anywhere. When I type any command with sudo or even ...
0
votes
1answer
23 views

I cant restart my dnsmasq service, so my fog server wont work

I have a fog server set up in work, every now and then our useless internet fails and I have to reset the dnsmasq to get it working again, (dont have a dhcp server set up and cant modify the hubs ...
3
votes
2answers
47 views

Detecting if a command is executable by sudo

I am wanting to detect in a shell script if a command I am going to run via sudo can in fact run via sudo. On newer versions of sudo I can do sudo -l "command" and this gives me exactly the result I ...
0
votes
1answer
48 views

Unable to change File Permission on Linux with root user [closed]

I ran this command logged as root user #chmod 777 and got this message : Read Only file system error I also ran this command as root user #sudo chmod 777 and got this message: Bus Error ...
0
votes
2answers
40 views

Python: New line character after command

In a program I am writing I have this: SUDOPATH = subprocess.Popen(['which', 'sudo'], stdout=subprocess.PIPE) SUDO = SUDOPATH.stdout.read() But if I attempt to do this: os.makedirs(SUDO + ...
0
votes
0answers
45 views

Why sudo python and python in terminal start two different versions python? [migrated]

I had python 2.6 in my server to begin with. Then I downloaded python 2.7 and installed using make and make altinstall. When I try just python in the terminal it opens up python 2.7 but sudo python ...
1
vote
0answers
43 views

npm command - sudo or not?

Currently I always run sudo npm install <package-name> but as I understand it's not correct. I want to have opportunity not to use it as root/Administrator. I followed some advice and used this ...
0
votes
2answers
77 views

How to make my c++ program to be run with root permissions? [closed]

I am writing a linux application that uses some kernel functions which needs root priviliges to run. During tests I run it by simply typing sudo ./myapp (on ubuntu 12.04), but I want it to be ...
0
votes
2answers
35 views

Trying to recover sudo password of my server over ssh [ubuntu]

I am working on an ubuntu server with a colleague and we were not provided a sudo password. (they told us that they forgot the password) We were asked to recover the sudo password. Through our search ...
0
votes
1answer
26 views

sudo tar is not working in bash script when calling from cron job [closed]

I created a ssh user 'backupuserssh' which I use its crontab to create cron jobs. There is a line in .sh file as follows: sudo tar zcvfp backup.tar.gz /var/www/html When I manually run the .sh ...
1
vote
1answer
45 views

Getting message “sudo: must be setuid root”, but sudo IS already owned by root

I'm trying to run sudo, and it's failing: gregd@david $ sudo ls sudo: must be setuid root gregd@david $ which sudo /usr/bin/sudo gregd@david $ ll /usr/bin/sudo -rwxr-xr-x 1 root root 165K 2012-05-16 ...
-1
votes
0answers
97 views

sudo: no tty present and no askpass program specified [centos] visudo file

i am trying to run linux commands in exec() in php. For that one i need to add line in visudo file. i added that line which is shown below.. (in Linux MINT 14) # User privilege specification root ...
0
votes
2answers
62 views

Risk of unquoted bash parameters/variables

I recently read that it is dangerous to use unquoted parameter in bash scripts. I know that escaping is vital when it comes to SQL queries, but I don't see any problems with the following code (except ...
-1
votes
0answers
14 views

How to run sudo commands in python (OSX)

I am aware I can do this: import os os.system("echo 'hello'") but when I try this: import os os.system("sudo echo 'hello'") It does not work... I am not sure how to work around this using just ...
0
votes
0answers
9 views

ryslog stops when apache stops

I have a django web application hosted with apache. I wanted to restart rsyslog as a part of one of my API requests. Here is what I am doing: I edited /etc/sudoers file to allow 'apache' user to ...
0
votes
1answer
86 views

pexpect.spawn('sudo ssh somehost') asks for sudo password every time

I have a series of bash scripts that rely on sudo to ssh/scp some host with root privileges. So I made a python script sshOK that uses pexpect to handle all the nitty gritty of sshing a host, such as ...
0
votes
3answers
201 views

How to install RVM debian requirements without giving sudo for rvm user

I have a deployer account that does not have a sudo. Installed rvm for this account, but when it tries to install some ruby, like 1.9.3 it triggers task to install debian dependencies (Installing ...
0
votes
0answers
74 views

SSH .NET : freeze upon sudo su - user2

I am writing a very small C# program designed to allow me to connect remotely to a server via SSH (using SSH .NET Client Library), and execute commands, mainly commands about printers such as ...
1
vote
2answers
58 views

Vim: Sudo Edit Breaks Apache Syntax Highlighting

Sudo Edit (sudo -e) allows unprivileged users to edit files securely. To achieve this, it makes a temporary copy of a file to edit and then copies it over when editing is done. When I'm editing an ...
0
votes
0answers
73 views

Running sudo command using paramiko on remote box

I have never posted so let me know if I need any more information. I have been working on a python script to log into a remote linux box and do some filesystem investigation for me. I have a very ...
1
vote
0answers
49 views

chmod fails when using sudo

I have a program that requires changing the system time with settimeofday and then changing the permissions of a file with chmod. This program must be run with sudo to successfully change the date. ...
0
votes
2answers
66 views

How to set file permissions for root in OS X / Terminal?

I'm having issues with getting Apache working with my virtualhosts, and I've narrowed it down to the fact that I'm adding manually-created virtual hosts (vs. the others which are created by a python ...
0
votes
0answers
36 views
+200

Can you use capistrano if you need to sudo su into another user?

I'm trying to get capistrano working on my groups project. Due to department restrictions, we have to log in as ourselves, then sudo su into a shared project user. That project user that we sudo su - ...
0
votes
1answer
37 views

Executing command non root

I have a script which is being run as root. Part of this script calls pythons webbrowser.open. Currently when webbrowser.open is executed it will attempt to open the browser but using the scripts ...
-2
votes
2answers
44 views

Changing Linux hostname using PHP script

I'm trying to change the Linux hostname with PHP script. I could do it directly on the Linux machine using the command hostname But when I use the below PHP Statement .. it didn't work. system('sudo ...
0
votes
1answer
54 views

Azure Regain sudo/su Access

While trying to install a GUI application today I found myself having to disable waagent. Turns out the NetworkManager packages are not compatible with waagent. A few, obviously outdated, posts ...
0
votes
1answer
91 views

How to provision software using Vagrant without sudo

I'm trying to setup Vagrant virtual machines to support my learning through Seven Databases in Seven Weeks. I'm provisioning software using basic shell scripts which performs appropriate actions ...
1
vote
1answer
82 views

Ruby on Rails: Why do I have to use sudo for commands to succede?

I'm learning ruby on rails... I've was able to install an app on my OSX (10.8.3) localhost but it was very problematic most commands failed with permission-related errors unless I used sudo: $ ...
2
votes
0answers
31 views

Fabric sudo silently failing

I'm using Fabric 1.6.0 on OS X 10.8.2, running commands on a remote host on Ubuntu Lucid 10.04. On the server, I can run sudo /etc/init.d/celeryd restart to restart the Celery service. I pass the ...
0
votes
0answers
27 views

winscp/cuteFTP - download files owned by another user

I have a "sudo user" account created on my server. when using putty, sudo "operation" allows me to do any operation without any problems; however I have a 37M file I need to check and I need to ...
0
votes
1answer
41 views

Trying to pass sudo password directly through STDIN

This is my program, and it doesn't seem to be working. Sometimes I thought it worked with \0 or \r instead of \n, but I guess that is because I had already executed a sudo command on the terminal ...
0
votes
1answer
70 views

I got permission denied when run command with chroot [closed]

sudo chroot /tmp/jail /bin/echo 'test' > /home/someone/.bash_history error log: -bash: /home/someone/.bash_history: Permission denied
-1
votes
1answer
106 views

root access for php exec function [duplicate]

I am trying to write a php program which can execute service fcserver status to find whether my chat room is running or not. If it is running then output should be and if it's not running then the ...
0
votes
0answers
157 views

Multiple Select Checkbox list for One-to-Many relationship

I'm searching for code example how to inserting Multiple Select Checkbox list to database just like student register to many course the only good article i found is this ...
1
vote
2answers
82 views

how can I run a perl script which needs root?

I need to execute a perl script located in /root/scripts/ from php using ssh from another computer or from the same computer. The thing is that I just don't know how to make php log into roots account ...
0
votes
2answers
112 views

How to save the output file in a directory and print the name of the output file?

I am parsing a file from which I then create multiple output files. I would like to save the output file(s) in a special directory in the same folder the perl script was executed from. If the ...
2
votes
1answer
77 views

Giving django app root access?

I am trying to build an api using django which should alter iptables using POST parameters. I am using django 1.4, djangorestframework, python-iptables. The problem I am facing is that python-iptables ...
0
votes
2answers
71 views

suid bit script perl

I'm making a perl script to change the brightness. I must write in the file 'brightness' which is set to read only. I want to use the SUID bit so I did. $> sudo chown root:root brightness $> ...
0
votes
1answer
30 views

Library can only be accessed using SUDO - libfprint permissions

I have downloaded and installed the libfprint fingerprint API. Everything works ok but there is one snag, it will only detect my fingerprint scanner when I run applications using sudo. This is ...
0
votes
2answers
98 views

Bash script - change to root then exit root

If I am in the middle running a bash script, is there any way to switch over to root user, process a command, and then exit root mode? For example, I'd like to include these commands in the middle of ...

1 2 3 4 5 11