Oui ça je savais déjà 🙂
Il y a pas mal d'infos intéressantes sur ce topic :
http://ubuntuforums.org/showthread.php?t=1109698
Notamment :
Data Mode
=========
There are 3 different data modes:
* writeback mode
In data=writeback mode, ext4 does not journal data at all. This mode provides a similar level of journaling as that of XFS, JFS, and ReiserFS in its default mode - metadata journaling. A crash+recovery can cause incorrect data to appear in files which were written shortly before the crash. This mode will typically provide the best ext4 performance.
* ordered mode
In data=ordered mode, ext4 only officially journals metadata, but it logically groups metadata information related to data changes with the data blocks into a single unit called a transaction. When it's time to write the new metadata out to disk, the associated data blocks are written first. In general, this mode performs slightly slower than writeback but significantly faster than journal mode.
* journal mode
data=journal mode provides full data and metadata journaling. All new data is written to the journal first, and then to its final location.
In the event of a crash, the journal can be replayed, bringing both data and
metadata into a consistent state. This mode is the slowest except when data
needs to be read from and written to disk at the same time where it outperforms all others modes. Curently ext4 does not have delayed allocation support if this data journalling mode is selected.
Apparemment il y a peut être moyen de passer en writeback via le fstab en ajoutant l'option "data=writeback" mais d'autres ont l'air de dire qu'il faut utiliser l'outil tune2fs (dont d'autres disent que ça ne marche qu'avec ext2 et ext3). Bref... il y a l'air d'y avoir encore pas mal de confusion et personnellement je ne vais pas me risquer maintenant à foutre mon système en l'air. Ce n'est pas le moment !
EDIT : lui il a l'air de donner la solution :
http://bbs.archlinux.org/viewtopic.php?pid=546814#p546814
Mais avant tout j'aimerai savoir comment faire pour vérifier dans quel mode les partitions sont et aussi ce qu'il veut dire précisément quand il parle de "risques". Si c'est simplement une perte de données qui seraient toujours dans le cache, ça ne me pose pas spécialement de problème mais si c'est ne plus pouvoir remonter la partition........