How to execute one or more commands and scripts when ubuntu shutdown? Is there any script like /etc/profile and ~/.bashrc at system starting? I know linux shutdown may have many causes, in addition to dealing with the kill signal, where can I get for this reason?

link|improve this question
feedback

2 Answers

There is a ~/.bash_logout file that executes when you log out of Ubuntu 11.04 I am not sure, but assume there is a similar script in 10.04 Hope this helps.

link|improve this answer
Yes, it is the same script ~/.bash_logout in 10.04 also. – user379997 Dec 16 '11 at 9:57
This is useful advice, but not exactly what OP asks. User logout is not the same as system shutdown. – Brian Cain Dec 16 '11 at 14:58
feedback

Is there any script like /etc/profile and ~/.bashrc at system starting?

The SysV Init scripts (/etc/init.d/*) are invoked at startup. A trivial/easy way to invoke some activity at system startup is to put it into /etc/init.d/local (/etc/rc.local for some other distros). See also: RcLocalHowto.

How to execute one or more commands and scripts when ubuntu shutdown?

It sounds as if you want to create a real init script that gets started on entering runlevels X-Z and stopped on exiting them. See also: UbuntuBootupHowto.

I know linux shutdown may have many causes, in addition to dealing with the kill signal, where can I get for this reason?

To do this noninteractively is not straightforward. You can grep through the system logs, looking for indications from shutdown.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.