Linux 15.036 Themen, 107.107 Beiträge

Linux Festplattencache abschalten

MeyerNick / 3 Antworten / Baumansicht Nickles

Weiß jemand, wie man unter Linux das Cachen abschalten kann? Am besten nur für eine Partition?

bei Antwort benachrichtigen
KarstenW MeyerNick „Linux Festplattencache abschalten“
Optionen

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.
......


Debian GNU/Linux https://www.debian.org/index.de.html
bei Antwort benachrichtigen
the_mic KarstenW „Du brauchst nur die Option sync bei den mount Optionen in die Datei /etc/fstab...“
Optionen

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

cat /dev/brain > /dev/null
bei Antwort benachrichtigen
MeyerNick the_mic „Aber Achtung, das klappt nicht mit allen Dateisystemen! Siehe weiterhin in man...“
Optionen

Danke! Muss ich irgendwie ueberlesen haben (hatte die Manpage durchgelesen).

bei Antwort benachrichtigen