提高 Ubuntu 14.04 (nomachine) 的分辨率

提高 Ubuntu 14.04 (nomachine) 的分辨率

我在工作虚拟机上运行着 Ubuntu 14.04。我安装了Ubuntu 桌面无机器服务器

安装过程非常快。我使用 nomachine MAC 客户端连接到服务器。桌面就在那里。一切都运行良好,直到我意识到,Ubuntu 14.40 没有附带1920 x 1080默认分辨率。

我有一个限制 -> 我无法升级 Ubuntu。这是工作中的设置,我必须使用它。

1176 x 885是我得到的最大分辨率。

截屏

屏幕看起来太小了。在 nomachine 设置中将显示设置为“适合宽度”会使屏幕像素化,这样很难工作。

我已经做好了 -

admin@10-140-7-123:~$ xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

将分辨率添加到列表中->

admin@10-140-7-123:~$ xrandr -q
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 200, current 1176 x 885, maximum 1176 x 885
default connected primary 1176x885+0+0 0mm x 0mm
   800x600        60.0     85.0     75.0     72.0     56.0      0.0  
   1152x864      100.0     85.0     75.0     70.0     60.0      0.0  
   1024x768       85.0     75.0     70.0     60.0      0.0  
   832x624        75.0  
   640x480        85.0     75.0     73.0     60.0      0.0  
   720x400        85.0  
   640x400        85.0      0.0  
   640x350        85.0  
   320x240         0.0  
   400x300         0.0  
   512x384         0.0  
   854x480         0.0  
   720x480         0.0  
   720x576         0.0  
   320x200         0.0  
   800x480         0.0  
   1176x885        0.0* 
  1920x1080 (0x1e8)  173.0MHz
        h: width  1920 start 2048 end 2248 total 2576 skew    0 clock   67.2KHz
        v: height 1080 start 1083 end 1088 total 1120           clock   60.0Hz

我不确定如何执行这个命令-

admin@10-140-7-123:~$ xrandr --addmode nomachinedisp 1920x1080
xrandr: Failed to get size of gamma for output default
xrandr: cannot find output "nomachinedisp"

我应该输入什么值来代替nomachinedisp?我不知道我的显示器名称是什么。

这就是monitors.xml我得到的。

admin@10-xxx-zzz-zzz:~$ cat ~/.config/monitors.xml 
<monitors version="1">
  <configuration>
      <clone>no</clone>
      <output name="default">
          <vendor>???</vendor>
          <product>0x0000</product>
          <serial>0x00000000</serial>
          <width>1176</width>
          <height>885</height>
          <rate>0</rate>
          <x>0</x>
          <y>0</y>
          <rotation>normal</rotation>
          <reflect_x>no</reflect_x>
          <reflect_y>no</reflect_y>
          <primary>yes</primary>
      </output>
  </configuration>
</monitors>

关于如何通过模糊/像素化获得适当的 1920 x 1080 分辨率,有什么指示吗?


更新:

遵循的步骤/日志-

admin@10-140-7-123:~$ cvt 1920 1080
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

admin@10-140-7-123:~$ xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr: Failed to get size of gamma for output default

admin@10-140-7-123:~$ xrandr --addmode eDP-1 "1920x1080_60.00"
xrandr: Failed to get size of gamma for output default
xrandr: cannot find output "eDP-1"

admin@10-140-7-123:~$ xrandr -s 1920x1080
Size 1920x1080 not found in available modes
admin@10-140-7-123:~$ 

输出xrandr

admin@10-140-7-123:~$ xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 200, current 1176 x 885, maximum 1176 x 885
default connected primary 1176x885+0+0 0mm x 0mm
   800x600        60.0     85.0     75.0     72.0     56.0      0.0  
   1152x864      100.0     85.0     75.0     70.0     60.0      0.0  
   1024x768       85.0     75.0     70.0     60.0      0.0  
   832x624        75.0  
   640x480        85.0     75.0     73.0     60.0      0.0  
   720x400        85.0  
   640x400        85.0      0.0  
   640x350        85.0  
   320x240         0.0  
   400x300         0.0  
   512x384         0.0  
   854x480         0.0  
   720x480         0.0  
   720x576         0.0  
   320x200         0.0  
   800x480         0.0  
   1176x885        0.0* 
  1920x1080 (0x1e8)  173.0MHz
        h: width  1920 start 2048 end 2248 total 2576 skew    0 clock   67.2KHz
        v: height 1080 start 1083 end 1088 total 1120           clock   60.0Hz
  1920x1080_60.00 (0x212)  173.0MHz
        h: width  1920 start 2048 end 2248 total 2576 skew    0 clock   67.2KHz
        v: height 1080 start 1083 end 1088 total 1120           clock   60.0Hz
admin@10-140-7-123:~$ 

相关内容