-
更新源、获取key
-
安装常用工具:yay、git、debtab、wget
sudo pacman -S yay yay -S git debtab wget
-
输入法
# 安装输入软件及框架 yay -S fcitx-qt4 kcm-fcitx fcitx-sogoupinyin # 添加环境变量 sudo echo -e "export GTK_IM_MODULE=fcitx\n export QT_IM_MODULE=fcitx\n export XMODIFIERS=@im=fcitx" >>~/.xprofile # 重启电脑 reboot
-
安装常用软件:
- chrome :
yay -S google-chrome
- WPS:
yay -S wps-office-mui-zh-cn wps-office-mime-cn wps-office-cn wps-office-fonts ttf-ms-fonts ttf-wps-fonts
- 网易云音乐:
yay -S netease-cloud-music
- 截图工具:
yay -S flameshot
- 微信:
yay -S deepin-wine-wechat
- 百度网盘:
yay -S baidunetdisk
- chrome :
-
开发工具:
- vscode:
yay -S visual-studio-code-bin
- miniconda:
wget -c "https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh" -O 'Miniconda3-latest-Linux-x86_64.sh' sh Miniconda3-latest-Linux-x86_64.sh # 安装过程中有2个选择,一个是是否接受相关协议,一个是是否初始化conda(将conda添加到环境变量) # 第一个选择: yes # 第二个选择: conda init # 最后执行 source ~/.bashrc # 配置源 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main conda config --set show_channel_urls yes
- Pycharm:
sudo snap install pycharm-professional --classic
- mysql:
yay -S mysql sudo mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql # 如果出现错误:mysqld: error while loading shared libraries: libicuuc.so.65 # Manjaro系统自带的libicu版本比较低,为64.2 # 去这里https://github.com/unicode-org/icu/releases 下载对应版本的icu4c-版本号-src.tgz文件 wget https://github.com/unicode-org/icu/releases/download/release-65-rc/icu4c-65rc-src.tgz tar -zxvf icu4c-65rc-src.tgz cd icu/source ./configure make sudo make install # 创建软连接 sudo ln -s /usr/local/lib/libicuuc.so.65 /usr/lib/libicuuc.so.65 sudo ln -s /usr/local/lib/libicui18n.so.65 /usr/lib/libicui18n.so.65 sudo ln -s /usr/local/lib/libicudata.so.65 /usr/lib/libicudata.so.65 sudo mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysql sudo systemctl enable mysqld.service sudo systemctl start mysqld.service sudo systemctl status mysqld.service mysql -u root -p # 输入刚刚初始化生成的密码 # 修改密码 alter user root@localhost identified by 'new password';
- datagrip:
sudo snap install datagrip --classic
- vscode: