banner



How To Change Transmission Fluid 2002 Chevy Trailblazer

Contents

  1. Transmission
  2. Installation
    1. Add Manual PPA Repository
  3. Configure
    1. Username and Password
    2. Whitelist
    3. "umask" parameter
    4. Transmission Restart
    5. Default File Directory
      1. Configure Users and Permissions
  4. Manual Daemon
    1. Starting and Stopping Manual Daemon
    2. Bash Aliases
  5. Web Interface
    1. Port Forward
      1. Edit
      2. Port Forward
  6. Control Line Interface
    1. Manual Create
    2. Add a Torrent
    3. Torrent Information
      1. Assist data
      2. List all torrents
      3. Basic Stats All Torrents
      4. Full Stats All Torrents
      5. Torrent #3 Full Stats
      6. Torrent #3 Summary Stats
    4. Transmission Control
      1. Start all torrents
      2. Stop all torrents
      3. Outset a specific torrent
      4. Stop a specific torrent
      5. Remove all torrents
      6. Remove a specific torrent
      7. Get hashes for all torrents
      8. Quit the daemon

Transmission

The BitTorrent protocol tin can be used to reduce the server and network bear upon of distributing large files. Rather than downloading a file from a unmarried source server, the BitTorrent protocol allows users to join a "swarm" of hosts to download and upload from each other simultaneously.

Manual is designed for easy, powerful use. Nosotros've set the defaults to Merely Work and it but takes a few clicks to configure advanced features like watch directories, bad peer blocklists, and the web interface. When Ubuntu chose Transmission as its default BitTorrent customer, one of the most-cited reasons was its like shooting fish in a barrel learning bend.

This How-to focuses on CLI (Control Line Interface) and the Web interface

Transmission has been configured to work out of the box on a desktop. Because this how-to is designed for Ubuntu server nosotros need to manually allow remote admission.

Installation

Manual is typically installed by default in Ubuntu. If not, install the transmission package from the Universe repository.

Add Transmission PPA Repository

If you want the latest then add the PPA repository

          sudo add together-apt-repository ppa:transmissionbt/ppa

Update repositories

          sudo apt-get update

Install transmission

          sudo apt-get install transmission-cli transmission-common transmission-daemon

Configure

There are many settings which can be configured. This how-to focus on tweaking the default configuration file for use with Ubuntu server.

transmission-daemon will start automatically each fourth dimension you start your server, with the settings defined in /var/lib/transmission-daemon/info/settings.json

Make certain the Transmission daemon is not running when irresolute the config file otherwise your changes volition be over written.

          sudo service transmission-daemon cease

edit /var/lib/transmission-daemon/info/settings.json

          sudo nano /var/lib/transmission-daemon/info/settings.json

Username and Countersign

The default rpc-username and countersign is "transmission"

Alter if increased security is required

Alter it to whatever you want (any password will work). After next restart the password volition be rewritten in SHA1 encrypted format for security reasons.

          "rpc-password": "{62b16db87b89a91dd49a5110a7cafc06d20eb4f2wtK6kqPj",          "rpc-username": "transmission",

Whitelist

This must be inverse for remote access

rpc-whitelist defines admission to transmission. Localhost (127.0.0.1) is divers by default. I added ,192.268.*.* to allow any machine on my LAN access.

          "rpc-whitelist": "127.0.0.1,192.168.*.*",

"umask" parameter

You will also have to gear up the "umask" parameter in Transmission's settings file to "two" (default is 18) for the business relationship user to have full access to files/folders created by Transmission.

          "umask": 2,

Transmission Restart

After configuration change, restart transmission

          sudo service transmission-daemon start

Default File Directory

Place a torrent file in this directory for automated file download

          /var/lib/transmission-daemon/downloads/

Configure Users and Permissions

Information technology is recommended that Transmission runs under it's own username for security reasons. This creates a few issues with file and folder admission by Transmission as well as your account (let u.s.a. assume information technology is user).

Add the username user to the group debian-manual:

          sudo usermod -a -G debian-transmission user

NOTE: Change "user" to you own Ubuntu user login name.

Notation: When calculation a user to a new group, the user must log out and log dorsum in for it to take affect. A reboot will too attain this.

Manual Daemon

Starting and Stopping Manual Daemon

After install Transmission, the daemon will exist started automatically (but not accessible even so). You tin beginning and stop Transmission daemon using the post-obit commands

          sudo service manual-daemon start          sudo service transmission-daemon stop          sudo service transmission-daemon reload

