Shared drive accessed in windows via sshfs not showing certain large directories
I've just set up an Ubuntu 18.04 server, and mapped its drive to my windows notebook using sshfs-win. This works for the most part -- I can read and write to most locations on the drive. However, certain directories which are filled with thousands of files or subdirectories show up as empty when accessed from the windows machine. I am able to create a directory and put a few files in it and it works fine, but as soon as I try to copy in the large library I'm trying to store, all files disappear, including those I could see previously.
Everything always displays correctly on the linux side. Permissions on the directory are set to drwxrwxr-x, and trying to change permissions of the drive via Windows security options gives an access denied error.
How can I get these files to show up on the network drive?
EDIT: Solved below. Better question would be "Please enlighten me on the finer points of how unix and windows differ in their interpretation of '' characters, and how can I get artists not to include '' characters in their album titles?"
ubuntu windows sshfs shared-folders
add a comment |
I've just set up an Ubuntu 18.04 server, and mapped its drive to my windows notebook using sshfs-win. This works for the most part -- I can read and write to most locations on the drive. However, certain directories which are filled with thousands of files or subdirectories show up as empty when accessed from the windows machine. I am able to create a directory and put a few files in it and it works fine, but as soon as I try to copy in the large library I'm trying to store, all files disappear, including those I could see previously.
Everything always displays correctly on the linux side. Permissions on the directory are set to drwxrwxr-x, and trying to change permissions of the drive via Windows security options gives an access denied error.
How can I get these files to show up on the network drive?
EDIT: Solved below. Better question would be "Please enlighten me on the finer points of how unix and windows differ in their interpretation of '' characters, and how can I get artists not to include '' characters in their album titles?"
ubuntu windows sshfs shared-folders
add a comment |
I've just set up an Ubuntu 18.04 server, and mapped its drive to my windows notebook using sshfs-win. This works for the most part -- I can read and write to most locations on the drive. However, certain directories which are filled with thousands of files or subdirectories show up as empty when accessed from the windows machine. I am able to create a directory and put a few files in it and it works fine, but as soon as I try to copy in the large library I'm trying to store, all files disappear, including those I could see previously.
Everything always displays correctly on the linux side. Permissions on the directory are set to drwxrwxr-x, and trying to change permissions of the drive via Windows security options gives an access denied error.
How can I get these files to show up on the network drive?
EDIT: Solved below. Better question would be "Please enlighten me on the finer points of how unix and windows differ in their interpretation of '' characters, and how can I get artists not to include '' characters in their album titles?"
ubuntu windows sshfs shared-folders
I've just set up an Ubuntu 18.04 server, and mapped its drive to my windows notebook using sshfs-win. This works for the most part -- I can read and write to most locations on the drive. However, certain directories which are filled with thousands of files or subdirectories show up as empty when accessed from the windows machine. I am able to create a directory and put a few files in it and it works fine, but as soon as I try to copy in the large library I'm trying to store, all files disappear, including those I could see previously.
Everything always displays correctly on the linux side. Permissions on the directory are set to drwxrwxr-x, and trying to change permissions of the drive via Windows security options gives an access denied error.
How can I get these files to show up on the network drive?
EDIT: Solved below. Better question would be "Please enlighten me on the finer points of how unix and windows differ in their interpretation of '' characters, and how can I get artists not to include '' characters in their album titles?"
ubuntu windows sshfs shared-folders
ubuntu windows sshfs shared-folders
edited Dec 19 '18 at 13:42
asked Dec 19 '18 at 10:22
Joe Gallagher
61
61
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Figured out the error. Couple of stray files with special characters in their names worked fine on unix, but broke everything in their folder when viewed on windows. Mistakenly correlated this to overall file count in my question, as the small-scale test samples I took from my database didn't display this error. Sanitizing auto-gen file names fixed everything.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489873%2fshared-drive-accessed-in-windows-via-sshfs-not-showing-certain-large-directories%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Figured out the error. Couple of stray files with special characters in their names worked fine on unix, but broke everything in their folder when viewed on windows. Mistakenly correlated this to overall file count in my question, as the small-scale test samples I took from my database didn't display this error. Sanitizing auto-gen file names fixed everything.
add a comment |
Figured out the error. Couple of stray files with special characters in their names worked fine on unix, but broke everything in their folder when viewed on windows. Mistakenly correlated this to overall file count in my question, as the small-scale test samples I took from my database didn't display this error. Sanitizing auto-gen file names fixed everything.
add a comment |
Figured out the error. Couple of stray files with special characters in their names worked fine on unix, but broke everything in their folder when viewed on windows. Mistakenly correlated this to overall file count in my question, as the small-scale test samples I took from my database didn't display this error. Sanitizing auto-gen file names fixed everything.
Figured out the error. Couple of stray files with special characters in their names worked fine on unix, but broke everything in their folder when viewed on windows. Mistakenly correlated this to overall file count in my question, as the small-scale test samples I took from my database didn't display this error. Sanitizing auto-gen file names fixed everything.
answered Dec 19 '18 at 13:36
Joe Gallagher
61
61
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489873%2fshared-drive-accessed-in-windows-via-sshfs-not-showing-certain-large-directories%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown