RPI-setup-dat

download OS image

  • https://www.raspberrypi.com/software/
  • https://www.raspberrypi.com/software/operating-systems/

  • 64 bit lite OS - https://downloads.raspberrypi.com/raspios_lite_arm64/images/raspios_lite_arm64-2024-07-04/2024-07-04-raspios-bookworm-arm64-lite.img.xz

headless

login

  • default login user = pi, pass = raspberry

  • reset password - https://forums.raspberrypi.com/viewtopic.php?t=319398

prewritten wifi config

create a text file called wpa_supplicant.conf, and place it in the root directory of the microSD card. You will need the following text in the file.

country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    scan_ssid=1
    ssid="111"
    psk="electrodragon"
}

turn on ssh

For Windows: Create a file named ssh, without any extension, on the boot partition of the SD card.

network

iwconfig

eth0      no wireless extensions.

lo        no wireless extensions.

wlan0     IEEE 802.11  ESSID:"111"  
        Mode:Managed  Frequency:2.472 GHz  Access Point: D0:05:E4:E2:CD:A1   
        Bit Rate=72.2 Mb/s   Tx-Power=31 dBm   
        Retry short limit:7   RTS thr:off   Fragment thr:off
        Encryption key:off
        Power Management:on
        Link Quality=65/70  Signal level=-45 dBm  
        Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
        Tx excessive retries:1  Invalid misc:0   Missed beacon:0
  • iwgetid will give you the SSID

multipe wifi

https://raspberrypi.stackexchange.com/questions/11631/how-to-setup-multiple-wifi-networks

Edit /etc/wpa_supplicant/wpa_supplicant.conf and add id_str="school" under the schools wpa info and id_str="home" under your homes wpa info. Your file should now look similar to this:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="111"
    psk="electrodragon"
    id_str="school"
}

network={
    ssid="FF_W"
    psk="123456789"
    id_str="home"
}

remove extra apps

  • libreoffice-common
  • chromium
  • python2.7