配置 Manjaro Linux 用户组
安装完成后,我们需要配置 Manjaro Linux 系统才能开始使用。
在命令行执行 passwd
以设置 root
的密码。根据最小权限原则(opens in a new tab),日常使用中,不能所有命令中都使用 root 权限进行操作,因此我们需要创建一个新的用户以供日常使用。
参照 ArchWSL 文档,在设置完成后,执行以下命令创建新用户并将其设为默认用户:
(将 {username}
替换成你要使用的用户名,注意请不要使用中文)
Tips:以下命令均可点击右侧的复制按钮一键复制哦!
首先设置 sudoers
文件:
echo "%wheel ALL=(ALL) ALL" > /etc/sudoers.d/wheel
然后添加用户
useradd -m -G wheel -s /bin/bash {username}
接着,设置默认用户密码
passwd {username}
设置完成后执行 exit
退出 Arch,在 Windows 的命令行内执行以下命令来设置默认用户:
Manjaro.exe config --default-user {username}
配置镜像源
sudo pacman-mirrors --country China
sudo pacman -Syu # 选择2 dbus-daemon-units
sudo pacman -S yay
yay -S hyfetch
# Dark transgender <enter> <enter>
配置代理
修改 hosts 访问 github(github 访问不畅,否则跳过此步)
-
创建 /etc/wsl.conf
sudo touch /etc/wsl.conf # 输入以下内容,阻止自动生成 hosts 文件 [network] generateHosts = false
-
将 Github hosts 追加到 /etc/hosts
sudo vim /etc/hosts
-
ping
ping github.com ping raw.githubusercontent.com
# 添加到环境变量设置中,例如 ~/.zshrc
export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*')
export https_proxy="http://${hostip}:7890"
export http_proxy="http://${hostip}:7890"
# source ~/.zshrc
配置 Oh My Zsh 环境
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# or
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
git clone https://gitee.com/lxgyChen/autojump
cd autojump
./install.py
# ~/.zshrc 中添加
[[ -s /home/riotian/.autojump/etc/profile.d/autojump.sh ]] && source /home/riotian/.autojump/etc/profile.d/autojump.sh
autoload -U compinit && compinit -u
# 更新插件列表
plugins = (git sudo copypath copyfile autojump zsh-syntax-highlighting zsh-autosuggestions)
# source ~/.zshrc
git clone https://github.com/spaceship-prompt/spaceship-prompt.git "$ZSH_CUSTOM/themes/spaceship-prompt" --depth=1
ln -s "$ZSH_CUSTOM/themes/spaceship-prompt/spaceship.zsh-theme" "$ZSH_CUSTOM/themes/spaceship.zsh-theme"
# Set ZSH_THEME="spaceship" in your .zshrc.
# (Optional)
# ~/.zshrc
SPACESHIP_TIME_SHOW="true"
SPACESHIP_USER_SHOW="always"
SPACESHIP_USER_COLOR="212" #粉色
SPACESHIP_RUST_VERBOSE_VERSION=true
alias cls="clear"
alias vi="nvim"
alias vim="nvim"
# source ~/.zshrc
配置开发环境
# 配置 Clang 环境
yay -S cmake make gdb
yay -S clang llvm ninja
# 配置 Rust 环境 https://rsproxy.cn/
# ~/.zshrc
export RUSTUP_DIST_SERVER="https://rsproxy.cn"
export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup"
# source ~/.zshrc
curl --proto '=https' --tlsv1.2 -sSf https://rsproxy.cn/rustup-init.sh | sh
# 设置 crates.io 镜像, 修改配置 ~/.cargo/config,已支持git协议和sparse协议, >=1.68 版本建议使用 sparse-index,速度更快
[source.crates-io]
replace-with = 'rsproxy-sparse'
[source.rsproxy]
registry = "https://rsproxy.cn/crates.io-index"
[source.rsproxy-sparse]
registry = "sparse+https://rsproxy.cn/index/"
[registries.rsproxy]
index = "https://rsproxy.cn/crates.io-index"
[net]
git-fetch-with-cli = true
标签:Manjaro,git,rsproxy,WSL2,zshrc,etc,https,Linux,zsh
From: https://www.cnblogs.com/RioTian/p/17984821