关于 ubuntu 22.04 一些安装
1、更改中文下载目录等为英文
export LANG=en_US xdg-user-dirs-gtk-update 执行完 export LANG=zh_CN.UTF-8
2、安装搜狗拼音
sudo apt install fcitx
设置-区域语言-管理已安装,键盘输入法系统选择:fcitx
添加或删除语言, 确定中文(简体)已勾选,应用到整个系统
重启
https://shurufa.sogou.com/linux 下载搜狗安装包
sudo apt install ./sogoup*.deb
重启
安装输入法依赖包
sudo apt install libqt5qml5 libqt5quick5 libqt5quickwidgets5 qml-module-qtquick2 sudo apt install libgsettings-qt1
重启
3、出现 unable to update snap store 提示
sudo snap refresh snap-store
如果出现无法刷新由于运行某个进程,则kill 后再运行
4、安装了一半中断,无法正常卸载时强制卸载
#搜索安装的包
sudo dpkg -l *weixin*
#正常卸载
sudo dpkg -r <包名>
#强力卸载
rm -rf /var/lib/dpkg/info/weixin* sudo dpkg --remove --force-remove-reinstreq weixin
5、安装谷歌浏览器、xmind
#谷歌浏览器 cd /tmp/ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt install /tmp/google-chrome-stable_current_amd64.deb
#xmind
#页面下载deb文件
https://xmind.app/download/
mv ./Xmin*.deb /tmp/
sudo apt install /tmp/Xmind*.deb
6、wine 安装和卸载软件
#指定32位环境安装 WINEARCH=win32 WINEPREFIX=~/wine wine <exe安装包名> #指定环境卸载 WINEPREFIX=~/wine wine uninstaller.exe
#默认环境位于 ~/.wine 下,64位环境,卸载直接 wine uninstaller.exe
7、安装微信- 优麒麟官网安装
缺点:无法将图片、文件存储于 linux 路径下.官网地址:https://ubuntukylin.com/applications/
wget http://archive.ubuntukylin.com/software/pool/partner/ukylin-wine_70.6.3.25_amd64.deb wget http://archive.ubuntukylin.com/software/pool/partner/ukylin-wechat_3.0.0_amd64.deb
mv ukylin-wine_70.6.3.25_amd64.deb /tmp/
mv ukylin-wechat_3.0.0_amd64.deb /tmp/
sudo apt-get install -f -y /tmp/ukylin-wine_70.6.3.25_amd64.deb sudo apt-get install -f -y /tmp/ukylin-wechat_3.0.0_amd64.deb
卸载:
dpkg -l | grep wechat sudo apt remove xxxx
8、安装QQ音乐
https://y.qq.com/download/download.html
官网下载linux 版本
sudo apt install ./qqmusic*.deb
#编辑桌面文件
sudo vim /usr/share/applications/qqmusic.desktop
改成
#Exec=qqmusic --no-sandbox %U
如果桌面还是无法运行,可命令行运行 qqmusic --no-sandbox %U 一次
9. install nvidia-drivers
最好是直接重装ubuntu后,第一时间先用自带附加驱动面板安装驱动,否则后续手工折腾死
https://linuxhint.com/install-nvidia-drivers-on-ubuntu/
#列出所有可安装的驱动名 ubuntu-drivers devices #安装列出的推荐驱动名,例如 sudo apt install nvidia-driver-525-open
如果出现安装后无法正常进入,或显示异常,可按 Alt+F1-F5 进入命令行登录
sudo apt purge nvidia*
卸载重启后安装其他版本
#自动安装驱动 sudo ubuntu-drivers install #需要修正一个bug: Fixed it by editing the /usr/lib/python3/dist-packages/UbuntuDrivers/detect.py" file and replace line 835 with this line: version = int(package_name.split('-')[-2])
10. 安装清理相关命令
#清理掉所有被使用的安装 sudo apt autoremove
#removes files that can no longer be downloaded and are virtually useless
sudo apt autoclean
#clears the local repository of retrieved package files that are left in /var/cache
sudo apt clean