SpectroCloud/RaspberryPiEdge: Difference between revisions

From DER's LLC
Jump to navigation Jump to search
(Created page with "=Raspberry Pi Edge Install= # Connnect Network, Keyboard, HDMI, and Power # Boot to Network by pressing and holding SHIFT ############################################################ # Raspberry Pi Device: RASPBERRY PI 5 # Operating System: Ubuntu Desktop 24.04.1 LTS (64-BIT) # Storage: Internal SD CARD READER ############################################################")
 
Line 8: Line 8:
  # Storage:            Internal SD CARD READER
  # Storage:            Internal SD CARD READER
  ############################################################
  ############################################################
# Finish the Setup Wizard
# Enable SSH
sudo apt update
sudo apt install ssh
sudo ufw allow 22
# SSH to the Raspberry Pi or use the console.
# set Static IP Address
cat > /etc/netplan/50-cloud-init.yaml << "EOF"
network:
    ethernets:
        eth0:
            addresses:
            - 172.16.84.33/22
            nameservers:
                addresses:
                - 172.16.84.10
                search:
                - dersllc.com
            routes:
            -  to: default
                via: 172.16.84.1
            dhcp4: false
            dhcp6: false
            match:
                macaddress: 2c:cf:67:35:14:1c
            set-name: eth0
    version: 2
EOF

Revision as of 19:23, 10 January 2025

Raspberry Pi Edge Install

# Connnect Network, Keyboard, HDMI, and Power
# Boot to Network by pressing and holding SHIFT
############################################################
# Raspberry Pi Device: RASPBERRY PI 5
# Operating System:    Ubuntu Desktop 24.04.1 LTS (64-BIT)
# Storage:             Internal SD CARD READER
############################################################
# Finish the Setup Wizard

# Enable SSH 
sudo apt update
sudo apt install ssh
sudo ufw allow 22 
# SSH to the Raspberry Pi or use the console.
# set Static IP Address
cat > /etc/netplan/50-cloud-init.yaml << "EOF"
network:
   ethernets:
       eth0:
           addresses:
           - 172.16.84.33/22
           nameservers:
               addresses:
               - 172.16.84.10
               search:
               - dersllc.com
           routes:
           -   to: default
               via: 172.16.84.1
           dhcp4: false
           dhcp6: false
           match:
               macaddress: 2c:cf:67:35:14:1c
           set-name: eth0
   version: 2
EOF