Change download location QBittorrent on Proxmox #1416
-
Hi, I may have a stupid question but... I installed Qbittorrent on proxmox. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Have you mounted the NAS to that container? For me I did the following but this could be different for yourself, depending on what your set up is: I had to install a few prerequisites for my NAS to work (May not be required for yours, I use a WD Cloud): Then I created a directory to store my credentials for the access to the NAS (Not required if your NAS has public access to internal network): Then I created a file that had the credentials on it (Not required if your NAS has public access to internal network): In the file the format was like this: I added permissions to the credentials file: Then I added a directory which I would use to access the NAS: Then I needed to edit the fstab file of the container: This is what I wrote insite the fstab file (Change the start part to whatever level of your NAS that you want): Then mount the NAS: Now when you change directory to the one you created earlier ( Then load up the qBittorrent UI and sign in. I'm sure there are many other ways of doing it, maybe you could just change the Default Save Path to //IP-Address/Downloads-Folder |
Beta Was this translation helpful? Give feedback.
-
Or if you already have your NAS drives set as SMB/CIFS storage on your Datacentre, you can add them as mount points via your LXC config file:
So mine for example with 2 NAS storages: mp0: /mnt/pve/NAS,mp=/media/nas4tb /mnt/pve/NAS and /mnt/pve/NAS-6TB is the path from my Promox datacentre to my NAS drives. |
Beta Was this translation helpful? Give feedback.
Or if you already have your NAS drives set as SMB/CIFS storage on your Datacentre, you can add them as mount points via your LXC config file:
nano /etc/pve/lxc/100.conf
mp0: /the/NAS/storage/path,mp=/the/directory/to/access/the/storage/in/the/container
So mine for example with 2 NAS storages:
mp0: /mnt/pve/NAS,mp=/media/nas4tb
mp1: /mnt/pve/NAS-6TB,mp=/media/nas6tb
/mnt/pve/NAS and /mnt/pve/NAS-6TB is the path from my Promox datacentre to my N…