ClockworkPi Remote Access Guide

Device Info

Hostname: kali-raspberry-pi
IP Address: 10.0.0.15
Username: kali
Password: kali

SSH Access (Terminal)

Connect via SSH for command line access:

ssh [email protected]

Run a quick command remotely:

ssh [email protected] "your-command-here"
SSH key is already set up - no password needed from this laptop.

VNC Remote Desktop (See Real Screen)

Step 1: Start x11vnc on ClockworkPi (if not running):

ssh [email protected] "x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900"

Step 2: Connect with VNC viewer:

vncviewer 10.0.0.15:0
This mirrors the actual screen on the ClockworkPi - same wallpaper, same open windows, everything!

File Transfer

Copy file TO ClockworkPi:

scp /path/to/file.txt [email protected]:~/

Copy file FROM ClockworkPi:

scp [email protected]:~/file.txt /local/path/

Interactive file browser:

sftp [email protected]

Quick One-Liner (Start VNC & Connect)

ssh [email protected] "pgrep x11vnc || x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900" && vncviewer 10.0.0.15:0

Troubleshooting

Can't connect? Check if ClockworkPi is online:

ping 10.0.0.15

Find ClockworkPi on network:

nmap -p22 --open 10.0.0.0/24

VNC not working? Kill and restart:

ssh [email protected] "pkill x11vnc; x11vnc -display :0 -forever -bg -nopw -xkb -rfbport 5900"
Note: The IP address (10.0.0.15) may change if your router assigns a new one. If you can't connect, scan the network to find the new IP.