Project

General

Profile

Support #732

Updated by Daniel Curtis over 8 years ago

This is a guide on how to install the Deulge bittorrent client on a server and controlled by the web interface on FreeBSD 9. 

 h2. Prepare the Environment¶ 

 * Make sure the system is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 </pre> 


 * Create the deluge user: 
 <pre> 
 pw useradd -n deluge -m -c "Deluge" -s /sbin/nologin -w no 
 </pre> 

 * Create the directory to store the deluge config files: 
 <pre> 
 mkdir -p /home/deluge/.config/deluge 
 chown -R deluge:deluge /home/deluge/ 
 </pre> 

 * Start and enable the deluge web interface at boot: 
 <pre> 
 echo 'deluge_web_enable="YES"' >> /etc/rc.conf 
 echo 'deluge_web_user="deluge"' >> /etc/rc.conf 
 service deluge_web start 
 </pre> 

 * Open a web browser and go to http://deluge.example.com:8112 
 #* *NOTE*: The default password is *deluge*. 

 h2. Torrenting Protection 

 * From the web interface, go to +Preferences -> Network+ and click the +Level+ menu and choose *Full Stream* 

 h3. Blocklist 

 * From the web interface, go to +Preferences -> Plugins+ and enable the *Blocklist* plugin, then click *OK*. 

 *  

 h2. Resources 

 * http://jadawin-freebsd.thajsko.in.th/2013/01/deluge-on-freebsd-server.html 
 * https://forums.freenas.org/index.php?threads/install-deluge-in-a-jail.28778/

Back