









|
[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
[NMLUG] A couple of remote computing questions
On Sun, 2004-12-12 at 23:54, Tim Emerick wrote:
> I am running sshd on my home pc. I have a couple of questions regarding
> remote computing and backgrounding tasks....
I would think that it would be safe to do something like...
apt-get dist-upgrade >& /tmp/dist-upgrade.log & (csh variants)
apt-get dist-upgrade > /tmp/dist-upgrade.log 2>&1 (sh variants)
I'm pretty sure you can log out while these are running.
Then log back in, and type "tail -f /tmp/dist-upgrade.log"
to see how things are going.
If you re-direct the output to a file it should let you log out.
I think the dtach solution will be needed if you need to
log back in to supply input for interractions....
like if an upgrade script asks configuration questions.
--
Aaron Birenboim \ I have an inferiority complex,
Albuquerque, NM, USA \ but its not a very good one.
aaron at birenboim.com \
http://aaron.birenboim.com \
|
|