首页 > 其他分享 >manjaro headless mode(无显示器启动桌面环境)

manjaro headless mode(无显示器启动桌面环境)

时间:2022-11-20 19:36:44浏览次数:64  
标签:manjaro dummy Section 桌面环境 headless mode Identifier EndSection

headless mode

参考1
参考2

1. install xf86-video-dummy

  • yay -S xf86-video-dummy

2. /etc/X11/xorg.conf.d/10-headless.conf

Section "Monitor"
        Identifier "dummy_monitor"
        HorizSync 28.0-80.0
        VertRefresh 48.0-75.0
        Modeline "1920x1080" 172.80 1920 2040 2248 2576 1080 1081 1084 1118
EndSection

Section "Device"
        Identifier "dummy_card"
        VideoRam 256000
        Driver "dummy"
EndSection

Section "Screen"
        Identifier "dummy_screen"
        Device "dummy_card"
        Monitor "dummy_monitor"
        SubSection "Display"
        EndSubSection
EndSection

标签:manjaro,dummy,Section,桌面环境,headless,mode,Identifier,EndSection
From: https://www.cnblogs.com/movit/p/16909263.html

相关文章