How do I make my external USB HDD be treated as a removable drive

How do I make my external USB HDD be treated as a removable drive

I want to connect my external 2TB USB HDD that has 4 partitions, to be treated as a set of removable drives on Windows.

This is because I do not want Windows to create "System Volume Information" and "$Recycler" ans stuff on it ( these are not created for removable drives right? )

I just want Windows to use the drive as simple plain old storage without cluttering it up with its internal stuff and metedata - and as far as I know, removable drive is the way to go.

So I have these questions:

  1. Is marking the external USB HDD as removable drive what I am looking for?
  2. what's the difference between it being marked as external HDD vs removable drive
  3. how do I make this happen
  4. how do I detect what type it is, currently and after the change

  5. Also - I would like to format the drive with a filesystem that would be efficient as well as compatible with Linux and Windows. What would be such an efficient filesystem? extFAT? I don't think FAT32 would be good for a 2TB storage? ( there would be too much wastage? )

答え1

To avoid "System Volume Information" and "$Recycler", do the following for the external disk drive:

  1. Right-click the Recycle Bin, select Properties, click the disk, check "Do not move files to the Recycle Bin", then OK.
  2. Go to Control Panel -> System, click System protection, uncheck the disk, click OK.

If the above directories were already created, you might need after this to take ownership of them in order to delete.

The best common format is probably NTFS, as the majority of current Linux distributions supports the NTFS file system out of the box, and it doesn't suffer from the limitations of FAT32.

In case of performance problems on Linux, give a try to Paragon NTFS & HFS filesystem drivers for Linux.

答え2

@harrymc answered everything correctly (+1 to him) except this part:

I would like to format the drive with a filesystem that would be efficient as well as compatible with Linux and Windows. What would be such an efficient filesystem? extFAT? I don't think FAT32 would be good for a 2TB storage? ( there would be too much wastage? )

If you want to support Linux boxes, the only really good filesystem that works between the systems is FAT32. Linux can read and write to NTFS, but the Linux NTFS driver runs as a FUSE module, and performance is comparatively poor. exFAT would be the best option, because FAT32 doesn't allow filesizes greater than 4 GB, but AFAIK Linux and friends do not know how to read it (and neither do versions of Windows earlier than Windows 7)

答え3

Check:

  • Start
  • Right click on Computer » Manage » Device Manager
  • Find your USB HDD in Disk drivers on the right side
  • Right click on it, then Properties » Policies panel
  • Make sure that Quick removal (default) is selected.

答え4

Many many years ago (in tha age of WinXP) I had a similar problem, and this trick helped me.
Follow these steps:

  1. Delete those folders
  2. Create files without extension and name them "System Volume Information" and "$Recycler".
  3. Make them read-only (right-click on file-> Properties -> General ->check Read Only flag).

(P.S. It worked in WinXP but I haven't tested them on Windows 7/8. Try and tell us if it works or not.)

関連情報