我正在尝试将 2560x1080 添加到 Ubuntu 的下拉分辨率列表中。
当我在家工作时,我们会通过 RDP 连接到运行 Ubuntu VM 的 Windows 计算机。我认为正因为如此,监视器的名称是“默认”。
$ xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 4096 x 4096
default connected 1920x1080+0+0 0mm x 0mm
现在,xrandr 确实显示 2560x1440 和 2560x1600,但我在家使用的显示器是 2560x1080。
这是我尝试与 xrandr 一起使用的 cmd
xrandr --newmode "2560x1080_60.00" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync
但后来我收到这个错误:
xrandr --newmode "2560x1080_60.00" 230.00 2560 2720 2992 3424 1080 1083 1093 1120 -hsync +vsync
xrandr: Failed to get size of gamma for output default
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 141 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 19
Current serial number in output stream: 19
不确定是不是因为我通过 RDP 连接将其作为虚拟机运行。这就是lspci-v向我展示
00:02.0 VGA compatible controller: VMware SVGA II Adapter (prog-if 00 [VGA controller])
Subsystem: VMware SVGA II Adapter
Flags: fast devsel, IRQ 10
I/O ports at d010 [size=16]
Memory at f0000000 (32-bit, non-prefetchable) [size=64M]
Memory at f4000000 (32-bit, non-prefetchable) [size=2M]
[virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
Kernel modules: vmwgfx
我错过了什么?