Skip to content

Latest commit

 

History

History
executable file
·
105 lines (80 loc) · 4.08 KB

File metadata and controls

executable file
·
105 lines (80 loc) · 4.08 KB

Raspberry pi

sudo apt-get update
sudo apt-get full-upgrade -y
# sudo apt-get dist-upgrade -y
sudo rpi-update

# https://www.tomshardware.com/uk/how-to/boot-raspberry-pi-4-usb
# TODO make this modify file with sed?
sudo nano /etc/default/rpi-eeprom-update
#FIRMWARE_RELEASE_STATUS value from "critical" to "stable."
sudo rpi-eeprom-update -d -a
vcgencmd bootloader_version



sudo apt-get remove -y \
    python-configparser \

sudo apt-get install -y \
    libffi-dev \
    libssl-dev \
    python3 \
    python3-pip \
    webbrowser \
    firefox-esr \
    gimp \
    p7zip \
    exfat-fuse exfat-utils \
    sshfs \
    dosbox \
    mame \
    chocolate-doom \

    # webbrowser (need to upgrade for recent chomium)

curl -sSL https://get.docker.com | sh
sudo usermod -aG docker pi
sudo pip3 -v install docker-compose

# vscode
. <( wget -O - https://code.headmelted.com/installers/apt.sh )
# vscode alternative manual install
# https://pimylifeup.com/raspberry-pi-visual-studio-code/

# screen tearing fix - https://www.youtube.com/watch?v=6xiRUyOF7fM
sudo mv /etc/xdg/autostart/xcompmgr.desktop /etc/xdg/autostart/xcompmgr.desktop.backup

# sudo raspi-config

ssh-keygen -t rsa

# https://peppe8o.com/fixed-connect-bluetooth-headphones-with-your-raspberry-pi/
sudo usermod -G bluetooth -a pi
sudo apt-get install bluealsa pulseaudio
sudo systemctl status bluetooth.service
# service will not be running
# OH GOD! .. this guide is huge ... maybe not today .. why is this now broken :(

external hd

Pi5