How to autoHow to run a file at boot on Linux mint 16.

thatmoney

Honorable
Dec 26, 2013
184
0
10,710
I am fairly new to Linux and so I decided to download conky to customize my desktop but, the problem is that the last step requires you to set the file to boot at start up. I have no idea on how do this, any idea?
 

thatmoney

Honorable
Dec 26, 2013
184
0
10,710
Sure, Click the start menu and then type System settings in the search field. Then when system settings is open in the bottom right hand corner of the window is startup programs and click on that. From there when the window pops up you can add or remove programs you want to run on startup.
 

stillblue

Honorable
Nov 30, 2012
1,163
0
11,660
Another way to do it is with a cron job. There are several frontends available but none are as complete as the command line. Cron lets you schedule times for things to run or stop, even activate at boot. One thing to note is that if it requires sudo powers you type sudo crontab -e and for normal launches simply crontab -e.

For example, if I add
30 5 30 3 apt-get install calligraflow dia -y --force-yes --fix-mi
to sudo crontab -e the computer will download and install calligraflow and dia at 5:30AM the 30th of march.