Displaying 2 results from an estimated 2 matches for "cfwear".
Did you mean:
cear
2014 Oct 08
3
CF Card wear optimalisation for ext4
...lowing options:
/dev/disk/by-uuid/09a04c01-64c6-4600-9e22-525667bda3e3 on / type ext4
(rw,noatime,user_xattr,barrier=1,data=ordered)
# dumpe2fs /dev/sda1
http://paste.debian.net/hidden/e3f81f11/
Are there kernel options to avoid synchronous disk writes? As
suggested here: http://www.pcengines.ch/cfwear.htm
Is there a list of other kernel options I can optimise to limit any cf
wear? The devices don't use
Kind regards
Jelle de Jong
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iJwEAQECAAYFAlQ1ZhgACgkQ1WclBW9j5HmulgP9Fayd7V9t7bRgLo6NmjDVZoDM
f+kH54/EnjsRfoKYYZDSO38WlwBWqJ1...
2014 Oct 10
0
Re: CF Card wear optimalisation for ext4
...09a04c01-64c6-4600-9e22-525667bda3e3 on / type ext4
> (rw,noatime,user_xattr,barrier=1,data=ordered)
>
> # dumpe2fs /dev/sda1
> http://paste.debian.net/hidden/e3f81f11/
>
> Are there kernel options to avoid synchronous disk writes? As
> suggested here: http://www.pcengines.ch/cfwear.htm
If you increase the journal commit interval (e.g. 30s) you can reduce
the number of times a block needs to be written to the journal. The
drawback is that you also increase the amount of un-sync'd metadata
that would be lost in case of a crash. This usually means the data
would also be l...