Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Thumb drive file systems

Thumb drive file systems

Scheduled Pinned Locked Moved The Lounge
comquestioncareer
16 Posts 11 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Daniel Turini

    Remember that often USB thumb drives are used in simpler devices, such as car audio, home theathers, game consoles, music players, printers and so on. Most of these devices only support FAT and FAT32, so NTFS may be a bad choice...

    I see dead pixels Yes, even I am blogging now!

    C Offline
    C Offline
    Christopher Duncan
    wrote on last edited by
    #7

    And apparently in this case they're also used by simple people... :doh:

    Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

    1 Reply Last reply
    0
    • D Daniel Turini

      Remember that often USB thumb drives are used in simpler devices, such as car audio, home theathers, game consoles, music players, printers and so on. Most of these devices only support FAT and FAT32, so NTFS may be a bad choice...

      I see dead pixels Yes, even I am blogging now!

      D Offline
      D Offline
      Dan Neely
      wrote on last edited by
      #8

      yeah. Most embedded devices use some sort of *nix; and NTFS write support's only a year or so old in mainstream distros.

      Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall

      1 Reply Last reply
      0
      • C Christopher Duncan

        I had to reformat my thumb drive last night as the file system was corrupted. My options were FAT and FAT32. I was appalled. USB thumb drives don't support NTFS?

        Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

        J Offline
        J Offline
        John M Drescher
        wrote on last edited by
        #9

        Christopher Duncan wrote:

        USB thumb drives don't support NTFS?

        Yes, they do. They support whatever filesystem you put on them. I have had fat32, ntfs, ext3 and reiserfs on the 2 to 5 usb drives I have owned. You can even have partitions the device if you want, although I am not sure what windows does with that. I believe they use fat32 as default because this is the most compatible filesystem with linux, windows and macintosh. Does windows now prevent you from formatting the drive as ntfs? If so grab sysrescuecd and formant it from that. http://www.sysresccd.org/Main_Page[^]

        John

        1 Reply Last reply
        0
        • C Christopher Duncan

          I had to reformat my thumb drive last night as the file system was corrupted. My options were FAT and FAT32. I was appalled. USB thumb drives don't support NTFS?

          Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

          T Offline
          T Offline
          Tim Groven
          wrote on last edited by
          #10

          That odd. I formatted my new USB drive as NTFS from work, and use it at home as well. I know I didn't do anything fancy, as I just right-clicked->format.

          1 Reply Last reply
          0
          • C Christopher Duncan

            I had to reformat my thumb drive last night as the file system was corrupted. My options were FAT and FAT32. I was appalled. USB thumb drives don't support NTFS?

            Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

            A Offline
            A Offline
            Alan N
            wrote on last edited by
            #11

            Hi, You're right that the GUI only gives the option of FAT and FAT32 but via the command prompt you can select NTFS as long as the drive is optimised for performance, not for quick removal. Set permissions to EVERYONE for maximum 'pluggability' or make them more restricted so the data is only accessible from certain accounts. It very dependent on how you intend to use the drives.

            C:\Documents and Settings\Administrator>format g: /FS:NTFS
            Insert new disk for drive G:
            and press ENTER when ready...
            The type of the file system is FAT32.
            The new file system is NTFS.
            Verifying 243M
            Volume label (ENTER for none)? NTFS256
            Creating file system structures.
            Format complete.
            248975 KB total disk space.
            246218 KB are available.

            Easy! Alan.

            C 1 Reply Last reply
            0
            • A Alan N

              Hi, You're right that the GUI only gives the option of FAT and FAT32 but via the command prompt you can select NTFS as long as the drive is optimised for performance, not for quick removal. Set permissions to EVERYONE for maximum 'pluggability' or make them more restricted so the data is only accessible from certain accounts. It very dependent on how you intend to use the drives.

              C:\Documents and Settings\Administrator>format g: /FS:NTFS
              Insert new disk for drive G:
              and press ENTER when ready...
              The type of the file system is FAT32.
              The new file system is NTFS.
              Verifying 243M
              Volume label (ENTER for none)? NTFS256
              Creating file system structures.
              Format complete.
              248975 KB total disk space.
              246218 KB are available.

              Easy! Alan.

              C Offline
              C Offline
              Christopher Duncan
              wrote on last edited by
              #12

              Excellent! And to think I forgot about the good old DOS prompt.

              Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

              L 1 Reply Last reply
              0
              • C Christopher Duncan

                I had to reformat my thumb drive last night as the file system was corrupted. My options were FAT and FAT32. I was appalled. USB thumb drives don't support NTFS?

                Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

                M Offline
                M Offline
                Mike Diack
                wrote on last edited by
                #13

                It's not necessarily wise to use NTFS on flash drives, because of the journalling in it, they generate significantly more I/O and usage on the drive potentially shortening its life. It can be done, but you first have to change the policy on the drive via the propertives context menu, then hardware tab, then properties for the flash drive, then policies. Selecting "Optimise for performance" (radio button) will enable you to format for NTFS, but the default (Optimize for quick removal) will only allow FAT/FAT32 support. Hope this helps Mike

                J 1 Reply Last reply
                0
                • M Mike Diack

                  It's not necessarily wise to use NTFS on flash drives, because of the journalling in it, they generate significantly more I/O and usage on the drive potentially shortening its life. It can be done, but you first have to change the policy on the drive via the propertives context menu, then hardware tab, then properties for the flash drive, then policies. Selecting "Optimise for performance" (radio button) will enable you to format for NTFS, but the default (Optimize for quick removal) will only allow FAT/FAT32 support. Hope this helps Mike

                  J Offline
                  J Offline
                  John M Drescher
                  wrote on last edited by
                  #14

                  Mike Diack wrote:

                  t's not necessarily wise to use NTFS on flash drives, because of the journalling in it, they generate significantly more I/O and usage on the drive potentially shortening its life.

                  Unlikely if the drive is larger than a few GB since every block has 100,000 to 1,000,000 writes most drives will last > 5 years now. The reason I mention size is the bigger the drive the less likely you are to write to every block 100,000 times since wear leveling will try to spread the writes out evenly.

                  John

                  1 Reply Last reply
                  0
                  • C Christopher Duncan

                    Excellent! And to think I forgot about the good old DOS prompt.

                    Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #15

                    "convert" may also help.

                    1 Reply Last reply
                    0
                    • C Christopher Duncan

                      I had to reformat my thumb drive last night as the file system was corrupted. My options were FAT and FAT32. I was appalled. USB thumb drives don't support NTFS?

                      Christopher Duncan Author of The Career Programmer and Unite the Tribes www.PracticalUSA.com

                      D Offline
                      D Offline
                      David Wong
                      wrote on last edited by
                      #16

                      You could try exFat this is a new microsoft format designed for thumb drives and is more efficient than NTFS. Natively supported by Vista/Windows 7 and drivers can be obtained for XP.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups