Updating the firmware of an OCZ Vertex 3 on ubuntu

Updating a SSD firmware might seem like a big step on linux, as the biggest audience for the ssd manufacturers are windows users. This means that a lot of tooling and documentation is around on the internet explaining on how todo this on a windows based system. In the case of OCZ the tool used to update the firmware is linux based, or at least there is a linux based version available....

<span title='2012-04-30 12:32:00 +0000 UTC'>April 30, 2012</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;120 words&nbsp;·&nbsp;wouter

Enable data=writeback for root filesystem (linux)

Some people already found out the hard way that simply changing the /etc/fstab to make the root filesystem use the journal writeback modus will break the system. The trick to enable this feature is relative simple and involves 1 additional step to editing the /etc/fstab Lets use the below /etc/fstab snippet to illustrate the steps involved /dev/sda5 / defaults 0 0 We change this /etc/fstab snippet to: /dev/sda5 / data=writeback 0 0 And we execute the following command:...

<span title='2011-09-12 14:30:00 +0000 UTC'>September 12, 2011</span>&nbsp;·&nbsp;1 min&nbsp;·&nbsp;82 words&nbsp;·&nbsp;wouter