-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c8497e
commit 3812847
Showing
109 changed files
with
933 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- error | ||
--- | ||
|
||
# Styled Error Pages | ||
|
||
## What is this? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Switching to Local Storage | ||
|
||
This article discusses what to do if you have media on Google or Dropbox or something and you want to convert to using all local storage. | ||
|
||
Conceptually, this is simple. | ||
|
||
1. Set up your local storage | ||
|
||
Maybe this is a NAS, or a bunch of disks in the saltbox machine, or something else. Step one is going to be setting this up. | ||
|
||
2. Copy your media from the cloud to that local storage | ||
|
||
This is probably going to be an rclone copy and will mostly be waiting. | ||
|
||
3. Point your saltbox server at that local storage. | ||
|
||
This would include things like: | ||
|
||
- adding the local storage to the mergerfs | ||
- modifying cloudplow to send new stuff there | ||
|
||
4. Cancel the cloud storage | ||
|
||
The specifics depend on the timetable and how you want to go about it. | ||
|
||
## I want to cut the cord and switch to local all in one fell swoop: | ||
|
||
### Set up your local storage | ||
|
||
Describing how to do this is out of scope for these docs. There are many options here and only you can decide which fit your needs and budget. | ||
|
||
One thing's for sure; you're buying a lot of disks. | ||
|
||
### Copy your media from the cloud to that local storage | ||
|
||
First, halt all downloading on your saltbox machine; you don't need anything getting changed or added while you go through this exercise. | ||
|
||
Depoending on you personal situation, you may or may not want to copy everything down from your cloud storage. If you do, though, this is going to be some variation on: | ||
|
||
``` | ||
rclone copy CLOUD_STORAGE_REMOTE:/PATH LOCATION_OF_LOCAL_STORAGE:/PATH | ||
``` | ||
|
||
Probably with some rclone flags to improve performance for your specific cloud storage provider. | ||
|
||
For example, if you have a standard saltbox setup, and you have mounted your local storage at `/mnt/nas`, maybe something like: | ||
|
||
``` | ||
rclone copy google:/Media /mnt/nas/Media --drive-chunk-size 128M --transfers 8 --checkers 8 --tpslimit 8 --fast-list --checksum --progress | ||
``` | ||
|
||
### Point your saltbox server at that local storage. | ||
|
||
Since in this case you just copied everything down, `/mnt/nas/Media` is now a mirror of `/mnt/remote/Media` | ||
|
||
The simplest thing here is to use the same rclone + cloudbox setup as saltbox does normally. | ||
|
||
Stop all your docker containers. | ||
|
||
Unmount `/mnt/nas` and remove the entry in fstab | ||
|
||
Enter `rclone config` | ||
|
||
Rename your `google` remote to `google-original` | ||
|
||
Create a new remote named `google` that points to your local storage | ||
|
||
- adding the local storage to the mergerfs | ||
- modifying cloudplow to send new stuff there | ||
|
||
### Cancel the cloud storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- container | ||
- add | ||
--- | ||
|
||
# Adding your own containers to Saltbox | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- asshama | ||
--- | ||
|
||
# Absolute Series Scanner and HAMA role for anime | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- autobrr | ||
--- | ||
|
||
# Autobrr | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- autoscan | ||
--- | ||
|
||
# Autoscan | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- bazarr | ||
--- | ||
|
||
# Bazarr | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- btrfs | ||
- btrfsmaintenance | ||
--- | ||
|
||
# BTRFS Maintenance | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- deluge | ||
--- | ||
|
||
# Deluge | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- diun | ||
--- | ||
|
||
# diun | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- dozzle | ||
--- | ||
|
||
# Dozzle | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- gluetun | ||
--- | ||
|
||
# Gluetun | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- grafana | ||
--- | ||
|
||
# Grafana | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- nfs | ||
--- | ||
|
||
# Hetzner NFS VLAN | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- jellyfin | ||
--- | ||
|
||
# Jellyfin | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- mariadb | ||
--- | ||
|
||
# MariaDB | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
--- | ||
hide: | ||
- tags | ||
tags: | ||
- netdata | ||
--- | ||
|
||
# Netdata | ||
|
||
## What is it? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.