Stamets@startrek.website to memes@lemmy.world · 11 months agoThe rage is realstartrek.websiteimagemessage-square124fedilinkarrow-up11.13Karrow-down119
arrow-up11.12Karrow-down1imageThe rage is realstartrek.websiteStamets@startrek.website to memes@lemmy.world · 11 months agomessage-square124fedilink
minus-squareKühe sind toll@feddit.delinkfedilinkarrow-up2·11 months agoWhat does the a+rw part does? I guess the r is for recursively changing the permissions.
minus-squareBestBouclettes@jlai.lulinkfedilinkarrow-up3·edit-211 months 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·11 months agoAdd read/write permissions to all. -R is the recursive part.
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.