breaking down how Linux file permissions work | Bread on Penguins (www.youtube.com)
from otters_raft@lemmy.ca to linux@lemmy.ml on 23 Aug 17:00
https://lemmy.ca/post/50306419

#linux

threaded - newest

funkajunk@lemmy.world on 24 Aug 00:05 next collapse

Understanding chmod and chown are foundational knowledge to actually being able to call oneself a “Linux user”. Great video!

ohshit604@sh.itjust.works on 24 Aug 03:01 collapse

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.

MTK@lemmy.world on 24 Aug 10:19 collapse

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)

Kazel@lemmy.dbzer0.com on 24 Aug 10:03 next collapse

A video for something basic which can be explained in a few sentences… Won’t watch that shit, future is doomed…

mactan@lemmy.ml on 24 Aug 13:59 collapse

the few times Ive seen perms really go awry was from new users running sudo on everything, even wine. definitely took a fair bit of cleanup