Difference between revisions of "UTorrent: Install di Ubuntu 18.04"

From OnnoWiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 33: Line 33:
  
 
  sudo apt update
 
  sudo apt update
  sudo apt install libssl1.0.0 libssl-dev
+
  sudo apt -y install libssl1.0.0 libssl-dev
 
 
  
 
==Download & Buka==
 
==Download & Buka==
Line 68: Line 67:
 
  http://ip-torrent-server:8080/gui
 
  http://ip-torrent-server:8080/gui
 
  http://192.168.0.7:8080/gui
 
  http://192.168.0.7:8080/gui
 +
 +
username admin
 +
password "dikosongkan" (tanpa password)
 +
  
 
Lakukan
 
Lakukan
Line 75: Line 78:
  
 
  Location of Downloaded Files
 
  Location of Downloaded Files
  Put new downloads in: /home/sharing/bittorent/_actives
+
  Put new downloads in: /home/share/bittorent/_actives
  Move completed downloads to: /home/sharing/bittorent
+
  Move completed downloads to: /home/share/bittorent
  
 
  Location of .torrents
 
  Location of .torrents
  Store .torrents in: /home/sharing/bittorent/_torrents
+
  Store .torrents in: /home/share/bittorent/_torrents
  Move .torrents for finished jobs to: /home/sharing/bittorent/_torrents
+
  Move .torrents for finished jobs to: /home/share/bittorent/_torrents
  Automatically load .torrents from: /home/sharing/bittorent/_torrents
+
  Automatically load .torrents from: /home/share/bittorent/_torrents
  
 
* Web UI
 
* Web UI
Line 94: Line 97:
 
Buat folder di shell
 
Buat folder di shell
  
  mkdir -p /home/sharing/bittorent/_torrents
+
  mkdir -p /home/share/bittorent/_torrents
  mkdir -p /home/sharing/bittorent/_actives
+
  mkdir -p /home/share/bittorent/_actives
  chmod -Rf 777 /home/sharing
+
  chmod -Rf 777 /home/share
  chown -Rf nobody: /home/sharing
+
  chown -Rf nobody: /home/share
  
 
==Referensi==
 
==Referensi==
  
 
* https://www.linuxbabe.com/ubuntu/install-utorrent-ubuntu-18-04-19-04
 
* https://www.linuxbabe.com/ubuntu/install-utorrent-ubuntu-18-04-19-04

Latest revision as of 08:00, 13 December 2019

Sumber: https://www.linuxbabe.com/ubuntu/install-utorrent-ubuntu-18-04-19-04


Tutorial ini akan menjelaskan cara menginstalasi utorrent di Ubuntu 18.04. Feature utorrent, antara lain adalah:

  • Distributed hash table (DHT)
  • UPnP port mapping
  • NAT-PMP port mapping
  • Upload rate limiting
  • Download rate limiting
  • Queuing
  • Configurable limit on number of simultaneously uploading peers
  • Incremental file allocation
  • Block level piece picking
  • Separate threads for file-check and download
  • Single thread and single port for multiple torrent downloads
  • BitTorrent extension protocol
  • Multi-tracker extension support
  • Fair trade extension
  • Compact tracker extension
  • Fast resume
  • Queuing of torrent file-check if fast resume not possible
  • HTTP seed support
  • Resumption of partial downloads from other BitTorrent clients
  • File-sizes greater than 2GB
  • Selective download of multi-file torrents
  • IPv6
  • High performance network stack
  • uTP – Advanced UDP-based transport with dynamic congestion control

Instal Dependency

sudo apt update
sudo apt -y install libssl1.0.0 libssl-dev

Download & Buka

64 bits

wget http://download.ap.bittorrent.com/track/beta/endpoint/utserver/os/linux-x64-ubuntu-13-04 -O utserver.tar.gz

32 bits

wget http://download.ap.bittorrent.com/track/beta/endpoint/utserver/os/linux-i386-ubuntu-13-04 -O utserver.tar.gz

Extrak ke /opt/

sudo tar xvf utserver.tar.gz -C /opt/

Buat Server

Buat symbolic link

sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver

Jalankan menggunakan perintah:

utserver -settingspath /opt/utorrent-server-alpha-v3_3/ -daemon

uTorrent akan listen pada 0.0.0.0:8080, -daemon akan menjalankan uTorrent di background.


Beberapa Konfigurasi Penting

Akses ke web

http://ip-torrent-server:8080/gui
http://192.168.0.7:8080/gui
username admin
password "dikosongkan" (tanpa password)


Lakukan

  • Klik Settings (roda gigi)
  • Directories
Location of Downloaded Files
Put new downloads in: /home/share/bittorent/_actives
Move completed downloads to: /home/share/bittorent
Location of .torrents
Store .torrents in: /home/share/bittorent/_torrents
Move .torrents for finished jobs to: /home/share/bittorent/_torrents
Automatically load .torrents from: /home/share/bittorent/_torrents
  • Web UI
Authentication
username admin
password 123456789
Connectivity 9090


Buat folder di shell

mkdir -p /home/share/bittorent/_torrents
mkdir -p /home/share/bittorent/_actives
chmod -Rf 777 /home/share
chown -Rf nobody: /home/share

Referensi