First of all: all dilberts_left_nut said is true and good.
geekness wrote:I found this package, which I can install, but im not sure if I need to install the dependencies first?
http://packages.debian.org/sid/transmissionThen what if those dependencies have dependencies and so on.
.
The debian package management system takes care of dependencies. That is one of it's main purposes, it not _the main purpose.
The dependencies are listed in the file called debian/control, and if you type:
apt-get install transmission
then all dependencies listed there will be installed too (and the dependencies of the dependencies too, for the same reason).
You really don't know the dirty details how that works. A solid knowledge of aptitude or apt-get or synaptic (or whatever frontends are out there) is really sufficient:
apt-get install packagename #will install
apt-get remove packagenaem #will remove
apt-get remove --purge packagename # will remove more "brutal", i alwayse use that
apt-get autoremove # will remove <i-am-not-sure-what>, apt will inform you when you have to run it
apt-cache search pattern # will search for a pattern, duh
apt-cache search pattern1 pattern2 # will search for two patterns
apt-get clean # will clean the cache
apt-get update # will update the cache, run it before most other actions
apt-get upgrade # will upgrade nearly all installed packages, run it regulary (on sid daily is perfect)
apt-get dist-upgrade # upgrade everything including the kitchen sink, run it regulary too.
Not exact but loose info, but that is more than you will need to keep a system up and running, install remove, day in and out.
Also, will it be possible to access a GUI for transmission, instead of SSH.
- I am quite sure transmission has a webinterface. You will need to enable it and can access it from the browser. If tranmission hasn't got it, then other torrent apps have it for sure
- from-to a UNIX box you would or could do:
ssh -fX user@server transmission
In other words: You will forward the X protocol over ssh (hence -X, -f simply puts it in the background -kinda).
- you can use tightvncserver on the server (the machine you want to access) and xtightvncviewer on the client (the machine you connect from).
As you use putty you seem to access from Windows. In that case VNC is a good solution
rtorrent is said to be a very good tool for the job, but it is cli and anything but intuitive.
http://www.debianuserforums.org/viewtop ... cc80d7f0ddI am not sure if that is what you want to do (not much in torrents), but it sure gives good ideas _if you use rtorrent.
You probably will want to look into the application called "screen"
(ssh to the server, start a screen session, start any process which might take a while, say an upgrade, detach from the screen session, exit ssh, go back an hour later and attach again to the screen session).
Sid, like said, is a bad choice. If you plan to use go on using it (say you are not in the mood to reinstall): You will have to upgrade - at minimum - once a week. You will have a good backup solution (that anyway, but sure on Sid). You will keep the system as minimal as possible (the less apps, the less can break). You will be able to live with "problems" for a day or two and not panic (Sid has bugs, but they often get solved fast. Patience helps a lot).
But yeah: for starters Wheezy (better: the actual stable) is the way to go.
Why not use the raspberry to download torrents? Seems perfect for the job.
In case it was not clear: I don't know your device and i don't know torrents but the very basics. That have been very general tips or ideas.