VNCサーバーの全画面表示が小さすぎます。

VNCサーバーの全画面表示が小さすぎます。

centOS 7リモートサーバーにtigervnc。 Windowsで私が使用するビューアはRealVNC Viewer

構成は次の場所にあります。/etc/systemd/system/vncserver@\:1.service

[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

 

[Service]
Type=forking
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver -geometry 1920x1080"
PIDFile=/root/.vnc/%H%i.pid
ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

 

[Install]
WantedBy=multi-user.target

構成は次の場所にあります。/root/.vnc/config

## Supported server options to pass to vncserver upon invocation can be listed
## in this file. See the following manpages for more: vncserver(1) Xvnc(1).
## Several common ones are shown below. Uncomment and modify to your liking.
##
# securitytypes=vncauth,tlsvnc
# desktop=sandbox
geometry=1980x1080
# localhost
# alwaysshared

サーバーに接続すると、表示される内容が期待したものとは異なります。小さすぎて使用できません。

VNCビューアディスプレイ

ズームを変更してみましたが、役に立ちませんでした。ズームは役立ちますが、リモートディスプレイは画面の中央にありません。したがって、ズームを200%に変更すると「非表示」状態になります。

ベストアンサー1

おすすめ記事