Manjaro快速上手指南
笔者环境:
从一个好用的编辑器开始吧
vim
sudo pacman -S vim
可能需要更新下库:sudo pacman -Syy
诶,还是安装失败了(没失败的跳过)
异常了类似与:
/usr/bin/hardcode-fixer: 第 140 行:[: :需要整数表达式
来跟我做:sudo pacman -R hardcode-fixer
再安装 vim
manjaro sodo配置
- 修改
/etc/sodoers
,清除%sudo ALL=(ALL) ALL
前的注释#
...
## Uncomment to allow members of group sudo to execute any command
%sudo ALL=(ALL) ALL
...
- 不要在sudoers文件中直接添加用户设置
- 编辑
/etc/sudoers.d/10-installer
在%wheel ALL=(ALL) ALL
后面添加配置
%wheel ALL=(ALL) ALL
[username] ALL=(ALL) NOPASSWD: ALL
%[groupname] ALL=(ALL) NOPASSWD: ALL
上例配置用户sudo免密,其他配置暂不展开了
换源
- 配置镜像源
sudo pacman-mirrors -i -c China -m rank
- 设置 archlinuxcn 源,antergos源,arch4edu源
sudo vi /etc/pacman.conf
[archlinuxcn]
SigLevel = Optional TrustedOnly
#中科大源
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
#清华源
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
[antergos]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/antergos/$repo/$arch
[arch4edu]
SigLevel = TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/arch4edu/$arch
- 更新源列表
sudo pacman-mirrors -g
- 更新pacman数据库并全面更新系统
sudo pacman -Syyu
注意:若不想更新系统就不要加u
,若使用软件过程中各种包不存在,那你考虑下u,或手动安装各种包 - PGP签名
sudo pacman -S archlinuxcn-keyring
sudo pacman -S antergos-keyring
安装yay包管理工具
sudo pacman -S yay
安装fcitx中文输入法
yay -S fcitx fcitx-qt5 kcm-fcitx
sudo vi ~/.xprofile
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
这时候,你可能需要重启一下
TIM/QQ
Manjaro-kde桌面安装TIM/QQ的时候经常出现无法启动,其主要原因是deein-wine-tim打包了Gnome桌面部分内容,因此在KDE桌面环境下需要安装相应的Gnome桌面设置环境
yay -S gnome-settings-daemon
cp /etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop ~/.config/autostart
PS:这个时候setting可能打不开,打不开就重启吧,打开系统设置如下
yay -S deepin.com.qq.office
安装TIM 版本自己选yay -S deepin.com.qq.im.light
QQ轻聊版
下载想要的版本安装包https://github.com/countstarlight/deepin-wine-wechat-arch
本人安装2.9.5版本,使用过程中发现wechat时而发送不了图片和文件,后安装低版本
# 2.7.1自测没有问题
wget https://github.com/countstarlight/deepin-wine-wechat-arch/releases/download/v2.7.1.88-1/deepin-wine-wechat-2.7.1.88-1-x86_64.pkg.tar.xz
sudo pacman -U deepin-wine-wechat-2.7.1.88-1-x86_64.pkg.tar.xz
企业微信
yay -S com.qq.weixin.work.deepin
vmware
下载安装包
VMware-Workstation-Full-15.5.6-16341506.x86_64.bundlechmod +x VMware-Workstation-Full-15.5.6-16341506.x86_64.bundle
./VMware-Workstation-Full-15.5.6-16341506.x86_64.bundle
安装前建议网上找一下步骤图,免掉坑
could not open /dev/vmmon:??? please make sure that the kernel moduel vmmon is load
sudo /etc/init.d/vmware start
wps
yay -S wps-office
yay -S ttf-wps-fonts
yay -S wps-office-mui-zh-cn
xmind
yay -S xmind
或链接: https://pan.baidu.com/s/1XgIHDh5IwbzlyRHz8BZRbQ 密码: geen
0. 解压
1. cp XMindCrack.jar XMind.ini 到xmind启动程序目录
2. hosts添加:
0.0.0.0 www.xmind.net
3.启动xmind,输入***(serial_number.txt);
或使用脚本启动(解决XMind打开中文名文件失败,没有问题的忽略)
rdesktop
An open source client for Windows Remote Desktop Services
windows的mstsc的linux替代者,能远程连接windows的客户端
yay -S rdesktop
windows需开启远程连接哦:控制面板>系统和安全>系统>远程设置 然后…看到在哪设置了吧!还不行的,看看防火墙哦
算了,来张图吧:
其他
- locate
yay -S mlocate
locate命令,manjaro默认不安装,高效寻找文件 - 7z压缩工具
yay -S p7zip-natspec
比p7zip,该版本兼容编码问题,解压window 产出的zip包不乱码 - 终端
yay -S terminator
- 翻译
yay -S translate-shell
- 截图
yay -S flameshot
-
notepad++notepadqqyay -S notepadqq
- 网易云音乐
yay -S netease-cloud-music
- 百度云盘
yay -S baidunetdisk-bin
- nmon 系统监控命令
yay -S nmon
- wireshark
yay -S wireshark-qt
- tmux 终端分屏
yay -S tmux
- peek录屏(可以录gif哦,好像录不了声音哦)
yay -S peek
下一篇: docker镜像管理实例