Is there an easy way to schedule downloads through the 'Ubuntu Software Center'?
For example: mark a number of programs for download and installation between 2am and 8am?
|
Is there an easy way to schedule downloads through the 'Ubuntu Software Center'? For example: mark a number of programs for download and installation between 2am and 8am? | ||||
|
show 2 more comments
feedback
|
This question came from our site for professional and enthusiast programmers.
|
You could try using an | |||
|
feedback
|
|
The 'Ubuntu Software Center' doesn't specifically allow scheduling of software downloads/installation. However, the general purpose task scheduler crontab can be used to download/install programs. For example: to download/install eclipse at 2:30am:
Crontab will run at 2:30am and download/install eclipse. Any terminal outputs from this activity will be sent to Tip: this site allows you to automatically build crontab entries: | ||||
|
feedback
|
/etc/cron.daily/aptfor details. :) – sarnold May 14 '11 at 3:13/etc/cron.daily/that runsapt-get install packagename. I think it won't do anything if the package is up to date, and will install it without hassle if it isn't. Not sure about thedpkg-reconfigurestuff. You can have the/etc/cron.daily/aptfile download the latest package lists for you. – sarnold May 14 '11 at 3:40crond) that can schedule anything to do anything with extremely flexible time specifications. :) The difficulty with your case is that you only want a subset of packages to be updated -- the configuration is very well prepared to upgrade everything or nothing, but middle grounds require a slightly further step. :) – sarnold May 15 '11 at 0:56