Answers for "set tcsh as default shell"

1

set zsh as default shell

chsh -s /bin/zsh
Posted by: Guest on September-08-2021
1

set default shell to bash

#to change your default shell on any GNU/Linux distro 
#you need to use chsh

#For example if you want to change your default shell to bash
#you need to do this:
#first you need the full path to the bash executable
chsh -l

#then using the path for bash you need to write:
chsh -s /your/path/to/bash
#chsh -s /bin/bash for example
Posted by: Guest on February-28-2021

Code answers related to "set tcsh as default shell"

Browse Popular Code Answers by Language