0
votes
3answers
171 views
Running SH script with sudo for PHPdoc
How can you run the following script in generating docs by PHPdoc?
#1 sudo -code
sudo source makedoc.sh
I get
no command source
#2 without sudo
The problem is that sudo doe …
0
votes
0answers
57 views
sudo using PATH ahead of fully qualified executable
I ran into a problem that I've never seen before and can't exactly explain. I was helping someone run a perl based install on a RedHad 4.6 zLinux and running under sudo seemed to …
7
votes
8answers
2k 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 exac …
1
vote
0answers
54 views
How to copy files & directories as a Sudo User. [closed]
I login to linux using my Id eg "A". then i'll sudo to the user 'B' without entering the password, after that i'll copy some files from X folder to Y Folder using the SUdo user 'B' …
0
votes
2answers
47 views
How to execute shell script via sudo user…
Hi All,
I am new to shell scripting....
Can someone give an example of running shellscript via sudo user...
I tried like this....
sudo /usr/local/sbin/deploy | ./tmp/cp1.sh
th …
0
votes
1answer
14 views
What does errno=13 mean when connecting via OpenVPN?
The tail-end of an OpenVPN connection (that otherwise appears successful) says (with leading timestamps omitted):
Note: Cannot open TUN/TAP dev /dev/net/tun: Permission denied (er …
2
votes
5answers
86 views
How to execute os.* methods as root?
Is it possible to ask for a root pw without storing in in my script memory and to run some of os.* commands as root?
My script
scans some folders and files to check if it can do …
1
vote
3answers
633 views
Quickly check whether sudo permissions are available
I want to be able to quickly check whether I both have sudo access and my password is already authenticated. I'm not worried about having sudo access specifically for the operation …
1
vote
1answer
89 views
How to sudo on a computer using ssh inside a bash script
I'm trying to run a bash script that has:
ssh -l <username> <compname> 'sudo yum -y install expect'
I get the error:
sudo: sorry, you must have a tty to run sudo
…
0
votes
2answers
47 views
Getting $USER inside shell script when running with sudo ?
Hi,
How do I get the correct $USER if I run a shell script with sudo ?
I run them as postinstall scripts in a Mac install package, where they are being sudo-ed automatically, bu …
2
votes
7answers
2k 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 consol input rather than stdin.
Does anybody know a solution?
Setting up pass …
0
votes
1answer
65 views
Capistrano :shell example
Hello experts.
I'm currently using Capistrano to deploy my web application which works like a charm.
In my new project I must execute a command from sudo /bin/bash shell.
Is it p …
0
votes
0answers
132 views
Disable su on machine [closed]
Is there a way to allow su only for specified users (like using visudo for sudo).
The reason for this is I'd like to keep a simple (weak) password for my root account and have acc …
0
votes
1answer
207 views
How to permanently change sudo’s $PATH variable (Ubuntu 9.x)
I want add some directory to the $PATH when running sudo, this is a (semi) permanent requirement, not something that needs to be added to the scripts themselves. I notice that Djan …
0
votes
0answers
173 views
Why does sudo command take long to execute? [closed]
I've been picking up Linux (Fedora 10, then 11) over the past few months (and enjoying it immensely-- it's like discovering computers all over again, so many things to learn).
I'v …
