1128
The rage is real
(startrek.website)
1. Be civil
No trolling, bigotry or other insulting / annoying behaviour
2. No politics
This is non-politics community. For political memes please go to !politicalmemes@lemmy.world
3. No recent reposts
Check for reposts when posting a meme, you can only repost after 1 month
4. No bots
No bots without the express approval of the mods or the admins
5. No Spam/Ads
No advertisements or spam. This is an instance rule and the only way to live.
sudo chmod -R a+rw /
I'm picturing all the services complaining their keys are insecure, their configs are insecure
You can easily fix it with :
sudo rm -rf --no-preserve-root /
What does the a+rw part does? I guess the r is for recursively changing the permissions.
Here is the breakdown:
I prefer changing permissions this way instead of using absolute values (0777 for instance) as it's easier to reverse if you made a mistake.
Add read/write permissions to all. -R is the recursive part.