Ubuntu 遇到的问题集合

  1. 安装搜狗输入法 for Ubuntu20.04:
    https://www.jb51.net/article/186808.htm

2、UBuntu与windows时间不一致问题
参考链接:https://www.cnblogs.com/tonyc/p/7740201.html
ubuntu下关闭utc
sudo gedit /etc/default/rcS
将utc=yes改为UTC=no

但在Ubuntu 16.04使用systemd启动之后,时间改成了由timedatectl来管理,所以更改方法是

timedatectl set-local-rtc 1 --adjust-system-clock

windows下打开utc
使用Win+R调出运行窗口,输入regedit打开注册表编辑器,或者直接到控制面板找到注册表编辑器。
HEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Contorl/TimeZoneInformation/
添加类型为REG_DWORD的项,命名为RealTimeIsUniversal值为1,重启

3、Qt编译错误 GL/gl.h:No such file or directory
sudo apt-get install libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev

4、linux中安装matlab时出现 the install cannot run from inside DVD directory
cd ../ sudo matlab/install

你可能感兴趣的:(Ubuntu)