1、ubuntu系统中文显示乱码解决(将系统语言环境从en_US.UTF-8改为zh_CN.UTF-8)
https://blog.csdn.net/qq_30317039/article/details/141124372
2、添加五笔输入法
https://gitee.com/KyleBing/rime-wubi86-jidian
2、如何在 Linux 中监控CPU, 内存,GPU 使用率(类似于Windows的性能监测器):图形界面与命令行工具
https://www.sysgeek.cn/check-gpu-usage-linux/
3、如何在Ubuntu中禁用设备自动挂载
https://www.baeldung-cn.com/linux/ubuntu-disable-automated-mounting
如果点了提示错误可以尝试运行下面命令
# 立即关闭
systemctl stop udisks2
# 禁用开机启动
systemctl disable udisks2
4、AMD显卡驱动安装指南
https://blog.csdn.net/StruggleRay/article/details/133201391
https://cn.linux-console.net/?p=9939
5、Nvidia显卡驱动安装指南
https://blog.csdn.net/huiyoooo/article/details/128015155
6、Linux下mount挂载新硬盘和开机自动挂载(推荐UUID,重启后盘符不会变)
https://www.cnblogs.com/sirdong/p/11969148.html
7、在 Ubuntu 上下载、安装和更新 Google Chrome 浏览器
https://cn.linux-console.net/?p=10358
8、7 种简单方法,释放和清理 Ubuntu 磁盘空间
https://www.sysgeek.cn/ubuntu-free-up-space/
10、配置代理服务
https://zhuanlan.zhihu.com/p/166375631
10、Ubuntu 24配置远程桌面
https://blog.csdn.net/qq_35534279/article/details/138371938
注意:配置完后需要把开关重新打开才能生效
11、Ubuntu 磁盘扩容与扩容失败问题解决( df -h 与 GParted 显示空间不一致的问题 -LVM)
https://blog.csdn.net/m0_51729057/article/details/151794315
错误指南
1、QUESTION: 由于文件 无法被用户‘_apt‘访问,已脱离沙盒并提权为根用户来进行下载。 - pkgAcquire::Run (13: 权限不够)
这是使用 sudo apt-install *.deb的时候报错,原因是文件夹权限不够,我们使用另一种命令行安装方式
使用dpkg安装 sudo dpkg -i *.deb -i -> --install
使用指南
访问匿名共享文件夹每次都提示输入密码,可以使用-N命令进行跳过
smbclient //192.168.123.83/Downloads -N
挂载匿名访问SMB文件
sudo mount -t cifs -o guest //192.168.123.83/Downloads/ /mnt/smbshare