What is the trim of SSD solid state drive?
The trim of SSD can avoid the use of useless data as useful data in the garbage collection, so as to prolong the life of SSD. In HDD mechanical hard drives, the logical location of the deleted files is marked so that the data can be stored directly in the logical position of the unwanted data at a later time. However, SSD solid-state drives do not have this mechanism, and the master does not know that the data is useless until new data requirements are written to the block. This will result in useless data being treated as useful data in the garbage collection (GC) process, which will undoubtedly greatly reduce hard disk efficiency and service life. So the appearance of trim can make up for the defect of the problem.
Operation Steps:
WIN10 See how the trim is turned on:
1, at the beginning of the button right click, as the administrator to run the command prompt;
2. Execute the following order:
fsutil behavior Query Disabledeletenotify
3. If the return value is "0", the trim is turned on and if the return value is "1", the current computer's SSD does not have the trim turned on.
Win10 How to turn on the trim for SSD solid-state drives:
1, at the beginning of the button right click, as the administrator to run the command prompt;
2. Execute the following order:
fsutil behavior Set disabledeletenotify 0
Similarly, if you want to turn off this feature, simply execute:
fsutil behavior Set disabledeletenotify 1