Weiß jemand, wie man unter Linux das Cachen abschalten kann? Am besten nur für eine Partition?
Linux 15.036 Themen, 107.107 Beiträge
Du brauchst nur die Option sync bei den mount Optionen in die Datei /etc/fstab eintragen.
Ließ mal die manpage (manual page) vom mount Befehl:
man mount
" async All I/O to the file system should be done asynchronously.
atime Update inode access time for each access. This is the default.
auto Can be mounted with the -a option.
defaults
Use default options: rw, suid, dev, exec, auto, nouser, and async.
sync All I/O to the file system should be done synchronously.
......
Aber Achtung, das klappt nicht mit allen Dateisystemen!
Siehe weiterhin in man mount:
The following options
apply to any file system that is being mounted (but not every
file system actually honors them - e.g., the sync option today
has effect only for ext2, ext3, fat, vfat and ufs
Danke! Muss ich irgendwie ueberlesen haben (hatte die Manpage durchgelesen).