打开【增加/删除软件】,找到要删除的软件卸载
ms-office ---微软在线办公软件
Thunderbird ---邮箱
konversation ---扫描仪工具
skanlite ---扫描仪工具
steam ---游戏
打印机 视频 邮箱 liboffice等等......
1.输入以下命令 选择清华源tsinghua
sudo  pacman-mirrors -i -c China -m rank2.增加archlinuxcn库和antergos库
echo -e "\n[archlinuxcn]\nSigLevel = TrustAll\nServer = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/\$arch\n\n[antergos]\nSigLevel = TrustAll\nServer = https://mirrors.tuna.tsinghua.edu.cn/antergos/\$repo/\$arch\n"|sudo tee -a /etc/pacman.conf3.升级系统、刷新源
sudo pacman -Syyu --noconfirm4.安装archlinuxcn签名钥匙&antergos签名钥匙
sudo pacman -S --noconfirm archlinuxcn-keyring antergos-keyring1.输入以下命令 安装搜狗输入法和配置界面
sudo pacman -S --noconfirm fcitx-im fcitx-sogoupinyin fcitx-configtool2.输入以下命令 把中文文件夹换成英文
export LANG=en_US
xdg-user-dirs-gtk-update3.然后输入以下命令 把字体换回中文
export LANG=zh_CN4.注销后重新登录即可,如果输入法不可用,编辑文件新建文件~/.xprofile
加入以下三行,再注销系统重启
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"1.输入指令查询虚拟机上已经设置了的共享文件夹名
vmware-hgfsclient2.能看到自己设置的文件夹名继续以下操作
在/etc/systemd/system目录,创建一个文件mnt.hgfs.service
sudo gedit /etc/systemd/system/mnt.hgfs.service3.填入下面的内容,将所有共享文件夹mount到/mnt/hgfs目录下
[Unit]
Description=Load VMware shared folders
Requires=vmware-vmblock-fuse.service
After=vmware-vmblock-fuse.service
ConditionPathExists=.host:/
ConditionVirtualization=vmware
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/vmhgfs-fuse -o allow_other -o auto_unmount .host:/ /mnt/hgfs
[Install]
WantedBy=multi-user.target4.保存后,用systemctl命令使能这个service,
sudo systemctl enable mnt.hgfs.service5.最后重启系统,如果没有/mnt/hgfs文件夹,需要创建
sudo mkdir -p /mnt/hgfs把配置sublime-text-dev文件通过共享,替换到插件目录
1.清除系统中无用的包
sudo pacman -R $(pacman -Qdtq)
2.清除已下载的安装包
sudo pacman -Scc
原文:https://www.cnblogs.com/misfit/p/10165369.html