Stamets [Mirror]@startrek.website to memes@lemmy.world · 1 year agoThe rage is realstartrek.websiteimagemessage-square123fedilinkarrow-up11.15Karrow-down119
arrow-up11.14Karrow-down1imageThe rage is realstartrek.websiteStamets [Mirror]@startrek.website to memes@lemmy.world · 1 year agomessage-square123fedilink
minus-squarePossibly linux@lemmy.ziplinkfedilinkEnglisharrow-up70·edit-21 year agoThat’s why I log in as root and edit all files to have open permissions. Next I disable all security settings and kernel security mitigations. After that my system is finally mine.
minus-squareAgent641@lemmy.worldlinkfedilinkarrow-up13·1 year agoYou can’t spell ‘yours’ without ‘ours’, comrade.
minus-squareHonytawk@lemmy.ziplinkfedilinkarrow-up4·1 year agoBut you can say ‘yours’ without saying ‘ours’, cause English is 3 languages in a trench coat.
minus-squarepsud@aussie.zonelinkfedilinkarrow-up7·1 year agoI’m picturing all the services complaining their keys are insecure, their configs are insecure
minus-squarevsh@lemm.eelinkfedilinkEnglisharrow-up3·edit-21 year agoOne way ticket to destroy your filesystem. You’ll fear launching any app in case it overwrites something important. Don’t do this.
minus-squareBestBouclettes@jlai.lulinkfedilinkarrow-up1·1 year agoYou can easily fix it with : sudo rm -rf --no-preserve-root /
minus-squareKühe sind toll@feddit.delinkfedilinkarrow-up2·1 year agoWhat does the a+rw part does? I guess the r is for recursively changing the permissions.
minus-squareBestBouclettes@jlai.lulinkfedilinkarrow-up3·edit-21 year agoHere is the breakdown: chmod is the command to change the mode of the files (-rwxrwxrwx) -R is the recurse flag, a means “all”, you can also have u, g or o (respectively user, group and others) instead. + is add (you can remove with -), rw is the permissions (rw of rwx) 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.
minus-squareSorryQuick@lemmy.calinkfedilinkarrow-up1·1 year agoAdd read/write permissions to all. -R is the recursive part.
That’s why I log in as root and edit all files to have open permissions. Next I disable all security settings and kernel security mitigations.
After that my system is finally mine.
* our system is finally ours
You can’t spell ‘yours’ without ‘ours’, comrade.
But you can say ‘yours’ without saying ‘ours’, cause English is 3 languages in a trench coat.
sudo chmod -R a+rw /
I’m picturing all the services complaining their keys are insecure, their configs are insecure
One way ticket to destroy your filesystem. You’ll fear launching any app in case it overwrites something important. Don’t do this.
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.
Russia: “Da, comrade, all yours.”