Huh, I thought it's a file, but I saw it's a dir. What's up with that odd value?
So how i understood from the link it's that in those 4k all file names in that directory are stored. That space can grow if necessary but won't shrink automatically. So i assume that op has alot of files in that directory
I believe directories contain pointers to the nodes under them, so they get bigger with lots of things in them.
chmod 755 ~/Downloads
If OP did it recursively they would also need -R
man chmod?
man, chmod!
Chmod my man!
chmod 644 -R Downloads
chmod +x Downloads
Your welcome
Edit: I just copied the permissions on the other folders
sudo chmod 755 ~/Downloads
assuming you don't need a recursive solution for subdirectories
-R to recurse. Good for chmod and chown
useful for
chown
, less so forchmod
: I almost never want my dirs and files with the same permissions, and I made this mistake a few times.Don't give all your files execution permissions.