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
本文提供了解决Linux虚拟机安装过程未选择更新导致系统运行在低图形模式的问题,以及如何修改分辨率以适应不同屏幕尺寸的方法。通过执行`sudo apt-get update`, `sudo apt-get upgrade`和`sudo reboot`,可以解决系统更新问题。对于分辨率不匹配的情况,建议先安装VboxLinuxadditions,然后编辑配置文件`/etc/X11/xorg.conf.failsafe`来修改分辨率设置,将显示模式更改为1366*768,最终通过重启系统实现分辨率的调整。

被折叠的 条评论
为什么被折叠?



