sudo update-apt-xapian-indexIf that doesn't work, be sure to try both the quick search box as well as the traditional search box.
Sources
Unbutu Forums
sudo update-apt-xapian-indexIf that doesn't work, be sure to try both the quick search box as well as the traditional search box.
java -jar /opt/pdfsam/pdfsam-1.0.3.jarNote that the name of the file will depend on what version you download.
deb http://ppa.launchpad.net/transmissionbt/ubuntu hardy main
If you are using intrepid, just replace intrepid for hardy in the line above. See the download site for more explanation.
gpg --keyserver keyserver.ubuntu.com --recv 976b5901365c5ca1
gpg --export --armor 976b5901365c5ca1 | sudo apt-key add -
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install transmission-cli
transmission-daemonAfter you have executed it, it might be a good idea to restart after this is done. The purpose of starting the daemon is to make sure you get some folders and files in your home directory.
/home/username/.config/transmission-daemon/settings.jsonIt should look something like this to begin with:
"blocklist-enabled": 0,You want to change it so it looks something like this:
"download-dir": "\/home\/anyone",
"download-limit": 100,
"download-limit-enabled": 0,
"encryption": 1,
"max-peers-global": 200,
"peer-port": 51422,
"pex-enabled": 1,
"port-forwarding-enabled": 0,
"rpc-authentication-required": 0,
"rpc-password": "",
"rpc-port": 9091,
"rpc-username": "",
"rpc-whitelist": "127.0.0.1",
"upload-limit": 100,
"upload-limit-enabled": 0
"blocklist-enabled": 1,As you can see, the first change is on the "blocklist-enabled" line. You are changing 0 to 1. This is obviously to enable blocklists. If you have something like moblock running, you can leave this as 0. I will discuss setting up blocklists further below. The second change is to the "rpc-whitelist" line. You basically need to add the ip address from which you will be accessing the server. The example listed above assumes your ip address will begin with 192.168.1. Throw in a * to cover everything else. To allow all ip addresses, you could probably add something like "*.*" although I have not tested this. In any even, change "192.168.1.*" to suit your individual ip address.
"download-dir": "\/home\/anyone",
"download-limit": 100,
"download-limit-enabled": 0,
"encryption": 1,
"max-peers-global": 200,
"peer-port": 51422,
"pex-enabled": 1,
"port-forwarding-enabled": 0,
"rpc-authentication-required": 0,
"rpc-password": "",
"rpc-port": 9091,
"rpc-username": "",
"rpc-whitelist": "127.0.0.1,198.168.1.*",
"upload-limit": 100,
"upload-limit-enabled": 0
sudo nano /etc/init.d/transmission-daemonWhen the blank file comes up, paste in the script you copied from the transmission web page and hit save.
sudo nano /home/yournamegoeshere/transmission-blocklistThen paste in the text, save, and exit.
http://serveripaddress:9091/transmissionIf that doesn't work, try:
http://serveripaddress:9091/transmission/web/Note also that you have the appropriate port open on your firewall. You shouldn't need the 9091 port open unless accessing the server from outside of your network, but you will need to open the peer port noted in your setting file described above. In that example, the port is 51422.