Robobot 2: Difference between revisions
No edit summary |
No edit summary |
||
Line 50: | Line 50: | ||
All operating systems can easily view and modify files on Raspberry. | All operating systems can easily view and modify files on Raspberry. | ||
=== Windows === | |||
On a Windows computer ''WinScp'' is a satisfactory solution, but "RealFTP" may be cheaper: | On a Windows computer ''WinScp'' is a satisfactory solution, but "RealFTP" may be cheaper: | ||
Line 56: | Line 58: | ||
[[File:RealFTP-screenshot.png | 500px | RealFTP (with Danish lead test)]] | [[File:RealFTP-screenshot.png | 500px | RealFTP (with Danish lead test)]] | ||
=== Linux (and Mac?) === | |||
On Linux-based platforms, you could use SSHFS to mount a remote directory on your platform. | |||
In a terminal, create an empty directory (here jjj) and mount the remote directory: | |||
mkdir jjj | |||
sshfs local@10.197.218.81: jjj | |||
password: | |||
cd jjj | |||
ls | |||
Documents Downloads git mission_start.bash Music on_reboot.bash rebootinfo.txt svn Video | |||
In the 'sshfs' command, remember the ':' after the IP address. | |||
Remember to unmount | |||
umount jjj |
Revision as of 14:38, 16 January 2025
Back to Robobot
Network Access
Install Putty
Putty is the recommended SSH client (see e.g. https://en.wikipedia.org/wiki/Comparison_of_SSH_clients).
Install Putty and connect to the IP address on the small robot display.
Once connected, you have a command line control of the Raspberry Pi.
Alternative SSH connection
Most PCs have a command line option, and most systems further have a command line SSH-client version.
Use that in a command like:
ssh local@10.197.218.202
Fail to connect
If there is no IP on the robot, then consult Network_setup, maybe use the local link option.
Update software
Once connected to the Raspberry Pi of the robot, update the software:
Update operating system
The operating system is the recommended PI-OS 64bit system build on Debian.
Update using the commands:
sudo apt update sudo apt dist-upgrade
The sudo is required to get administrator (super-user) privileges. the password is the users password.
Update the Robot software
The Robobot software is on an SVN (subversion) repository, update to newest version using:
cd svn/robobot svn update
Access to files on Raspberry
All operating systems can easily view and modify files on Raspberry.
Windows
On a Windows computer WinScp is a satisfactory solution, but "RealFTP" may be cheaper:
Connect using the above address (and port 22), you could get something like:
Linux (and Mac?)
On Linux-based platforms, you could use SSHFS to mount a remote directory on your platform.
In a terminal, create an empty directory (here jjj) and mount the remote directory:
mkdir jjj sshfs local@10.197.218.81: jjj password: cd jjj ls Documents Downloads git mission_start.bash Music on_reboot.bash rebootinfo.txt svn Video
In the 'sshfs' command, remember the ':' after the IP address.
Remember to unmount
umount jjj