Skip to content

Commit ea9a6ff

Browse files
authored
Update server-xfer.md
1 parent 01f50df commit ea9a6ff

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

server-xfer.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,37 @@ rsync -avz --update --chown=bakerboy448:bakerboy448 --chmod=ug=rwX,o=rX --progre
5959
```bash
6060
screen -dmS rsync_config sudo rsync -avz --update --progress --rsync-path="sudo rsync" myflix:/home/bakerboy448/_development /mnt/raid/
6161
```
62+
## 2025-04 Transfer
63+
64+
## run as sudo
65+
```bash
66+
sudo -i
67+
```
68+
# Move Config
69+
```bash
70+
screen -dmS rsync_data_config sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHv --delete-after --info=progress2,stats,flist,name,del,skip --bwlimit=85000 --stats --rsync-path="sudo rsync" --exclude=*.log --log-file=/var/log/rsync/rsync_data_config.log myflix:/.config/ /.config/
71+
```
72+
# Move DL
73+
```bash
74+
screen -dmS rsync_data_torrents sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHvW --delete-after --info=progress2,stats,flist,name,del,skip --bwlimit=95000 --stats --rsync-path="sudo rsync" --exclude=*.trash --log-file=/var/log/rsync/rsync_data_torrents.log --link-dest=/mnt/data/torrents.new/ myflix:/mnt/data/torrents/ /mnt/data/torrents/
75+
```
76+
77+
# Move Existing Data
78+
```bash
79+
screen -dmS rsync_data_data sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHvW --delete-after --info=progress2,stats,flist,name,del,skip --bwlimit=95000 --stats --rsync-path="sudo rsync" --exclude=*.trash --exclude=link_source* --exclude=raid* --exclude=torrents.new* --log-file=/var/log/rsync/rsync_data_data.log --link-dest=/mnt/data/torrents.new/ myflix:/mnt/data/ /mnt/data/
80+
```
81+
# Move All Data
82+
```bash
83+
screen -dmS rsync_data_data sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHv --delay-updates --delete-after --info=progress2 --bwlimit=45000 --stats --rsync-path="sudo rsync" --exclude=*.trash --exclude=raid/* --exclude=link_source/* --exclude=raid/* --exclude=torrents.new/* --exclude=file_list.txt --log-file=/var/log/rsync/rsync_data_data.log --link-dest=/mnt/zfs-data/torrents.new/ --temp-dir=/mnt/data/tmp --files-from=/mnt/data/file_list.txt myflix:/mnt/data/ /mnt/zfs-data/
84+
```
85+
# Move Qbit
86+
```bash
87+
screen -dmS rsync_data_qbt_share sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHv --delay-updates --delete-after --info=progress2 --bwlimit=85000 --stats --rsync-path="sudo rsync" myflix:/home/bakerboy448/.local/share/qBittorrent/ /home/qbittorrent/.local/share/qBittorrent/
88+
```
89+
```bash
90+
screen -dmS rsync_data_qbt_config sudo RSYNC_RSH="ssh -o Compression=no" rsync -aAXHv --delay-updates --delete-after --info=progress2 --bwlimit=85000 --stats --rsync-path="sudo rsync" myflix:/home/bakerboy448/.config/qBittorrent/ /home/qbittorrent/.config/qBittorrent/
91+
```
92+
# Fix Ownership
93+
```bash
94+
chown -R qbittorrent:media /home/qbittorrent/
95+
```

0 commit comments

Comments
 (0)