oracle linux 6图形界面怎么调整 分辨率
时间: 2024-04-05 18:31:25 浏览: 155
要调整Oracle Linux 6的图形界面分辨率,请按照以下步骤操作:
1. 打开终端并以root用户身份登录。
2. 进入/etc/X11目录。
3. 备份xorg.conf文件:
cp xorg.conf xorg.conf.bak
4. 使用编辑器打开xorg.conf文件:
vi xorg.conf
5. 找到以下行:
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
6. 在Modes行中添加您想要的分辨率,例如:
Modes "1024x768" "800x600" "640x480" "1280x720"
7. 保存并关闭文件。
8. 重启X Window System:
service gdm restart
现在您的图形界面应该已经调整为您所需的分辨率。
阅读全文