![]() |
|
|
|||||||
| Home | Forums | Register | Rules & FAQ | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
Other UNIX.COM Threads You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Is it possible..when ftp session disconnect and it can automatic run again? | happyv | Shell Programming and Scripting | 1 | 12-21-2006 06:34 PM |
| after server disconnect ftp tranfer...... | happyv | Shell Programming and Scripting | 2 | 12-20-2006 05:47 PM |
| where to put an application if i want to start it on start up | shukla_chanchal | Linux | 3 | 11-03-2005 06:12 PM |
| Force user to disconnect if no activity | MarkN | UNIX for Advanced & Expert Users | 3 | 06-07-2004 11:22 AM |
| How do I start a program when I start my Computer? | l008com | UNIX for Dummies Questions & Answers | 1 | 06-23-2002 05:30 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
several options:
Put it in the background and make sure it doesn't respond to the Hang-Up signal: $ nohup wget http://your.download.location/something.file & Or, you can use a program called 'screen': $ screen $ wget http://your.download.location/something.file Once your download starts, tell screen to disconnect by typing Ctrl-a Ctrl-d. The job will continue to run and you may log out. You may reconnect at a later time and type 'screen -r' to reconnect. See the screen man page for more info. |