xrandrに接続されているすべての外部モニタの設定を問題なく調整できます。ただし、xrandrを使用して設定を変更すると、デフォルトのノートパソコンの画面が黒くなります。リカバリ端末から起動した後、実行すると「ディスプレイをオンにできません」というメッセージが表示されます。xrandr -q
私のラップトップのデフォルトの解像度は3840x2160 60hzです。サポートされているモードを試してください。--scale 0.5x0.5
ノートブックは、nouveauドライバを搭載したVoid Linuxを実行するLenovo X1 Extremeです。
私の/etc/X11/xorg.conf:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/TTF"
FontPath "/usr/share/fonts/X11/OTF"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
EndSection
Section "Module"
# Load "glx-xorg"
# Load "vnc"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
Modeline "3440x1440R" 319.75 3440 3488 3520 3600 1440 1443 1453 1481 +hsync -vsync
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
### <percent>: "<f>%"
### [arg]: arg optional
#Option "SWcursor" # [<bool>]
#Option "HWcursor" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "VideoKey" # <i>
#Option "WrappedFB" # [<bool>]
#Option "GLXVBlank" # [<bool>]
#Option "ZaphodHeads" # <str>
#Option "PageFlip" # [<bool>]
#Option "SwapLimit" # <i>
#Option "AsyncUTSDFS" # [<bool>]
#Option "AccelMethod" # <str>
#Option "DRI" # <i>
Option "ModeValidation" "AllowNonEdidModes"
Identifier "Card0"
Driver "nouveau"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1920x1080"
EndSubSection
EndSection
外部モニタ接続時のxrandr -q出力:
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384
eDP-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
1920x1080 60.00*+
3840x2160 60.00 +
3440x1440R 59.97
1920x1200 59.95
1600x1200 59.95
1680x1050 60.00
1400x1050 60.00
1280x1024 59.95
1280x960 59.99
1152x864 59.97
1024x768 59.95
800x600 59.96
640x480 59.94
720x400 59.97
640x400 59.96
640x350 59.84
HDMI-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 531mm x 298mm
1920x1080 60.00*+ 50.00 59.94 24.00 23.98
1920x1080i 60.00 50.00 59.94
1280x1024 75.02
1152x864 75.00
1280x720 60.00 50.00 59.94
1024x768 119.99 99.97 75.03 60.00
832x624 74.55
800x600 119.97 99.99 75.00 60.32
720x576 50.00
720x480 60.00 59.94
640x480 119.99 100.00 75.00 60.00 59.94
720x400 70.08
eDP-1はマイネイティブノートブックモニター、HDMI-1は外部モニターです。現在外部モニターを切断した状態で起動すると、「モニターの電源を入れることができません」という問題とともに、ノートパソコンが黒い画面で起動します。接続されている外部モニターから起動すると、ノートパソコンの画面はまだ黒く表示されますが、モニターは期待どおりに機能します。
ありがとうございます。