更新源、获取key
安装常用工具:yay、git、debtab、wget
sudo pacman -S yayyay -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
安装常用软件:
yay -S google-chrome
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
开发工具:
yay -S visual-studio-code-bin
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/freeconda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/mainconda config --set show_channel_urls yes
sudo snap install pycharm-professional --classic
yay -S mysqlsudo 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.tgztar -zxvf icu4c-65rc-src.tgzcd icu/source./configuremakesudo make install# 创建软连接sudo ln -s /usr/local/lib/libicuuc.so.65 /usr/lib/libicuuc.so.65sudo ln -s /usr/local/lib/libicui18n.so.65 /usr/lib/libicui18n.so.65sudo ln -s /usr/local/lib/libicudata.so.65 /usr/lib/libicudata.so.65sudo mysqld --initialize --user=mysql --basedir=/usr --datadir=/var/lib/mysqlsudo systemctl enable mysqld.servicesudo systemctl start mysqld.servicesudo systemctl status mysqld.servicemysql -u root -p# 输入刚刚初始化生成的密码# 修改密码alter user root@localhost identified by 'new password';
sudo snap install datagrip --classic