Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correcting syntax #456

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions mountainduck/issues/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,6 @@ It may be that Finder closes the connection because Mountain Duck hasn't answere

This is an issue within the operating system that can occur to any network drive.

<del> **Additional `._*` Files Saved on Remote Volumes** </del> <br/>
Cassie205 marked this conversation as resolved.
Show resolved Hide resolved
<del> The `._*` files contain metadata about the files some applications write in additional to the file content. On macOS, this metadata can be stored alongside the file on the filesystem, but on remote volumes, with no metadata support, an auxiliary file is created to contain this information. You can delete metadata on files using `xattr -d <filename>`. </del>

As of version [2.1](https://mountainduck.io/changelog/), extended attributes are only saved in a temporary location and not stored on the mounted remote volume. If you want to revert to saving extended attributes to the server, enter in a *Terminal.app* window:

defaults write io.mountainduck fs.filenames.metadata.enable false

If you want to delete metadata files, you can open a *Terminal.app* window and enter `dot_clean -m <folder>`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restore previous explanation

The `._*` files contain metadata about the files some applications write in additional to the file content. On macOS, this metadata can be stored alongside the file on the filesystem, but on remote volumes, with no metadata support, an auxiliary file is created to contain this information. You can delete metadata on files using `xattr -d <filename>`.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A strikedthrough header doesn't make sens therefore keeping the previous form isn't very userfriendly. As the information about the metadata location is not an actual issue it shoudn't be placed in the issue section

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then we should rather remove the section as it no longer applies.

check previous conversation


````
````{group-tab} Windows

Expand Down Expand Up @@ -329,7 +320,7 @@ Make sure to uninstall Kaspersky Internet Security with its kernel extensions ca

#### Eset Cyber Security Pro

Make sure not connections on the loopback interface are blocked.
Make sure no connection on the loopback interface is blocked.

#### Bitdefender

Expand Down
22 changes: 21 additions & 1 deletion mountainduck/preferences.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,24 @@ If not existing yet you need to create the file `%AppData%\Cyberduck\default.pro
These settings are shared with Cyberduck.
````

`````
`````

### Change default [connect mode](#connect-mode)

A [hidden configuration option](preferences.md#hidden-configuration-options).

defaults write io.mountainduck fs.sync.mode <connect mode>

### Limit available connect mode options

A [hidden configuration option](preferences.md#hidden-configuration-options).

defaults write io.mountainduck fs.sync.mode.enable <connect mode>

### Metadata

As of version [2.1](https://mountainduck.io/changelog/), extended attributes are only saved in a temporary location and not stored on the mounted remote volume. If you want to revert to saving extended attributes to the server, enter in a *Terminal.app* window:

defaults write io.mountainduck fs.filenames.metadata.enable false

If you want to delete metadata files, you can open a *Terminal.app* window and enter `dot_clean -m <folder>`.
Loading