-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,18 +51,36 @@ The default password is `sleep` | |
|
||
Thus to connect you will use `ssh [email protected]` (or the IP address of the device) and enter `sleep` | ||
|
||
## Set your timezone, wifi-country and expand filesystem | ||
## Expand filesystem | ||
|
||
*** this is super important *** | ||
|
||
Open a terminal, SSH to the Pi and do | ||
|
||
sudo raspi-config | ||
|
||
Then go to `Advanced Options` and select the first option to `Expand Filesystem`. | ||
|
||
Then do `Finish` and reboot. | ||
|
||
If this errors and says the filesystem can't be resized, try the following from the command line: | ||
|
||
|
||
sudo raspi-config --expand-rootfs | ||
sudo resize2fs /dev/mmcblk0p2 | ||
|
||
Then reboot. | ||
|
||
NOTE - Ignore the warning to reboot after the `--expand-rootfs` command. The resize2fs will take a minute or two to run. Wait for it. | ||
|
||
## Set your timezone, wifi-country | ||
|
||
Open a terminal, SSH to the Pi and do | ||
|
||
sudo raspi-config | ||
|
||
first go to `Localization Options` menu item and select `Change Timezone` | ||
then repeat with `Change WiFi Country` | ||
|
||
*** this next bit is super important *** | ||
|
||
Then go to `Advanced Options` and select the first option to `Expand Filesystem` | ||
|
||
`Finish` and reboot (if not prompted). | ||
|
||
|