Regarding the filesystem resizing: the default Linux filesystem size is roughly 8 GB, but the partition size is 32 GB; the script resizes that filesystem in order to use the full partition size.Varti
Quote from: VartiRegarding the filesystem resizing: the default Linux filesystem size is roughly 8 GB, but the partition size is 32 GB; the script resizes that filesystem in order to use the full partition size.VartiVarti, is there a way a way to store parts of the file system also in a SD card?Salvo
I have been thinking that I would like to put /home and probably /var/log on the removable storage, but I figure to do it via symlink. less certain is the format for the storage.
Varti, is there a way a way to store parts of the file system also in a SD card?
sudo ln -s /mnt/sdcard/home/username /home/username
Quote from: salvomicVarti, is there a way a way to store parts of the file system also in a SD card?As others have already mentioned, it's enough to create a simlink in place of the directory you want to keep on the SD card, e.g.Code: [Select]sudo ln -s /mnt/sdcard/home/username /home/usernameThough it seems that it is advisable to use bind-mount so that also running servers such as apache or sshd can make use of it:https://askubuntu.com/questions/465493/how-...m-another-driveVarti