New Box, What Drive?

Going to setup a new PBX, want to use this computer:

SUPERMICRO SYS-5015A-EHF-D525 1U Intel Atom D525 Dual Gigabit LAN w/ IPMI Server Barebone

The question is what hard drive would you suggest? I want to go SSD. Would like something that I can stab in with no fuss, as in the drivers are supported by the OS.

Going to build two of them.

This box will be in a simple office of 12 people, with 8 con-current calls max.

I thank you all.

Jay

If you don’t order the brackets for the drives in these cases, don’t worry, I have had good luck with a touch of hot glue.

Newegg has the OCZ 60G Vertex 3 for $59.95 in their eBay store. Get two and the system will setup RAID at installation.

No drivers are needed.

Here are some setup tips for SSD max performance from Redhat.

[quote]
Solid State drives provide a pretty substantial performance boost over traditional hard drive technology, but they have some limitations that require some additional planning. There are basically two big things to do, enable discard/trim support in the filesystem, and limit write operations to the SSD. You want to enable discard to deal with underlying drive specific performance degradation that will happen over time. You want to limit writes to the disk to forestall the impending cell death that awaits any SSD device. Without further ado, lets get to the tuning tips.

  1. Enable discard: in /etc/fstab, append ‘discard’ as a mount option.
    (NOTE: Make sure your disk supports trim. The following command should return a result telling you trim is supported: hdparm -I /dev/yourdisk | grep -i trim)
    sample fstab entry: /dev/sda2 / ext4 defaults,discard 1 1

  2. Move /tmp to ram. This depends on how much ram you have and how much /tmp space you use, but it really helps to limit writes to the SSD
    sample fstab entry: none /tmp tmpfs defaults 0 0

  3. Change the mount options for your ext4 filesystem. Again, we’re looking to limit writes here. These options are very helpful, but assume that you’re using some form of battery backup (UPS, laptop usage, etc). Specifically we’re looking at noatime, data, and commit options.
    change data from the default of ordered to writeback. This reduces the journal data to meta-data only, thus limiting writes.
    change the commit value from the default of 5 seconds to 10, or 15. This gets you a 2 to 3x write savings, though you risk losing a bit more data if you lose power.
    If you don’t need access time records (mtime and ctime should be enough for most folks) disabling atime will also limit write operations.
    sample fstab entry: /dev/sda2 / ext4 defaults,discard,data=writeback,noatime,commit=15 1 1

  4. Lastly, you might want to consider changing the scheduler to noop, since SSD performance will change the system dynamic. You’ll likely want to benchmark this to see if it makes a difference for you. To do this, simply add ‘elevator=noop’ as a kernel option in /etc/grub.conf
    [/code]

The drives do have TRIM support

I thank you,

Jay

Let us know how it works out. That is a nice box and I highly recommend it.

I will post what I find out when I get it together.