I'm doing a clean re install of Ubuntu 20.04 LTS my previous install had been created with LVM which I want to avoid as it cost me tons of lost data before.
starting situation
Disk1 = SSD 120GB
Disk2 = 2 TB HDD
wanted situation :
Disk1 : /swap disk 16 GB
/ : root (bootable) with Ubuntu system
/ application software + config files
/ downloads application software
Disk2 : /home(?)
/ application data
/ user data files
/swap disk 16 GB
How do I use the partitioning
Asked
Active
Viewed 491 times
0
/home
separate. And/home
is the only one I would even consider putting on another partition. Put your root file system on the drive with the faster R/W and use the second disk to store data (pics, docs, music, video) – Nmath Oct 19 '20 at 11:33I have no confidence in LVM i want my data fysically readable when i connect my drive through a SATA interface or through a SATA-USB interface
– Derek Giroulle Oct 19 '20 at 12:58a- FROM 18.04 LTS onward - I can ditch the swap partition because it creates a swapfile on the / partition
b- if I put the /home partition on the HDD, any other application software is also stored / installed on the HDD, not only data that raises other questions : how about VMware of Virtualbox how can
b- – Derek Giroulle Oct 19 '20 at 13:12
Disk 1 SSD : / root (bootable) with ubuntu system software /home with application software and application data Disk 2 HDD / data with user data files – Derek Giroulle Oct 19 '20 at 13:19
/home
partition is for storing your personal data, applications won't install there. The applications will install in disk 1 where the root system will be installed (/
). – schrodingerscatcuriosity Oct 19 '20 at 13:22/home
on your SSD. That's where a lot of configs are stored that are often referenced during startup and application launches. Your system performance will suffer as a result of putting your home directory on a slower drive. Especially random read speed which is dramatically worse on HDDs and the type that matters most in these cases. No idea what you're on about with LVM - but it seems irrelevant here – Nmath Oct 19 '20 at 13:25-- Disk 1 SSD : / root (bootable) with ubuntu system software
/home with application software and application data
no /swap partition unless i want to hibernate --- Disk 2 HDD /data with user data files
that would also be a setup useful for a laptop with an internal SSD and an external (USB) HDD with data that could move between different laptops with an equivalent setup
Thanks for the advice
– Derek Giroulle Oct 19 '20 at 13:42