5,710
edits
Changes
→Appendices
=Appendices=
==Enable/Disable Apport==
<syntaxhighlight lang="bash">sudo -i gedit /etc/default/apport</syntaxhighlight>
A file editor is now open. Change enabled from "0" to a "1" so it looks like this:
enabled=1
To turn it off make it:
enabled=0
Now save your changes and close the file editor.
You can also use sudo service apport stop to turn it off temporarily.
==find and delete subdirectories==
find and delete subdirectory with certain name:
<syntaxhighlight lang="bash">find . -type d -name thumbs -exec ls {} \;</syntaxhighlight>