• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Placing bittorrent @ background in Linux

ugh

Platinum Member
Hi folks,

Anyone here knows how to let BT continue d/l at the background in Linux? I've tried it but it just stops. I've tried 2 ways, launching the proggie with the & sign and running the proggie and then doing CTRL-Z and bg.

BTW, I used both the headless and curses script.

TIA.
 
I always use the ncurses one and leave it run in the fg so I can see the transfer rates. I also use screen so I can have many shells running in one xterm.
 
Hmm... Thanks for the reply. I guess I'll install X coz my previous installation got a bit stuffed up 🙂
 
if you dont want to see the output:
./blah >& /dev/null &

I don't remember if it is >& or &>. Nothinman can tell you 😉.
 
Originally posted by: CTho9305
if you dont want to see the output:
./blah >& /dev/null &

I don't remember if it is >& or &>. Nothinman can tell you 😉.

./blah > /dev/null

if you don't want to see stderr, then:

./blah > /dev/null 2>&1

not sure what this has to do with running things in the background though. 😛
 
Originally posted by: BingBongWongFooey
Originally posted by: CTho9305
if you dont want to see the output:
./blah >& /dev/null &

I don't remember if it is >& or &>. Nothinman can tell you 😉.

./blah > /dev/null

if you don't want to see stderr, then:

./blah > /dev/null 2>&1

not sure what this has to do with running things in the background though. 😛

I'm assuming the problem is that even though he runs "blah &", it still dumps crap on the screen. redirecting it to the bit bucket makes it invisible.
 
n0cmonkey: Thanks for the info. Will look into this command.

CTho9305: Ditto. Redirecting output in anyway doesn't help 🙂
 
Back
Top