this post was submitted on 22 Nov 2023
8 points (78.6% liked)

Selfhosted

39240 readers
406 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

[SOLVED] 12 TB disk finally arrived, I used clonezilla. Using advanced settings and -k1 (everything else left as default) made exact disk with more storage. I just replaced disks, powered on and everything is up and running! Ty all ❤️

Hello selfhosters,

I'm running home server DIY PC with *arr stack in docker containers and its working surprisingly well. The problem I have is not enough storage for my needs so I ordered a new HDD.

At the moment I have OS (Debian) and some (config) volumes on one SSD while media library is on another SSD. I'd like to move only media library from old to a new HDD and stop using the old one.

What is the best way to move all files (including hard links?) to a new drive? Can I just copy files with same folder structure and then modify my docker-compose.yaml to point to a new HDD? Is backup and restore of *arr apps necessary? Is there any way to grab all torrent files from qbittorrent (or another way of backup?

Folder structure I have now:

System SSD:

  • SSD1/config/sonarr
  • SSD1/config/radarr
  • SSD1/config/qbittorrent

Data SSD:

  • SSD2/data/media/tv
  • SSD2/data/media/movies
  • SSD2/data/torrent/tv
  • SSD2/data/torrent/movies

THX!

you are viewing a single comment's thread
view the rest of the comments
[–] Tippon@lemmy.dbzer0.com 1 points 10 months ago (2 children)

The disks will have a different UUID, so will be seen as different devices. I can't remember what you need to do, but I'm pretty sure that the *arrs have a guide for transferring to a new disk without the files being detected as new.

[–] ArbiterXero@lemmy.world 5 points 10 months ago (2 children)

The containers (docker etc) don’t have access to the uuid, they just see the mounted folder.

The “dates “ on the files however may change. Cloning the drive is recommended

[–] rambos@lemm.ee 1 points 10 months ago (1 children)

I would like to stick with recommended solution and I don't mind if dates of the files change. It would be nice if you have any source I can follow.

[–] ArbiterXero@lemmy.world 1 points 10 months ago (1 children)

Look up “dd” , that’s the utility you want to use

I’d post a link, but I’m mobile right now

[–] rambos@lemm.ee 1 points 10 months ago
[–] Tippon@lemmy.dbzer0.com 1 points 10 months ago

Ah, that's good to know. Thanks for the correction :)

[–] rambos@lemm.ee 1 points 10 months ago

I found a post how to move root folder, but I'm afraid it will not move hardlinks for qbittorrent.