====================================================================== Raspberrypi install Changed password on ME4870 OS from 123 to 325345745 (6=8 chars allowed) ====================================================================== If you plug your Raspberry Pi directly to a wired network, you should be able to access it by its name (raspberrypi or raspberrypi.local) without changing any other files. I ran sudo piwiz and it set things up correctly and I got an IP address login: pi passwd: 325345745 IP address: 192.168.86.228 but the name server is broken I got the UIUC NS URL from the command dig ns illinois.edu 37.58.107.93 I added this to RPi /etc/resolv.conf namesserver 37.58.107.93 and that worked! Now I cannot login to pi@37.58.107.93 because there is no port 22 open nmap 37.58.107.93 returns no open ports. trying to upload bullseye InRelease is not yet available ~/Admin/BeginnersGuide-4thEd-Eng_v2.pdf > /etc/apt/sources.list sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7FA3303E sudo apt-get update sudo apt-get install raspi-config sudo mount /dev/mmcblk0p1 /boot The point is to change jessie (debian 8.0) to buster (debian 10.0). If you leave jessie as it is, an error will occur. In Ubuntu 20.04 LTS, / etc/debian_version is bullseye/sid, so it seems to be based on bullseye (debian 11.0). Since http://archive.raspberrypi.org/ does not have bullseye, I chose buster. There seems to be no problem so far. Installer on xear: sudo raspi-config (this is a "nurses" version of rpi-imager) https://raspberrytips.com/find-current-ip-raspberry-pi/ https://www.raspberrypi.com/software/operating-systems/ RaspberryPi-Setup.pdf <-- UIUC info for everything you need to know to set it up. IP= 192.168.86.190,192,194 <-- not sure what IP this is for (home RPi2?) general useful info: gnome: https://forums.raspberrypi.com/viewtopic.php?t=276512 Getting into uiuc.edu wifi Check out section 3.1.2 Configure WiFi at https://courses.engr.illinois.edu/cs424/fa2016/mp/init.pdf the "good stuff" is on page 6. ====================================================================== https://ubuntu.com/tutorials/how-to-install-ubuntu-on-your-raspberry-pi#3-wifi-or-ethernet ====================================================================== The install was not very clear, but I figured it out eventually. Run the installer: rpi-imager (or raspi-config) Download the deb package 2) run the deb package 3) run the command rpi-imager which will burn the OS (20.04 64bit) to the SD card (Generic-SD) 4) Once this is done, remove the SD card and try to boot the Raspberry-pi#3 sudo raspi-config This allows the config of the raspberry-pi options, some of which are important like the time zone and keyboard. I also updated the tool (Oct 25, 2021). 5) How to ssh into RPi https://itsfoss.com/ssh-into-raspberry/ To ssh to RPi we need the IP address. That can be a problem to determine Perhaps plug something into the Network port. But I dont have something to plug in. I logged into "kitchen" and plugged RPi into the ether port and used ifconfig IP: 192.168.86.190 Note: Make sure your Raspberry Pi and the computer you are using to SSH into your Raspberry Pi are connected to the same network. SSH into RPi and open a terminal ssh pi@192.168.x.x Default Username and Password is: username: pi password: raspberry Change the password to avoid hacking. The command raspi-config is missing: To install raspi-config https://linuxtut.com/en/a252676a3ce6bd1410da/ raspi-config installation procedure I referred to @ ivvakanni's Post "The story of installing raspi-config on ubuntu 18.04 and changing the initial setting of GPIO" sudo echo "deb http://archive.raspberrypi.org/debian/ buster main" >> /etc/apt/sources.list sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7FA3303E sudo apt-get update sudo apt-get install raspi-config sudo mount /dev/mmcblk0p1 /boot The point is to change jessie (debian 8.0) to buster (debian 10.0). If you leave jessie as it is, an error will occur. In Ubuntu 20.04 LTS, / etc/debian_version is bullseye/sid, so it seems to be based on bullseye (debian 11.0). Since http://archive.raspberrypi.org/ does not have bullseye, I chose buster. There seems to be no problem so far.