LoginSignup
9
0

More than 1 year has passed since last update.

1 / 2

はじめに

NVIDIA Jetsonをさわる機会があったのでセットアップのメモを残しておく

スペックなど

Box PC AG411B

OSなど

Ubuntu 18.04 LTS

VNCのセットアップ

本体にディスプレイ、キーボード、マウスを接続すれば、そのまま認識して使用できるが、リモートで使用したいのでVNCサーバーをインストールする。
最初はTiger VNCをインストールしようとしていたが何故か画面が表示されなかったのでいろいろ調べた結果、公式のドキュメントがあることを発見。vino-serverを使えと言うことらしい。

$ mkdir -p ~/.config/autostart
$ cp /usr/share/applications/vino-server.desktop ~/.config/autostart/
$ cd /usr/lib/systemd/user/graphical-session.target.wants
$ sudo ln -s ../vino-server.service .
$ gsettings set org.gnome.Vino prompt-enabled false
$ gsettings set org.gnome.Vino require-encryption false
$ gsettings set org.gnome.Vino authentication-methods "['vnc']"
$ gsettings set org.gnome.Vino vnc-password $(echo -n '(パスワード)'|base64)
$ sudo reboot

手元のパソコンにはUltra VNCをインストールして接続を確認。

簡単ですが今回はここまで、

9
0
0

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
  3. You can use dark theme
What you can do with signing up
9
0