Results 1 to 3 of 3

Thread: Can't write to my own home folder w/o elevation

  1. #1
    Join Date
    Aug 2010
    Beans
    3

    Can't write to my own home folder w/o elevation

    This is my first time configuring server Linux (10.04). So far, I have created only one user login for administration. I've noticed I can't write to my own home folder without elevating to root status. This means that almost any process I launch needs to be run with sudo, even creating a text file.

    I can see that the user and group for my /home/username folder are both "root", I'm assuming there is a reason. I'm pretty sure adding my login name to the "root" group would have unintended security consequences, such as being able to edit configuration files without elevation. Can I change the owner or the group on my home folder without making those files inaccessible to system processes that expect to access them (since under Ubuntu, my user login is a surrogate root account). I.E., is there a reason editing the content of my own root folder should require elevation?

  2. #2
    Join Date
    Mar 2008
    Location
    Harrisburg, PA
    Beans
    276
    Distro
    Ubuntu Mate

    Re: Can't write to my own home folder w/o elevation

    Try right-clicking and going into properties. There should be an option for security that you can change.

  3. #3
    Join Date
    Feb 2009
    Location
    Brisbane
    Beans
    24
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Can't write to my own home folder w/o elevation

    your problem is interesting, your home dir should be owned by you. to change it just run the command

    sudo chown username.usergroup /home/username -R
    sudo chmod 700 /home/username -R.

    doing this will fix the home dir permissions but may cause issues if some custom apps or services have been setup to access files in youe home dir. I would be fixing the home dir permission then fixing the apps and services that may fail due to the updated home dir permission.

    Good luck, cheers

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •