ExtraTorrent.cc - The Largest Bittorent SystemLogin   |   Register
Latest Articles
Most searched
Hot torrents
First Cams
View Torrent Info: Arrival 2016 HDCAM x264 AC3-TuttyFruity
View Torrent Info: Hacksaw Ridge 2016 HDCAM x264 AC3-TuttyFruity
View Torrent Info: Keeping.Up.With.The.Joneses.2016.HDCAM.x264.AAC - Lesnar
View Torrent Info: The.Girl.on.the.Train.2016.NEW.CAM.XViD.AC3-ETRG
Hot torrents
XVID DIVX
View Torrent Info: Yoga.Hosers.2016.BRRip.XviD.AC3-EVO
View Torrent Info: Solitary.2015.HDRip.XViD-ETRG
View Torrent Info: Loving.2016.HC.HDRip.XviD.AC3-EVO
View Torrent Info: Officer.Downe.2016.HDRip.XviD.AC3-EVO
Hot torrents
H264 X264
View Torrent Info: Morris.From.America.2016.720p.BRRip.x264.AAC-ETRG
View Torrent Info: Finding.Dory.2016.1080p.BluRay.AC3.x264-ETRG
View Torrent Info: Yoga.Hosers.2016.720p.BRRip.x264.AAC-ETRG
View Torrent Info: [ 18] Los.Ritos.Sexuales.Del.Diablo.1982.720p.BRRip.x264.AAC-ETRG
Hot torrents
Television
View Torrent Info: The.Exorcist.S01E08.WEB-DL.x264-FUM[ettv]
View Torrent Info: Van.Helsing.S01E10.WEB-DL.x264-FUM[ettv]
View Torrent Info: Z.Nation.S03E10.WEB-DL.x264-FUM[ettv]
View Torrent Info: The.Vampire.Diaries.S08E05.HDTV.x264-LOL[ettv]
View Torrent Info: Finding.Dory.2016.720p.BluRay.AC3.x264.Greek-ETRG
View Torrent Info: Force 2 (2016) 720p - DesiSCR - x264 - AC3 - [DDR]
View Torrent Info: Now.You.See.Me.2.2016.1080p.BRRip.x264.Turkish.AC3-ETRG
View Torrent Info: Tum Bin 2 (2016) DesiSCR 1CDRIP x264 AAC [DDR]
30s
Chat
To add new messages please Login or Register for FREE
Warning! Stop Government from Tracking Your Torrenting!
Your IP Address is 24.62.246.85.   Location is United States
Your Internet Provider and Government can track your internet activity! Hide your IP ADDRESS and LOCATION with a VPN
ExtraTorrent strongly recommends using Trust.Zone VPN to anonymize your torrenting. It's FREE!


Installing Deluge without Root


Post a Reply    Subscribe to Topic    
AuthorMessage
karakurachow avatar
Posted: Sat Oct 30, 2010 02:35
Author: Vip MemberSite Friend
Bollywood Movie

BHAGAM BHAG

*2006*
Blu-Ray Rip 1080P
DTS Audio 5.1
English Sub + Chapters
Code:
Tech Specs: Source: BD50 @ DDR Size: 7.95 GB [U]General[/U] Format : Matroska File size : 7.95 GiB Duration : 2h 38mn Overall bit rate : 7 170 Kbps Video Format : AVC Format/Info : Advanced Video Codec Format profile : [email protected] Bit rate : 5 646 Kbps Width : 1 920 pixels Height : 816 pixels Display aspect ratio : 2.35:1 Frame rate : 24.000 fps Resolution : 24 bits Colorimetry : 4:2:0 Scan type : Progressive Audio Format : DTS Format/Info : Digital Theater Systems Codec ID : A_DTS Bit rate mode : Constant Bit rate : 1 510 Kbps Channel(s) : 6 channels Channel positions : Front: L C R, Surround: L R, LFE Sampling rate : 48.0 KHz Resolution : 24 bits Chapters : YES Subtitle(s) : English

4bbc3588389063.jpg
3be38688389071.jpg
ce85e788389078.jpg

This can be very useful for users who wish to give Deluge a try without mucking with the rest of their system or for users who do not have root access to their computers (most shared seedboxes).

