VNC 接続1この記事は Raspberry Pi 勉強会 の一部です。VNC (Virtual Network Computing) は、ネットワーク上の離れたコンピュータをGUIで遠隔操作するためのリモートデスクトップソフトです。パソコンとラズパイは、ローカルネット内で有線LANかWiFiで接続します。参考Raspberry Pi - VNC (VIRTUAL NETWORK COMPUTING)Add Annotation Order
ラズパイの設定0tightvncserver を使用します。インストールする---$ sudo apt-get install tightvncserver---パスワードの設定0パスワードを設定する。ここでは「raspberry」とします。---$ tightvncserver You will require a password to access your desktops.Password: <==Would you like to enter a view-only password (y/n)? yPassword: <== ---自動起動の設定0電源を入れたときに、自動的に起動するようにします。---$ cd /tmp $ git clone https://github.com/FabLabKannai/RaspiStudy.git $ cd RaspiStudy/2_install/raspi/vncboot/ $ sudo cp vncboot /etc/init.d/ $ sudo chmod 755 /etc/init.d/vncboot $ sudo update-rc.d vncboot defaults---Add Annotation Order
パスワードの設定0パスワードを設定する。ここでは「raspberry」とします。---$ tightvncserver You will require a password to access your desktops.Password: <==Would you like to enter a view-only password (y/n)? yPassword: <== ---
自動起動の設定0電源を入れたときに、自動的に起動するようにします。---$ cd /tmp $ git clone https://github.com/FabLabKannai/RaspiStudy.git $ cd RaspiStudy/2_install/raspi/vncboot/ $ sudo cp vncboot /etc/init.d/ $ sudo chmod 755 /etc/init.d/vncboot $ sudo update-rc.d vncboot defaults---
Windows 編0UltraVNC を使用します。UltraVNCのサイト からダウンロードします。参考CONNECTING TO A PI OVER VNC USING WINDOWSUltraVNC の起動0UltraVNC を起動します。VNCに「raspberrypi.local:5901」を入力して、「Connect」をクリックします。パスワードの設定0Password に「raspberry」を入力して、「LogOn」をクリックします。Add Annotation Order
MAC 編0Finder から接続します。移動 -> サーバーへ接続参考CONNECTING TO A PI OVER VNC USING MAC OSサーバーアドレスの設定0サーバーアドレスに「vnc://raspberrypi.local:5901」を入力して、「接続」します。パスワードの設定0パスワードに「raspberry」を入力して、「接続」します。Add Annotation Order
Comments