Note:Restarting (or reloading) Transmission daemon can be tricky. Restarting the the daemon (while it is already running) would rewrite the Manual settings files to its original land. In other words, restarting the Manual daemon would reset all the custom settings you saved.

Fustigate Aliases

Create shortcuts add together the following bash aliases to /home/user/.bash_aliases

          sudo nano /home/user/.bash_aliases
          alias t-first='sudo service manual-daemon beginning'          alias t-cease='sudo service transmission-daemon stop'          alias t-reload='sudo service transmission-daemon reload'          alias t-list='transmission-remote -n 'manual:transmission' -fifty'          alias t-basicstats='manual-remote -n 'transmission:transmission' -st'          alias t-fullstats='transmission-remote -northward 'transmission:transmission' -si'
          source /domicile/user/.bash_aliases

Example

          user@SVR:~$ t-listing

will run

transmission-remote -n 'transmission:manual' -fifty

Spider web Interface

With your browser you can now add torrents, download and seed. Yous can too configure many manual settings.

          http://server-ip:9091

Port Forward

There are many options but ane of the more important one's is port forwarding

Cheque your ports are open

Edit

2015-02-08 10_49_13-.png

Port Frontwards

TransmissionWebConfig.png

If you port says "closed" y'all will need to configure your internet router to forward the correct port to your Transmission server/client. Google "How to port forward"

If you don't utilize "Port Frontward" another option is "UPnP". In one case again this depends on yous cyberspace router setup.

Control Line Interface

With a headless server full control of Transmission requires CLI

Manual Create

Create a torrent file with manual CLI. Torrent files can be generated from either a single file or directories. The case below is a directory example

          transmission-create -o /var/lib/transmission-daemon/downloads/files.torrent -c "My comments" -t udp://tracker.openbittorrent.com:80 -t udp://open up.demonii.com:1337 -t udp://tracker.coppersurfer.tk:6969 -t udp://tracker.leechers-paradise.org:6969 ~/torrent/complete/

-o /var/lib/transmission-daemon/downloads/files.torrent

New torrent name and where to store the torrent

-c "My comments"

Any comments to be attached to the file

-t udp://tracker.openbittorrent.com:fourscore

-t udp://open.demonii.com:1337

-t udp://tracker.coppersurfer.tk:6969

-t udp://tracker.leechers-paradise.org:6969

Trackers for the torrents, more than ane tracker is recommended in instance ane or more than goes down.

~/torrent/consummate/

Directory to be made into a torrent. If a single file is required use this format "/var/lib/transmission-daemon/downloads/MyFile.txt"

For more information about "transmission-create"

          transmission-create -h

Add together a Torrent

To add a torrent to the daemon, use this control:

manual-remote -a [path to file].torrent

          transmission-remote -n 'transmission:transmission' -a /var/lib/manual-daemon/downloads/files.torrent

Torrent Information

Brandish information about torrent's being downloaded

Help data

          transmission-remote -h

List all torrents

Note Authentication is required

manual-remote -n 'username:password' -l

          transmission-remote -due north 'transmission:transmission' -fifty

Basic Stats All Torrents

          transmission-remote -n 'transmission:transmission' -st

Full Stats All Torrents

          manual-remote -northward 'transmission:transmission' -si

Torrent #iii Full Stats

          transmission-remote -n 'transmission:transmission' -t 3 -f

Torrent #3 Summary Stats

          transmission-remote -north 'transmission:transmission' -t 3 -i

Manual Control

Get-go all torrents

          manual-remote -n 'transmission:transmission' -s

Finish all torrents

          transmission-remote -n 'transmission:manual' -S

Offset a specific torrent

transmission-remote -s [hash]

          transmission-remote -n 'transmission:transmission' -due south -t 3

Stop a specific torrent

transmission-remote -S [hash]

          transmission-remote -due north 'transmission:transmission' -S -t 3

Remove all torrents

          transmission-remote -n 'transmission:transmission' -r

Remove a specific torrent

manual-remote -r [hash]

          transmission-remote -n 'transmission:transmission' -r -t 3

Get hashes for all torrents

          manual-remote -n 'transmission:transmission' -i

Quit the daemon

          manual-remote -due north 'transmission:manual' -q

Source: https://help.ubuntu.com/community/TransmissionHowTo

Posted by: espinozaexuld1949.blogspot.com

0 Response to "How To Change Transmission Fluid 2002 Chevy Trailblazer"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel