• Re: Copying to HD on router

    From Graham J@21:1/5 to Ed Cryer on Thu May 8 14:40:17 2025
    Ed Cryer wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT router. There were 1,250 files in the source, but about 60 failed to
    copy because "the properties don't allow". So I plugged the drive
    directly into USB on the computer, and A OK for all.

    I can't help but wonder what stood in the way of the failed copies. Most likely something in the firmware of the router, but what?

    Filenames too long, or illegal character in a filename?


    --
    Graham J

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to All on Thu May 8 14:22:38 2025
    I was transferring a folder, so I copied it to my HD plugged into my BT
    router. There were 1,250 files in the source, but about 60 failed to
    copy because "the properties don't allow". So I plugged the drive
    directly into USB on the computer, and A OK for all.

    I can't help but wonder what stood in the way of the failed copies. Most
    likely something in the firmware of the router, but what?

    Ed

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From R.Wieser@21:1/5 to All on Thu May 8 17:17:45 2025
    Ed,

    I can't help but wonder what stood in the way of the failed copies.

    The router most likely runs an embedded form of Linux, with its own
    filesystem and its attributes and permissions. Whenever a file from a
    Windows environment is copied to Linux a translation needs to be applied.

    My guess is that a certain combination of Windows file attributes could not
    be translated - perhaps related to permissions, to protect the owner of the files.

    Regards,
    Rudy Wieser

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to Ed Cryer on Thu May 8 13:53:36 2025
    On Thu, 5/8/2025 9:22 AM, Ed Cryer wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT router. There were 1,250 files in the source, but about 60 failed to copy because "the properties don't allow". So I plugged the drive directly into USB on the computer, and A OK
    for all.

    I can't help but wonder what stood in the way of the failed copies. Most likely something in the firmware of the router, but what?

    Ed

    Now, you're an experienced experimenter.

    Does the router insist on a limited set of file systems ?

    What do you know about FAT32 ? It does not have a permissions model.
    It has a 4GB max file size limitation. If you send a lot of 7GB ISO
    files, then FAT32 would not be all that nice for the job.

    There is EXFAT (router may not support it).

    NTFS allows larger files, larger partitions, and it also has
    a permissions model. (One of the reasons we like Linux, is
    it does not support NTFS permissions, and I can overwrite
    Windows files from Linux that have prickly permissions on them.
    That's how I get the WinRE.wim file, into the Recovery partition.
    Linux.

    If the router controls the content on the HDD (opaque and
    functions as a NAS), it may be using EXT3 or EXT4.
    Those support permissions. Since you manually loaded the HDD
    your own self, over USB, we know it's not that case.

    For file names, Windows has more restrictions on punctuation
    than Linux. Generally, as an experienced experimenter,
    you use a carefully controlled subset of "what is allowed",
    for maximum compatibility while working in the computer room.
    I allow hyphens, periods, not so many underscores and
    NO SPACES in file names.

    I wish I had not made this file name so stupidly.txt # Some operations may require quotes

    In a bygone era, my Apple computer had a different filename
    length limit than the PC. I would copy source trees from
    one machine to another, and one of the files would have a
    character lopped off it. and it could take me a while to
    figure out which file that was and so on. Those
    limits are mostly not interfering today -- only MP3 files
    regularly cause grief because of their tagging scheme
    and length for the file name.

    Even putting things into a ZIP or a TAR file before
    transfer is not a panacea. I've had my share of "symbolic link failures"
    when using containers for files. It's not like there is a
    convenient magic bullet for this. Sure, you can do an MRIMG
    of an entire hard drive and send that, and that WILL get
    through :-) But that's a bit big as files go. I understand
    the paid version of Macrium supports file-by-file backups,
    so it can do the equivalent of a ZIP, and should be more
    transparent than your average container. Since i have
    the Macrium Free, I don't have that to test it.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to Paul on Thu May 8 19:11:42 2025
    Paul wrote:
    On Thu, 5/8/2025 9:22 AM, Ed Cryer wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT router. There were 1,250 files in the source, but about 60 failed to copy because "the properties don't allow". So I plugged the drive directly into USB on the computer, and A OK
    for all.

    I can't help but wonder what stood in the way of the failed copies. Most likely something in the firmware of the router, but what?

    Ed

    Now, you're an experienced experimenter.

    Does the router insist on a limited set of file systems ?

    What do you know about FAT32 ? It does not have a permissions model.
    It has a 4GB max file size limitation. If you send a lot of 7GB ISO
    files, then FAT32 would not be all that nice for the job.

    There is EXFAT (router may not support it).

    NTFS allows larger files, larger partitions, and it also has
    a permissions model. (One of the reasons we like Linux, is
    it does not support NTFS permissions, and I can overwrite
    Windows files from Linux that have prickly permissions on them.
    That's how I get the WinRE.wim file, into the Recovery partition.
    Linux.

    If the router controls the content on the HDD (opaque and
    functions as a NAS), it may be using EXT3 or EXT4.
    Those support permissions. Since you manually loaded the HDD
    your own self, over USB, we know it's not that case.

    For file names, Windows has more restrictions on punctuation
    than Linux. Generally, as an experienced experimenter,
    you use a carefully controlled subset of "what is allowed",
    for maximum compatibility while working in the computer room.
    I allow hyphens, periods, not so many underscores and
    NO SPACES in file names.

    I wish I had not made this file name so stupidly.txt # Some operations may require quotes

    In a bygone era, my Apple computer had a different filename
    length limit than the PC. I would copy source trees from
    one machine to another, and one of the files would have a
    character lopped off it. and it could take me a while to
    figure out which file that was and so on. Those
    limits are mostly not interfering today -- only MP3 files
    regularly cause grief because of their tagging scheme
    and length for the file name.

    Even putting things into a ZIP or a TAR file before
    transfer is not a panacea. I've had my share of "symbolic link failures"
    when using containers for files. It's not like there is a
    convenient magic bullet for this. Sure, you can do an MRIMG
    of an entire hard drive and send that, and that WILL get
    through :-) But that's a bit big as files go. I understand
    the paid version of Macrium supports file-by-file backups,
    so it can do the equivalent of a ZIP, and should be more
    transparent than your average container. Since i have
    the Macrium Free, I don't have that to test it.

    Paul

    It's very easy to unplug the drive from the router, plug it into the
    Win10 box and do whatever I want with it. And then plug it back into the router, when it becomes almost immediately available all around the
    devices I use on that network.
    No sweat.

    I just wanted to know the why and the wherefor. And having gotten to
    know, I yearn again for the early days of personal computing; before the corporations planted their grasping claws into it all and dragged us
    into their corporate prison-world.

    Ed

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to Frank Slootweg on Thu May 8 21:03:16 2025
    Frank Slootweg wrote:

    Building on Paul's response: As you can plug the HDD into the USB of
    your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

    As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't
    have.

    The General tab says Network Drive, NTFS. And that's about it; much less
    info than on local HDs.

    It's accessible from everywhere; Win10, Win11, iOS, android, Apple TV;
    all devices on the network.

    Ed

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Ed Cryer on Thu May 8 19:49:50 2025
    Ed Cryer <ed@somewhere.in.the.uk> wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT router. There were 1,250 files in the source, but about 60 failed to
    copy because "the properties don't allow". So I plugged the drive
    directly into USB on the computer, and A OK for all.

    I can't help but wonder what stood in the way of the failed copies. Most likely something in the firmware of the router, but what?

    Building on Paul's response: As you can plug the HDD into the USB of
    your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

    As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't
    have.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Carlos E.R.@21:1/5 to Ed Cryer on Thu May 8 22:37:07 2025
    On 2025-05-08 22:03, Ed Cryer wrote:
    Frank Slootweg wrote:

       Building on Paul's response: As you can plug the HDD into the USB of
    your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

       As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't
    have.

    The General tab says Network Drive, NTFS. And that's about it; much less
    info than on local HDs.

    Network Drive would be NFS, not NTFS.

    It would have Linux permissions imposed on a FAT disk, thus both set of limitations.

    If it truly is NTFS, that means "New Technology File System".

    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to All on Fri May 9 10:27:07 2025
    Q2FybG9zIEUuUi4gd3JvdGU6DQo+IE9uIDIwMjUtMDUtMDggMjI6MDMsIEVkIENyeWVyIHdy b3RlOg0KPj4gRnJhbmsgU2xvb3R3ZWcgd3JvdGU6DQo+Pg0KPj4+IMKgwqAgQnVpbGRpbmcg b24gUGF1bCdzIHJlc3BvbnNlOiBBcyB5b3UgY2FuIHBsdWcgdGhlIEhERCBpbnRvIHRoZSBV U0Igb2YNCj4+PiB5b3VyIGNvbXB1dGVyLCB3aGF0IGRvZXMgUHJvcGVydGllcyAtPiAnR2Vu ZXJhbCcgdGFiIHNheSBhYm91dCB0aGUNCj4+PiAnRmlsZSBzeXN0ZW06JyB0eXBlIHdoaWNo IGlzIG9uIHRoZSBIREQ/DQo+Pj4NCj4+PiDCoMKgIEFzIHRvIHRoZSBnZW5lcmFsIGlzc3Vl OiBZb3VyIHJvdXRlciBwbHVzIEhERCBwcm9iYWJseSBhY3RzIGFzIGENCj4+PiBtaW5pLU5B Uywgd2l0aCAtIGFzIG90aGVyIGhhdmUgbWVudGlvbmVkIC0gaXRzIG93biBPUyAocHJvYmFi bHkgTGludXgpDQo+Pj4gYW5kIG1pZ2h0IGhhdmUgKFNhbWJhPykgZmlsZSBzeXN0ZW0gbGlt aXRhdGlvbnMsIHdoaWNoIFdpbmRvd3MgZG9lc24ndA0KPj4+IGhhdmUuDQo+Pg0KPj4gVGhl IEdlbmVyYWwgdGFiIHNheXMgTmV0d29yayBEcml2ZSwgTlRGUy4gQW5kIHRoYXQncyBhYm91 dCBpdDsgbXVjaCANCj4+IGxlc3MgaW5mbyB0aGFuIG9uIGxvY2FsIEhEcy4NCj4gDQo+IE5l dHdvcmsgRHJpdmUgd291bGQgYmUgTkZTLCBub3QgTlRGUy4NCj4gDQo+IEl0IHdvdWxkIGhh dmUgTGludXggcGVybWlzc2lvbnMgaW1wb3NlZCBvbiBhIEZBVCBkaXNrLCB0aHVzIGJvdGgg c2V0IG9mIA0KPiBsaW1pdGF0aW9ucy4NCj4gDQo+IElmIGl0IHRydWx5IGlzIE5URlMsIHRo YXQgbWVhbnMgIk5ldyBUZWNobm9sb2d5IEZpbGUgU3lzdGVtIi4NCj4gDQoNCldlbGwsIGl0 IHNheXMgTlRGUzsganVzdCBhcyB3aGVuIEkgcGx1ZyB0aGUgSEQgaW50byBVU0Igc29ja2V0 Lg0KVGhlIGZ1bGwgbWVzc2FnZSBpcyAiQXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGNvcHkg dGhpcyBmaWxlIHdpdGhvdXQgaXRzIA0KcHJvcGVydGllcz8NClRoZSBmaWxlIGhhcyBwcm9w ZXJ0aWVzIHRoYXQgY2FuJ3QgYmUgY29waWVkIHRvIHRoZSBuZXcgbG9jYXRpb24iLg0KDQpJ IGtub3cgZnJvbSBnb29nbGluZyB0aGF0IHRoaXMgc2NlbmFyaW8gdXN1YWxseSBtZWFucyB0 aGF0IG9uZSBpcyANCmNvcHlpbmcgZnJvbSBOVEZTIHRvIEZhdDMyLCBhbmQgdGhhdCB5b3Ug Y2FuIGV2ZW4gZ28gYWhlYWQgYW5kIGNvcHkgDQptaW51cyB0aGUgcHJvcGVydGllcy4NCg0K U29tZSBpbmNvbXBhdGliaWxpdHkgYmV0d2VlbiBXaW4xMCBhbmQgdGhlIEJUIHJvdXRlcj8N Cg0KRWQNCg0KDQo=

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Ed Cryer on Fri May 9 09:57:49 2025
    Ed Cryer <ed@somewhere.in.the.uk> wrote:
    Frank Slootweg wrote:

    Building on Paul's response: As you can plug the HDD into the USB of your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

    As to the general issue: Your router plus HDD probably acts as a mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't have.

    The General tab says Network Drive, NTFS. And that's about it; much less
    info than on local HDs.

    It's accessible from everywhere; Win10, Win11, iOS, android, Apple TV;
    all devices on the network.

    No, I mean what does it says when the HDD (which is *normally*
    connected to the router) is connected directly to a USB port of the
    *computer*? That can't (well, shouldn't) be 'Network Drive', but 'Type:
    Local Disk' and for that *local* disk, we want to know the 'File
    system:' type.

    So we want to now the *real* 'File system:' type of the HDD, not the
    file system as *emulated* by the mini-NAS of your router (which, from
    your response, seems to be NTFS).

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to Frank Slootweg on Fri May 9 11:48:53 2025
    Frank Slootweg wrote:
    Ed Cryer <ed@somewhere.in.the.uk> wrote:
    Frank Slootweg wrote:

    Building on Paul's response: As you can plug the HDD into the USB of >>> your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

    As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't
    have.

    The General tab says Network Drive, NTFS. And that's about it; much less
    info than on local HDs.

    It's accessible from everywhere; Win10, Win11, iOS, android, Apple TV;
    all devices on the network.

    No, I mean what does it says when the HDD (which is *normally*
    connected to the router) is connected directly to a USB port of the *computer*? That can't (well, shouldn't) be 'Network Drive', but 'Type:
    Local Disk' and for that *local* disk, we want to know the 'File
    system:' type.

    So we want to now the *real* 'File system:' type of the HDD, not the
    file system as *emulated* by the mini-NAS of your router (which, from
    your response, seems to be NTFS).

    Local disk, NTFS.
    I initialised it myself some years ago.

    Ed

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Carlos E.R.@21:1/5 to Ed Cryer on Fri May 9 13:10:33 2025
    On 2025-05-09 11:27, Ed Cryer wrote:
    Carlos E.R. wrote:
    On 2025-05-08 22:03, Ed Cryer wrote:
    Frank Slootweg wrote:

       Building on Paul's response: As you can plug the HDD into the USB of >>>> your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

       As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux) >>>> and might have (Samba?) file system limitations, which Windows doesn't >>>> have.

    The General tab says Network Drive, NTFS. And that's about it; much
    less info than on local HDs.

    Network Drive would be NFS, not NTFS.

    It would have Linux permissions imposed on a FAT disk, thus both set
    of limitations.

    If it truly is NTFS, that means "New Technology File System".


    Well, it says NTFS; just as when I plug the HD into USB socket.
    The full message is "Are you sure you want to copy this file without its properties?
    The file has properties that can't be copied to the new location".

    I know from googling that this scenario usually means that one is
    copying from NTFS to Fat32, and that you can even go ahead and copy
    minus the properties.

    Some incompatibility between Win10 and the BT router?

    The router is probably using some variant of Linux, and you are
    accessing the disk over the LAN. Thus probably the limitations of Samba protocol apply.

    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Ed Cryer on Fri May 9 12:50:55 2025
    Ed Cryer <ed@somewhere.in.the.uk> wrote:
    Carlos E.R. wrote:
    On 2025-05-08 22:03, Ed Cryer wrote:
    Frank Slootweg wrote:

       Building on Paul's response: As you can plug the HDD into the USB of >>> your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

       As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux) >>> and might have (Samba?) file system limitations, which Windows doesn't >>> have.

    The General tab says Network Drive, NTFS. And that's about it; much
    less info than on local HDs.

    Network Drive would be NFS, not NTFS.

    It would have Linux permissions imposed on a FAT disk, thus both set of limitations.

    If it truly is NTFS, that means "New Technology File System".

    Well, it says NTFS; just as when I plug the HD into USB socket.
    The full message is "Are you sure you want to copy this file without its properties?
    The file has properties that can't be copied to the new location".

    I know from googling that this scenario usually means that one is
    copying from NTFS to Fat32, and that you can even go ahead and copy
    minus the properties.

    Have you looked at the Properties, especially those on the 'Security'
    tab and the 'Security:' setting [1] - if any - below the 'Attributes:'
    on the 'General' tab, for both a 'good' (can be copied) file and a 'bad'
    (gives error message when trying to copy)? That would probably give a
    clue while 'bad' files gives this error.

    BTW, in your OP you say the 'bad' files failed, but now you seem to
    imply that you can copy them without the 'problem' property/properties (probably after some kind of Yes/No prompt). Which one is it?

    Some incompatibility between Win10 and the BT router?

    I would say the other way around and not just with Windows 10, but
    probably any Windows/NTFS version.

    [1] If present, that setting will probably say:

    "This file came from another computer
    and might be blocked to help protect [ ] Unblock
    this computer."

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Slootweg@21:1/5 to Carlos E.R. on Fri May 9 12:50:55 2025
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2025-05-08 22:03, Ed Cryer wrote:
    Frank Slootweg wrote:

       Building on Paul's response: As you can plug the HDD into the USB of
    your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

       As to the general issue: Your router plus HDD probably acts as a
    mini-NAS, with - as other have mentioned - its own OS (probably Linux)
    and might have (Samba?) file system limitations, which Windows doesn't
    have.

    The General tab says Network Drive, NTFS. And that's about it; much less info than on local HDs.

    Network Drive would be NFS, not NTFS.

    No, a (Windows) Network Drive, i.e. a drive letter mapped to a Network
    Share, will say 'File system: NTFS', also if the Network Drive is mapped
    to a Network Share on a NAS. At least that's the case for my Synology
    DS115j NAS.

    It would have Linux permissions imposed on a FAT disk, thus both set of limitations.

    If it truly is NTFS, that means "New Technology File System".

    For a real NAS, the underlying filesystem is normally not NTFS and the
    NAS emulates an NTFS filesystem for its SMB shares.

    What Ed's mini-NAS does and doesn't do is anyone's guess, but the
    underlying file system seems to be NTFS, because that is what it says if
    he connects the HDD directly to his computer.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Jack@21:1/5 to Ed Cryer on Fri May 9 18:43:16 2025
    On 08/05/2025 14:22, Ed Cryer wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT router. There were 1,250 files in the source, but about 60 failed to
    copy because "the properties don't allow". So I plugged the drive
    directly into USB on the computer, and A OK for all.

    I can't help but wonder what stood in the way of the failed copies. Most likely something in the firmware of the router, but what?

    Ed

    What was the size of the HD?

    I suspect there is not enough power in your router's usb port to handle
    the HD. You need to connect via a USB hub with dedicated power supply
    such as this one:

    <https://www.amazon.co.uk/Powered-RSHTECH-Aluminum-4-port-Individual-Black/dp/B08ZKSK6MB>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to Jack on Fri May 9 15:36:09 2025
    On Fri, 5/9/2025 1:43 PM, Jack wrote:
    On 08/05/2025 14:22, Ed Cryer wrote:
    I was transferring a folder, so I copied it to my HD plugged into my BT
    router. There were 1,250 files in the source, but about 60 failed to
    copy because "the properties don't allow". So I plugged the drive
    directly into USB on the computer, and A OK for all.

    I can't help but wonder what stood in the way of the failed copies. Most
    likely something in the firmware of the router, but what?

    Ed

    What was the size of the HD?

    I suspect there is not enough power in your router's usb port to handle
    the HD. You need to connect via a USB hub with dedicated power supply
    such as this one:

    <https://www.amazon.co.uk/Powered-RSHTECH-Aluminum-4-port-Individual-Black/dp/B08ZKSK6MB>


    For 3.5" hard drive enclosures, those are powered from a 12V 2A wall adapter. There is insufficient power over USB (unless USBPD 3.0 could be used),
    to expect a large hard drive to run directly from anything. The adapters
    are a bit tricky, in that they actually have a surge rating for a short time. They are not likely to behave like generic adapters from radio shack that
    cut off precisely at 2 amperes. They have to allow spinup current to flow,
    and the current might edge over 2 amperes, in order to do that.

    You can just barely see the "12V" and the "DC Legend" on the
    chassis of this 3.5" external enclosure.

    https://djd1xqjx2kdnv.cloudfront.net/photos/35/78/479322_31187_XXL.jpg

    ( https://www.techgearlab.com/reviews/electronics/external-hard-drive/western-digital-my-book-desktop )

    The 2.5" externals run from the USB connector. The USB3 port fuse is set
    to 2.2A or so. The official limit (config space number) is 900mA. There
    is sufficient current available to spin up a 1 ampere 2.5" drive. This
    assumes the router power supply of course, has that whole ampere to offer.
    The router has to be engineered for the expected load on such a port.
    If it had a proper users manual, there might even be a comment about
    what loads are appropriate ("only for USB stick").

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Carlos E.R.@21:1/5 to Frank Slootweg on Fri May 9 23:22:06 2025
    On 2025-05-09 14:50, Frank Slootweg wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2025-05-08 22:03, Ed Cryer wrote:
    Frank Slootweg wrote:

       Building on Paul's response: As you can plug the HDD into the USB of >>>> your computer, what does Properties -> 'General' tab say about the
    'File system:' type which is on the HDD?

       As to the general issue: Your router plus HDD probably acts as a >>>> mini-NAS, with - as other have mentioned - its own OS (probably Linux) >>>> and might have (Samba?) file system limitations, which Windows doesn't >>>> have.

    The General tab says Network Drive, NTFS. And that's about it; much less >>> info than on local HDs.

    Network Drive would be NFS, not NTFS.

    No, a (Windows) Network Drive, i.e. a drive letter mapped to a Network Share, will say 'File system: NTFS', also if the Network Drive is mapped
    to a Network Share on a NAS. At least that's the case for my Synology
    DS115j NAS.

    Ah, ok.


    It would have Linux permissions imposed on a FAT disk, thus both set of
    limitations.

    If it truly is NTFS, that means "New Technology File System".

    For a real NAS, the underlying filesystem is normally not NTFS and the
    NAS emulates an NTFS filesystem for its SMB shares.

    What Ed's mini-NAS does and doesn't do is anyone's guess, but the underlying file system seems to be NTFS, because that is what it says if
    he connects the HDD directly to his computer.

    It is very possible that the router is running inside a variant of
    Linux. Have you ever seen any embedded machine running Windows? FreeDos
    might be a possibility, but I have not seen it. Some brands may have
    their own firmware, but those have limited features, or are very
    expensive. So it is very possible they run Linux inside, some openly,
    some in hiding or camouflage.

    And to offer a disk share on the network, Linux can use Samba or NFS.
    That means that they can not copy all the Windows attributes of a file.

    --
    Cheers, Carlos.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Ed Cryer@21:1/5 to Carlos E.R. on Sat May 10 12:33:23 2025
    Carlos E.R. wrote:

    It is very possible that the router is running inside a variant of
    Linux. Have you ever seen any embedded machine running Windows? FreeDos
    might be a possibility, but I have not seen it. Some brands may have
    their own firmware, but those have limited features, or are very
    expensive. So it is very possible they run Linux inside, some openly,
    some in hiding or camouflage.

    And to offer a disk share on the network, Linux can use Samba or NFS.
    That means that they can not copy all the Windows attributes of a file.


    This from BT.
    "The BT Smart Hub 2 does not use a traditional operating system like
    Windows or Linux. Instead, it utilizes a proprietary firmware designed specifically for its functionality as a router and modem."

    Although, that read and fully imbibed, I'd bet they cobbled their
    "proprietary firmware" from Linux or FreeDOS.

    Ed

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to Ed Cryer on Sat May 10 11:15:40 2025
    On Sat, 5/10/2025 7:33 AM, Ed Cryer wrote:
    Carlos E.R. wrote:

    It is very possible that the router is running inside a variant of Linux. Have you ever seen any embedded machine running Windows? FreeDos might be a possibility, but I have not seen it. Some brands may have their own firmware, but those have limited
    features, or are very expensive. So it is very possible they run Linux inside, some openly, some in hiding or camouflage.

    And to offer a disk share on the network, Linux can use Samba or NFS. That means that they can not copy all the Windows attributes of a file.


    This from BT.
    "The BT Smart Hub 2 does not use a traditional operating system like Windows or Linux. Instead, it utilizes a proprietary firmware designed specifically for its functionality as a router and modem."

    Although, that read and fully imbibed, I'd bet they cobbled their "proprietary firmware" from Linux or FreeDOS.

    Ed


    smb://192.168.1.254/usb1 no username/password ?

    https://techinfodepot.shoutwiki.com/wiki/BT_Smart_Hub_2

    CPU Broadcom BCM63138
    ARMv7 Cortex A9 1.0 GHz ( 2 cores ) 32-bit
    Flash 256 MiB
    RAM 256 MiB
    ETH Broadcom BCM63138
    Switch Broadcom BCM63138

    2.4GHz Broadcom BCM43602 3x3:3 11N
    5 GHz Broadcom BCM4366 4x4:4 11AC

    3rd Party Firmware
    dd-wrt Status Unknown
    OpenWrt Status Unknown
    Tomato Status Unknown

    I would think that is big enough for a Linux.

    The commands that run against it, don't seem
    to hint too much about what it is. But that simply
    means "sanitized interface" and not seeing a Linux shell.

    I sure wish the Google search worked properly.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Daniel70@21:1/5 to R.Wieser on Mon May 12 22:59:12 2025
    On 9/05/2025 1:17 am, R.Wieser wrote:
    Ed,

    I can't help but wonder what stood in the way of the failed copies.

    The router most likely runs an embedded form of Linux, with its own filesystem and its attributes and permissions. Whenever a file from a Windows environment is copied to Linux a translation needs to be applied.

    I'm guessing you mean for a Windows EXE file to run under Linux some translation needs to be applied!!

    But, a Windows Data file can still be a Linux Data file. I used to run
    Win7 and Linux .... with my SeaMonkey Internet Suite Profile being
    located on a Win7 Partition but used by BOTH Win7 and Linux programs.

    Same - Same would apply for LibreOffice files .... readable by both Win7
    and Linux LibreOffice programs .... as long as the file is located on
    the Windows partition.

    Linux can 'see/read' Windows partitions but Windows can't 'see/read'
    Linux partitions.

    My guess is that a certain combination of Windows file attributes could not be translated - perhaps related to permissions, to protect the owner of the files.

    Regards,
    Rudy Wieser
    --
    Daniel70

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From R.Wieser@21:1/5 to All on Mon May 12 16:04:30 2025
    Daniel70,

    The router most likely runs an embedded form of Linux, with its own
    filesystem and its attributes and permissions. Whenever a file from a
    Windows environment is copied to Linux a translation needs to be
    applied.

    I'm guessing you mean for a Windows EXE file to run under Linux some translation needs to be applied!!

    No. I said attributes* and permissions**, and that is what I ment.

    * read-only, archived, etc.

    ** who owns the file, who is permitted to read/write/execute it.

    But, a Windows Data file can still be a Linux Data file.

    Yep. But also an executable on one OS effectivily becomes a data file on
    the other OS. .... unless the other OS implements a translation layer (a sub-OS, like the Linux layer Windows is currently experimenting with, or
    Wine on Linux)

    Linux can 'see/read' Windows partitions but Windows can't 'see/read' Linux partitions.

    Thats because Linux can work with more filesystems than Windows can. Not surprising, as Linux is an open source OS (everyone can write for it), while Windows is pretty-much closed.

    Regards,
    Rudy Wieser

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Paul@21:1/5 to R.Wieser on Mon May 12 15:55:51 2025
    On Mon, 5/12/2025 10:04 AM, R.Wieser wrote:
    Daniel70,

    The router most likely runs an embedded form of Linux, with its own
    filesystem and its attributes and permissions. Whenever a file from a
    Windows environment is copied to Linux a translation needs to be
    applied.

    I'm guessing you mean for a Windows EXE file to run under Linux some
    translation needs to be applied!!

    No. I said attributes* and permissions**, and that is what I ment.

    * read-only, archived, etc.

    ** who owns the file, who is permitted to read/write/execute it.

    But, a Windows Data file can still be a Linux Data file.

    Yep. But also an executable on one OS effectivily becomes a data file on
    the other OS. .... unless the other OS implements a translation layer (a sub-OS, like the Linux layer Windows is currently experimenting with, or
    Wine on Linux)

    Linux can 'see/read' Windows partitions but Windows can't 'see/read' Linux >> partitions.

    Thats because Linux can work with more filesystems than Windows can. Not surprising, as Linux is an open source OS (everyone can write for it), while Windows is pretty-much closed.

    Regards,
    Rudy Wieser



    File systems are added to Linux in Ring 3, via FUSE.
    File systems are added to Windows in Ring 3, via IFS (Microsoft) or Dokan (3rdparty).

    Right now in Linux, there is NTFS via FUSE, and there is NTFS via the
    new Linux kernel NTFS driver donated by Paragon. You can switch your Linux handling of NTFS, to either scheme, if you have concerns about the
    missing bits and side effects of the two drivers. The older driver reports
    "I/O Error" for reparse points it cannot handle. The other driver handles
    that, but still does not handle all the reparse points, and the authors
    have more or less stopped working on it (the two people likely being Russians and currently maintaining a low profile).

    Linux (ELF executables) can load Windows (Portable Execution or PE32/PE32+)
    via WINE. WINE has reverse engineered handling of win32 materials. Libraries are
    hand crafted to try to fool a Windows executable into thinking it is on a Windows System. I don't know whether it yet tries to handle Metro.App . Anything with fancy licensing schemes, or with "anti-cheat code" similar
    to a malware, is going to cause problems.

    EXT2IFS was an early EXT file system handler for Windows. I used to run
    that at one time, not knowing any better. Once your file systems get above
    15GB or so, there was some sort of mode change required (vanilla EXT has two modes of operation). The project never got EXT2/EXT3/EXT4 support and the author of it did not want to make a lifetime project out of it. But that's how I know such a thing exists. IFS stands for Installable File System.

    At first, there was only ATA for storage. And, there was a SCSI stack
    (for real SCSI drives). But, the SCSI stack was also used for any
    foreign storage projects. As far as I know, the SCSI CDB is present
    in the USB stack. It's also used in other stacks. The Silicon Image SIL3112 driver, used to "install twice", and one of the layers was a SCSI layer.
    Later, "null" SCSI layers in the cake were used, when just a CDB was
    being passed from one layer to another and no value was being added.

    So Windows does have some bits and bobs for extension purposes.
    People have tried to make money off that, but the customers
    are cheapskates :-) If you charged $99 for EXT4 support,
    you would earn zero dollars doing it. if you look hard enough, you
    will find examples of these offerings. Some of the offerings were
    delivered for free, when they were beta and "buggy". But once they
    reached 1.0 and the charge was $99, that pretty well put a stop to it.

    Paul

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)