Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
822 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
12answers
17k 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 ...
5
votes
4answers
139 views

Executing scripts using more users

I'm writing a bash script which calls a lot of other scripts. Several scripts have to be executed as user_1 but several ones as user_2. The scripts should be called in strict sequence. I start my ...
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 ...
2
votes
2answers
540 views

how to run script as another user without password

I have script.sh that must be run as user2. However, this script can only be run under user1 in my application. I would like the following command to run: su user2 -C script.sh but be able to run ...
2
votes
2answers
387 views

Read command output inside su process

firstly I will present my situation. I need to execute "su" command in my android app and it works well. Then I need to execute "ls" command and read the output. I'm doing it by getting the output ...
2
votes
1answer
742 views

SOLVED- Running Shell commands though java code on Android

Took me a while but I came back to this project with greater understanding of how to code. Here's a working way to do this for future reference of whoever Define the string String[] commands = ...
2
votes
2answers
254 views

How to define environment variable in input command of su

This command has an empty output. su user -c "ABC=abc;echo $ABC" Any idea, how can I define a variable in the input command?
1
vote
1answer
28 views

Programmatically start su session, run command, and remain at root prompt

Backstory: I SSH into servers where I want to see a personalized root prompt. However, other people log onto these servers and don't necessarily want me changing the prompt. Question: How can I make ...
1
vote
1answer
227 views

changed permissions of /etc/sudoers and now I can't 'sudo su - root' — root login is disabled [closed]

I can't sudo to root anymore with 'sudo su - root', getting error: $ sudo su - root sudo: /etc/sudoers is mode 0640, should be 0440 sudo: no valid sudoers sources found, quitting Here's my sudoers ...
1
vote
3answers
105 views

Segmentation fault after sudo commands

I've modified (in some wrong way) the file etc/sudoers in my Mac OS X 10.6.8. For this reason I've erased the wrong line and replaced the original file. But now whenever I type sudo commands the ...
1
vote
1answer
537 views

OSX su command issue

So I cant get su command to work on a terminal. All I do is type "su" and press enter, it asks for the password and I enter my currently logged in user password. It always gives this error. I swear ...
1
vote
0answers
219 views

Running iptables on a rooted xoom (android 3 honeycomb)

I am trying to add some rules to filter network traffic from/to the device (Xoom WiFi) using iptables. The iptables command is located at /system/bin/iptables in the xoom device running android 3.0.1. ...
1
vote
1answer
76 views

User/permissions issues and PHP single-file installers

Since hearing about __HALT_COMPILER in PHP, I've been doing some experimentation with a single-file PHP installers (scripts containing a compressed archive of a filetree for a webapp). It seems to ...
1
vote
1answer
301 views

Mounting afp as different user for php access

I've mounted an afp directory, afp://ServerName/Foo/, with "Finder->Go->Connect to Server" to /Volumes/Foo, now I'm trying to access it with: opendir("/Volumes/Foo/dirname/"); However, I get an ...
1
vote
4answers
459 views

Running bash function in command of su

In my bash script I execute some commands as other user. I want to call a bash function in command of su I defined in my script before. my_function() { do_something } su username -c "my_function" ...
1
vote
2answers
554 views

How can I su from root to db2inst1 and invoke a SQL script, in one line?

How can I su from root to db2inst1 and invoke a SQL script all in 1 line? I am thinking about something like this: su db2inst1 | db2 CONNECT TO myDatabase USER db2inst1 USING mypw; db2 -c -i -w -td@ ...
0
votes
1answer
47 views

Bash Script su exiting shell

Im trying to write a bash script that executes several commands as different users to automate an install process. At one point I have su gpadmin gpperfmon_install --enable --password password ...
0
votes
0answers
13 views

How can i block su access to some users only in linux [migrated]

I want to configure pam in a way so that my some users can su to only some user. In RHEL4, I used /etc/pam.d/su auth required /lib/security/$ISA/pam_stack.so service=system-auth auth ...
0
votes
1answer
30 views

su and pipe with variables

I am writing a shell script, and would like to pipe STDOUT to a file within a su command. The outputted file needs to be owned by another user, hence the use of su. However, I can't get pipe to work ...
0
votes
1answer
147 views

Executing su user (without password) on paramiko ssh connection

I need to login in ssh to a server, do "su username" (without password) to execute some commands as that user (that have no direct login in ssh). From the terminal it would be something like this: ...
0
votes
1answer
76 views

su -session-command error