To remove this installation, all you need to do is remove the lines added to ~/.bashrc and delete the folder $HOME/local
Code:
# delugeinstall.sh # # Deluge 1.2.3 Build Script # # Strongly recommend running this script within screen # If you are disconnected from ssh, script will continue. # # # Create installation directories. # If they already exist, these statements # will return errors and do nothing mkdir ~/local mkdir ~/local/source mkdir ~/local/bin mkdir ~/local/lib mkdir ~/local/include cd ~/local/source # Add Calls to ~/.bashrc, so paths are declared echo '# Auto-generated by Deluge 1.2.3 Install Script' >> ~/.bashrc echo 'export PATH="$HOME/local/bin:$PATH"' >> ~/.bashrc echo 'export LD_LIBRARY_PATH="$HOME/local/lib:$LD_LIBRARY_PATH"' >> ~/.bashrc echo '# End Deluge 1.2.3 Install Script' >> ~/.bashrc # Sets some compile optimizations export CFLAGS="-march=native -O2 -pipe" export CXXFLAGS="-march=native -O2 -pipe" # Adds our new stuff to bin and lib search path export PATH="$HOME/local/bin:$PATH" export LD_LIBRARY_PATH="$HOME/local/lib:$LD_LIBRARY_PATH" # Python 2.6.5 wget http://www.python.org/ftp/python/2.6.5/Python-2.6.5.tar.bz2 tar -xf Python-2.6.5.tar.bz2 cd Python-2.6.5 ./configure --prefix=$HOME/local --with-pth --enable-shared make clean make -j3 make install cd .. # Add python include files to CPPFLAGS export CPPFLAGS="-I$HOME/local/include -I$HOME/local/include/python2.6" # Python Setuptools 0.6c11-py2.6 wget http://pypi.python.org/packages/2.6/s/setuptools/setuptools-0.6c11-py2.6.egg sh setuptools-0.6c11-py2.6.egg --prefix=$HOME/local # Twisted 10.0.0 wget http://tmrc.mit.edu/mirror/twisted/Twisted/10.0/Twisted-10.0.0.tar.bz2 tar -xf Twisted-10.0.0.tar.bz2 cd Twisted-10.0.0 python setup.py clean -a python setup.py build python setup.py install cd .. # pyOpenSSl easy_install pyopenssl # pyxdg 0.19 wget http://www.freedesktop.org/~lanius/pyxdg-0.19.tar.gz tar -xf pyxdg-0.19.tar.gz cd pyxdg-0.19 python setup.py clean -a python setup.py build python setup.py install cd .. # mako easy_install mako # chardet easy_install chardet # Boost 1.42.0 wget http://sourceforge.net/projects/boost/files/boost/1.42.0/boost_1_42_0.tar.bz2/download tar -xf boost_1_42_0.tar.bz2 cd boost_1_42_0 ./bootstrap.sh --prefix=$HOME/local ./bjam install cd .. # Add boost include files to CPPFLAGS export CPPFLAGS="-I$HOME/local/include -I$HOME/local/include/boost -I$HOME/local/include/python2.6" # Libtorrent-Rasterbar 0.14.10 wget http://libtorrent.googlecode.com/files/libtorrent-rasterbar-0.14.10.tar.gz tar -xf libtorrent-rasterbar-0.14.10.tar.gz cd libtorrent-rasterbar-0.14.10 ./configure --enable-python-binding --prefix=$HOME/local --with-boost-libdir=$HOME/local/lib make clean make -j3 make install cd bindings/python python setup.py clean -a python setup.py build python setup.py install cd ../../.. # Deluge 1.2.3 wget http://download.deluge-torrent.info/source/deluge-1.2.3.tar.bz2 tar -xf deluge-1.2.3.tar.bz2 cd deluge-1.2.3 python setup.py clean -a python setup.py build python setup.py install cd .. # You should now be able to start Deluge by invoking # deluge-web for the webui or # deluged for the deluge daemon

Post a Reply    

Forum Search


  search in post message
  search in topic subject
Forum


Home - Browse Torrents - Upload Torrent - Stat - Forum - FAQ - Login
ExtraTorrent.cc is in compliance with copyrights
BitCoin: 12DiyqsWhENahDzdhdYsRrCw8FPQVcCkcm
Can't load ExtraTorrent? Try our official mirrors: etmirror.com - etproxy.com - extratorrentonline.com - extratorrentlive.com
2006-2016 ExtraTorrent.cc4