Results 1 to 3 of 3

Thread: .dbus folder and permissions.

  1. #1
    Join Date
    Sep 2007
    Location
    Germany
    Beans
    1,106
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Question .dbus folder and permissions.

    The hidden .dbus folder in /home/username/ seems to be new in 8.04. I noticed that it (and the content) is set to root-only permission. Is there a reason for this? Or differently put, is it safe to change the permissions to the user? (It messes up my rsync script -- and I don't know how to exclude the .dbus folder from the backup.)

  2. #2
    Join Date
    Sep 2007
    Location
    Germany
    Beans
    1,106
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: .dbus folder and permissions.

    I figured out how to exclude the path from the rsync backup:

    Code:
    rsync -r -t -v --progress --delete --exclude '.dbus' /home/username/ /media/disk/backup-calico/home/username/
    This works. Still odd that the system puts a root-only folder in the user's home partition.

  3. #3
    Join Date
    Feb 2007
    Location
    Romania
    Beans
    Hidden!

    Re: .dbus folder and permissions.

    My .dbus folder is owned by my user and has 0700 permissions.
    I think you can change safely the owner, group and permissions:
    Code:
    sudo chown -R <username>\: ~/.dbus
    chmod -R 0700 ~./.gbus

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
  •