LoginSignup
3

More than 3 years have passed since last update.

posted at

updated at

モニタ非接続環境でVNCデフォルト解像度を変更する方法(Jetson TX1/Ubuntu)

Jetson(Ubuntu)にモニタを接続していない状態でDesktop Sharing/Remmina等でVNC接続すると、画面解像度が640x480とかなり小さい。モニタを接続すると大きくなるのだが、モニタを接続しない状態でデフォルト解像度を変える。

手順

Jetsonで/etc/X11/xorg.confを編集する。

sudo vim /etc/X11/xorg.conf

Screenセクションを追加する。

Section "Screen"
   Identifier    "Default Screen"
   Monitor        "Configured Monitor"
   Device        "Default Device"
   SubSection "Display"
       Depth    24
       Virtual 1280 800
   EndSubSection
EndSection

再起動後、設定が有効になる。

参考

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
3