-
Notifications
You must be signed in to change notification settings - Fork 0
Setup for Raspberry Pi for Ubuntu #26
Copy link
Copy link
Open
Description
- Download and install the OS to the SD card using Raspberry Pi Imager.
- First login using username
ubuntuand passwordubuntu. - Create new user.
# Create the user sudo adduser $NEW_USERNAME # Add to sudo group sudo usermod -aG sudo $NEW_USERNAME
- Logout, then log in using the new user.
- Remove default user.
sudo userdel -r ubuntu
- Change hostname.
sudo hostnamectl set-hostname $NEW_HOSTNAME - Change timezone.
# Set timezone sudo timedatectl set-timezone $TIMEZONE
- Configure WiFi network in
sudo vi /etc/netplan/01-netcfg.yamlnetwork: ethernet: eth0: dhcp4: true optional: true version: 2 wifis: wlan0: access-points: $SSID_NAME: password: $SSID_PASSWORD dhcp4: true gateway4: $IP_GATEWAY # Example 192.168.1.1 nameservers: addresses: [208.67.222.222, 208.67.220.220] # OpenDNS - Clone this project and open the folder.
git clone https://github.com/ba1x/env-setup.git cd env-setup - Run command
sudo ./setup.shand choose optionRaspberry Pi (Ubuntu Desktop)to initiate the setup, install the required applications, and end up the setup.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels