We connect to your personal computer by using the Secure Shell.

Your personal computer is starting and gets a new address from your home network. Give it a few minutes to come to life.
Ctrl + Alt + Tcmdping 192.168.x.xxx
Example of expected output:
PING 192.168.1.147 (192.168.1.147) 56(84) bytes of data.
64 bytes from 192.168.1.147: icmp_seq=1 ttl=64 time=2.44 ms
64 bytes from 192.168.1.147: icmp_seq=2 ttl=64 time=1.75 ms
64 bytes from 192.168.1.147: icmp_seq=3 ttl=64 time=1.61 ms
64 bytes from 192.168.1.147: icmp_seq=4 ttl=64 time=1.58 ms
ping command fails or does not return anything, you need to manually look for your PC192.168.x.xxxNow it’s time to connect to the MiniBolt via Secure Shell (SSH) and get to work. For that, we need an SSH client.
Install and start the SSH client for your operating system:
temp@192.168.x.xx, port 22 to the left box.password [A].password [A].ssh temp@192.168.x.xxx.ssh temp@192.168.x.xxxsudo apt install putty and start it by typing putty, follow the same Putty instructions as before for Windows.{% hint style="info" %}
Note, connection details:
hostname: your MiniBolt IP address like: 192.168.x.xxx
port: 22
username: temp
password: password [A]
We will work on the command line of the PC, which may be new to you. Find some basic information below. It will help you navigate and interact with your PC.
You enter commands and the PC answers by printing the results below your command.
Additional comments begin with # and must not be entered.
In the following example, just enter ls -la and press the enter/return key:
ls -la
# This is a comment, don't enter this on the command line
Auto-complete commands: you can use the Tab key for auto-completion when you enter commands, i.e., for commands, directories, or filenames.
Command history: by pressing ⬆️ (arrow up) and ⬇️ (arrow down) on your keyboard, you can recall previously entered commands.
Use admin privileges: our regular user has no direct admin privileges. If a command needs to edit the system configuration, we must use the sudo ("superuser do") command as a prefix. Instead of editing a system file with nano /etc/fstab, we use sudo nano /etc/fstab.
For security reasons, service users like "bitcoin" cannot use the sudo command.
Using the Nano text editor: we use the Nano editor to create new text files or edit existing ones. It's not complicated, but saving and exiting are not intuitive.
Ctrl-O (for Output), confirm the filename, and hit the Enter keyCtrl-XCopy / Paste: if you are using Windows and the PuTTY SSH client, you can copy text from the shell by selecting it with your mouse (no need to click anything), and paste stuff at the cursor position with a right-click anywhere in the ssh window.
In other Terminal programs, copy/paste usually works with Ctrl-Shift-C and Ctrl-Shift-V.
| Port | Protocol | Use |
|---|---|---|
| 22 | TCP | Default SSH server port |