1、安装时没有选择在安装过程中更新,结果出现了“the system is running in low-graphics mode”这样的问题。
网上有各种解决方案,我这里只需
sudo apt-get update
sudo apt-get upgrade
sudo reboot
就可以解决。
2、进入系统后默认的是1024*768的分辨率,全屏后,在我电脑(1366*768)上看着不舒服,以下修改分辨率。
先安装VboxLinuxadditions
接着修改分辨率相关的配置文件/etc/X11/xorg.conf
我的电脑上没有这个文件,不过有/etc/X11/xorg.conf.failsafe
sudo vim /etc/X11/xorg.conf.failsafe
Section "Device"
Identifier "Configured Video Device"
Driver "vboxvideo"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Modes "1366x768"
EndSubSection
EndSection
修改为这样的,保存退出。
sudo reboot
即可修改分辨率为1366*768