My whole Ubuntu installation including /home
is located in an ext4
partition on an SSD drive. I'm going to move archives and document files (which are almost all inside the home folder) to an external HDD drive with ext4 partition format.
doing that will solve both the space issue and wearing level of the SSD problem. There's already a guide on how to move the whole /home
directory to a new partition, but the thing is I have some application related files inside home, like android SDK
, Gradle build system files
, Android Studio data folder
(which includes plugins, configs, etc). These kind of data are mostly as hidden folders inside home directory. The whole concept of migrating to an SSD is the higher speed of accessing and running programs; by moving those files which are required by applications back to HDD, the advantage would be lost I think.
So I thought it's rational to just symlink that kind of folders wich comprise absolute document files (like Music, Videos, Pictures, Documents, DropBox) to the external HDD partition and leave all other config folders inside the /home
folder on the SSD. This way I'd have still the concern about the .ecryptfs
folder which occupies a huge space on the SSD since I have encrypted my home
on Ubuntu. Would this Symlink method also move the size of the .ecryptfs
folder to the HDD?
Do you confirm this workaround or suggest an entirely different scenario?
Thanks
/home
to a new partition? About the SDK symlink, How does this affect performance, making OS referring to HDD first, then redirect back to the SDD? – DummyBeginner Jun 08 '16 at 20:06