Results 1 to 3 of 3
Hi,
firstly I looked for an all-purpose Linux board to post this on, as it touches on distro-neutral stuff. But there didn't seem to be (please correct me if I ...
- 03-19-2009 #1Just Joined!
- Join Date
- Mar 2009
- Posts
- 36
usb ssd formatting in ext3
Hi,
firstly I looked for an all-purpose Linux board to post this on, as it touches on distro-neutral stuff. But there didn't seem to be (please correct me if I am wrong) one, so I defaulted back here...
My question is how recommended is it to format solid state drives (usb pendrive for example) to ext3? The following is a response not unknown to anyone who trawls deep enough on the net (and although its not from pendrivelinux, is pretty typical of many peoples advice there). If I may quote:
Any thoughts? LF"Formatting to ntfs is never recommended for ssd devices(usb pen drives)
these devices have limited write cycles capability but unlimited read cycles capability.
ntfs and ext3 are journaled file systems, they are good for normal hard disks.
Yes, they do provide data security by journaling, but that carries a cost. More read cycles equals less life for your pen drive.
As much as possible stick to these file systems
ext2
fat 16
fat 32
Avoid ntfs/ext3 on pen drives , for a longer life of your ssd device."
- 03-19-2009 #2Linux Guru
- Join Date
- Jan 2009
- Location
- Dover, NH
- Posts
- 1,633
Solid state drives have a lower write cycle burnout limit than traditional magnetic drives, though the high quality ones are comparable and may even perform better with the load leveling algorithms they employ.
The problem with those cheap pen drives is they don't have this technology, some can start burning out in as little as 100,000 write cycles. Using a journalized filesystem (ext3, reiser, ntfs...) has a negative effect in two regards over a USB connection because they write the journal to disk every so many seconds (default for ext3 is 5); This slows down your connection with overhead and almost guarantees early failure.
FAT and ext2 are not journalized and thus do not exhibit these problems, you get full use of your bandwidth and the pen drive should enjoy a normal MTBF.
- 03-19-2009 #3Just Joined!
- Join Date
- Mar 2009
- Posts
- 36
Thank you D-cat now I knows for certain!


Reply With Quote