How to Start a Shell as Login shell instead of ordinary shell


 
Thread Tools Search this Thread
Operating Systems Linux How to Start a Shell as Login shell instead of ordinary shell
# 1  
Old 06-30-2008
MySQL How to Start a Shell as Login shell instead of ordinary shell

Hi

I tried with bash --login option. but the output is

siva:~$ bash --login
siva:~$

is there any way to make the shell ask for user id and password ( and login as different user instead of using sudo / su )

Thx in advance
Siva
# 2  
Old 06-30-2008
/etc/passwd has an entry for your login shell. You should not edit /etc/passwd, rather start by reading the man page for passwd for your system. Some systems support something with syntax like
Code:
passwd -e /bin/someshell

# 3  
Old 06-30-2008
sorry it did not worked out.

Also,

passwd -e <account>

makes the password expiry of that account.

Thx,
Siva
# 4  
Old 07-01-2008
chsh might work on some systems
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Pass C shell array to another C shell script(csh) and shell(sh)

Dear Friends, Please help me on this my script name is send.csh In this i have written the statement like this set args = ( city state country price ) I want to pass this array to another c shell called receiver.csh. and i want to use it in this c shell or how to pass to... (2 Replies)
Discussion started by: SA_Palani
2 Replies

2. UNIX for Dummies Questions & Answers

How to start our bash shell?

Hey Guys, I am new in unix and no idea to executing command and bash shell and others shell. Suppose we want to run bash shell then how to do it, witch editor we use in my linux operating system. (7 Replies)
Discussion started by: aaditya321
7 Replies

3. Shell Programming and Scripting

Script as login shell (passing args to login shell)

Hello all, for security reasons my compagny imposes that my script be launch remotly via ssh under the users login shell. So serverA launches the ssh command to serverB which has a local user with my script as a login shell. Local script works like a charm on his own. serverB$ grep... (20 Replies)
Discussion started by: maverick72
20 Replies

4. UNIX for Dummies Questions & Answers

Which of the following command displays your login shell in bash shell?

Options:: A)$shell B)echo $ bash C)echo $ O D)$ O (1 Reply)
Discussion started by: raghugowda
1 Replies

5. UNIX for Dummies Questions & Answers

unable to start shell script

Hi, Pleasse could someone advise why i'm getting this error below - No such file or directory dev6:$ ls -ltr ReleaseManagement.sh -rwxr-xr-x 1 dev fix 4830 Aug 22 11:13 ReleaseManagement.sh dev6:$ ./ReleaseManagement.sh : No such file or directory dev6:$ thank you (2 Replies)
Discussion started by: venhart
2 Replies

6. Shell Programming and Scripting

Help with stop/start Shell Script.

Hi All, I would like to develop a shell script for stop & start an application server (1-4) on Solaris box. Here are the user requirements for this task. 1. User will input the option which server they wish to stop. 2. Will clear cache files from specific location. 3. ... (1 Reply)
Discussion started by: venga
1 Replies

7. Shell Programming and Scripting

want to start shell scripting

I have knowledge in Linux RHEL 5 system & Network Administration topics. I want to know shell scripting. Please guide me to get a good start. (1 Reply)
Discussion started by: subrata
1 Replies

8. HP-UX

Login Shell

Hi all I would like to know what my current shell is? i.e The shell at the time of login. I knw the below commands echo $SHELL but this is not doing the job.. Any other way to find it? What is the below line doin? ps -ef | grep $PPID Will this fetchn the corret shell the... (8 Replies)
Discussion started by: gurubarancse
8 Replies

9. Shell Programming and Scripting

How do i change to super user then revert back to ordinary user ,using shell script?

Hi all, I am trying to eject the cdrom from a livecd after certain stage... Now assuming that it is possible to eject,please consider my issue!!! The OS boots into a regular user by default...so i am unable to use the eject command to push out the drive... However if i try pfexec eject it... (3 Replies)
Discussion started by: wrapster
3 Replies

10. HP-UX

cannot login after changing login shell

Hello Everyone, I am a newbie in unix. I was practicing shell scripts on hp unix machine. I changed my current login shell (Korn) to Bourne shell giving the following command. $ chsh username /usr/bash I am using secure shell client for accessing the hp ux server. After which i... (4 Replies)
Discussion started by: hardesh
4 Replies
Login or Register to Ask a Question