Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.

This question already has an answer here:

Everytime I use my terminal, I am always put into the dash shell instead of bash. Is there any way to change this even just for my user only? Tried apt-alternatives but setting the default shell can't be found.

I am using Debian Jessie testing btw.

share|improve this question

marked as duplicate by Networker, John WH Smith, slm Dec 24 '14 at 13:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers 2

up vote 3 down vote accepted

I'm not Debian user, but all installed shells you can check in:

/etc/shells

to change shell, you can use

$ chsh -s /bin/bash

to check active shell use

echo $SHELL
share|improve this answer

Try doing this :

$ chsh -s /bin/bash

You can also edit /etc/password and modify your line with /bin/bash @ the end of the line

share|improve this answer

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