diff --git a/docs/tips-and-tricks.html b/docs/tips-and-tricks.html index fc239f4..e7241aa 100644 --- a/docs/tips-and-tricks.html +++ b/docs/tips-and-tricks.html @@ -23,6 +23,17 @@ Retype new password: ... # + +

Extend root filesystem

+

If your SD card is larger than 4 GB, you can extend the root filesystem after writing it to the SD card.

+
# parted -s -a opt /dev/sdXXX "resizepart 2 100%"
+...
+# partprobe
+...
+# resize2fs /dev/sdXXX2
+...
+
+

perl: warning: Setting locale failed

If you you get the following (or similar) warnings, fix it by installing and configuring locale.

perl: warning: Setting locale failed.
@@ -47,6 +58,7 @@ perl: warning: Falling back to the standard locale ("C").
 ...
 # dpkg-reconfigure locales
 ...
+#
 

debconf: unable to initialize frontend: Dialog

@@ -59,7 +71,9 @@ debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Ter debconf: falling back to frontend: Teletype -
apt-get install dialog
+
# apt-get install dialog
+...
+#