Use iyuu auxiliary species under unraid

Before reading this article, please be sure to read the IYUU that I also installed based on these articles

Using IYUUPlus-Transfer Seed Client [All Platforms] - David Blog

ps: must see! ! The soft links mentioned in this article and the following content do not apply to this article

Please follow this article for the installation steps, but please fill in the docker command and mount path according to this article
  • IYUU auxiliary plant installation steps for unraid system
  1. Install qb, tr, and iyuu according to the docker commands provided in this article (if you want to be lazy and save trouble, you can directly use the same path as me)
  2. iyuu creates a downloader mount directory and transfers tasks
  3. Run the transfer seed task
  4. Run seeding tasks
  • Unraid system uses IYUU auxiliary species installation problem
  1. Failed to transfer seed from qb to tr! (It means that there is a problem with the path you mounted. Please check whether the two paths you installed iyuu are consistent with the path of the downloader created in the background of iyuu) Solution
    :
    After the transfer is successful, the seed directory under qb and tr will have a seed document! !
    After successful replanting, there will be a seed file in the seed directories under qb and tr! ! After successful replanting, there will be a seed file in the seed directories under qb and tr! !


  2. The transfer of seeds from qb to tr is successful, but the verification is 0% (at this step, it means that you have successfully transferred the seed , but there is a problem with the download path mounting, and tr cannot find the file downloaded by qb, so the verification is 0%, and it is downloaded from the beginning)
    Solution:
    Look at the docker command I wrote,
    there is a line in qb: /mnt/user/Movie/qbittorrent:/downloads \ This directory is the download data directory of qb, and
    there is a line in tr: /mnt/user/Movie/qbittorrent:/downloads \ The qb download data directory
    tr mounted in this directory has a line: /mnt/user/Movie/transmission/downloads:/trdownloads \ This directory is tr’s own download data directory
    . Load a qb download file directory, when iyuu runs the conversion task successfully, the tr downloader will point to the data directory of the qb downloader, so the verification is 100% and the transfer does
    not need to copy the files in the data directory ! ! !
    Replanting does not need to copy the files in the data directory ! ! !
    Replanting does not need to copy the files in the data directory ! ! !
    If there is no problem with these two paths, then the verification will be 100% after we successfully replant
  3. When the replanting is successful until tr is in a paused state (this step means that you have successfully replanted and verified) you
    need to start manually! ! ! Or set a new seed to start automatically,
    you need to click start manually! ! ! Or set a new seed to start automatically,
    you need to click start manually! ! ! Or set new torrents to start automatically
  4. See if there are new seeds added to tr after iyuu clicks on the successful seeding. If there is, it means that the seeding is successful.
    After clicking on the seeding task in the picture, tr automatically adds a file with the same name, which means that the seeding is successful! !
    At this time, if you look at the completion of the personal information on the site, or see the seed in the auxiliary plant, iyuu helps us save the download time~~~~~~ It is very fragrant to play with multiple sites!
    iyuu will automatically create a seed file with different tracker chains for secondary seeding of multiple sites. At
    this point, but the secondary seeding is not successful, it may be because the seeds, names, and sizes of the sites are different.

Note that the seed directory and data directory mentioned in the article should not be confused

For iyuu's transfer, copy the seed of qb to the seed directory of tr, and then verify it according to the data directory of qb mounted on tr

OK after verification

The task of iyuu’s secondary planting is to search for seeds on the site set by iyuu. If there is the same seed, it will copy the seed and replace the tracker with the tracker chain of its own site for secondary planting.

qb downloader installation

light version 

docker command


WEB_PORT=8082
BT_PORT=8999
mkdir -p config data downloads
docker run -d --name qbittorrent \
-e PUID=$UID \
-e PGID=$GID \
-e WEB_PORT=8082 \
-e BT_PORT=8999 \
--restart=always \
-p $WEB_PORT:$WEB_PORT -p $BT_PORT:$BT_PORT/tcp -p $BT_PORT:$BT_PORT/udp \
-v /mnt/user/appdata/qbittorrent/config:/config \
-v /mnt/user/appdata/qbittorrent/data:/data \
-v /mnt/user/Movie/qbittorrent:/downloads \
80x86/qbittorrent:latest

Transmission quick check version installation

Please be sure to use the fast version, or the transferred seed verification will kill you! ! !

docker command

docker run -d --name transmission \
-p 9091:9091 \
-p 51413:51413 \
-p 51413:51413/udp \
-v /mnt/user/appdata/transmission/watch:/watch \
-v /mnt/user/appdata/transmission/config:/config \
-v /mnt/user/Movie/transmission/downloads:/trdownloads \
-v /mnt/user/Movie/qbittorrent:/downloads \
-e RPCPORT=9091 \
-e PEERPORT=51413 \
-e UID=0 \
-e GID=0 \
-e TR_USER='transmission' \
-e TR_PASS='transmission' \
docker.io/chisbread/transmission:latest

IYUU

docker command

iyuu only mounts the torrent directory in order to find the torrent files of the two downloaders

docker run -d \
--name IYUUPlus \
-v /mnt/user/appdata/IYUU:/IYUU/db \
-v /mnt/user/appdata/qbittorrent/data/BT_backup:/BT_backup \
-v /mnt/user/appdata/transmission/config/torrents:/torrents \
-p 8787:8787 \
--restart=always \
iyuucn/iyuuplus:latest

Guess you like

Origin blog.csdn.net/qq_34316431/article/details/122302601