边缘花屏问题
sudo apt install systemsettings
打开kde系统设置
打开显示与设置,修改如图下,基本上可以解决99%的边缘花屏
QQ`Tim头像问题
方法一
sudo vim /etc/default/grub
找到GRUB_CMDLINE_LINUX_DEFAULT="quiet spalsh"
改为 GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 quiet spalsh"
sudo update-grub
方法二
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=1
方法三
sudo gedit /etc/sysctl.conf
在文件的最后追加这样几行(关闭ipv6):
# IPv6 disabled
net.ipv6.conf.all.disable_ipv6 =1
net.ipv6.conf.default.disable_ipv6 =1
net.ipv6.conf.lo.disable_ipv6 =1
保存退出,输入命令:
$ sudo sysctl -p
$ ipconfig
然后重启TIM/QQ就发现一切正常了
ssh卡死问题
sudo vim /etc/ssh/ssh_config
末尾添加
SendEnv LANG LC_*
HashKnownHosts yes
GSSAPIAuthentication yes
ServerAliveInterval 30
ServerAliveCountMax 60