centos 安装 配置 zsh

centos 编译安装 zsh 和 配置 oh-my-zsh

下载

wget https://jaist.dl.sourceforge.net/project/zsh/zsh/5.9/zsh-5.9.tar.xz

依赖

yum install ncurses-devel

安装zsh

执行:

tar -xvf zsh-5.9.tar.xz
cd zsh-5.9
./configure --prefix=/usr/local/zsh5.9
make && make install

添加信息

# 在 /etc/shells 最后一行加上:/usr/local/bin/zsh
echo "/usr/local/zsh5.9/bin/zsh" >> /etc/shells

# 把默认shell 切换为 zsh,重启系统生效
chsh -s /usr/local/zsh5.9/bin/zsh

安装 oh-my-zsh

oh-my-zsh github 仓库

在 github 代码仓库里写了如何安装 oh-my-zsh

Method Command
curl sh -c “$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)”
wget sh -c “$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)”
fetch sh -c “$(fetch -o - https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)”

有些人的机器由于环境没有配置好,可能上面三种方式都无法安装。

解决方式:

方案一: 根据提示,配置好环境

方案二 直接在 github 下载项目,改名为 .oh-my-zsh。然后执行下面命令,把 .zshrc 文件复制到 home 目录下

cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc

重启终端生效

你可能感兴趣的:(linux,centos,linux,运维)