Parallels Desktop安装openEuler及初始化配置
本文介绍了在 OpenEuler 上安装和配置 zsh、oh-my-zsh、vim,并设置 SSH 链接的过程。通过安装最小化版本的 openEuler,更新系统,并安装必要的工具来实现这些操作。
# 缘由
Docker desktop for mac 目前做的太差,除了性能低下,还有一些无法解决的问题,比如网络绑定,而这些在原生 Linux 里面都不存在。所以还是使用 Linux 来运行 docker 容器体验最好。
# 安装 openEuler
下载 openEuler 22.03 LTS。
openEuler-22.03-LTS-x86_64-dvd.iso
选择 最小安装 。 注意勾上 容器 和 开发工具 。
# 更新 openEuler
sudo dnf update
1
# SSH 链接 openEuler
先安装 net-tools 查看 ip
sudo dnf install net-tools
1
查看 ip,然后使用 ZenTermLite 链接即可
ifconfig
1
# 安装 chsh
sudo dnf install util-linux-user
1
# 安装 zsh
sudo dnf install zsh
1
# 安装 oh-my-zsh
git clone https://gitee.com/mirrors/oh-my-zsh.git ~/.oh-my-zsh \
&& cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc \
&& git clone https://gitee.com/playerfs/zsh-autosuggestions.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions \
&& git clone https://gitee.com/playerfs/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting \
&& sed -i 's/^plugins=(/plugins=(zsh-autosuggestions zsh-syntax-highlighting /' ~/.zshrc \
&& chsh -s /bin/zsh
1
2
3
4
5
6
2
3
4
5
6
# 安装 vim
sudo dnf install vim
1
# 配置 SSH
完整的配置 ~/.ssh/config
# open-euler
Host pl-open-euler
HostName 192.168.3.63
User terwer
1
2
3
4
2
3
4
编辑 (opens new window)
上次更新: 2024/06/13, 11:45:06