Cis*_*nas 8 display nvidia screen 14.04 nvidia-settings
我有两个屏幕,有时我只想显示 27"。到目前为止,我已尝试将 nvidia-settings 运行为
sudo -s
nvidia-settings
Run Code Online (Sandbox Code Playgroud)
但是每次我重新启动时,我都必须重做我的偏好。我的笔记本电脑是 asus g75vw nvidia 驱动程序版本是:331.38 Ubuntu 14.04
我已经尝试过新的驱动程序,除了现在标准设置使屏幕重复之外没有任何变化......
有没有其他简单的方法可以将设置设置为重启后仍然存在?
x 配置文件
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings: version 337.12 (buildd@charichuelo) Wed Apr 9 12:25:02 UTC
2014
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 331.38 (buildmeister@swio-display-x64-rhel04-15) Wed
Jan 8 19:53:14 PST 2014
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "0"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Samsung S27C590"
HorizSync 30.0 - 81.0
VertRefresh 50.0 - 75.0
Option "DPMS"
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce GTX 670M"
Option "RegistryDwords" "PowerMizerEnable=0x1; PerfLevelSrc=0x3322;
PowerMizerDefault=0x2; PowerMizerDefaultAC=0x2"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "Stereo" "0"
Option "nvidiaXineramaInfoOrder" "DFP-2"
Option "metamodes" "HDMI-0: nvidia-auto-select +0+0"
Option "SLI" "Off"
Option "MultiGPU" "Off"
Option "BaseMosaic" "off"
SubSection "Display"
Depth 24
EndSubSection
EndSection
Run Code Online (Sandbox Code Playgroud)
Xrand给我
$ sudo xrandr
Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 16384 x 16384
VGA-0 disconnected (normal left inverted right x axis y axis)
LVDS-0 connected 1920x1080+1920+0 (normal left inverted right x axis y axis) 382mm x
215mm
1920x1080 60.0*+ 40.0
DP-0 disconnected (normal left inverted right x axis y axis)
HD MI-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis)
598mm
x 336mm
1920x1080 60.0*+ 59.9 50.0
1680x1050 60.0
1600x900 60.0
1440x900 59.9
1280x1024 75.0 60.0
1280x800 59.8
1280x720 60.0 59.9 50.0
1152x864 75.0
1024x768 75.0 70.1 60.0
800x600 75.0 72.2 60.3 56.2
720x576 50.0
720x480 59.9
640x480 75.0 72.8 59.9
DP-1 disconnected (normal left inverted right x axis y axis)
Run Code Online (Sandbox Code Playgroud)
最简单的方法是以nvidia-settings
root身份运行:
sudo nvidia-settings
Run Code Online (Sandbox Code Playgroud)
您现在可以使用“保存到 X 配置文件”按钮。
或者,您可以简单地将生成的文件另存为,/etc/X11/xorg.conf
但不要在问题中使用该文件。那个是不完整的,大概是因为你没有复制整个东西。
好像有什么东西覆盖了你的 xorg.conf 文件。作为(不优雅的)解决方法,您可以使用xrandr
(不 使用sudo
)来激活/停用您的屏幕:
要停用第二个屏幕并仅使用您的主显示器:
xrandr --output LVDS-0 --off
Run Code Online (Sandbox Code Playgroud)要激活它:
xrandr --output HDMI-0 --auto --primary --output LVDS-0 --mode 1920x1080 --right-of HDMI-0
Run Code Online (Sandbox Code Playgroud)
重要提示:xrandr
如果您的屏幕标识符是MI-0
或 ,我不确定您的输出HD MI-0
。我从未见过包含空格的标识符,这就是我使用前者的原因,但您可能需要使用它xrandr --output "HD LVDS-0" --auto --right-of MI-0
。
如果这些命令在您想要的布局之间成功切换(如果没有,请告诉我,我们可以调整它们),您可以将它们转换为一个简单的脚本:
#!/usr/bin/env bash
if [[ $1 = "off" ]]; then
xrandr --output LVDS-0 --off
else
xrandr --output HDMI-0 --auto --primary --output LVDS-0 --mode 1920x1080 --right-of HDMI-0
fi
Run Code Online (Sandbox Code Playgroud)
将其另存为switch_screens.sh
并使其可执行 ( chmod +x switch_screens.sh
)。您现在可以从 GUI 进入设置,转到“键盘”=>“快捷方式”并为每个命令创建自定义快捷方式:
要关闭它,请将“命令”设置为~/switch_screens.sh off
:
选择您想要的任何快捷键组合,然后您可以随意激活/停用屏幕。
您也可以直接从终端激活它:
~/switch_screens.sh
Run Code Online (Sandbox Code Playgroud)
并停用它
~/switch_screens.sh off
Run Code Online (Sandbox Code Playgroud)
小智 5
这在 Ubuntu 17.04 上对我有用:
sudo nvidia-settings
并更改您想要的任何设置,/etc/X11/xorg.conf
Settings -> Displays
并单击“应用”按钮(如果该按钮被禁用,请尝试进行一些虚拟修改)。第三点可能听起来很愚蠢,但这就是我的救命稻草。
归档时间: |
|
查看次数: |
23574 次 |
最近记录: |