Add your username to /etc/sudoers. su root password. nano /etc/sudoers Example: john ALL=(ALL) ALL 1. Create new user “rtorrent”. sudo adduser –home /opt/rtorrent rtorrent 2. Update Everything and install some needed dependencies. sudo apt-get update sudo apt-get upgrade sudo apt-get install subversion build-essential automake libtool libcppunit-dev libcurl3-dev sudo apt-get install libsigc++-2.0-dev libcppunit-dev unzip …
Category: Network
Jan 27
How to install and configure rTorrent, Squid3, Privoxy, Tor – Linux – Debian – Ubuntu.
How to install and configure rTorrent, Squid3, Privoxy, Tor – Linux – Debian – Ubuntu. Screenplay: The rTorrent is connected to Squid3 server. Squid3 server is connected to 8 Privoxy server instances. Each instances is Privoxy server is connected to 1 of 8 instances of Tor. Tor is connected to the internet. 1. Install …
Jan 26
Anonymity Online – How to install and configure Squid3, Tor, Privoxy – Debian – Ubuntu – Linux.
Anonymity Online – How to install and configure Squid3, Tor, Privoxy – Debian – Ubuntu – Linux. Screenplay: The user is connected to Squid3 server. Squid3 server is connected to 8 Privoxy server instances. Each instances of Privoxy server is connected to 1 of 8 instances of Tor. Tor is connected to the internet. …
Jan 25
MLDonkey – Open Source eDonkey Client – P2P- Debian – Ubuntu – Linux.
MLDonkey is an open source, multi-protocol, peer-to-peer file sharing application that runs as a back-end server application on many platforms. It can be controlled through a user interface provided by one of many separate front-ends, including a Web interface, telnet interface and over a dozen native client programs. Install MLDonkey from repository (fast method). …
Jan 24
How to install and configure TeamSpeak3 Server- Linux – Debian – Ubuntu
How to install and configure TeamSpeak3 Server- Linux – Debian – Ubuntu Create user dedicated for TeamSpeak3 server. Home directory for TeamSpeak3 user – /opt. sudo useradd -d /opt/teamspeak3-server -m teamspeak3-user Install TeamSpeak3 server for Linux 64bit. Download TeamSpeak3 server, unpack to home directory, and change file permission of our user home directory. sudo …
Jan 20
RainLoop – web-based email client – Debian – Ubuntu – Linux.
RainLoop – web-based email client – Debian – Ubuntu. Install RainLoop. Normal instalation sudo mkdir install cd install sudo wget http://repository.rainloop.net/v2/webmail/rainloop-latest.zip sudo unzip rainloop-latest.zip sudo cp -r rainloop /var/www/ Express instalation sudo wget -qO- http://repository.rainloop.net/installer.php | php or curl -s http://repository.rainloop.net/installer.php | php #!/usr/bin/env php [RainLoop Webmail Installer] * Connecting to repository …
Aug 30
Apticron – automatic email notification when updates available – Debian.
Install apticron. sudo apt-get update sudo apt-get install apticron Configure apticron. You need to set email address to email the notification. Config Example: sudo nano /etc/apticron/apticron.conf EMAIL=”root” # DIFF_ONLY=”1″ LISTCHANGES_PROFILE=”apticron” ALL_FQDNS=”1″ # SYSTEM=”foobar.example.com” # IPADDRESSNUM=”1″ # IPADDRESSES=”192.0.2.1 2001:db8:1:2:3::1″ # NOTIFY_HOLDS=”0″ NOTIFY_NEW=”1″ CUSTOM_SUBJECT=”System updates.” CUSTOM_NO_UPDATES_SUBJECT=”System updates – no updates.” # CUSTOM_FROM=”” Configure Cron. sudo …
Aug 21
Ntopng (ntop) – web-based network traffic monitoring system – Linux – Debian.
Ntopng is the next generation version of the original ntop, a network traffic probe that shows the network usage, similar to what the popular top Unix command does. ntopng is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform, MacOSX and on Win32 …
Aug 08
MiniDLNA UPnP Media Server – Debian – Linux.
MiniDLNA allows you to stream your digital media through your home network and listen to/watch it on a variety of UPnP compatible devices.: PlayStation3 (PS3), Xbox 360, satellite devices, DVB and DVB-T devices, smart TV/DVD, smartphones, youview.. Install MiniDLNA. Install some needed dependencies. sudo apt-get install -y ffmpeg imagemagick mediainfo mencoder ffmpegthumbnailer …
Aug 08
How to test internet speed from the command line on Linux.
Speedtest-cli is a simple client written in Python CLI to measure bidirectional bandwidth Internet using the Speedtest.net infrastructure. It works with Python 2.4 to 3.4. Installing Speedtest-cli using pip command: sudo apt-get install python-pip sudo pip install speedtest-cli Installing Speedtest-cli manually: wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py sudo chmod a+rx speedtest_cli.py sudo mv speedtest_cli.py /usr/local/bin/speedtest-cli sudo chown …