Debian
From Server Knowledge Base
Revision as of 12:36, 11 March 2013 by Rootadminacc (talk | contribs) (Created page with "== MySQL == It is commonly easier to use this to dump and restore MySQL, instead of using mysqldump on the new server via .sql files: <pre>mysqldump --default-character-set=...")
MySQL
It is commonly easier to use this to dump and restore MySQL, instead of using mysqldump on the new server via .sql files:
mysqldump --default-character-set=binary --user=root --password=EnterPasswordHere databasename > dbdump.txt
mysql --silent --local --password=EnterPasswordHere DatabaseName < dbdump.txt
Transmission
The easiest way to get this working is by doing:
vim /etc/apt/sources.list
Add in this line:
deb http://ftp.uk.debian.org/debian sid main
Do apt-get update , then do:
apt-cache show transmission-cli | grep Version apt-cache show transmission-common | grep Version apt-cache show transmission-daemon | grep Version
apt-get install transmission-cli transmission-common transmission-daemon