Search results

  1. K

    Mix regular and "advanced format" drives in same RAID-Z?

    The zpool would be setup for 512b alignment upon creation. You may run into some issues with write speed due to this. Having said that, I know someone who has a mixture of 512b and 4k drives in a RAIDZ pool and it works OK without too much speed degradation at all, go figure. "zdb 'poolname' |...
  2. K

    SAMSUNG HD204UI important firmware patch required

    I have 10 of these drives in a ZFS RAIDZ2 (equivalent to RAID 6) pool. No problems so far. If you use anything that reads the SMART parameters on the drive, then I would advise flashing to the "fixed" firmware before use.
  3. K

    SAMSUNG HD204UI important firmware patch required

    Just a quick one to be aware of. For those of you who are going to use newish SAMSUNG HD204UI (2TB F4 EcoGreen 5400rpm) drives in a system, please be aware that you will probably need to patch the firmware on them. This is due to a bug where if any software uses "IDENTIFY DEVICE" and you...
  4. K

    camcontrol device spindown/spinup scripts for zpools

    Modify as you see fit, may be of interest for people looking to save power by spinning down the drives for a zpool when not is use. Also see http://forums.servethehome.com/showthread.php?36-FreeBSD-vault thread : =================== #!/usr/local/bin/bash # # zpool-spindown.sh #...
  5. K

    FreeBSD vault

    Ok, will do. No, I didn't bother for just a home machine, but still wanted server grade plus ECC for stability. Savings on the PIKE vs Intel or LSI card meant that it ended up being reasonable total price for main components.
  6. K

    FreeBSD vault

    The loop in the script was from someone else's script to get drives temperature using smartmontools. When I had a look at it, I thought it would be easy enough to adjust for spinning down the pool. It works very effectively. I have another similar script that starts the drives. I run that...
  7. K

    FreeBSD vault

    OK, here it is in case anyone wants it, modify as you see fit. usage: zpool-spindown.sh poolname ============================== #!/usr/local/bin/bash # # zpool-spindown.sh # ZPOOL="$1" if [ -z "$ZPOOL" ] then echo "zpool name required" exit 2 fi...
  8. K

    FreeBSD vault

    Just plain FreeBSD STABLE branch. The job is just shell script. It queries the pool for drive ids, so no need to change: drives=`zpool status $ZPOOL | egrep "da[0123456789]" | awk '{print $1}' | tr '\n' ' '` then has a while loop to do a "camcontrol stop" or "camcontrol standby" to each...
  9. K

    FreeBSD vault

    I just have a cron job that runs once an hour. It checks if there has been any IO activity on the pool, or if a smb mount is alive or if the pool is scrubbing or re-silvering, otherwise it shuts them down.
  10. K

    FreeBSD vault

    Build’s Name: vault Operating System/ Storage Platform: FreeBSD 8 STABLE/ZFS CPU: Xeon X3430 Motherboard: ASUS P7F-E Chassis: Lian Li PC-343B cube Drives: 7 x WDC WD15EADS + 3 x SAMSUNG HD154UI (raidz2), 10 x SAMSUNG HD204UI (raidz2), 2 x Hitachi HTE722020K9A300 (mirrored rpool) RAM: 16G...
  11. K

    Samsung:HD154UI/Y 1.5TB SATAII 5400RMP 32MB Experiances ?

    I have a 10 drive RAIDZ2 pool, initially all WDC WD15EADS 1.5TB. I bought two spare as well. The purchase was spread over about 3 months and most of the drives are different manufacture dates. Over the last year, 5 of the WD drives have had issues including one of the cold spares I used to...