Difference between revisions of "User talk:Stephdl"
From SME Server
Jump to navigationJump to searchLine 1: | Line 1: | ||
http://wiki.contribs.org/SME_Server:Documentation:QA:Verification | http://wiki.contribs.org/SME_Server:Documentation:QA:Verification | ||
+ | |||
+ | in the directory where you want to work | ||
mkdir transmission | mkdir transmission | ||
cd transmission | cd transmission | ||
+ | |||
+ | then we need to install all the following files, you have to adjust with your architecture | ||
wget http://geekery.altervista.org/geekery/el5/i386/libevent2-2.0.10-1geekery.i386.rpm | wget http://geekery.altervista.org/geekery/el5/i386/libevent2-2.0.10-1geekery.i386.rpm | ||
Line 9: | Line 13: | ||
wget http://geekery.altervista.org/geekery/el5/i386/transmission-daemon-2.76-1geekery.i386.rpm | wget http://geekery.altervista.org/geekery/el5/i386/transmission-daemon-2.76-1geekery.i386.rpm | ||
wget http://geekery.altervista.org/geekery/el5/i386/transmission-cli-2.76-1geekery.i386.rpm | wget http://geekery.altervista.org/geekery/el5/i386/transmission-cli-2.76-1geekery.i386.rpm | ||
+ | or | ||
+ | wget http://geekery.altervista.org/geekery/el5/x86_64/libevent2-2.0.10-1geekery.x86_64.rpm | ||
+ | wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-2.76-1geekery.x86_64.rpm | ||
+ | wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-common-2.76-1geekery.x86_64.rpm | ||
+ | wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-daemon-2.76-1geekery.x86_64.rpm | ||
+ | wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-cli-2.76-1geekery.x86_64.rpm | ||
+ | |||
+ | the root user can install rpm above | ||
yum local install * | yum local install * | ||
+ | |||
+ | {{note box|we must stop the deamon before every manual modifications of setting.json}} | ||
/etc/init.d/transmission-daemon stop | /etc/init.d/transmission-daemon stop | ||
nano /var/lib/transmission/settings.json | nano /var/lib/transmission/settings.json | ||
− | allow your network range to connect to transmission-deamon "*" | + | allow your network range to connect to transmission-deamon "*" can be used as a wild card |
"rpc-whitelist": "'''127.0.0.1,192.168.12.*'''", | "rpc-whitelist": "'''127.0.0.1,192.168.12.*'''", | ||
"rpc-whitelist-enabled": '''true''', | "rpc-whitelist-enabled": '''true''', | ||
+ | |||
+ | we can launch the deamon | ||
+ | |||
+ | /etc/init.d/transmission-daemon start | ||
+ | by default the transmission-deamon use the 51413 port for sharing with other computer so we have to authorize it in the sme firewall and after you may need to allow it in the nat configuration of your router if the upnp configuration does'nt work. | ||
db configuration set transmission-daemon service | db configuration set transmission-daemon service | ||
− | db configuration setprop transmission-daemon TCPPort | + | db configuration setprop transmission-daemon TCPPort 51413 |
db configuration setprop transmission-daemon status enabled | db configuration setprop transmission-daemon status enabled | ||
db configuration setprop transmission-daemon access public | db configuration setprop transmission-daemon access public | ||
+ | |||
ln -s /etc/init.d/transmission-daemon /etc/rc.d/rc7.d/S99transmission-daemon | ln -s /etc/init.d/transmission-daemon /etc/rc.d/rc7.d/S99transmission-daemon |
Revision as of 21:22, 28 March 2013
http://wiki.contribs.org/SME_Server:Documentation:QA:Verification
in the directory where you want to work
mkdir transmission cd transmission
then we need to install all the following files, you have to adjust with your architecture
wget http://geekery.altervista.org/geekery/el5/i386/libevent2-2.0.10-1geekery.i386.rpm wget http://geekery.altervista.org/geekery/el5/i386/transmission-2.76-1geekery.i386.rpm wget http://geekery.altervista.org/geekery/el5/i386/transmission-common-2.76-1geekery.i386.rpm wget http://geekery.altervista.org/geekery/el5/i386/transmission-daemon-2.76-1geekery.i386.rpm wget http://geekery.altervista.org/geekery/el5/i386/transmission-cli-2.76-1geekery.i386.rpm
or
wget http://geekery.altervista.org/geekery/el5/x86_64/libevent2-2.0.10-1geekery.x86_64.rpm wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-2.76-1geekery.x86_64.rpm wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-common-2.76-1geekery.x86_64.rpm wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-daemon-2.76-1geekery.x86_64.rpm wget http://geekery.altervista.org/geekery/el5/x86_64/transmission-cli-2.76-1geekery.x86_64.rpm
the root user can install rpm above
yum local install *
/etc/init.d/transmission-daemon stop nano /var/lib/transmission/settings.json
allow your network range to connect to transmission-deamon "*" can be used as a wild card
"rpc-whitelist": "127.0.0.1,192.168.12.*", "rpc-whitelist-enabled": true,
we can launch the deamon
/etc/init.d/transmission-daemon start
by default the transmission-deamon use the 51413 port for sharing with other computer so we have to authorize it in the sme firewall and after you may need to allow it in the nat configuration of your router if the upnp configuration does'nt work.
db configuration set transmission-daemon service db configuration setprop transmission-daemon TCPPort 51413 db configuration setprop transmission-daemon status enabled db configuration setprop transmission-daemon access public
ln -s /etc/init.d/transmission-daemon /etc/rc.d/rc7.d/S99transmission-daemon