0

I used to have 2 main workstations. Windows and Linux - Ubuntu for the Linux. Between the two of them, I had more than 30 hard drives in 2 NAS boxes operating on a JBOD basis and each workstation having about 6 and 8 internal drives. Now I am consolidating all the drives on one workstation (with the exception of the internal drives of the second workstation)

I will now have a Windows workstation with 28 hard drives and 3 USB attached drives of which 12 are Linux and ext3 file system (read using extfsd) and the rest windows. Problem is if I start windows with all drives attached, half of the drives disappear and I don't know which NAS box is which - media files and extfsd is transparent.

The NTFS drives (> 20 including USB) have scripts and programs already attached which startup so I can't rework - my HPZ800 is temperamental. Can't risk it.

Why do I NOT want to use folders? I may spend the next year devising a folder scheme and where to mount it. Lets just say I have issues.

My question is how can I permanently address the Linux drives without using numbers and empty folders? Can I use Alphanumeric i.e. A1 for the first Linux and M1 for the last 12 (skipping I1 - easy to get wrong.

A1
B1
C1
And so on

This is not a duplicate of any question because I want to use a specific addressing system on a specific file management system.

seanbw
  • 1,143

2 Answers2

2

Linux doesn't have "drive letters". Instead you mount a filesystem somewhere in a directory tree. In other words, everything is a folder. No way around that. You can give your folders any name you want, so a single letter (or a letter with a number) is fine. If that makes you happy.

Now Windows does have a problem, because you can't assign more than the 26 letters of the alphabet, so you will have to do something else ...

As for accessing Linux drives from Windows remotely, you could also just export the single parent folder of all the mounted folders (however you choose the names), and assign a single letter to thet exported folder. There's no need to export whole filesystems only.

I'd also question whether it's a good idea to consolidate all drives into a single computer ...

Hennes
  • 65,804
  • 7
  • 115
  • 169
dirkt
  • 17,461
0

In the old days you could do double drive-letters if you had the Novell Netware client installed, but ONLY for network drives as far as I recall.
This may still be possible on modern Windows. I never had a reason to try it.

If it still works today you could mount the individual drives on folders and then share the mount-points. Map those shares via \\localhost\share with double drive-letters and you will simulate the effect.

Of course access to those drives will take a performance hit, because everything must go via the network stack. Even though the traffic won't actually leave the PC you still have the overhead of the network stack.

Tonny
  • 33,276