Install And Configure LTSP Server In Ubuntu 12.04 with Dnsmasq

LibreOffice 4.0.4 Has Been Released. Install It On Ubuntu 13.04 , 13.10

Install Skype 4.2 in Ubuntu 13.10/13.04/12.10 and 12.04

Skype allows people to communicate with each other by messaging, voice calling and video calling over internet. Skype also provides services for phone calls on the telephone networks ....

Display Username On Unity Panel In Ubuntu 13.04 and Ubuntu 13.10

Showing posts with label torrent. Show all posts

Command-line Torrent Client With Deluge-console On Ubuntu 13.10, 13.04, 12.10, 12.04 and Linux Mint 14, 15


Deluge-console

 

Deluge is a full featured bit torrent client for Linux, OS X, Unix and Windows. It uses libtorrent in its backend and features multiple user-interfaces including; GTK,Web and console. It has been designed using the client server model with a daemon process that all the bittorrent activity. The deluge daemon is able to run on headless machines with the user-interfaces being able to connect remotely from any platform.


Features 


*  Core/UI split allowing Deluge to run as a daemon
*  Connect remotely to the Deluge daemon
*  Web UI
*  Console UI
*  GTK+ UI
*  BitTorrent Protocol Encryption
*  Mainline DHT
*  Local Peer Discovery(aka LSD)
*  FAST protocol extension
*  uTorrent Peer Exchange
*  UPnP and NAT-PMP
*  Proxy support
*  Web seed
*  Private Torrents
*  Global and per-torrent speed limits
*  Configurable bandwidth scheduler
*  Password protection
*  RSS(via Plugin)

Open a terminal and paste the following command to install deluge-console

sudo apt-get install deluge-console && sudo apt-get install deluged

Setup Deluge Console 


Start the console interface

Enter the deluge console:

deluge-console

Connect to your daemon (your daemon port can be found on your slot info page):
connect 127.0.0.1:{{DELUGEDPORT}}

Commands


Help commands can be displayed for each command using the --help flag.

add

 

Add a torrent
Usage: add [-p <save-location>] <torrent-file> [<torrent-file> ...]
Options:
-p PATH, --path=PATH  save path for torrent

cache

 

Show information about the disk cache
Usage: cache

config

 

Show and set configuration values
Usage: config [key1 [key2 ...]]
config --set key value
Options:
-s SET, --set=SET  set value for key

connect

 

Connect to a new deluge server.
Usage: connect <host[:port]> <username> <password>

debug

 

Enable and disable debugging
Usage: debug [on|off]

del

 

Remove a torrent
Usage: rm <torrent-id>
Options:
--remove_data  remove the torrent's data

exit

 

Exit from the client.
Usage: exit

halt

 

Shutdown the deluge server.
Usage: halt

help

 

displays help on other commands
Usage: help [command]

info

 

Show information about the torrents
Usage: info [<torrent-id> [<torrent-id> ...]]
You can give the first few characters of a torrent-id to identify the torrent.
Options:
-v, --verbose - shows more information per torrent
-i, --id - use internal id instead of torrent name
--sort=SORT - sort items.  Possible keys: state, save_path, tracker,
tracker_status, next_announce, name, total_size,
progress, num_seeds, total_seeds, num_peers,
total_peers, eta, download_payload_rate,
upload_payload_rate, ratio, distributed_copies,
num_pieces, piece_length, total_done, files,
file_priorities, file_progress, peers, is_seed,
is_finished, active_time, seeding_time
--sort-reverse=SORT_REV - sort items in reverse order.  Same keys allowed as for --sort.

pause

 

Pause a torrent
Usage: pause [ * | <torrent-id> [<torrent-id> ...] ]

plugin

 

Manage plugins with this command
Usage: plugin [ -l | --list ]
plugin [ -s | --show ]
plugin [ -e | --enable ] <plugin_name>
plugin [ -d | --disable ] <plugin_name>
Options:
-l, --list - lists available plugins
-s, --show - shows enabled plugins
-e ENABLE, --enable=ENABLE - enables a plugin
-d DISABLE, --disable=DISABLE - disables a plugin

quit

 

Exit from the client.
Usage: quit

recheck

 

Forces a recheck of the torrent data
Usage: recheck [ * | <torrent-id> [<torrent-id> ...] ]

resume

 

Resume a torrent
Usage: resume [ * | <torrent-id> [<torrent-id> ...] ]

rm

 

Remove a torrent
Usage: rm <torrent-id>
Options:
--remove_data - remove the torrent's data

[How To] Install uTorrent On Ubuntu 13.10, 13.04, 12.10, 12.04 And Linux Mint 14, 15

uTorrent is a lightweight and efficient BitTorrent client, currently there is only command-line version of Utorrent for Ubuntu. uTorrent work as a web server in Linux. You can access uTorrent from your browser after you started uTorrent using command in Terminal.


Install uTorrent Client on Ubuntu/Debian/Linux Mint 


Please run the below command to install the dependency library first.
sudo apt-get install libssl0.9.8:i386
Now Open a Terminal(Alt + Ctrl + T) and paste the following command to download the uTorrent server.
wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz
Then use the following command to move the file to /opt
sudo mv utorrent-server-3.0-25053.tar.gz /opt/
Now move to the opt directory to extract the tar file.
cd /opt/
sudo tar -xvf utorrent-server-3.0-25053.tar.gz
Then remove the source file.
sudo rm -rf utorrent-server-3.0-25053.tar.gz
Change the permission of the extracted folder.
sudo chmod 777 -R utorrent-server-v3_0/
Create a symbolic link so that you can run the torrent server from terminal.
sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver

Our uTorrent Server is ready. Enter the following command to start the server.
utserver -settingspath /opt/utorrent-server-v3_0/ &

Access the uTorrent Server


Open a browser and type:
http://localhost:8080/gui/

Type the User Name as admin and leave the password field as empty and click Ok.


If you want to avoid every time starting uTorrent via command line, create a startup application and enter the command in command field as follows.