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).
1
vote
0answers
11 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
57 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
19 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
15 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 ...
0
votes
1answer
12 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
15 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
56 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
8 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
8 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
64 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
1answer
59 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
39 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
40 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
19 views
Why sudo su don't pass as root, but password is ok? [migrated]
In Ubuntu I have one normal user root1. And till now when I want to be a root I do:
root1@host:/home/root1$ sudo su
[ sudo ] password for roo1:
type password
and I had:
root@host:/root:#
but now ...
0
votes
0answers
43 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
42 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
33 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
18 views
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
34 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
40 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 ...
-1
votes
0answers
17 views
adduser returns command not found despite path and sudo check
This problem falls within the general umbrella of command not found, but I think it is unique. I've done dozens of searches on the topic and tried essentially every solution I've come across to ...
-2
votes
0answers
94 views
Sudo apt-get update command does not work [closed]
I'm trying to install Java onto my Ubuntu 11.10. I've managed to get some repositories from where to download the installer, but whenever it gets to the point of updating the resources (a.k.a. sudo ...
-2
votes
0answers
23 views
Ressources password security concerns [closed]
My security questions/concerns are pretty much overall. I'm sorry about that but I'm looking for best pratice.
Here is what botters me when it comes to client applications without a 3 tier ...
0
votes
1answer
32 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
50 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
69 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
24 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
14 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
32 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
43 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
0answers
28 views
How to make Static hostname in Mac [closed]
I am using my mac in bunch of windows system but problem is that Daily my mac changes the hostname .hostname is not static and IT get conflict with the other system as it is changes its hostname and ...
0
votes
0answers
35 views
one sudo for multiple terminals [migrated]
Sudo root permissions are given for specific time, but only for one terminal. If I want to use sudo in another terminal in that time period, I have to type password again. How to force sudo to works ...
-1
votes
1answer
68 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
103 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
59 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
93 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
69 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
61 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
26 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
61 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 ...
0
votes
0answers
42 views
How to run Zend Studio Remote Systems SSH using sudo bash
In regular SSH, I can login as a user "foobar" with a password "pwd" and type sudo bash and the same password "pwd" to perform superuser activities.
I setup a Zend Studio WorkSpace for the same SSH ...
0
votes
0answers
90 views
Enable passwordless sudo command using Visudo
I have a script called "rescan.sh" somewhere in my home directory. I created a symbolic link to the script and placed it in /usr/local/bin. The script does the following:
#!/bin/bash
sudo sh -c "echo ...
0
votes
2answers
33 views
werid behavior of sudo [closed]
In my linux machine, path are configured as follows
non-root user:
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/java
root user:
...
1
vote
2answers
87 views
Different environment when running sudo as root?
I'm trying to install the Xeon Phi coprocessor. The specific behavior is probably related to the tools involved - my question is of a more general nature.
When I execute a command as root, I get a ...
5
votes
2answers
82 views
Python: drop root privileges for certain operations
In my Python script, I perform a few operations that need root privileges. I also create and write to files that I don't want to be owned exclusively by root but by the user who is running my script.
...
-1
votes
1answer
102 views
Change login session programmatically using objective C [closed]
In a multiuser Mac OS X which have two or more active users we can have root privilege with sudo command on terminal and then switch between user sessions with" su - username " command on terminal.I ...
2
votes
0answers
150 views
sudo mkdir /etc/abc gives command not found, but either sudo and mkdir used alone works [closed]
I can do
sudo touch /etc/abc
and
sudo rm /etc/abc
and it works, so does
mkdir ~/abc
but when I do
sudo mkdir /etc/abcd
I get
sudo: nocorrect: command not found
Any ideas?
I'm using zsh
...
0
votes
1answer
382 views
sudo: unable to resolve host ServerName (takes very long time to “sudo su” ) [closed]
I use vmware and install ubuntu 12.10 as my guest OS.
and run my pc , my network interface is a wireless card
however everytime when i try to sudo , i should wait for a long time.
and echo
sudo: ...
-1
votes
2answers
673 views
Ubuntu 12.04 LTS bash: sudo: command not found [closed]
I am new to Linux terminal, now I tried to use sudo, apt-get, whereis etc., commands in linux it returns an error bash: sudo: command not found
my command
$sudo apt-get install libc6-dev
Error ...
1
vote
2answers
37 views
How to run 'at' as a different user?
I often need to run at jobs as a different user. I've always done something like
$ echo "$PWD/batchToRun -parameters" | sudo su - otheruser -c "at now"
batchToRun is also scheduled to run via ...


