Looking around a fresh install and I noticed that /root has group and ownership different than I am used to seeing. The group and owner are both set to the user that I created during the install, rather than root/root as I am used to. I’ve changed them on my system, but wanted to make it known.
1 Like
Thanks for reporting, we’ll look into it a.s.a.p.
1 Like
Thanks for reporting. This will be fixed in the next release.
all users should run as su:
find /root -type d -exec chmod -R 755 {} \;
chown root:root -R /root
3 Likes
Well running that as sudo just gives me a long list of “operation not permitted”.
2 Likes
well there’s only 1 file in /root and it’s called install.txt
@Beardedgeek72 I did
cd /
sudo su
then ran the 2 commands fernando posted
OK
2 Likes
Exactly. When I ran as root it worked, not when I ran with sudo.
3 Likes
i removed the “sudo” part. Thanks!
3 Likes
find /root -type d -exec chmod -R 755 {} \;
chown root:root -R /root
This command seemed to work correctly for me.
Thanks.
Lawrence
2 Likes