Find the answer to your Linux question:
Results 1 to 5 of 5
How do I add root permissions to my user account? I want full permissions for all computers in my house, without having to get up and go to the other ...
  1. #1
    Linux User
    Join Date
    Apr 2007
    Posts
    289

    Add root permissions to user...

    How do I add root permissions to my user account?

    I want full permissions for all computers in my house, without having to get up and go to the other room and change permissions for the file, then go back to the other room again.

    I just created a partition, as THIS user, THIS machine, rebooted, and cannot create a folder on the partition I just created. UGH. No more of this stuff...

    Anyone point me in the right direction?

  2. #2
    Linux User hatebreed's Avatar
    Join Date
    May 2010
    Posts
    332
    go to settings/administration/users and groups, this should allow you to change whatever you want. however not keeping a user and root user isn't very secure, so do this at your own risk.

  3. #3
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Quote Originally Posted by buccaneere View Post
    I just created a partition, as THIS user, THIS machine, rebooted, and cannot create a folder on the partition I just created. UGH. No more of this stuff...

    Anyone point me in the right direction?
    You can set permissions permanently in the /etc/fstab file. This is a line I use to access my Music collection. Anyone can read/write the partition. Notice the umask=0
    Code:
    /dev/sda5		 /media/music	vfat	 	auto,defaults,umask=0 0 0
    See the command
    Code:
    man fstab
    Use Q to quit.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  4. #4
    Linux User
    Join Date
    Apr 2007
    Posts
    289
    Quote Originally Posted by hatebreed View Post
    go to settings/administration/users and groups, this should allow you to change whatever you want. .
    I found that GUI, but I didn't see exactly what to set, that makes me digital boss on these machines.

    An occasional password prompt is not a bother...

  5. #5
    Linux User hatebreed's Avatar
    Join Date
    May 2010
    Posts
    332
    /dev/sda5 /media/music vfat auto,defaults,umask=0 0 0
    I had to use this to get read write on a fat partition

    Code:
    /dev/hda1   /media/windows   vfat   user,fmask=0111,dmask=0000   0   0
    otherwise it wouldn't gvie write permission

    https://help.ubuntu.com/community/Au...ountPartitions

    check this out for the full rundown

Posting Permissions

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