Arch linux衍生版安装配置(Manjaro,Antergos,Apricity.etc)
1. 更换源与添加源
1自动筛选源
//全球源进行筛选
sudo pacman-mirrors -c all
//只筛选国内源
sudo pacman-mirrors -c China
//
sudo gedit /etc/pacman.conf [archlinuxcn] SigLevel = Optional TrustedOnly
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
[archlinuxcn]
SigLevel = Optional TrustAll
Server = http://repo.archlinuxcn.org/$arch
[blackarch]
SigLevel = Optional TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/blackarch/$repo/os/$arch
[archlinuxcn]
SigLevel = Optional TrustedOnly
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
//更新key
sudo pacman -Syy && sudo pacman -S archlinuxcn-keyring
2. 安装中文输入法
我选择的是安装搜狗拼音的 Linux 版本
sudo pacman -S fcitx-sogoupinyin sudo pacman -S fcitx-im # 全部安装 sudo pacman -S fcitx-configtool # 图形化配置工具
之后就是还需要更改 ~/.xprofile
export GTK_IM_MODULE=fcitx export QT_IM_MODULE=fcitx export XMODIFIERS="@im=fcitx"
最后在命令行输入fcitx就可以使用了
3. 安装 zsh
既然是用 Linux 当然没有忘记把 bash 换成 zsh
首先是安装 zsh:
sudo pacman -S zsh
接着配置 oh-my-zsh:
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
最后更换默认的 shell:
chsh -s /bin/zsh
重启之后就就可以愉快的使用 zsh 了~科普下,zsh是一款可以省略电脑名,支持很多bash语法高亮的简化shell客户端
然后,剩下的事就只有玩了,安装其他软件都是一条命令解决,再也不用到处找源了。
比如:
网易云:
sudo pacman -S netease-cloud-music
GIT:
sudo pacman -S git
WPS :
pacman -S wps-office
所有支持的包列表:here
arch强大在于有一个集所有包于一身的包管理器,所有软件基本一条命令搞定,官方的wiki汉化程度也很高
不用到处找资料:传送门
elementary的外观 : 传送门
折腾了一圈,然后装个plank
plank --preferences
用这个命令来设置plank。
常用的命令:
pacman -Syu –ignore 包名 (跳过更新失败的包,用pacman -S 单独重新安装)
再执行
pacman -Su
清除不再需要的包
yaourt -Qdt
更新源
pacman -Syy
更新所有软件
pacman -Syu
安装
pacman -S
重新安装
pacman -Sf
卸载
pacman -R
卸载清楚关系(s)和缓存(c)
pacman -Rsc
安装本地包
pacman -U
下载但不安装
pacman -Sw
清除缓存(/var/cache下)
pacman -Scc
VMware相关
install click here
安装 依赖项fuse2,gtkmm,linux-headers(must be lastest),ncurses5-compat-libs
sudo pacman -S fuse2 gtkmm linux-headers ncurses5-compat-libs
下载最新的VMware Workstation Pro或Player (或者beta版本,当可用时).
# sh VMware-edition-version.release.architecture.bundle
安装 vmware-patch
yaourt -S vmware-patch
OK
如果提示could not open /dev/vmmon:?????? please make sure that the kernel moduel vmmon is load请
sudo /etc/init.d/vmware start
卸载
先查看安装的虚拟机
vmware-installer -l #然后会显示版本和产品名称
卸载虚拟机
sudo vmware-installer --uninstall-product vmware-workstation
安装建议还是直接用自带管理器安装,省不少麻烦
Manjaro移除列表
sudo pacman -Rc libreoffice-fresh hplip brasero hexchat empathy lollypop manjaro-hello manjaro-documentation-en imagewriter uget lshw yelp arc-firefox-theme-maia
一些用不着的东西
去除GNOME密匙环
先关闭自动登录,然后删除
rm -R /home/lckiss/.local/share/keyrings
重启即可
解决manjaro管理员账户无法修改配置的问题
我之前以为是bug,后来发现很久了还是没有更新,什么文件管理器不能修改首选项,dconf不能修改任何root的默认设置,退出就还原,无任何改变,后查阅了社区,发现是要安装dbus X11,来替换默认的DBUS
以下命令解决。
yaourt -S dbus-x11
如果不会自动卸载之前的dbus请自己卸载。我的是会自己卸载