Arch 折腾日记
瞎瘠薄搞,不求好用,只求好看
安装过程参考 wiki 不赘述了 这里就算写了 过两年也过时了www
这里只写一个小技巧 用来把 pacman 国内源写在 mirrorlist 最前面
# cd /etc/pacman.d # grep -A 1 '##.*China' mirrorlist|grep -v '\-\-'> mirrorlist2 # cat mirrorlist>>mirrorlist2 # mv mirrorlist2 mirrorlist
咱写点咱用的软件,以后重装一键安装
必备
# pacman -S vim git zsh sudo screenfetch
用户
# useradd -m -G wheel -s /bin/zsh hexsix # passwd hexsix
修改 sudoers 使咱能用 sudo
# EDITOR=vim visudo
找到 %wheel 允许 wheel 用户组成员使用sudo:
%wheel ALL=(ALL)
Microcode
咱是 intel
# pacman -S intel-ucode
# grub-mkconfig -o /boot/grub/grub.cfg
终端
Sakura + Oh My Zsh
# pacman -S sakura
ohmyzsh 具体配置以后填坑
字体
现在流行只用一个字体
# pacman -S wqy-microhei
驱动
安装桌面环境前先安装显卡驱动
# pacman -S xf86-video-intel mesa nvidia nvidia-utils
桌面环境
GNOME
因为 Ubuntu 的缘故 Gnome 的美化尤其多
顺便把一些必须的软件也装上
如压缩软件、网络管理
# pacman -S gnome gnome-shell gnome-shell-extensions gnome-tweaks # pacman -S p7zip file-roller unrar # pacman -S networkmanager networkmanager-openvpn
设置 gnome 开机启动
# systemctl enable gdm.service
设置 networkmanager 开机启动
# systemctl enable NetworkManager.service
输入法
fcitx + 搜狗拼音
# pacman -S fcitx fcitx-im
$ yaourt -S fcitx-sogoupinyin
fcitx-im 是 fcitx 对 Gtk+/Qt 的支持,不要忘记安装
咱使用的是 gnome 所以安装完成后,记得将下列语句加入 /etc/environment
export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS=@im=fcitx
蓝牙
# pacman -S gnome-bluetooth blueman
代理
# pacman -S shadowsocks-libev shadowsocks-qt5 shadowsocks-libev-qrcode
浏览器
Chromium || Firefox
咱觉得 Edge 挺好用的 可惜 Linux 下没有
还有很多直播网站还在用 flash 也装上
# pacman -S firefox flashplugin
图片影音
# pacman -S pinta vlc deadbeef
$ yaourt -S netease-cloud-music
下载
# pacman -S deluge
Yaourt
$ sudo vim /etc/pacman.conf ------------------------------------------------------------- [archlinuxcn] #The Chinese Arch Linux communities packages. SigLevel = Optional TrustAll Server = http://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch #Server = http://repo.archlinuxcn.org/$arch #Server = http://repo.archlinux.fr/$arch
安装
$ sudo pacman -Syy yaourt
修改 /etc/yaourtrc,去掉 # AURURL 的注释,加入aur镜像地址,修改为
AURURL="https://aur.tuna.tsinghua.edu.cn"
虚拟机
VirtualBox