Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

I'm getting the error: bash: ./fw_utils: /bin/ksh: bad interpreter: No such file or directory

If i apt-get install ksh does it replace the default show or only install it as an interpreter?

If it does install it as the default how do I switch the default back to bash?

share|improve this question

1 Answer

up vote 5 down vote accepted

I just checked it on my Debian box and it does not change the default shell for existing or newly added users. Existing user's shells are stored in /etc/passwd and can be changed with the chsh command. The default shell for new users is stored (in Debian) in in /etc/adduser.conf. Apt getting ksh did not alter either of these.

share|improve this answer
It does, however, add it to /etc/shells so it is ready to be used as a shell. – Insyte Jul 9 '10 at 17:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.