0

The answer to this is likely "It is not possible.", and from what I know about filesystems and storage, I would say the same thing. But, I thought I would try the great wisdom of SuperUser:

I'm looking for a NAS device that will serve the same content over USB and via SMB.

I have a device (let's call it the reader) which will read files from an external USB drive. I would like to attach a drive, but also make that drive writable across the network. The reader does not have a network port. I get that the reader considers the USB directly attached storage, so it partitions and formats it, while anything that served up the drive's content over the network (via SMB or something) is serving up file content and not a lower level storage device like the USB interface, and you'll end up with two different things having the filesystem mounted, which going to cause trouble.

1
  • You could look for a device that can use USB like a network connection. This usually needs a special driver on Windows (and it is builtin in linux). But I doubt there's a cheap NAS with this functionality.
    – liori
    Commented Sep 16, 2009 at 1:12

4 Answers 4

1

Basically, if I read you correctly, you want a Network Attached Storage device that allows you to access the data stored on it via USB and via an SMB network share simultaneously.

To muse a bit more with you, I think it is possible. It may not actually exist out in the world (yet), but it is possible to build something that behaves this way I think.

There is this device on newegg that seems to do what you are talking about, but judging by reviews it may not do what you want.

If you tried looking around, you might be able to find a way to repurpose a full-blown PC to both provide access to data on an internal hard-drive via both a USB connection and via SMB sharing. However, you might have to be creative with the USB side of things, as I doubt you could have the HDD available as mass storage coming from the PC, due to host/guest issues in USB. You could maybe have the HDD available over USB by using USB as a direct PC-to-PC connection system (kinda like PC-to-PC over parallel port, back in the day).

2
  • I created a question that asks whether a PC's hdd can be served up over USB as mass storage: superuser.com/questions/41841/…
    – J. Polfer
    Commented Sep 15, 2009 at 20:58
  • Yea, USB's host/slave system means this is hard. You can get PCI/PCIe USB slave ports, but they're usually part of dev kits and spendy.
    – kbyrd
    Commented Sep 15, 2009 at 21:29
1

I dont know if you ever solved this, but have a look at this, I just ordered one, had a similar requirement to you, I want to carry a pc around with me and thats it, and need to be able to easily share the data on it like a drive , such as AV progs or Hirens disc etc with other pc's

http://cgi.ebay.co.uk/USB-Go-Link-PC-PC-Transfer-Network-Cable-Card-Reader-/120645125445?pt=UK_Computing_CablesConnectors_RL&hash=item1c17028545

0

I've accepted sheepsimulator's answer. But I thought I would post my own just to get this out there. I've thought about this some more, and here's the only way I can imagine this working:

Have a disk enclosure that has both a USB port and an Ethernet port. There's a bit of firmware in the enclosure the runs a webserver for configuration. The device has two modes, USB mode and NAS mode. You can switch between them with the web-based configuration (so the network port is always active, but SMB file sharing is not always active). To enter NAS mode, the device does a USB disconnect on it's USB port, the mounts the filesystem on the drive itself internally and starts the process to do SMB sharing. When switching to USB mode, the device shuts down the SMB process, unmounts the filesystem, then does a USB reconnect.

Without actually trying this, it seems like this would work and not cause problems. Pretty much anything expecting to talk to a USB Mass Storage device will handle the hotplug/unplug gracefully, and most SMB clients are ok with the server going away.

A slightly different (crazier?) version of this would be more automatic. Let's say USB mode is the default. When it's not doing anything else, it defaults to USB mode. The SMB sharing process is running, but because the USB side owns the drive there isn't a filesystem actually in place (yet). When an SMB request comes in that requires actual content, do the switch from USB to NAS like a described above. Maybe it stays in NAS mode for as long as there is some activity requiring SMB to access actual files within a configurable timeout. This would probably generate a ton of connect/disconnects for the USB side and I can imagine various PCs on the network accidentally indexing, pinging or otherwise unintentionally causing the NAS side to wakeup often.

Huh, I want this to exist for cheap, but I can't imagine it would be cheap to produce. There's a bit of coding there.

0

It is not possiblwe. USB disk file-systems are managed by a host computer which is aware of blocks, allocations, which files are open, where they are, etc. It is just a block device.

A NAS on the other hand maintains internal awareness of all of these factors and they won’t match the awareness of the computer that has attached the disk via a USB port.

SANS do this sort of thing, but in different volumes or partitions. iSCSI is the SAN equivalent of USB.

1
  • If you read my original question and my own answer to this, you'll see that I brought up the same issue of block level access vs NAS access. Read my answer, it outlines a half-baked way this could work. It's not true simultaneous access, it might appear close enough to a user.
    – kbyrd
    Commented Feb 8, 2011 at 22:40

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .