2018-01-29 20:58:51 +00:00
|
|
|
#!/bin/bash
|
2018-02-02 21:31:16 +00:00
|
|
|
echo "In case of any issues please consult cosmicpi.org for help, or contact us via Facebook "
|
2018-01-29 20:58:51 +00:00
|
|
|
|
2018-01-29 21:01:11 +00:00
|
|
|
echo "--- Part 1: Expand the file system ---"
|
2018-01-29 20:58:51 +00:00
|
|
|
echo "--- Expanding root file system ---"
|
2018-01-30 21:33:02 +00:00
|
|
|
#chmod +x rebootrc.local
|
2018-01-29 20:58:51 +00:00
|
|
|
sudo raspi-config --expand-rootfs
|
2018-01-30 21:33:02 +00:00
|
|
|
#cp -f rebootrc.local /etc/rc.local
|
2018-02-02 19:56:03 +00:00
|
|
|
chmod +x installparttwo.sh
|
2018-01-29 21:01:11 +00:00
|
|
|
|
2018-02-02 19:56:03 +00:00
|
|
|
echo "--- Finished setup part 1! Rebooting, log back in and run sudo ./installparttwo.sh for part 2 ---"
|
2018-01-29 21:01:11 +00:00
|
|
|
sleep 10
|
|
|
|
|
sudo reboot now
|