Otter Raft to Linux@lemmy.mlEnglish • 4 days agobreaking down how Linux file permissions work | Bread on Penguinswww.youtube.comexternal-linkmessage-square8fedilinkarrow-up1114arrow-down14cross-posted to: linux@programming.devlinux@lemmy.world
arrow-up1110arrow-down1external-linkbreaking down how Linux file permissions work | Bread on Penguinswww.youtube.comOtter Raft to Linux@lemmy.mlEnglish • 4 days agomessage-square8fedilinkcross-posted to: linux@programming.devlinux@lemmy.world
minus-square@ohshit604@sh.itjust.workslinkfedilinkEnglish15•edit-24 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-square@MTK@lemmy.worldlinkfedilink11•4 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)