jadi tidak usah beli monitor,keyboard dan mouse dan hdmi converter khusus untuk si raspberry.
step 1 :
sudo apt-get install tightvncserver
step 2 :
vncserver
step 3:
masukkan password
pilih apakah boleh view only atau tidak.
step 4 :
sudo netstat -tulpn
lihat apakah ada
tcp 0 0 0.0.0.0:5901 0.0.0.0:* LISTEN 3393/Xtightvnc
5901 adalah port vnc
untuk stop vncserver (jika ingin mematikan service vnc)
vncserver -kill :1
step 5 : membuat service tightvncserver otomatis pada saat booting
sudo nano /etc/init.d/tightvncserver
pastekan kode ini :
=================================================================
#!/bin/sh
### BEGIN INIT INFO
# Provides: tightvncserver
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start/stop tightvncserver
### END INIT INFO
# More details see:
# http://www.penguintutor.com/linux/tightvnc
### Customize this entry
# Set the USER variable to the name of the user to start tightvncserver under
export USER='pi'
### End customization required
eval cd ~$USER
case "$1" in
start)
su $USER -c '/usr/bin/tightvncserver :1'
echo "Starting TightVNC server for $USER "
;;
stop)
pkill Xtightvnc
echo "Tightvncserver stopped"
;;
*)
echo "Usage: /etc/init.d/tightvncserver {start|stop}"
exit 1
;;
esac
exit 0
==============================================================
tekan Ctrl-X , save
step 6 :
sudo chmod 755 /etc/init.d/tightvncserver
sudo update-rc.d tightvncserver defaults
sudo reboot (jika mau reboot)
step 7 :
download viewer client untuk windows
http://www.tightvnc.com/download.php
setelah download, coba jalankan :
masukkan ip raspberry anda di ikuti port anda
contoh
192.168.1.11:5901
tampilan nya akan seperti ini
========================================
setting software remote di raspberry
cara install viewer raspberry
install raspberry tanpa monitor
Terima kasih atas tutorialnya :) sangat bermanfaat untuk saya yang ingin menginstall vnc di raspberry pi. silahkan mampir ya ke Jual raspberry pi
BalasHapus