|
| ||||||||||
| Tags: date, disable, disk, speeding |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| Speeding up disk access (disable the date of last access)
Among other things, NTFS (Windows) and ext3 (Linux) are capable of recording the date of last access to a file. If this is useful for controlling when a file has been accessed, it means that for every reading file there a. .. writing hard! From performance point of view is absurd. Unless we absolutely need this feature (secure servers, traceability ...), you can disable it. Some experts believe that Linux kernel can earn up to 10% in disk performance. Under Windows 2000/XP/2003/Vista (NTFS only) Open the Registry Editor (regedit) and go to: HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ FileSystem and create the variable (right-click New, DWORD): NtfsDisableLastAccessUpdate with the value 1 The change would take effect immediately. Linux Edit / etc / fstab and add options and relatime nodiratime to the partition concerned. Example: # / Etc / fstab: static file system information. # # <file System> <mount point> <type> <options> <dump> <pass> proc / proc defaults 0 0 / dev/sda1 / ext3 defaults, errors = remount-ro, relatime, nodiratime 0 1 / dev/sda2 none swap sw 0 0 Then go your disk (or restart for the root). Note: relatime does not disable write access during certain software files need to know the date of last access. There is the option to disable completely noatime records in file access. Nodiratime disables the records when accessing files. Watch the mount manual for more information. Note 2: All the Linux kernel does not have the option relatime. In this case, use noatime. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Speeding up disk access (disable the date of last access)" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Grouping dates in Access by date components | DeepikaP | Windows Software | 4 | 04-02-2011 06:12 PM |
| Modifying date in access | GlassFish | Windows Software | 5 | 04-01-2010 07:48 AM |
| How to Querying blank records iso date in access | Quattro | Windows Software | 3 | 31-07-2009 10:20 AM |
| Need help with date functions in Access. | Sachit | Software Development | 1 | 04-02-2009 05:46 PM |
| Date() function problem in Access 2000. | Jerzy | Software Development | 3 | 30-07-2008 03:44 PM |