i have a very simple and annoying problem, i'm trying to start my database as a specific user, but *su --session-comman*d fail to me! ############################## #!/bin/bash objectdb-start.sh ...
0
votes
2answers
233 views

su postgres: Sorry? [closed]

i have a problem with my postgreSQL setup on my new Mac OSX Lion machine. I can't seem to connect to the service $ createuser -a -d _postgres Password: createuser: could not connect to database ...
0
votes
1answer
138 views

Understanding SU request

My app needs to request SU access (on rooted devices) and the only examples out there say to do this: Process p = null; p = Runtime.getRuntime().exec("su"); That's fine, but how do I associate ...
0
votes
1answer
70 views

How can I wait for SU access after request?

My app requests SU access something like this: Process p = null; p = Runtime.getRuntime().exec("su"); That prompts the user to allow or deny the access, but my app continues to execute the next ...
0
votes
1answer
168 views

Run script as another user without sudo/su privileges

I'm trying to write a script so that it can be called by one user and is executed as another user. I thought that setuid might be able to do this so I enabled setuid using chmod u+s with the owner of ...
0
votes
2answers
245 views

How can I switch to the user jenkins in the middle of a ssh script?

I run ssh root@myhost "sh -x" < myremotecommands.sh where myremotecommands.sh contains: #!/bin/sh sudo su apt-get update sudo su -l -p jenkins whoami however the command whoami returns ...
0
votes
1answer
138 views

unable to pass password to su

I have a bash script that requires a couple commands be run under a different user. I would like to do this with su but I am unable to automatically su without a password prompt. The user running ...
0
votes
1answer
140 views

Running monit as a restricted user and making it watch a process that needs root privileges

I have a specific script written in Ruby that needs root privileges. Most of the other processes don't need that and so were easy to setup in Monit. Not this one. The server needs to listen at 386, ...
0
votes
1answer
303 views

Killing Root Processes in Android

I'm building an Android application that starts a process by calling su and sending it a command, along these lines: Process su = Runtime.getRuntime().exec( "su" ); DataOutputStream out = new ...
0
votes
2answers
1k views

Android superuser shutdown/reboot commands not doing anything!

I am trying to make an app that can shutdown/reboot your phone at the touch of a button. I found a command online for reboot: public void rebootPhone() { try { ...
0
votes
0answers
78 views

environment of user when issued cmd in init script as root via su - user -c mycommand

For a init script I need to set and modify some environment variables of a user. The script runs as root and the user is named "update". First some basic tests. : I try on cmdline logged in as root: ...
0
votes
1answer
357 views

How to programatically disable/enable gps on rooted android?

After rooting and requesting superuser permission what do I need to do to enable/disable gps in my application?
0
votes
1answer
2k views

Running an app with root permission in Android

Do you know how to run an app in Android with root permission? I used the following snippet but the root permission is only granted to generated process, not the app itself. process = ...
0
votes
0answers
43 views

su denied in “adp shell”

I can't become su whilst in "adp shell". I get permission denied with that and almost all commands. Can it be some incompatability between adp versions (I had read that somewhere...)? I just want to ...
0
votes
2answers
197 views

No permissions as “sudo”

I'm trying to compile something in OpenSuse however I get a Permission Denied. I've tried with "sudo make" and even logged in with superuser but the same error persists. How can I fix this? Thanks.
0
votes
0answers
78 views

is it possible to install android on samsung pop manually?

i am trying to get access as root in adb to do manipulation in system.db file but getting permission denied message, so thinking of if i could install myself android os on phone ..
0
votes
1answer
377 views

Send Control-C to a process running trough Runtime.getRuntime().exec(“su”);

I'm developping an app which needs to run a command as root user so I use: process = Runtime.getRuntime().exec("su"); Then I launch te process with: os = new ...
0
votes
5answers
503 views

Running interactive shell script in name of other user

In my shell script (bash) I want to call other shell scripts. I run my script as user_A. One of these scripts needs special handling: It has to be run as different user (user_B). Password needed ...
0
votes
1answer
88 views

Dont want my cshrc to execute on login

On unix I am working as say user X, and I want to login to user Y from X. Now issue is that I dont want Y's cshrc (or any other login script) to run while I login to his user name. I vaguely remember ...
-1
votes
1answer
32 views

PHP - execute command as root

I'm trying to execute a command as su from php. When I put the command in terminal or with php /var/www/script.php it works perfect, but when I open script.php through browser it returns - sudo: no ...