Manjaro安装以及配置
# 自动选择最快镜像源
sudo pacman-mirrors -i -c China -m rank
1
# 检测镜像源速度
sudo pacman-mirrors --fasttrack
1
# 中文支持
sudo vim /etc/locale.conf
1
修改为
LANG=zh_CN.UTF-8
1
# 更新系统
pacman -Syu
1
# 安装AUR助手
# 安装依赖 go
pacman -Sy go
git clone https://aur.archlinux.org/yay-git.git
cd yay-git
makepkg -si
1
2
3
4
5
2
3
4
5
# 安装软件
# 基础软件
sudo pacman -Sy --needed base-devel git
sudo pacman -Sy wget git vim net-tools bwm-ng fish
1
2
2
# Chrome浏览器
yay -S google-chrome
1
# vscode
yay -S visual-studio-code-bin
1
2
2
# 搜狗输入法
# Docker
yay -S docker
1
# autojump
git clone https://github.com/wting/autojump.git
cd autojump
./install.py
1
2
3
2
3
# fish配置
vim ~/.config/fish/config.fish
// add to file
if test -f /home/jifu/.autojump/share/autojump/autojump.fish; . /home/jifu/.autojump/share/autojump/autojump.fish; end
1
2
3
4
2
3
4
# 系统键位修改
# 修改CAPS -> CTRL
/etc/default/keyboard
XKBOPTIONS="ctrl:nocaps"
1
# 配置fish
# 设置默认bash
chsh
/usr/bin/fish
1
2
3
2
3
# 安装oh my fish
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
1
# 安装主题
omf install bira
1
# 配置i3
# i3 Wizard创建配置文件
i3-config-wizard
1
# i3配置文件位置
~/.i3/config
# 修改修饰键
Mod4: win Mod1: alt
set $mod Mod1
1
# i3生效配置
i3 reload
1
# 软件配置
# sshd
vim /etc/ssh/sshd_config
PermitRootLogin yes
PubkeyAuthentication yes
1
2
3
4
2
3
4
上次更新: 2024/02/09, 16:34:46