-
|
In reading through the links from the wiki I found this article: https://pierre32.medium.com/etherdfs-and-retronas-the-problem-and-the-fix-390eb9584c94 It's pretty recent so I expect its accurate. The author describes issues transferring files with EtherDFS and later resolved them by switching to ProFTPd. I am curious if anyone else has had issues with EtherDFS as I'm not sure which direction to go based on that article. A mapped DOS drive sounds convenient, but if it's flaky or falls down on transferring large directories it's probably not worth the effort for me. |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 3 replies
-
|
The issue was EtherDFS's dislike of filenames that weren't in 8.3 format. This can be resolved a few ways:
EtherDFS is perfectly stable for regular use as a mounted drive letter. The issue here are modern long filenames for an old OS that doesn't support them. Good housekeeping of era-appropriate filenames is a critical part of retro computing. If it's not already, I'll try to add some notes to this effect into the wiki. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks Dan! This was not in the wiki as far as I saw, and it's not mentioned in the articles linked either. I do see that there was some discussion on 8.3 filenames on Vogons so there may be some useful tidbits there too. Appreciate the response. |
Beta Was this translation helpful? Give feedback.
-
|
@danmons A couple of ideas for when you add docs to EtherDFS based on my experience so far trying to get up and running:
|
Beta Was this translation helpful? Give feedback.
The issue was EtherDFS's dislike of filenames that weren't in 8.3 format. This can be resolved a few ways:
Ensuring all filenames are in 8.3 format. Sounds trite, but there's no original DOS software that wasn't. This tends only to happen with modern rebundling of old software (for example, GOG bundles). The same problem doesn't exist with things like the eXoDOS bundles.
Don't use the "vfat" file system mount type in Linux (mounts FAT filesystems with modern long filename support), but rather use the "msdos" to force-truncate long file names.
EtherDFS is perfectly stable for regular use as a mounted drive letter. The issue here are modern long filenames for an old OS that doesn't su…