===== Linux FAQs ===== **Q.** How do I change my directory permissions? **A.** Permissions are changed by the command ''chmod''. To open read+write permissions to everyone to your user directory, start from your home directory: cd .. chmod -R 777 is your Linux username. ''-R'' implies recursive permissions on all folders in the tree. To turn permissions back off, use command from outside of your home directory chmod -R 700 For a better understanding of how permissions work in Linux, use Google search. ---- **Q.** How do I kill a non-responsive process? **A.** Follow the guide [[https://www.tecmint.com/how-to-kill-a-process-in-linux/ |here]]