12,297
edits
No edit summary |
|||
Line 3: | Line 3: | ||
== Prepare the system == | == Prepare the system == | ||
download the patchbox os image and put it on SD card with Etcher. | |||
# setup fallback fixed IP if no DHCP server is in the network | #setup fallback fixed IP if no DHCP server is in the network | ||
## Method A: connect an HDMI monitor and USB keyboard to the RaspberryPi. Go to step | ## Method A: connect an HDMI monitor and USB keyboard to the RaspberryPi. Go to step 5 :) | ||
## Method B: connect Raspberry and computer to a router with DHCP. | ## Method B: connect Raspberry and computer to a router with DHCP. | ||
# open the terminal type <tt>ifconfig</tt> to see the local IP address of the computer. | # open the terminal type <tt>ifconfig</tt> to see the local IP address of the computer. | ||
Line 14: | Line 14: | ||
sudo nano /etc/dhcpcd.conf | sudo nano /etc/dhcpcd.conf | ||
You are in a text editor now. Uncomment (remove the # symbol) the lines defining the fallback address like this https://wiki.archlinux.org/index.php/dhcpcd#Fallback_profile | You are in a text editor now. Uncomment (remove the # symbol) the lines defining the fallback address like this https://wiki.archlinux.org/index.php/dhcpcd#Fallback_profile | ||
Once that is done, you can connect to the internet and bring the OS up to date: | |||
sudo apt-get update | |||
sudo apt-get upgrade | |||
sudo apt-get dist-upgrade |