0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

(NoMachine派生)ssh経由でGUIログインするX2Goを使ってみた

Last updated at Posted at 2016-04-08

参考

利点

  • ウィンドウサイズ変更による解像度変更に対応
  • ポートはsshさえ空いていれば良い

まだできていないこと

  • 日本語入力 (他の人は大丈夫な様子。dockerコンテナ上だからか?)
  • キーボード \|が入力されない

インストール

Dockerfile
RUN apt-key adv --recv-keys --keyserver keys.gnupg.net E1F958385BFE2B6E \
    && sed -i -e "$ a deb http://packages.x2go.org/debian stretch main" /etc/apt/sources.list \
    && apt-get update -qq \
    && apt-get install -y x2goserver x2goserver-xsession

RUN apt-get install -y ssh \
    && mkdir /root/.ssh
COPY files/authorized_keys /root/.ssh/authorized_keys

接続

  • x2goclinet コマンドにて接続
0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?