Answers for "change default terminal to bash"

1

change default terminal linux

sudo update-alternatives --config x-terminal-emulator
Posted by: Guest on March-04-2021
0

zsh to bash mac

exec bash
Posted by: Guest on June-13-2020
0

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 "change default terminal to bash"

Browse Popular Code Answers by Language