Remove Zsh from Ubuntu 16.04
I installed zsh, but I realized I miss the basic/default terminal look. How can I get back to the default shell?
software-uninstall zsh
add a comment |
I installed zsh, but I realized I miss the basic/default terminal look. How can I get back to the default shell?
software-uninstall zsh
How did you install zsh ?sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11
add a comment |
I installed zsh, but I realized I miss the basic/default terminal look. How can I get back to the default shell?
software-uninstall zsh
I installed zsh, but I realized I miss the basic/default terminal look. How can I get back to the default shell?
software-uninstall zsh
software-uninstall zsh
edited Sep 21 '17 at 19:19
Zanna
50.7k13135241
50.7k13135241
asked Sep 21 '17 at 16:47
Stefan Stefan
11112
11112
How did you install zsh ?sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11
add a comment |
How did you install zsh ?sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11
How did you install zsh ?
sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
How did you install zsh ?
sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11
add a comment |
1 Answer
1
active
oldest
votes
You can remove it completely with the following command.
sudo apt-get --purge remove zsh
If zsh
was your default shell (see How to check which shell am I using? and What is default shell for terminal?), Do Not forget to change it to any other shell before purging, e.g. to bash
like this with root
access.
chsh -s /bin/bash YOUR_USERNAME
Or below with your login user.
chsh -s /bin/bash
FYI, I've had to logout/login for thechsh
change to be visible
– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removingzsh-*
! if you changed folders like/usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!
– Lucas Alonso
Jan 21 at 22:11
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f958120%2fremove-zsh-from-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can remove it completely with the following command.
sudo apt-get --purge remove zsh
If zsh
was your default shell (see How to check which shell am I using? and What is default shell for terminal?), Do Not forget to change it to any other shell before purging, e.g. to bash
like this with root
access.
chsh -s /bin/bash YOUR_USERNAME
Or below with your login user.
chsh -s /bin/bash
FYI, I've had to logout/login for thechsh
change to be visible
– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removingzsh-*
! if you changed folders like/usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!
– Lucas Alonso
Jan 21 at 22:11
add a comment |
You can remove it completely with the following command.
sudo apt-get --purge remove zsh
If zsh
was your default shell (see How to check which shell am I using? and What is default shell for terminal?), Do Not forget to change it to any other shell before purging, e.g. to bash
like this with root
access.
chsh -s /bin/bash YOUR_USERNAME
Or below with your login user.
chsh -s /bin/bash
FYI, I've had to logout/login for thechsh
change to be visible
– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removingzsh-*
! if you changed folders like/usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!
– Lucas Alonso
Jan 21 at 22:11
add a comment |
You can remove it completely with the following command.
sudo apt-get --purge remove zsh
If zsh
was your default shell (see How to check which shell am I using? and What is default shell for terminal?), Do Not forget to change it to any other shell before purging, e.g. to bash
like this with root
access.
chsh -s /bin/bash YOUR_USERNAME
Or below with your login user.
chsh -s /bin/bash
You can remove it completely with the following command.
sudo apt-get --purge remove zsh
If zsh
was your default shell (see How to check which shell am I using? and What is default shell for terminal?), Do Not forget to change it to any other shell before purging, e.g. to bash
like this with root
access.
chsh -s /bin/bash YOUR_USERNAME
Or below with your login user.
chsh -s /bin/bash
edited Feb 4 '18 at 14:46
answered Sep 21 '17 at 16:53
αғsнιηαғsнιη
24.4k2296157
24.4k2296157
FYI, I've had to logout/login for thechsh
change to be visible
– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removingzsh-*
! if you changed folders like/usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!
– Lucas Alonso
Jan 21 at 22:11
add a comment |
FYI, I've had to logout/login for thechsh
change to be visible
– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removingzsh-*
! if you changed folders like/usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!
– Lucas Alonso
Jan 21 at 22:11
FYI, I've had to logout/login for the
chsh
change to be visible– Arnaud P
Oct 23 '18 at 14:49
FYI, I've had to logout/login for the
chsh
change to be visible– Arnaud P
Oct 23 '18 at 14:49
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removing
zsh-*
! if you changed folders like /usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!– Lucas Alonso
Jan 21 at 22:11
Would add a comment to arshin's answer but I cant: sudo apt-get --purge remove zsh zsh-* Do not forget about removing
zsh-*
! if you changed folders like /usr/share/zsh
then reinstalling zsh without reinstalling zsh-commons will end up with a broken installation!– Lucas Alonso
Jan 21 at 22:11
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f958120%2fremove-zsh-from-ubuntu-16-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
How did you install zsh ?
sudo apt-get purge zsh
– Panther
Sep 21 '17 at 16:51
someone recommended me this shell, but didn't like it. Thanks
– Stefan
Sep 21 '17 at 17:09
Yes, you need to configure it for sure. I use these 2 files bodhizazen.com/Tutorials/zshrc and bodhizazen.com/Tutorials/envrc (save them as ~/.zshrc and ~/.envrc )
– Panther
Sep 21 '17 at 17:11