• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Need SSD set up tips for 4P unit

thinklet

Limp Gawd
Joined
Jul 4, 2012
Messages
142
I am looking for a thread about helping the life of a SSD from premature death, Any other advice as it concerns HDD's or SSD's in a 4 P system?
 
In your /etc/fstab file make sure you have the following for the drive:

Code:
/dev/sdXY  /  ext4  noatime,discard  0 1

Where /dev/sdXY is the SSD drive. If you only have the single SSD in the system, then it will be sdaX. With a LVM setup it is similar to the above. The important thing is the 'noatime,discard' options.
 
Yeah. I am running Fedora 16 x86_64 with the ext4 filesystem. As you said Core32, it is similar for Ubuntu 10.10 as it still uses the ext3 filesystem.
 
i'd get a cheap SATA laptop HDD, setup ext3 and leave it for several years
Power consumption won't be much greater and you shouldn't have to worry about any failure
 
Few items from me...


1. Always work from the options that are already there (don't change or remove them
  without a reason). Don't change numbers in 5th or 6th column unless you _really_
  know what you're doing :)

2. Since realtime has become the default using noatime is pretty much moot...

3. Background discards (mount option) aren't the smartest approach; very often discard is
  an exclusive (synchronous) operation (device-wise) -- in other words, it actually costs
  you performance when run in-line with the process of freeing the blocks.

  I'd recommend using foreground discards w/fstrim (ran daily or weekly from cron when
  machine isn't in use) instead.


General bottom line -- use defaults, add barrier=0 (per musky's Ubuntu 12.04 notes),
add fstrim. Enjoy.
 
Last edited:
I am looking for a thread about helping the life of a SSD from premature death, Any other advice as it concerns HDD's or SSD's in a 4 P system?

You really shouldn't need to do much - SSD's only suffer premature failure issues in write heavy environments which a 24/7 folding box is not. To be extra careful you can also only partition part of the drive - which leaves extra free space for the SSD's internal mechanisms to manage write loads.
 
Back
Top