The default permissions for /home in ubuntu is rwxr-xr-x or 755. For /home/user it is also rwxr-xr-x or 755. At least it is on my installation.
To change the file permissions of the home directory, open a terminal and run something like:
chmod 700 /home/user
Remember to change the 700 to the chmod value that you actually want to set.
If you do not own the directory, you need root privileges to change the permissions. Ubuntu uses sudo for that:
sudo chmod 700 /home/user
When you run this command it will ask for the administrator password.
skelandhome-dirs– osgx Jun 29 '11 at 16:42