Boost disk access- Deactivate Access time

Last update on January 30, 2009 09:13 AM by deri58
Published by deri58

Boost disk access (Deactivate access time)





Almost all operating systems use existing file systems with advanced functions: rights management, logging ...
NTFS (Windows) and ext3 (Linux) can record the date of last file access.

However when reading every file, this means writing on your disk which takes a long time in the other hand decreases the performance.

Below is a tip of how to deactivate this feature:

Under Windows 2000/XP/2003/Vista (NTFS only)


From a command line


Go to menu Start > All Programs > Accessories.
Right-click on the Command Prompt and select Run as administrator

Type the following command

fsutil behavior set disablelastaccess 1

Validate by clicking on ENTER.

If no error message appears, then the command has been executed.

Fromthe registry


Make a Back up of the registry database if needed.
Open the Registry Editor (start> run > regedit)
Scroll to: HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ FileSystem
Create variable (right-click, new DWORD): NtfsDisableLastAccessUpdate with value 1

Under Linux Operating system


Edit / etc / fstab and add the options and relatime nodiratime to the partition in question.

Example:
# / Etc / fstab: static file system information.
#
# <file System> <mount point> <type> <options> <dump> <pass>
proc / proc proc defaults 0 0
/ dev/sda1 / ext3 defaults, errors = remount-ro, relatime, nodiratime 0 1
/ dev/sda2 none swap sw 0 0




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 scripts 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
Best answers for « Boost disk access Deactivate Access time » in :
Access disk partition EXT2 / 3 Show Access disk partition EXT2 / 3 Problem Solution The fstab file The graphical method Conclusion Problem Under gnome, when it mounts a partition formatted as ext2 or ext3, you can not write without being in a session Root (Super...
How to speed up a slow PC Show How to speed up a slow PC Problem 1: Not enough RAM How to know if your computer has enough RAM Problem 2: Temporary files have built up on your hard disk How to delete Temporary Files Problem 3: Your computer has been infected Problem 4:...
How to Limit internet access to users? Show How to Limit internet access to users? Why restrict access to the Internet in the business? Monitor employees or limit access to the Internet? Limiting access to the internet: Defining a code of conduct Modes of regulation of Internet...
VBA A simple second Timer ShowVBA A simple second Timer In VBA, there is Timer feature available,but you can create one very easily. In a module sheet: Private Sub Worksheet_SelectionChange(ByVal Target As Range) 'For example: Start / Stop the timer every...
Access rights to Windows partition ShowAccess rights to Windows partition Getting started Implementation Adding a user Modifying the /etc/fstab file Getting started When creating a Windows partition, it may happen that only the "root" has the necessary privileges, to have...
How to optimize windows? ShowHow to optimize windows? Quick closure Accelerate disk access Loading system files into RAM This tip has been designed for showing you how to optimize windows resources (XP and Vista). You should however note that the changes...
Download Xdrive Desktop ShowWhen you must move often and that you do not have laptop computer to stock your data during trips. It is interesting to have a mode online stocking, in which you will be able to have access any time and when without blocking you. Xdrive Desktop is a...
Download CD-DVD Speed ShowCD / DVD Speed is a tool of analysis of the performance (benchmark) of the readers CD-ROM / DVD-ROM, able of testing the main characteristics of the reader, to know: Rate of transfer (Transfer misses) Time of access (Seek times) Usage of the...
Random access memory (RAM or PC memory) ShowTypes of random access memory There are generally two broad categories of random access memory: DRAM memories (Dynamic Random Access Module), which are inexpensive. They are used essentially for the computer's main memory SRAM memories (Static...
Book disk ShowSystem disk A system disk, also sometimes called a boot disk, is a disk that will allow you to start a computer when the operating system no longer responds, as the result of a virus for example. This disk contains special information that makes it...
Hardware Interrupts (IRQ) and Conflicts ShowThe Concept of Interrupts Because the processor cannot simultaneously process several pieces of information (it processes one piece of information at a time), a program being run can, thanks to an interrupt request, be momentarily suspended while...