What's the startup time for a live USB ?SamD63 wrote: Wed Sep 22, 2021 6:44 am I no longer get the errors and boot time went from 5:33 minutes down to 2:52 minutes
Is that a reasonable boot time or is it still slow?
I have an SSD on its way and I hope that speeds up things even more
(This is just a VERY ROUGH estimate)
You may consider disabling swap by commenting out (adding a # in the beginning of) the swap line in /etc/fstab
Note: Disabling swap is very good, especially for SSDs, but it should not be done if you plan to use more volatile memory than the RAM capacity.
Another speedup is /tmp on tmpfs:
Code: Select all
# Run this script only ONCE on any system (or remove the old entries before running again).
echo "tmpfs /tmp tmpfs defaults,rw,nosuid,nodev 0 0" | sudo tee -a /etc/fstab
sudo reboot # Reboot the system