我使用一个大显示器作为主屏幕和膝上型电脑屏幕作为辅助。是否可以将发射器移到我的大显示器上,或者我必须关闭我的笔记本显示器?
nvidia-settings
说:“您似乎没有使用NVDIA驱动程序。请编辑您的X配置文件(只需运行nvidia-xconfig
作为根),并重新启动X服务器. 。”sudo nvidia-xconfig
说sudo: nvidia-xconfig: command not found
。发布于 2016-05-01 21:40:01
可以通过系统设置、->显示或命令行来实现启动器的放置。
在“系统设置”下,->显示找到“启动程序放置”选项
安置由两件事决定:
/org/compiz/profiles/unity/plugins/unityshell/num-launchers
dconf模式中设置了什么值。dconf
模式非常简单。值1表示一个启动程序,值2表示多个启动程序(即将其放置在所有屏幕上)。你可以用
dconf write /org/compiz/profiles/unity/plugins/unityshell/num-launchers INT`
或
gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ num-launchers INT
其中INT
为0或1。
xrandr
命令将告诉您连接了哪些监视器,以及当前的主屏幕是什么。它还允许使用--primary
标志设置和取消设置。
$ xrandr
Screen 0: minimum 8 x 8, current 2390 x 768, maximum 32767 x 32767
eDP1 connected 1366x768+1024+0 (normal left inverted right x axis y axis) 345mm x 194mm
1366x768 60.0*+
1360x768 59.8 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
DP1 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
VGA1 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.0*
800x600 60.3 56.2
848x480 60.0
640x480 59.9
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
在上面的输出中,我将我的外部VGA1屏幕设置为主屏幕,因此启动程序将显示在那里。
例如,如果我想使用内置监视器作为主监视器,那么
xrandr --output eDP1 --primary --right-of VGA1
发射器将从左屏幕( VGA1 )跳到我的右边屏幕,同时保持布局。
欲知更多信息,请阅读xrandr和dconf手册页。
发布于 2011-05-12 22:13:15
启动程序将显示在主/默认监视器上。您应该能够在监视器设置中配置此设置(单击BFB或按下Super,然后键入monitors
)。或者,如果您的计算机有nvidia驱动程序,您应该安装nvidia-settings
并使用它。
发布于 2011-05-16 20:55:35
如果您有AMD驱动程序,下面的驱动程序为我工作:
Super
AMD Catylist Control Center (Administrative)
Multi Display Options
-> Single Display (Multi Desktop)
https://askubuntu.com/questions/42353
复制相似问题