Last active
August 7, 2025 22:35
-
-
Save OndrejValenta/41c4c60f837ccd56c57ba496177676b3 to your computer and use it in GitHub Desktop.
Revisions
-
OndrejValenta revised this gist
Jul 30, 2019 . No changes.There are no files selected for viewing
-
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Install Zsh and Oh-my-zsh on CentOS 7 ## Based on this [article](https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/) -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,6 @@ # Install Zsh and Oh-my-zsh on CentOS 7.md ## Based on this [article](https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/) **ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does** -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,6 +2,8 @@ **ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does** This script can be copy paste to ssh as is. No hands installation. :-) ``` yum install zsh -y chsh -s /bin/zsh root -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Based on this [article](https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/) **ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does** ``` yum install zsh -y -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ echo $SHELL yum install wget git -y wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh /bin/cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc source ~/.zshrc ``` -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ echo $SHELL yum install wget git -y wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh /bin/cp -f ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc source ~/.zshrc ``` -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,7 @@ echo $SHELL yum install wget git -y wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh /bin/cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc source ~/.zshrc ``` -
OndrejValenta revised this gist
Jul 30, 2019 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,10 +1,12 @@ # Based on this [article](https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/) ** ALL INSTALLATIONS ASSUME YES WHEN PROMPTED, that's what -y does** ``` yum install zsh -y chsh -s /bin/zsh root echo $SHELL yum install wget git -y wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc -
OndrejValenta created this gist
Jul 30, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # Based on this [article](https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/) ``` yum install zsh chsh -s /bin/zsh root echo $SHELL yum install wget git wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc source ~/.zshrc ```