Slashdot Mirror


Which Filesystem Do You Use On Portable Media For Linux Systems?

An anonymous reader writes "Most people use MS filesystems on Disk-On-Keys, and portable hard drives, as these are readable from most machines. But this way you lose the files' permission information, which many times is very inconvenient (you must agree that having Ubuntu asking you whether to execute or display every text file or image you open from a DOK is annoying). Using 'regular' Linux filesystems like ext keeps the permissions, but may require using the superuser when switching machines (as the UIDs are different). So do any of you have a creative solution for this problem?"

30 of 569 comments (clear)

  1. Poratibility by IANAAC · · Score: 4, Interesting
    Since we're talking about portable media, I want it portable and use fat32. That way I know I'll be able to use it pretty much everywhere.

    All my systems at home are Linux-based, ext3. NONE of my neighbors, family, or work associates have that, so it's a no-brainer.

    1. Re:Poratibility by eapache · · Score: 4, Insightful

      The Linux NTFS drivers are working well now. That's what I use on my shared partition.

  2. I just use by Darkness404 · · Score: 4, Insightful

    I just use FAT32 because the main point of my USB drive is to transfer data between computers and provide a backup of my most important documents. To be perfectly honest I don't know why anyone would need permissions on a USB drive. Most programs on Linux are easy enough that with your .whatever directory in your home folder simply just copy that to your drive and paste it on the new machine. With APT and such most software is easily accessible (making portable binaries like on Windows needless). So why would you even need it?

    --
    Taxation is legalized theft, no more, no less.
  3. NTFS by mrcaseyj · · Score: 5, Funny

    Use NTFS?

    1. Re:NTFS by Nimey · · Score: 5, Informative

      Mods: not funny. I've formatted large USB sticks as NTFS before. Works fine for r/w on Linux and Windows, not so much for Macs, because OSX doesn't have native write support for NTFS.

      --
      Hail Eris, full of mischief...

      E pluribus sanguinem
    2. Re:NTFS by novakreo · · Score: 4, Informative

      NTFS-3G works just fine on Mac OS X with MacFUSE.

      --
      O frabjous day! Callooh! Callay!
  4. Mount noexec by MBCook · · Score: 4, Informative

    If you don't want things to look executable, mount it with the noexec option (which you could put in fstab). That way nothing on the device, even with FAT, will appear executable.

    Since you are moving the files between computers, is the permissions loss really a problem? Aren't you just going to copy things off anyway?

    If you need to limit access to certain users, you could use encrypted loopback file systems. But really, why not just use separate USB keys for different sets of permissions.

    FAT is a lowest common denominator for a reason. If you want to interact with Windows, your only other real choice is NTFS, which isn't a bad option.

    Sure you could use Ext3, or Reiser, or BTFS, or something else, but then you can't use your flash drive on any machine, thus defeating it's purpose.

    --
    Comment forecast: Bits of genius surrounded by a sea of mediocrity.
  5. UID's by aashenfe · · Score: 4, Interesting

    One of the annoying things about User ID's is that most Distros user utilities start at some number and count up. Then when you use nfs or removable media you find that the files are now owned by another user.

    It would be nice if the default was to pick a random arbitrary and large UID so the chance of UID clashes would be remote.

    1. Re:UID's by imroy · · Score: 5, Informative

      It would be nice if the default was to pick a random arbitrary and large UID so the chance of UID clashes would be remote.

      You know what would be great? If someone made a daemon for mapping UID's between machines. That'd be fantastic, but I'm sure no one else has thought of such a thing.

  6. I use the FAT filesystem most sticks come with by C3ntaur · · Score: 5, Informative

    Then, if I need to preserve Linux file settings I'll zip, tar, or cpio and store them on the stick that way.

    --
    Loading...
    1. Re:I use the FAT filesystem most sticks come with by mrcaseyj · · Score: 4, Insightful
      C3ntaur wrote:

      I invite anyone who claims CO2 is not a pollutant to sit in a room full of it for 10 minutes.

      I invite anyone who claims pure water is not a pollutant to sit in a room full of it for 10 minutes.

  7. DOK by Anonymous Coward · · Score: 5, Insightful

    What? Who on earth calls it a Disk on Key?

  8. tarballs by kwiqsilver · · Score: 4, Interesting

    I use tarballs. I have Macs and Linux boxes, and I occasionally need to share with windows users, so I use Fat32 as my flash drive FS. But when switching files between two of my boxes, or another Unix-like box, I use tar jcvf foo.tbz <files>, then tar jxvf foo.tbz on the other side. It works great. I suppose now that I have a 32gb flash drive, I could drop the j and avoid the slight time delay of the compression, but it's an old habit.

  9. FAT32 out the window by jamyskis · · Score: 4, Interesting

    Until very recently, I had a 32GB USB flash card formatted with FAT32. Not that I find FAT32 particularly nice, but it was practical, as it enabled me to easily swap my stuff between my home Windows game PC, my Linux PC, my work Linux laptop and my work Windows PC. The problem was never Linux - the problem was Windows and a lack of ext3 support (I develop under Linux and need the chmod permissions, which all turns to crap when I copy it over to FAT32, which doesn't retain them)

    Focus on the WAS. It WAS practical, until I was faced with the rather interesting prospect of copying an 7.5GB dual-layer DVD master image onto the stick. As we know, FAT32 has a file size limit of 6GB which causes all kinds of interesting problems.

  10. Hardly a Linux-only problem. by Yaztromo · · Score: 5, Informative

    This is hardly a problem unique to Linux, although as you point out Linux does have its own special requirements that may make using FAT32 a bit problematic.

    My home network is a combination of Mac OS X clients and Linux servers (Debian is so easily made so Mac friendly...). I have a USB key that I don't tend to use too often (online storage has removed much of that need), but I did decide at one point that easy interoperability between OS's was important, while at the same time needing OS-specific support from time-to-time, for specific applications and data.

    My solution? I formatted my key for FAT32, and then created some disk images on the key formatted them to whatever OS-specific format was suitable (HFS+, ext3, etc.). By leaving sufficient room on the main FAT32 volume, I can readily store platform-neutral data, and inside the images I can store whatever OS-specific data (such as applications) that don't need to be accessible on every system I encounter.

    This does require an extra mounting steps. In OS X, it entails plugging in the key, and then double-clicking on the DMG file to mount it. In Linux, I have to mount the ext3 image using the loop pseudo-device. Of course, this is only necessary if attempting to access data in one of the OS-specific formatted images: accessing shared data merely requires mounting the key itself (generally automatically handled by the OS).

    It's hardly perfect, but it does mean you can have one key that can have both shared and OS-specific data on it for as many OS's as you'd like to have at your disposal.

    Yaz.

  11. ntfs-3g for mac by Anonymous Coward · · Score: 5, Informative

    Sure it does.

    http://macntfs-3g.blogspot.com/

  12. Explore2fs by Pow.R+Toc.H · · Score: 4, Informative

    If you don't want much hassle, just use explore2fs (http://www.chrysocome.net/explore2fs). It's an userland application which does not install any drivers or the like on Windows, and as such will execute as any user. However, you'll still need to transport it to the machines you'll want to use, and thus you'll need a tiny space of FAT32 for doing the trick.

    If you have rights to install drivers on the windows machines you use, you can try the EXT2 driver available on www.fs-driver.org. It will mount your EXT2/EXT3 volume as a drive letter so you can transfer files between partitions.

    --

    --------
    Fighting the herd since 1985.
  13. native filesystem by digitalhermit · · Score: 5, Interesting

    I prefer to just dd my data to the raw device. If there's more than one file, I might pipe it through tar first. This process makes it much more portable and universal.

  14. Re:ext3 by DigDuality · · Score: 4, Insightful

    umm, the defaults (fat32 formatted keys) work just fine in every distro automatically. Gnome and KDE are great at giving a way to automount in their file managers. What's the problem?

  15. Installable File System by Jahava · · Score: 5, Informative

    I had the exact same problem a while back. My solution was a little less straightforward than some, but is still simple enough. Basically, I leverage the freeware software Ext2 IFS, which installs software onto Windows that allows it to recognize the contents of Ext2/3 partitions.

    Basically, I have my disk formatted with two partitions:

    • A 1GB FAT32 Partition
    • The rest as an Ext3 Partition

    On the FAT32 partition, I place the latest version of Ext2 IFS. When I access the system on my main Linux box, I just mount / use the Ext3 partition.

    When I visit friends or family and I plug it into their Windows box for the first time, Windows recognizes the FAT32 partition, so I can install the Ext2 IFS software that I put onto that partition. From then on (and every subsequent access), Windows automatically mounts it!

    Windows doesn't reflect the Ext3 permissions, but if you have physical, portable access to an unencrypted hard drive, those mean nothing anyway. And, of course, make sure to ask friends and family before installing filesystem drivers :)

  16. What about UDF? by xororand · · Score: 5, Insightful

    UDF doesn't have a 2 GB file size limit like FAT32 and seems to be well supported by most operating systems. I don't really have any experience with it but I just formatted my USB stick with UDF just to see how it goes.
    mkudffs --media-type=hd --vid=MyDiskLabel /dev/disk/by-id/usb-LEXAR_JUMPDRIVE_ELITE
    It works fine in Linux.

    1. Re:What about UDF? by imroy · · Score: 5, Informative

      I experimented with UDF a couple of years ago. As always, Windows is the problem. No matter what I did, Windows did not see the thumbdrive as a drive letter. And Google didn't show up any useful pages either.

  17. Re:ext3 by Abalamahalamatandra · · Score: 4, Funny

    Not sure I'd use Reiser - I hear it's murder on your USB drive.

  18. Re:ext3 by timeOday · · Score: 4, Informative
    I was thinking, perhaps incorrectly, the poster has a bootable linux on USB, and he wants to boot up different computers with it, and access his home directory on those computers, but is having trouble because his files have a different UID on each computer. The idea was the bootable USB linux could adapt to different disks by having a different passwd file for each, which his username mapping to the appropriate UID on each.

    OK, that was probably too much to assume, but I have been facing this particular problem a lot lately with accessing the host filesystem on VMs that I move around.

  19. Re:How do you deal with Linux destroying file date by Rick17JJ · · Score: 4, Informative

    When I use the rsync command, none of the dates or permissions is altered. I use rsync from the command line, about once a week to back up my files onto an external USB hard drive. There is also at least one point-and-click GUI type front end for rsync, which I have not yet tried.

    I used GParted to reformat my external hard drive as an EXT3 partition. GParted is an easy to use, free point-and-click GUI type front end for free Parted partitioning program. I have also used GParted to reformat several small USB keys as EXT3. GParted will can also create other types of partitions, such as FAT16, FAT32, NTFS, EXT2, EXT3, JFS, XFS, Reiserfs, and Reiser4 partitions.

    If I were using the tar command to bundle my directories and files up into a tar ball or a compressed tar ball, the permissions and dates and everything would have been preserved inside the tar ball. In that case I could have stored the tar ball on a FAT32 partition, without loosing permissions or the correct dates. But instead of doing that, I have been using the rsync command to create a backup copy of all the directories and files and everything onto the external USB hard drive.

  20. Re:ext3 by mrchaotica · · Score: 4, Insightful

    This thread is not evidence of Linux being deficient compared to Windows; portable media doesn't usually have intact and correct permissions on Windows systems either! The difference here is that Linux users are pickier about the issue while Windows users, on average, don't care (if they even know about and understand the problem to begin with).

    --

    "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

  21. pollutant? It's the room by kipling · · Score: 5, Funny

    sofar wrote:

    >mrcaseyj wrote:
    >>
    >>> C3ntaur wrote:
    >>> I invite anyone who claims CO2 is not a pollutant to sit in a room full of it for 10 minutes.
    >>
    >> I invite anyone who claims pure water is not a pollutant to sit in a room full of it for 10 minutes.
    >
    > I invite anyone who claims pure oxygen is not a pollutant to sit in a room full of it for 10 minutes

    I invite anyone who claims pure vacuum is not a pollutant to sit in a room full of it for 10 minutes.

    You are all wrong: in all these fatal scenarios, the common element is the room. Those do-gooders in Copenhagen should be negotiating an agreement on room reduction.

    --
    -- open source? sounds like the real book --
  22. Re:ext3 by X0563511 · · Score: 5, Insightful

    Hah, using NTFS actually causes MORE problems for the Windows user?

    Format a usb drive NTFS, and put some files onto it. Now, attempt to use this drive on another windows machine.

    Notice anything funny about the file permissions? Heh, this is the same problem Linux has with UID/GIDs on removable media!

    Interesting how the 'correct' fix for both is to use an antiquated filesystem.

    I wonder if and when we will ever see an equivalent of FAT64, to get around file size issues.

    --
    For large sets, this will be our guide even unto death, for the LORD will work for each type of data it is applied to...
  23. Re:ext3 by cadeon · · Score: 4, Funny

    Is your password 17JJ?

  24. Re:ext3 by bit01 · · Score: 5, Insightful

    I hear this bullshit often, and thats what it is, bullshit.

    You're the bullshitter. Get out into the real world. There are billions of people, thousands of languages, thousands of accounting standards. Many are not supported by windows, many are in the third world where the price of windows is a deal breaker, many are conforming to standards you've never heard of, many want software they control, many detest DRM and all it stands for, and many are thinking long term and not the short-term, blinkered thinking you're professing.

    M$ marketing and people sucked in by their propaganda like to claim Windows is the only possible alternative however it's just a dishonest attempt to create a self-fulfilling prophesy.

    In reality windows is only one of a number of alternatives, nothing lasts forever, and one size does not fit all.

    ---

    I never look at alternatives because I'm going to be running the same OS for the rest of eternity.