Start with the mount command with no parameters:
mount
Quote:
|
/dev/hda1 on / type ext3 (rw)
|
Look for the (rw) on the same line with the partition that has your affected /home directories. Mine happens to be the same one as /, but on another computer my /home/username is its own partition.
For more details you can try these:
Quote:
dmesg|grep hda1
cat /var/log/syslog|less
cat /var/log/messages|less
|
You can replace hda1 with any partition name to get its details.
Good luck