LoginSignup
3
3

More than 5 years have passed since last update.

Edison@Debian(ubilinux)にVNCを入れる。

Posted at

Edisonにはビデオ出力はありませんが、ubilinuxにするとふつーのDebianです。
まあ簡単にログインして、

必要なパッケージをインストール。今回は省メモリなfluxboxさんとtightvncserverさんを入れます。
apt-get install fluxbox tightvncserver

一度起動して、終了。この間にパスワード何にするか聞かれるので、細やかな8文字の障壁を設定する。
vncserver :1
vncserver -kill :1

設定ファイルを編集して、いかのようにfluxboxさんを指定する。
nano .vnc/xstartup

.vnc/xstartup
#!/bin/sh

xrdb $HOME/.Xresources
xsetroot -solid grey
#x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#x-window-manager &
# Fix to make GNOME work
export XKL_XMODMAP_DISABLE=1
#/etc/X11/Xsession
amule &
fluxbox &

もう一回起動する。
vncserver :1

以上でEdisonにVNCでつなぐと画面が出てきます。

ちなみにtightvncでつないだ状態でのメモリ量

console
root@ubilinux:~# free -m
             total       used       free     shared    buffers     cached
Mem:           960        383        577          0         23        307
-/+ buffers/cache:         52        908
Swap:            0          0          0

まあ普通ですね。
577MBが手付かずで空いています。でもswap無しはサドンデスワールドで心臓に良くないですね。

3
3
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
3
3