I saw that using the .autostart directory in a Linux system makes applications start automatically when the system is started. The problem is that the .autostart directory is not present in my Ubuntu system although I run this command : find / -type d -name '.autostart'

So how to create the .autostart directory and where to create it appropriately ?

link|improve this question
same as any other directory. – Dan Nov 11 '11 at 6:57
feedback

migrated from stackoverflow.com Nov 12 '11 at 6:41

This question came from our site for professional and enthusiast programmers.

1 Answer

up vote 1 down vote accepted

You create it with mkdir in the home directory.

mkdir ~/.autostart
link|improve this answer
feedback

Your Answer

 
or
required, but never shown