一、银河麒麟在VMware虚拟机中如何永久更改窗口分辨率大小?

 1 在/etc/X11/xorg.conf.d目录下创建一个xorg.conf文件,该文件决定系统启动后默认的分辨率

2 填写如下内容

 Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        # 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz
        Modeline "1920x1080_60.00"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync
EndSection
 
Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes   "1920x1080_60.00"
        EndSubSection
EndSection

3 启动后默认分辨率就是1920x1080了

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-10 15:26:03       4 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-10 15:26:03       5 阅读
  3. 在Django里面运行非项目文件

    2024-07-10 15:26:03       4 阅读
  4. Python语言-面向对象

    2024-07-10 15:26:03       5 阅读

热门阅读

  1. Perl 语言开发(八):子程序和模块

    2024-07-10 15:26:03       8 阅读
  2. rpc超时时间的设置对句柄和内存的影响

    2024-07-10 15:26:03       7 阅读
  3. Github 2024-07-06 开源项目日报 Top10

    2024-07-10 15:26:03       7 阅读
  4. 华为HCIP Datacom H12-821 卷31

    2024-07-10 15:26:03       12 阅读
  5. 请写sql满足业务:找到连续登录3天以上的用户

    2024-07-10 15:26:03       10 阅读