Added Easy mode

This commit is contained in:
Roger Gonzalez 2023-01-13 16:13:42 -03:00
parent 3e20beafc4
commit fa73a3a8ac
Signed by: rogs
GPG Key ID: C7ECE9C6C36EC2E6
10 changed files with 81 additions and 7 deletions

View File

@ -2,7 +2,7 @@
title: "Bazarr"
date: 2023-01-10T19:06:54-03:00
draft: false
weight: 5
weight: 6
summary: Bazarr is a companion application to Sonarr and Radarr that manages and downloads subtitles based on your requirements.
---

View File

@ -0,0 +1,69 @@
---
title: "Easy mode"
date: 2023-01-13T15:37:32-03:00
draft: false
weight: 1
summary: Easy initial configuration for YAMS. This is only intended for people that know what they are doing! If this is the first time you are configuring YAMS or its the first time you are using any of the programs in YAMS, **⚠️ don't enter here! ⚠️**
---
# ⚠️ This is intended for experts! ⚠️ You have been warned.
I **strongly advice** you configure everything yourself by following the tutorial. That way, you'll know what everything does and how everything is connected.
If this is your first time configuring YAMS, and want to go trough the full manual configuration, go to [Jackett](/config/jackett) and start the configuration **(Recommended)**.
If this is not your first time configuring YAMS, or you already know how to use all the software included, you can move forward.
# Installation
If you go back to the [folder where you cloned YAMS](/install/steps/#cloning-from-gitlab), you'll see there's a folder called `base` with a `tar.gz` file called `base-config.tar.gz`.
`base-config.tar.gz` has a bare-bones configuration for YAMS. With it, you'll have YAMS configured at 100%, just like if you followed the configuration tutorial.
To apply the configuration, first go to your YAMS install location. For the purposes of this tutorial, lets say you installed it on the recommended location of `/opt/yams`.
```bash
$ cd /opt/yams
```
On your YAMS install location, if you run a `ls` you'll see you have a `config/` folder. `cd` into it and you'll find all the configuration files for each of the apps included with YAMS.
```bash
/opt/yams$ ls
config docker-compose.yaml
/opt/yams$ cd config
/opt/yams/config$ ls
bazarr emby jackett qbittorrent radarr sonarr
```
Now, shut down `yams`
```bash
/opt/yams/config$ yams stop
```
Then, `rm -r` all the files on the `config` folder:
```bash
/opt/yams/config$ rm -r *
```
To finish, extract the base file in your config folder. Remember to replace `{your-yams-install-location}` with the real location within your filesystem:
```bash
/opt/yams/config$ tar -xzvf {your-yams-install-location}/base/base-config.tar.gz
```
If you `ls` now, you'll see all the folders where extracted and are available again
```bash
/opt/yams/config$ ls
bazarr emby jackett qbittorrent radarr sonarr
```
To restart `yams`, execute:
```bash
/opt/yams/config$ yams start
```
And that's it! You should have everything configured and running from zero. You can now jump to [Running everything together](/config/running-everything-together/).

View File

@ -2,7 +2,7 @@
title: "Emby"
date: 2023-01-10T19:07:29-03:00
draft: false
weight: 6
weight: 7
summary: Emby brings together your personal videos, music, photos, and live television. Emby Server automatically converts and streams your personal media on the fly to play on any device.
---

View File

@ -2,7 +2,7 @@
title: "Jackett"
date: 2023-01-10T18:02:06-03:00
draft: false
weight: 1
weight: 2
summary: Jackett works as a proxy server. It translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar3, Lidarr, DuckieTV, qBittorrent, Nefarious etc.) into tracker-site-specific http queries, parses the html or json response, and then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps.
---

View File

@ -2,7 +2,7 @@
title: "qBittorrent"
date: 2023-01-10T18:02:13-03:00
draft: false
weight: 2
weight: 3
summary: The qBittorrent project aims to provide an open-source software alternative to µTorrent.
---

View File

@ -2,7 +2,7 @@
title: "Radarr"
date: 2023-01-10T19:06:46-03:00
draft: false
weight: 3
weight: 4
summary: Radarr is a movie collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new movies and will interface with clients and indexers to grab, sort, and rename them. It can also be configured to automatically upgrade the quality of existing files in the library when a better quality format becomes available.
---

View File

@ -3,6 +3,7 @@ title: "Recommendations"
date: 2023-01-12T19:09:55-03:00
draft: false
weight: 100
summary: Final recommendations, how to continue?
---
# What should YOU do now?

View File

@ -2,7 +2,7 @@
title: "Running everything together"
date: 2023-01-12T18:06:44-03:00
draft: false
weight: 7
weight: 8
summary: So you finally got YAMS running? Let's add some movies and see everything working together!
---

View File

@ -2,7 +2,7 @@
title: "Sonarr"
date: 2023-01-10T19:06:43-03:00
draft: false
weight: 4
weight: 5
summary: Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.
---

View File

@ -17,6 +17,10 @@ It might mean that you need to reload your user. This is fixed by logging out of
This happens because your user needs to be part of the `docker` group in order to be able to execute `docker` without `sudo`
## I don't want to configure YAMS manually, is there a pre-made configuration?
Yes, but **I do not recommend using this option if this is the first time you configure YAMS.** You can check the instructions here: [Easy mode](/config/easy-mode).
## Why did you choose <this_software> instead of <that_software>?
Because. That's why it's _**opinionated**_, you don't _necessarily_ have to agree with me. This setup is aimed at noobs and first time media server enthusiasts. You can always use my sources and fork the project 🔥