系统基本配置

Manjaro换源

sudo pacman-mirrors -c China

添加 archlinuxcn 源,获得更多的包:

sudo nano /etc/pacman.conf
[archlinuxcn]
SigLevel = Optional TrustAll
Server = https://mirrors.ustc.edu.cn/archlinuxcn/$arch
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
## xTom (Hong Kong server) (Hong Kong) (ipv4, ipv6, http, https)
## Added: 2017-09-18
## Blocking users in mainland China
[archlinuxcn]
Server = https://mirrors.xtom.hk/archlinuxcn/$arch

更新系统、软件

sudo pacman -Syyu

下载 yay AUR 助手

sudo pacman -S yay

yay安装报错

sudo pacman -Sy && sudo pacman -S archlinuxcn-keyring
sudo rm -rf /etc/pacman.d/gnupg
sudo pacman-key --init
sudo pacman-key --populate

安装 base-devel,yay 命令构建包时会使用到

sudo pacman -S base-devel

输入法配置

yay -S fcitx5-im fcitx5-chinese-addons  fcitx5-material-color fcitx5-pinyin-zhwiki
fcitx5-im fcitx5    输入法框架包
fcitx5-chinese-addons    中文输入法
fcitx5-material-color    皮肤美化包
fcitx5-pinyin-zhwiki    词库

安装完成后编辑将下面 3 行代码加入到 /etc/environment 文件中,这样可以预防出现某些程序不能输入中文的情况发生

GTK_IM_MODULE=fcitx
QT_IM_MODULE=fcitx
XMODIFIERS=@im=fcitx

ohmyzsh

wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh

更改默认 shell 为 zsh:

chsh -s /usr/bin/zsh
zsh

下载插件:

自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

语法高亮
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

zsh-vi-mod
git clone https://github.com/jeffreytse/zsh-vi-mode $ZSH_CUSTOM/plugins/zsh-vi-mode

安装 autojump,终端目录跳转神器:

git clone https://github.com/wting/autojump
cd autojump
./install.py
cd ..
rm -rf autojump

打开 ~/.zshrc 找到 plugins 将它改成下面这样:

plugins=(
    git
    zsh-syntax-highlighting
    zsh-autosuggestions
    zsh-vi-mode
    colored-man-pages
)

~/.zshrc尾部添加

[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh

常用软件安装

Chrome

yay -S google-chrome

网易云音乐

sudo pacman -S netease-cloud-music

WPS

yay -S ttf-wps-fonts wps-office-mui-zh-cn wps-office-mime-cn wps-office-cn
yay -S wps-office-fonts ttf-ms-fonts

百度网盘

yay -S baidunetdisk

迅雷

yay -S xunlei-bin 

微信

yay -S deepin-wine-wechat

微信运行时会显示:

程序 WeChatApp.exe 遇到严重问题需要关闭。我们对此造成的不便表示抱歉。

其实这个 BUG 不影响使用,但是看着心烦,解决办法是先运行如下命令:

/opt/apps/com.qq.weixin.deepin/files/run.sh winecfg

然后选择函数库选项卡,新增函数库顶替的输入框中中输入 wechatapp.exe ,点击右侧添加,选择新建好的 wechatapp.exe,点击编辑,选择停用即可。

QQ

yay -S deepin-wine-qq

Teamviewer

yay -S teamviewer

火焰截图

sudo pacman -S flameshot

Typora

Typora 最新版已经收费,可以在官网下载以前的版本并手动安装,下面是最后一个免费版本:

下载完成后手动安装:

sudo tar -xvf ~/Downloads/Typora-linux-x64-1.0.3.tar.gz -C /usr/local
sudo mv /usr/local/bin/Typora-linux-x64 /usr/local/typora

添加可视化启动程序,在 ~/.local/share/applications 下新建以下文件,Typora 内部自己有 PNG 图片,所以不需要额外下载,直接复制粘贴以下内容即可:

vim ~/.local/share/applications/typora.desktop

[Desktop Entry]
Type=Application
Name=Typora
Exec=/usr/local/typora/Typora
Icon=/usr/local/typora/resources/assets/icon/[email protected]
Terminal=false
Categories=program;InstantMessaging

Picgo

yay -S picgo-appimage

如果可以直接安装就直接使用。我这里自动安装出现了问题,所以又需要手动安装了。

先到 picgo 的 github 中下载 AppImage 后缀的包,然后双击安装即可。

转换 deb 包

安装 debtab:

sudo pacman -S debtap

更新 debtab:

sudo debtap -u

下载好待转换的 deb 包,将其转换,以下步骤一路回车即可:

sudo debtap ~/Downloads/包名.deb

安装转换后的包:

sudo pacman -U ~/Downloads/包名.pkg.tar.zst

配置Git

配置 Git 用户名、密码、代理 :

git config --global user.name <用户名>
git config --global user.email <邮箱地址>
git config --global http.proxy socks5://127.0.0.1:7890
git config --global https.proxy socks5://127.0.0.1:7890

添加 SSH:

ssh-keygen # 疯狂回车

拷贝公钥 ~/.ssh/id_rsa.pub 中的内容,到 github 中添加 ssh keys 即可。
VMware-WorkStation

VMware-WorkStation包在AUR上可用,可以通过运行命令来安装。

yay -S vmware-workstation

安装系统对应的linux-headers

sudo pacman  -S linux-headers

载入vmmon模块

sudo modprobe -a vmw_vmci vmmon

自启动网络服务和USB

sudo systemctl enable vmware-networks.service  vmware-usbarbitrator.service
sudo systemctl start vmware-networks.service  vmware-usbarbitrator.service

安装osc-url

下载 ocs-url:点我跳转

下载完成后手动安装:

sudo pacman -U ~/Downloads/ocs-url-3.1.0-1-x86_64.pkg.tar.xz
Last modification:October 28, 2023
如果觉得我的文章对你有用,麻烦点个赞吧 !