Originally posted by tomcloyd
View Post
I'd suggest the following:
1. check that the filesystem is not full, you can get the list with "df -H", identify your home partition device (/dev/sda4), and see the usage%
2. If the disk is not full, you can chown the home filesystem to tomc just in case there are root owned files in the subdirs:
(replace the "/path/to/your/home/partition/root" with the actual path to your home filesystem /media/kubuntu/etc.
Scratch that, that'll probably not work from the livecd, since there is no user tomc on the live media, you could replace tomc:tomc with 1000:1000 if tomc's userid is 1000, but it would less error prone and safer to run the commands in recovery mode:
1. mount /home
2. chown -R tomc:tomc /home/tomc
Comment