Changes between Version 43 and Version 44 of Faq


Ignore:
Timestamp:
10/17/2008 03:50:10 PM (16 years ago)
Author:
mvoncken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Faq

    v43 v44  
    66Yes, Deluge is Free Software, as defined by the Free Software Foundation, and is released under the GPL, giving our users complete freedom. The source code is available on the download section of our site. Our GPL nature allows you to be 100% sure that our program will never “spy” on your activities. Closed-source BitTorrent clients cannot make that same claim. 
    77 
    8  
    9 = Daemon and user-interfaces = 
    10  
    118== How to start the various user-interfaces  == 
    129Gtk: 
    1310{{{ 
    14 deluge --ui gtk 
     11deluge 
    1512}}} 
    1613Console: 
     
    2522default-password = "deluge" 
    2623 
    27 == I started "deluge" but i don't see the gtk-ui  == 
    28 The deluge command remembers the last interface it started. 
    29 Be explicit and type one of the full "deluge -u <interface>" commands listed above. 
    30  
    31 == Why is deluge still listed in my system tray even after I close it ? == 
    32 You closed the gtk user-interface but you did not close the daemon. 
    33 Choose "Quit & Shutdown Daemon" to close both Daemon and gtk-ui. 
    34  
    35 == How do I start the daemon ? == 
    36 {{{ 
    37 deluged 
    38 }}} 
    39  
    40 == How do I start the daemon with logging to console ? == 
    41 {{{ 
    42 deluged -d 
    43 }}} 
    44  
    45 == How do i stop the daemon ? == 
    46  
    47 killall deluged 
    48  
    49 Deluge accepts the SIGTERM signal and cleanly shuts down. 
    50  
    51  
    52 == I can't connect to the daemon from another machine == 
    53  * Configure the daemon to allow remote connections 
    54  * Restart the daemon. 
    55 Note: do not do this on a public ip , use the webui for unsecure networks. 
    56  
    57  
    58 == How do I make deluge connect to a different daemon? == 
    59 By default, deluge is in classic mode: the daemon and gtk ui are linked together. 
    60 To disable classic mode: 
    61  1. "Preferences" 
    62  1. "Interface" 
    63  1. Untick "Enable" under "Classic Mode". 
    64  1. Restart deluge. 
    65  
    66 == How do I stop deluge from killing the daemon when I quit the GTK UI? == 
    67 See above. 
    68  
    69 = Installing = 
    70  
    71 == How do I install 1.0 ? == 
    72  
    73 InstallingDeluge 
    74  
    75 == How do I install 1.0 SVN ? == 
    76  
    77 First you need to install the necessary dependencies. In Ubuntu and Debian, do this: 
    78  
    79 $ sudo apt-get install g++ make python-all-dev python-all python-dbus python-gtk2 python-notify python-setuptools librsvg2-common python-xdg python-support subversion libboost-dev libboost-python-dev libboost-iostreams-dev libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev libboost-serialization-dev libssl-dev zlib1g-dev  
    80 Next you need to get the latest revision from SVN and build/install it: 
    81 {{{ 
    82 $ svn co http://svn.deluge-torrent.org/trunk deluge # for development version 
    83 $ svn co http://svn.deluge-torrent.org/branches/1.0.0_RC deluge # for 1.0.x stable 
    84 $ cd deluge 
    85 $ sudo rm  -fr /usr/lib/python2.5/site-packages/deluge-1.0* 
    86 $ python setup.py build 
    87 $ sudo python setup.py install 
    88 }}} 
    89 If you have already checked the source out and simply want to update your current tree, then do the following in the deluge directory: 
    90 {{{ 
    91 $ svn up 
    92 $ sudo rm  -fr ./build #only needed if libtorrent was changed. 
    93 $ python setup.py build 
    94 $ sudo python setup.py install 
    95 }}} 
    96  
    97 == Deluge won't start with a “gobject.GError: Unrecognised image file format” error. == 
    98  
    99 You need to install SVG support. On Debian/Ubuntu, the package is librsvg2-common 
    100  
    101  
    102 == How do I set Deluge as my default Bittorrent program? == 
    103  
    104 On Windows, the installer will ask you if you want Deluge to be your default Bittorrent program. On Linux/Unix (GNOME), right-click on a torrent file, click on properties, click on the "open with" tab. Is deluge listed there? If so, select it to be your default, if not, click on "add", then click on "use custom command". Insert /usr/bin/deluge and click add. 
    105  
    106  
    107 = Bitorrent = 
     24= Bittorrent = 
    10825 
    10926== The files tab shows a different percentage-completed than the torrent == 
     
    186103 
    187104 
     105= Daemon = 
     106 
     107== Why is deluge still listed in my system tray even after I close it ? == 
     108You closed the gtk user-interface but you did not close the daemon. 
     109Choose "Quit & Shutdown Daemon" to close both Daemon and gtk-ui. 
     110 
     111== How do I start the daemon ? == 
     112{{{ 
     113deluged 
     114}}} 
     115 
     116== How do I start the daemon with logging to console ? == 
     117{{{ 
     118deluged -d 
     119}}} 
     120 
     121== How do i stop the daemon ? == 
     122 
     123killall deluged 
     124 
     125Deluge accepts the SIGTERM signal and cleanly shuts down. 
     126 
     127 
     128== I can't connect to the daemon from another machine == 
     129 * Configure the daemon to allow remote connections 
     130 * Restart the daemon. 
     131Note: do not do this on a public ip , use the webui for unsecure networks. 
     132 
     133 
     134== How do I make deluge connect to a different daemon? == 
     135By default, deluge is in classic mode: the daemon and gtk ui are linked together. 
     136To disable classic mode: 
     137 1. "Preferences" 
     138 1. "Interface" 
     139 1. Untick "Enable" under "Classic Mode". 
     140 1. Restart deluge. 
     141 
     142== How do I stop deluge from killing the daemon when I quit the GTK UI? == 
     143See above. 
     144 
     145= Installing = 
     146 
     147== How do I install 1.0 ? == 
     148 
     149InstallingDeluge 
     150 
     151== How do I install 1.0 SVN ? == 
     152 
     153First you need to install the necessary dependencies. In Ubuntu and Debian, do this: 
     154 
     155$ sudo apt-get install g++ make python-all-dev python-all python-dbus python-gtk2 python-notify python-setuptools librsvg2-common python-xdg python-support subversion libboost-dev libboost-python-dev libboost-iostreams-dev libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev libboost-serialization-dev libssl-dev zlib1g-dev  
     156Next you need to get the latest revision from SVN and build/install it: 
     157{{{ 
     158$ svn co http://svn.deluge-torrent.org/trunk deluge # for development version 
     159$ svn co http://svn.deluge-torrent.org/branches/1.0.0_RC deluge # for 1.0.x stable 
     160$ cd deluge 
     161$ sudo rm  -fr /usr/lib/python2.5/site-packages/deluge-1.0* 
     162$ python setup.py build 
     163$ sudo python setup.py install 
     164}}} 
     165If you have already checked the source out and simply want to update your current tree, then do the following in the deluge directory: 
     166{{{ 
     167$ svn up 
     168$ sudo rm  -fr ./build #only needed if libtorrent was changed. 
     169$ python setup.py build 
     170$ sudo python setup.py install 
     171}}} 
     172 
     173== Deluge won't start with a “gobject.GError: Unrecognised image file format” error. == 
     174 
     175You need to install SVG support. On Debian/Ubuntu, the package is librsvg2-common 
     176 
     177 
     178== How do I set Deluge as my default Bittorrent program? == 
     179 
     180On Windows, the installer will ask you if you want Deluge to be your default Bittorrent program. On Linux/Unix (GNOME), right-click on a torrent file, click on properties, click on the "open with" tab. Is deluge listed there? If so, select it to be your default, if not, click on "add", then click on "use custom command". Insert /usr/bin/deluge and click add. 
    188181 
    189182 
    190183 
     184 
     185 
     186