Otter Raft@lemmy.ca to Linux@lemmy.mlEnglish · 4 days agobreaking down how Linux file permissions work | Bread on Penguinswww.youtube.comexternal-linkmessage-square8fedilinkarrow-up1115arrow-down14
arrow-up1111arrow-down1external-linkbreaking down how Linux file permissions work | Bread on Penguinswww.youtube.comOtter Raft@lemmy.ca to Linux@lemmy.mlEnglish · 4 days agomessage-square8fedilink
minus-squareohshit604@sh.itjust.workslinkfedilinkEnglisharrow-up15·edit-23 days ago Understanding chmod and chown are foundational knowledge to actually being able to call oneself a “Linux user” I gotcha, sudo chmod -R 777 /*, where we’re going we don’t need permission.
minus-squareMTK@lemmy.worldlinkfedilinkarrow-up11·3 days agoCareful! This is very dangerous, you should instead do sudo chown -R user:user /* Where “user” is your username, and then do chmod -R 770 /* This will make sure that only your user has all the access! (Don’t do this)
I gotcha,
sudo chmod -R 777 /*
, where we’re going we don’t need permission.Careful! This is very dangerous, you should instead do
sudo chown -R user:user /*
Where “user” is your username, and then do
chmod -R 770 /*
This will make sure that only your user has all the access!
(Don’t do this)