mynode/scripts/setup_new_rock64.sh

50 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
LOCAL_IP=$(python ./scripts/get_local_ip.py)
echo ""
echo "Finished updating rootfs and other files!"
echo ""
clear
echo "Step 1: "
2019-06-27 03:02:08 +00:00
echo " Flash SD Card with Rock64 Image: out/base_images/rock64_base.img.gz"
echo " OR"
echo " If you would rather create your own base image, follow the"
echo " manual instructions in doc/setup_base_image_rock64.md"
echo ""
echo "Press a key when complete..."
read -n 1
clear
echo "Step 2: "
2019-06-27 03:02:08 +00:00
echo " Insert SD Card into your Rock64 and boot the device"
echo ""
echo "Press a key when complete..."
read -n 1
clear
echo "Step 3: "
echo " Login to device with username 'admin' and password 'bolt'"
echo " Run the following commands. Use bolt at password prompts."
2019-06-27 03:02:08 +00:00
echo " wget http://${LOCAL_IP}:8000/setup_device.sh -O setup_device.sh"
echo " chmod +x setup_device.sh"
2022-08-05 01:27:01 +00:00
echo " sudo ./setup_device.sh ${LOCAL_IP}"
echo ""
echo "Press a key when complete..."
read -n 1
clear
echo "Step 4:"
echo " Reboot your device."
echo ""
echo "Press a key when complete..."
read -n 1
clear
echo "Congratulations! Your device is now ready!"
echo " Access it via a web browser at http://mynode.local/ or http://<device ip>/"
echo " Access it via SSH using the default credentials: admin / bolt"
echo " You should change your password on the settings page in the web GUI"
echo ""