diff --git a/docs/content/docs.md b/docs/content/docs.md index 9edcea87d..d5999ca84 100644 --- a/docs/content/docs.md +++ b/docs/content/docs.md @@ -1159,9 +1159,11 @@ this field. Setting this to 1 (LE) to identify the flow to SCAVENGER class can avoid occupying too much bandwidth in a network with DiffServ support ([RFC 8622](https://tools.ietf.org/html/rfc8622)). For example, if you configured QoS on router to handle LE properly. Running: + ``` rclone copy --dscp LE from:/from to:/to ``` + would make the priority lower than usual internet flows. This option has no effect on Windows (see [golang/go#42728](https://github.com/golang/go/issues/42728)). @@ -2759,6 +2761,7 @@ e/n/d/s/q> ``` Go into `s`, Set configuration password: + ``` e/n/d/s/q> s Your configuration is not encrypted. @@ -3176,6 +3179,7 @@ file as documented [above](#valid-remote-names). You must write the name in uppercase in the environment variable, but as seen from example above it will be listed and can be accessed in lowercase, while you can also refer to the same remote in uppercase: + ``` $ rclone lsd mys3: -1 2016-09-21 12:54:21 -1 my-bucket diff --git a/docs/content/faq.md b/docs/content/faq.md index 9ef3ab871..9fc0e4d8f 100644 --- a/docs/content/faq.md +++ b/docs/content/faq.md @@ -215,6 +215,7 @@ from source with CGO enabled if necessary). See the [name resolution section in the go docs](https://golang.org/pkg/net/#hdr-Name_Resolution). ### Failed to start auth webserver on Windows ### + ``` Error: config failed to refresh token: failed to start auth webserver: listen tcp 127.0.0.1:53682: bind: An attempt was made to access a socket in a way forbidden by its access permissions. ... @@ -224,6 +225,7 @@ yyyy/mm/dd hh:mm:ss Fatal error: config failed to refresh token: failed to start This is sometimes caused by the Host Network Service causing issues with opening the port on the host. A simple solution may be restarting the Host Network Service with eg. Powershell + ``` Restart-Service hns ``` diff --git a/docs/content/install.md b/docs/content/install.md index b73d7e638..792dcb348 100644 --- a/docs/content/install.md +++ b/docs/content/install.md @@ -163,10 +163,13 @@ feature then you will need to install the third party utility [Winget](https://learn.microsoft.com/en-us/windows/package-manager/) comes pre-installed with the latest versions of Windows. If not, update the [App Installer](https://www.microsoft.com/p/app-installer/9nblggh4nns1) package from the Microsoft store. To install rclone + ``` winget install Rclone.Rclone ``` + To uninstall rclone + ``` winget uninstall Rclone.Rclone --force ``` @@ -322,6 +325,7 @@ Make sure you have [Snapd installed](https://snapcraft.io/docs/installing-snapd) ```bash sudo snap install rclone ``` + Due to the strict confinement of Snap, rclone snap cannot access real /home/$USER/.config/rclone directory, default config path is as below. - Default config directory: @@ -532,6 +536,7 @@ messages to the console, you must redirect this to a file to be able to see it. Rclone has a built-in option `--log-file` for that. Example command to run a sync in background: + ``` c:\rclone\rclone.exe sync c:\files remote:/files --no-console --log-file c:\rclone\logs\sync_files.txt ```