https://github.com/orestispanago/beaglebone-setup
Beaglebone automated setup
https://github.com/orestispanago/beaglebone-setup
bash beaglebone-black iot setup static-ip
Last synced: 2 months ago
JSON representation
Beaglebone automated setup
- Host: GitHub
- URL: https://github.com/orestispanago/beaglebone-setup
- Owner: orestispanago
- Created: 2022-07-05T10:10:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-05T15:16:24.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T15:50:02.553Z (4 months ago)
- Topics: bash, beaglebone-black, iot, setup, static-ip
- Language: Shell
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Beaglebone-setup
Automated Beaglebone setup script.
### Features
* Sets static IP address
* Expands SD card filesystemTested on Beaglebone Black Rev C
### Instructions
Download console image and burn it to SD card.
https://debian.beagleboard.org/images/bone-debian-10.3-console-armhf-2020-04-06-1gb.img.xz
Connect to device with USB.
* Windows: (Putty) connect over SSH at ```[email protected]``` or over serial using the appropriate COM port. The COM port can be found from the Device Manager.* Linux: ```ssh [email protected]```
Change default password using ```passwd``` command.
Edit ```setup.sh``` script to add your network details.
Copy the script to the Beaglebone and run using ```sudo```. Your beaglebone will reboot.
Then update the OS
```sudo apt-get update && sudo apt-get upgrade -y```
Install the packages you need e.g:
```
sudo apt-get install git python3 python3-pip -y
```