关于zsh:WSLWSL折腾之旅2安装ZSH和Docker

39次阅读

共计 1830 个字符,预计需要花费 5 分钟才能阅读完成。

前一篇已设置默认为 root 用户,故所有命令省略sudo,非 root 用户需在命令前自行添加sudo

  1. ZSH

1.1 装置 zsh

通过命令 apt-get install zsh 间接装置。

通过命令 chsh -s /bin/zsh 替换默认的 Shell。

1.2 装置 oh-my-zsh

(1)装置

原装置命令为:

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

但因为 https://raw.github.com 网址可能无法访问,会报如下谬误:

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused

改为 gitee.com 的网址执行命令:

sh -c "$(curl -fsSL https://gitee.com/mirrors/oh-my-zsh/raw/master/tools/install.sh)"

(2)批改主题

装置实现后,执行 vi ~/.zshrc 编辑文件,批改主题为agnoster

(3)暗藏机器名

编辑 agnoster 主题文件,批改第 92 行,删除最初的@%m

vi ~/.oh-my-zsh/themes/agnoster.zsh-theme

设置实现后,wsl 终端丑化实现。

1.3 装置 oh-my-zsh 插件

  • 装置 zsh-syntax-higlighting 语法高亮插件

(1)Git 下载

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git

(2)挪动至 oh-my-zsh 插件文件夹

mv zsh-syntax-highlighting $ZSH_CUSTOM/plugins

(3)编辑 .zshrc 文件,如图示增加内容

(4)配置失效

source ~/.zshrc

  • 装置 zsh-autosuggestions 语法历史记录插件

Git 下载

git clone https://github.com/zsh-users/zsh-autosuggestions.git

其余步骤同上

  • 装置插件后 zsh 提醒 Insecure completion-dependent directories detected 解决办法:

chmod -R 755 [dir]

[dir]为提醒有问题的目录。

  1. Docker

2.1 装置 Docker

(1)装置软件包以容许 apt 通过 HTTPS 应用存储库

apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

(2)信赖 Docker 的 GPG 公钥

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

(3)对于 amd64 架构的计算机,增加软件仓库

add-apt-repository "deb [arch=amd64] https://mirrors.tuna.tsinghua.edu.cn/docker-ce/linux/ubuntu $(lsb_release -cs) stable"

(4)装置 Docker

apt-get update sudo apt-get install docker-ce

2.2 运行 Docker

(1)启动 Docker

service docker start

(2)查看 Docker 版本

docker version

(3)运行 hello-world

docker run hello-world

2.3 设置 Docker 开机自启

(1)编辑 /etc/init.wsl 文件,增加service docker start

vi /etc/init.wsl

(2)关上 Windows 注册表,在 计算机 HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionRun下增加一个REG_SZ 类型的值,名称可自定义,值为mshta vbscript:CreateObject("WScript.Shell").Run("wsl -d Ubuntu-20.04 -u root bash /etc/init.wsl",0,TRUE)(window.close)

注:编辑 /etc/init.wsl 文件可增加其余开机自启的服务。

正文完
 0