I have a PC with a
- 250GB SSD &
- 500GB SATA HD.
I will have Linux root (/) in the SSD disk after the installation.
I want to minimize ssd utilization as much as possible.
Therefore, I will put the /home
and SWAP
on the SATA disk.
Is there anything else that I should put on SATA hard disk to decrease the utilization of SSD?
/run
is already mounted into RAM. This is a temporary file storage and has a special filesystem type called tmpfs, which is dynamically growing if needed, and by default can utilize up to 50% of computer RAM. It's usage can be observed viadf -h
. Btw, 45 seconds for Ubuntu is not bad (considering you are running a window manager, and booting from HDD). Have a look at average boot times for different Ubuntu versions and computer configurations, here. – Andrejs Cainikovs Jun 03 '14 at 06:46