-
-
Save moqimoqidea/e4b0dd31741370ce91bd638f83ed1a25 to your computer and use it in GitHub Desktop.
Revisions
-
Semo revised this gist
Dec 20, 2018 . 1 changed file with 11 additions and 11 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 @@ -4,38 +4,38 @@ Given that you have a clean installation of CentOS 7 which was already updated, by you, then you still have some dependencies to install make and install the external Zsh from the source. You must be root to get the stuff done. #### Install GCC Development Tools `yum groupinstall "Development tools"` #### Check if it's working `gcc -v` #### Get and install ncurses `yum install ncurses-devel` #### Download the zsh sources `wget https://sourceforge.net/projects/zsh/files/zsh/5.6.2/zsh-5.6.2.tar.xz/download` #### Untar it `tar -xvJf download` #### Prepare the loaded sources `cd zsh-5.6.2` `./configure` #### Make a binary `make` #### Install the binary `make install` #### Edit the /etc/shells file to let CentOS know about the Zsh `vi /etc/shells` #### Insert the next line to the bottom and save it `/usr/local/bin/zsh` #### Change the system's shell `chsh -s /usr/local/bin/zsh` #### Done (TM) ;-) -
Semo revised this gist
Dec 20, 2018 . 1 changed file with 14 additions and 14 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,41 +1,41 @@ # How to install Zsh version 5.6.2 into CentOS 7 Given that you have a clean installation of CentOS 7 which was already updated, by you, then you still have some dependencies to install make and install the external Zsh from the source. You must be root to get the stuff done. ### Install GCC Development Tools `yum groupinstall "Development tools"` ### Check if it's working `gcc -v` ### Get and install ncurses `yum install ncurses-devel` ### Download the zsh sources `wget https://sourceforge.net/projects/zsh/files/zsh/5.6.2/zsh-5.6.2.tar.xz/download` ### Untar it `tar -xvJf download` ### Prepare the loaded sources `cd zsh-5.6.2` `./configure` ### Make a binary `make` ### Install the binary `make install` ### Edit the /etc/shells file to let CentOS know about the Zsh `vi /etc/shells` ### Insert the next line to the bottom and save it `/usr/local/bin/zsh` ### Change the system's shell `chsh -s /usr/local/bin/zsh` #### Done (TM) ;-) -
Semo revised this gist
Dec 20, 2018 . 1 changed file with 28 additions and 26 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,39 +1,41 @@ How to install Zsh version 5.6.2 into CentOS 7 Given that you have a clean installation of CentOS 7 which was already updated, by you, then you still have some dependencies to install make and install the external Zsh from the source. You must be root to get the stuff done. ### Install GCC Development Tools yum groupinstall "Development tools" ### Check if it's working gcc -v ### Get and install ncurses yum install ncurses-devel ### Download the zsh sources wget https://sourceforge.net/projects/zsh/files/zsh/5.6.2/zsh-5.6.2.tar.xz/download ### Untar it tar -xvJf download ### Prepare the loaded sources cd zsh-5.6.2 ./configure ### Make a binary make ### Install the binary make install ### Edit the /etc/shells file to let CentOS know about the Zsh vi /etc/shells ### Insert the next line to the bottom and save it /usr/local/bin/zsh ### Change the system's shell chsh -s /usr/local/bin/zsh ### Done (TM) ;-) -
Semo renamed this gist
Dec 20, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Semo revised this gist
Dec 20, 2018 . 1 changed file with 1 addition 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,7 @@ # by you, then you still have some dependencies to install make and install the # external Zsh from the source. You must be root to get the stuff done. # Install GCC Development Tools yum groupinstall "Development tools" # Check if it's working -
Semo renamed this gist
Dec 20, 2018 . 1 changed file with 1 addition and 11 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 @@ -5,44 +5,34 @@ yum groupinstall "Development tools" # Check if it's working gcc -v # Get and install ncurses yum install ncurses-devel # Download the zsh sources wget https://sourceforge.net/projects/zsh/files/zsh/5.6.2/zsh-5.6.2.tar.xz/download # Untar it tar -xvJf download # Prepare the loaded sources cd zsh-5.6.2 ./configure # Make a binary make # Install the binary make install # Edit the /etc/shells file to let CentOS know about the Zsh vi /etc/shells # Insert the next line to the bottom and save it /usr/local/bin/zsh # Change the system's shell chsh -s /usr/local/bin/zsh # Done (TM) ;-) -
Semo created this gist
Dec 20, 2018 .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,48 @@ # Given that you have a clean installation of CentOS 7 which was already updated, # by you, then you still have some dependencies to install make and install the # external Zsh from the source. You must be root to get the stuff done. yum groupinstall "Development tools" # Check if it's working gcc -v # Get and install ncurses yum install ncurses-devel # Download the zsh sources wget https://sourceforge.net/projects/zsh/files/zsh/5.6.2/zsh-5.6.2.tar.xz/download # Untar it tar -xvJf download # Prepare the loaded sources cd zsh-5.6.2 ./configure # Make a binary make # Install the binary make install # Edit the /etc/shells file to let CentOS know about the Zsh vi /etc/shells # Insert the next line to the bottom and save it /usr/local/bin/zsh # Change the system's shell chsh -s /usr/local/bin/zsh # Done (TM) ;-)