Changes between Version 4 and Version 5 of Installing/FreeBSD


Ignore:
Timestamp:
09/18/2012 11:02:07 AM (12 years ago)
Author:
bro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/FreeBSD

    v4 v5  
    11= Installing Deluge On FreeBSD = 
     2 
     3{{{ 
     4#!comment 
     5I'm adding this since the above may be overkill unless people want the tip revision.  
     6I installed 1.1.9 directly from ports 3 weeks ago, sidestepping all of the above.. The correct dependencies were automatically and correctly installed, and it's all worked as expected.  
     7- The only thing I have not tested is the local GUI, my server is headless, web UI works, connecting from remote UI on both fedora and archlinux also works. Finally a replacement for btdaemon ;-) 
     8}}} 
     9 
     10Deluge (1.3.X) is available in ports, with dependencies correctly identified and also stable.  
     11 
     12== Install package == 
     13 
     14{{{ 
     15pkg_add -r deluge 
     16}}} 
     17 
     18 
     19== Install from Ports == 
     20 
     21For this author the following command correctly installed both the UI and Daemon components on FreeBSD 7.2 (installing the python/boost dependencies as required). [[br]] 
     22http://www.freshports.org/net-p2p/deluge/ 
     23 
     24{{{ 
     25cd /usr/ports/net-p2p/deluge && make install clean 
     26}}} 
     27 
     28Or using portmaster 
     29{{{ 
     30portmaster net-p2p/deluge 
     31}}} 
     32 
     33== Manual installation (outdated) == 
    234 
    335To install Deluge in FreeBSD it is similar to doing it from source. This example will be pulling from the 1.1.0_RC branch. First you need subversion for svn access: 
     
    5991 
    6092And that's it. Drop back to a regular user and start having fun with Deluge! If I missed something regarding a FreeBSD install, please contact !AlmightyOatmeal on Freenode. 
    61  
    62 == Alternative Method == 
    63  
    64 {{{ 
    65 #!comment 
    66 I'm adding this since the above may be overkill unless people want the tip revision.  
    67 I installed 1.1.9 directly from ports 3 weeks ago, sidestepping all of the above.. The correct dependencies were automatically and correctly installed, and it's all worked as expected.  
    68 - The only thing I have not tested is the local GUI, my server is headless, web UI works, connecting from remote UI on both fedora and archlinux also works. Finally a replacement for btdaemon ;-) 
    69 }}} 
    70  
    71  
    72 Deluge (1.1.9) is available in ports, with dependencies correctly identified and also stable. For this author the following command correctly installed both the UI and Daemon components on FreeBSD 7.2 (installing the python/boost dependencies as required). [[br]] 
    73 http://www.freshports.org/net-p2p/deluge/ 
    74  
    75 {{{ 
    76 cd /usr/ports/net-p2p/deluge && make install clean 
    77 }}} 
    78  
    79 It should also be available as a package: 
    80  
    81 {{{ 
    82 pkg_add -r deluge 
    83 }}}