Non interactive su in bash script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Non interactive su in bash script
# 1  
Old 11-28-2012
Non interactive su in bash script

Hi,

I have a python gui which allow users entering the root password, then a bash script is called to run "su" with the root password on the background. I could find a way to run "su" with a password. How to run "su" in a bash script without password prompt?

Thank you.
# 2  
Old 11-29-2012
The "problem" is not bash, it is su. You are asking it to let you create a security hole. It has code to avoid doing that.

Since you seem to know the root passwd, try using sudo. This means you have to set up the /etc/sudoers file. Then certain users are allowed whatever privilege you give them when they execute sudo.

If you are bound and determined to do something insecure, try using expect. This lets you put passwords in a shell script to su.
# 3  
Old 11-29-2012
Quote:
Originally Posted by jim mcnamara
The "problem" is not bash, it is su. You are asking it to let you create a security hole. It has code to avoid doing that.

Since you seem to know the root passwd, try using sudo. This means you have to set up the /etc/sudoers file. Then certain users are allowed whatever privilege you give them when they execute sudo.

If you are bound and determined to do something insecure, try using expect. This lets you put passwords in a shell script to su.
Thanks for the response, I know things would be easy if I could personally access the machines and doing all sorts of things by typing keys. I am talking about the program and I won't use expect.

I am surprised that you have a root password but you cannot do anything to login to the root to do root permission things in Linux program.

I have seen many GUI programs to let you enter the root password then to access root files. Seems there are some ways to log into the root with root password in Linux program, right?

Thank you.
# 4  
Old 11-29-2012
Try using the authorized_keys concept and once you make an ssh using the root password, next time onwards, it'll not ask the root password.
# 5  
Old 11-29-2012
Quote:
Originally Posted by rajdeep_paul
Try using the authorized_keys concept and once you make an ssh using the root password, next time onwards, it'll not ask the root password.
Thanks for the response. But there is no ssh login to run the script, the scripts are installed and run when users click from the menu.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash -c interactive scripts

i have to run the following script through a pipe: script.sh: #!/bin/bash echo "Hello World" echo -e "The \033 here's how its currently being run: bash -c "$(cat script.sh)" This is an interactive script. the problem is, when i run it this way, if you go to another terminal and... (4 Replies)
Discussion started by: SkySmart
4 Replies

2. Shell Programming and Scripting

Bash interactive scripts

i have a script that contains: script.sh #!/bin/bash echo -e "\t\t\t0. Exit" echo -e "\t\t\t1. Help" echo -e "\t\t\t2. Notes" echo -e "\t\t\t3. Classes" echo "${newline}" echo -n -e "\t Please enter option number : " read Type case $Type in 1) clear ... (1 Reply)
Discussion started by: SkySmart
1 Replies

3. Shell Programming and Scripting

Bash interactive Script Required

Dear All, Please help in creating a bash script to fetch records from multiple files the script should ask inputs of file type and column level input(at least 4 col of each file type) I have 4 sort of Files, A,B,C,D. file names are like A_0112.unl, A_01215.unl, A_0001.unl and same with B C... (3 Replies)
Discussion started by: Muhammad Ali
3 Replies

4. Shell Programming and Scripting

Passing arguments to interactive program through bash script, here document

Dear Users, I have installed a standalone program to do multiple sequence alignment which takes user parameters to run the program. I have multiple sequence files and want to automate this process through a bash script. I have tried to write a small bash code but its throwing errors. Kindly... (13 Replies)
Discussion started by: biochemist
13 Replies

5. Shell Programming and Scripting

Creating an Interactive Bash Script to Analyze a PCAP

Hello Everyone, I am currently trying to write a Bash Script to call a PCAP file. The command I will use in the script will be the following: tshark -r test.pcap -T fields -e frame.number -e frame.time -e eth.src -e eth.dst -e ip.src -e ip.dst -r ip.proto -E header=y -E separator=, quote=d -E... (4 Replies)
Discussion started by: MrTuxor
4 Replies

6. Shell Programming and Scripting

Bash interactive installation script

Hi, for an exercise I need to write a script that will ask the user about each package in a (local) repository and install it or not according to the user's input. I am fairly new to scripting, so I did not get very far. Here is what I came up with. I really appreciate your help. ... (1 Reply)
Discussion started by: Softsmid
1 Replies

7. Shell Programming and Scripting

Execute interactive bash menu script in browser with PHP

I have an interactive menu script written in bash and I would like use PHP to open the interactive bash menu in a browser. Is this possible? Using the sytem() function in php runs the script but it's all garbled. Seems like maybe a terminal window needs to be opened in php first? ... (1 Reply)
Discussion started by: nck
1 Replies

8. Homework & Coursework Questions

How to write script that behaves both in interactive and non interactive mode

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (8 Replies)
Discussion started by: rits
8 Replies

9. Homework & Coursework Questions

Help with Interactive / Non Interactive Shell script

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (1 Reply)
Discussion started by: rits
1 Replies

10. UNIX for Dummies Questions & Answers

Anyone know?: How the 'for'-loop could stop working in interactive bash shell?!

It is happening with my sessions already second time: a 'for'-loop for some reason stop to work as expected. That means or it is looping without exitting, or it is not loop even once. Here example of my try when it is not processing even one loop. You can see, I start new subshell and... (14 Replies)
Discussion started by: alex_5161
14 Replies
Login or Register to Ask a Question