Views:
204β
Votes: 1β
β
Solution
Tags:
startup
performance
home-directory
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/1187274
Title:
Does the size of your home directory affect startup performance?
ID:
/2019/11/08/Does-the-size-of-your-home-directory-affect-startup-performance_
Created:
November 8, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
During boot your /home
partition is mounted which takes a fraction of a second regardless of itβs size.
After logging in there are programs which will index (or process) the files in your home partition. This will effect performance the first time the program is used. If properly designed, such programs should not lag your screen or keyboard. After files are indexed the first time, subsequent program usage will only incrementally update new files added.
Some example programs would be:
- Nautilus not generating thumbnails for GIF images
- How to stop a file or folder from being indexed in GNOME?
With a large home directory some commands will be slower such as find
but the similar command locate
will not be noticeably slower. find
searches every file but locate
has an index of every file stored in itβs own database.