From 8516125f58213bcb37f01a517e4fafe84de0108f Mon Sep 17 00:00:00 2001 From: doku Date: Sat, 3 Feb 2024 20:08:14 -0800 Subject: [PATCH] vault backup: 2024-02-03 20:08:13 --- .obsidian/workspace.json | 25 +++++++++++++++----- Tenmado/Troubleshooting.md | 48 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 6 deletions(-) create mode 100644 Tenmado/Troubleshooting.md diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index f86ba27..542f88f 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -42,9 +42,21 @@ "source": false } } + }, + { + "id": "44e61bf0908ae4f4", + "type": "leaf", + "state": { + "type": "markdown", + "state": { + "file": "Tenmado/Troubleshooting.md", + "mode": "source", + "source": false + } + } } ], - "currentTab": 2 + "currentTab": 3 } ], "direction": "vertical" @@ -110,7 +122,7 @@ "state": { "type": "backlink", "state": { - "file": "Tenmado/Keyboards.md", + "file": "Tenmado/Troubleshooting.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -127,7 +139,7 @@ "state": { "type": "outgoing-link", "state": { - "file": "Tenmado/Keyboards.md", + "file": "Tenmado/Troubleshooting.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -150,7 +162,7 @@ "state": { "type": "outline", "state": { - "file": "Tenmado/Keyboards.md" + "file": "Tenmado/Troubleshooting.md" } } }, @@ -179,10 +191,11 @@ "command-palette:Open command palette": false } }, - "active": "fb14b00f59fb8c69", + "active": "44e61bf0908ae4f4", "lastOpenFiles": [ - "Tenmado/Linux - Commands & CLI.md", "Tenmado/Keyboards.md", + "Tenmado/Troubleshooting.md", + "Tenmado/Linux - Commands & CLI.md", "Tenmado/Git.md", "Tenmado/Dotfiles.md", "Tenmado/Linux - Desktop Entries.md", diff --git a/Tenmado/Troubleshooting.md b/Tenmado/Troubleshooting.md new file mode 100644 index 0000000..7ffb8b1 --- /dev/null +++ b/Tenmado/Troubleshooting.md @@ -0,0 +1,48 @@ +## Nextcloud +Windows desktop app and other platforms, syncing files above 100MB or 1GB and up, will give error, ex: *syncthing veracrypt containers* +```bash +connection closed +``` +**To fix do the following:** +```markup +### Windows Fix + +Press `Win+R` on your keyboard to open the `Run` application. Past the following in the dialog box: + +`%APPDATA%\Nextcloud\nextcloud.cfg` + +This will either ask you to pick an application to open `nextcloud.cfg` or will open in your default text editor (unless you have something else set to open .cfg files). If it asks you to pick an application, feel free to use Notepad or any other editor. + +Add the following line under the `[General]` section: + +`maxChunkSize=50000000` + +Save the file, quit Nextcloud desktop, and start it again. + +### MacOS Fix + +Open a Finder window and press `Command+Shift+G` on your keyboard. This will bring up a 'Go to folder' window. Paste the following in the dialog box: + +`$HOME/Library/Preferences/Nextcloud` + +Open the `nextcloud.cfg` file. If you do not have a default editor for .cfg files, feel free to open the file with TextEdit. + +Add the following line under the `[General]` section: + +`maxChunkSize=50000000` + +Save the file, quit Nextcloud desktop, and start it again. + +### Linux Fix + +Open a terminal window and edit the following file: + +`nano $HOME/.config/Nextcloud/nextcloud.cfg` + +Add the following line under the `[General]` section: + +`maxChunkSize=50000000` + +Save the file (`Ctl+o`, `Ctl+x`), then quit Nextcloud desktop, and start it again. +``` +