So i have this centos7 container and everything seems fine.
Now, i dont know if this is proxmox related (probably not) but i have installed some software and it checks the permissions of /dev/{null,random,urandom} and they are not how it expects them to be.
From what i understand the owner should be root but its not.
So if i run this:
ls -als /dev/{null,random,urandom}
I get :
0 crw-rw-rw- 1 65534 65534 1, 3 Feb 29 09:11 /dev/null
0 crw-rw-rw- 1 65534 65534 1, 8 Feb 29 09:11 /dev/random
0 crw-rw-rw- 1 65534 65534 1, 9 Feb 29 09:11 /dev/urandom
So if i try this :
chown root:root /dev/null
I get :
chown: changing ownership of '/dev/null': Operation not permitted
So i really dont undestant what this is used for and what i can do to have it changed.
Now, i dont know if this is proxmox related (probably not) but i have installed some software and it checks the permissions of /dev/{null,random,urandom} and they are not how it expects them to be.
From what i understand the owner should be root but its not.
So if i run this:
ls -als /dev/{null,random,urandom}
I get :
0 crw-rw-rw- 1 65534 65534 1, 3 Feb 29 09:11 /dev/null
0 crw-rw-rw- 1 65534 65534 1, 8 Feb 29 09:11 /dev/random
0 crw-rw-rw- 1 65534 65534 1, 9 Feb 29 09:11 /dev/urandom
So if i try this :
chown root:root /dev/null
I get :
chown: changing ownership of '/dev/null': Operation not permitted
So i really dont undestant what this is used for and what i can do to have it changed.