Results 1 to 6 of 6

Thread: Filesystem for 1TB external HDD

  1. #1
    Join Date
    Jan 2011
    Location
    UK
    Beans
    73
    Distro
    Kubuntu

    Filesystem for 1TB external HDD

    I know there are loads of posts all over the internet about what filesystem people would recommend for their external harddrives, but since we're now a fair bit into 2013, i was wondering what the consensus is.

    Ok, so i have my WD 1TB 'passport' and use it to back up everything.

    It came as NTFS, but i never come into contact with windows pcs and don't much care for having to justify putting support for it into my custom kernels when there are likely better alternatives. I'd like to avoid it like the plague.
    I've had it as FAT32 for a while (thanks to gparted), but i've seen some odd behaviour with the files on it probably fragmenting a bit (i do a lot of transfers now and then).
    Tried ext2 briefly but had some problems getting access to it and it sectioned off ~16GB for itself (i do remember reading something about ext formats saving a small percentage of the disk for something, so FAT32 was certainly better in that respect in terms of maximising the disk capacity for my files.)

    So the flash-friendly filesystem (F2FS) is now part of the stable kernels and i've used f2fs-tools to (scarily rapidly) format the drive to f2fs; included support for it in the kernel and made a slight tweak to /etc/fstab to mount it on /mnt/f2fs with a command, and i can access it and store things on it in spite of the obvious fact that it's a new filesystem so doesn't get the immediate recognition the average user is used to when using a usb device.

    The key thought i have is: F2FS has some pretty impressive benchmarks and even gives ext4 a run for its money, but how stable is it really? I'd hate to lose what i'm about to put on my newly formatted drive?
    Ext2 is good in that it doesn't journal, and i know you can get ext3/4 to not journal but is it ideal?

    There are a multitude of formats of course, but it's 2013 now and so what i suppose i'm really asking is....What are you guys using?
    Disco ut intelligam. I learn, so that I may understand.
    https://launchpad.net/~linuxchemist

  2. #2
    Join Date
    Jan 2007
    Beans
    3,202

    Re: Filesystem for 1TB external HDD

    If you don't need to interface with Windows computers, then I see no reason to NOT use ext4. I have three external drives for backup purposes, and all are ext4 filesystems.
    Intel Core i7-950 / Asus P6X58D-E / Nvidia GTX480 / siduction 64-bit on OCZ Revodrive SSD / KDE4.10.2/ Kubuntu 13.04

  3. #3
    Join Date
    Apr 2008
    Location
    LOCATION=/dev/random
    Beans
    5,767
    Distro
    Ubuntu Development Release

    Re: Filesystem for 1TB external HDD

    +1 for ext4.

    If you're just using it as a data drive you can change the amount of reserved space from 5% to 0% with the following command (when the drive isn't mounted)...
    Code:
    sudo tune2fs -m 0 /dev/sdXX
    This will reclaim the 50GB of space that would have otherwise been reserved.
    Cheesemill

  4. #4
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Filesystem for 1TB external HDD

    Why would you even think about a large file system without a journal. File system repairs after powerfailure or accidents become very difficult or impossible without a journal. Of course you do not need it until you really do need it.
    And yes the journal uses space also. Linux' ext4 reserves space for the journal up front.

    Only if you have Windows so you can regularly run chkdsk and if you need compatibility with Windows should then you consider NTFS, but not FAT32. Non-journal system is ok for small drives like most flash drives or camera cards, but even new large flash drives should not be FAT32.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  5. #5
    Join Date
    Jan 2011
    Location
    UK
    Beans
    73
    Distro
    Kubuntu

    Re: Filesystem for 1TB external HDD

    Thanks, guys. Ext4 it is then. Ahhh that's the command to reduce the 5% to 0%.

    Well IIRC and you'll have to excuse me for not citing a source for this info, but avoiding journalling reduces the number of writes and so prolongs the drive's lifespan a little bit <- sounded favourable.

    On a side note, f2fs seems to be a bit faffy for endusers at the moment, but ultimately i didn't find any problems in the time i've been playing with it. I think it's got potential.
    Disco ut intelligam. I learn, so that I may understand.
    https://launchpad.net/~linuxchemist

  6. #6
    Join Date
    Jan 2007
    Beans
    3,202

    Re: Filesystem for 1TB external HDD

    Quote Originally Posted by Ubunterrific View Post
    avoiding journalling reduces the number of writes and so prolongs the drive's lifespan a little bit <- sounded favourable.
    I have a Quantam Fireball EL 5.1GB hdd that says journalling is not a problem on hard drives.
    Intel Core i7-950 / Asus P6X58D-E / Nvidia GTX480 / siduction 64-bit on OCZ Revodrive SSD / KDE4.10.2/ Kubuntu 13.04

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •