LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-22-2016, 11:46 AM   #31
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50

Quote:
Originally Posted by TxLonghorn View Post
You can create standard users who do not have sudo privileges, and you can create administrative users who do have sudo rights.
I'll be wanting a standard user. Presumably a standard user will have ownership of $HOME?
Where can I find out what the default sudo privilages are? That way I can decide what further ownerships/permissions I need to assign to the user for convenient use of the OS.

Quote:
Do you want to automount sda6 and sda7 everytime you boot, or do you just want to mount them whenever you need them?
I'll just want to mount them whenever I need them.
 
Old 02-22-2016, 12:04 PM   #32
TxLonghorn
Member
 
Registered: Feb 2004
Location: Austin Texas
Distribution: Mandrake 9.2
Posts: 702

Rep: Reputation: 231Reputation: 231Reputation: 231
Quote:
Originally Posted by Higgsboson View Post
I'll be wanting a standard user.
The first user created during installation is always an administrative user with sudo rights. A new user created later is a standard user, by default, unless you intentionally make that user an administrative user.
Quote:
Originally Posted by Higgsboson View Post
Presumably a standard user will have ownership of $HOME?
Of course, every user is the owner of their own user directory ($HOME).
Quote:
Originally Posted by Higgsboson View Post
Where can I find out what the default sudo privilages are?
I can't think of anything offhand that you can't do with "sudo". "sudo" allows you to do anything root can do.
"default sudo privileges" is like saying "default root privileges"
If you are talking about identifying administrative and standard users, run the command:
Code:
id user
That will list the groups that user has. If sudo is listed, the user has sudo rights.
 
Old 02-22-2016, 12:50 PM   #33
TxLonghorn
Member
 
Registered: Feb 2004
Location: Austin Texas
Distribution: Mandrake 9.2
Posts: 702

Rep: Reputation: 231Reputation: 231Reputation: 231
If you want a folder on sda6 to be accessable to "user" right-click on that folder > Open in terminal and enter:
Code:
sudo chown -R user:user .
Don't forget the period . at the end of the command.

Last edited by TxLonghorn; 02-22-2016 at 12:52 PM.
 
1 members found this post helpful.
Old 02-22-2016, 05:09 PM   #34
sgosnell
Senior Member
 
Registered: Jan 2008
Location: Baja Oklahoma
Distribution: Debian Stable and Unstable
Posts: 1,943

Rep: Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542Reputation: 542
Quote:
The first user created during installation is always an administrative user with sudo rights.
Sudo doesn't work that way in Debian. Sudo isn't even installed by default. Each user has to be added to sudo, none have that ability by default. Sudo doesn't necessarily give you every ability root has, it can be granted by individual rights. Different distros approach sudo differently, and Debian's is very conservative, very different from Ubuntu, and most other distros. I admit that the most common way for Debian users to grant sudo power is with ALL=(ALL:ALL) ALL, just like root, but it's not required, nor advised.
 
Old 02-22-2016, 05:11 PM   #35
TxLonghorn
Member
 
Registered: Feb 2004
Location: Austin Texas
Distribution: Mandrake 9.2
Posts: 702

Rep: Reputation: 231Reputation: 231Reputation: 231
Thank you for the correction. I was going by experience with Ubuntu-based distros.
 
Old 02-23-2016, 12:12 AM   #36
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Quote:
Originally Posted by TxLonghorn View Post
If you want a folder on sda6 to be accessable to "user" right-click on that folder > Open in terminal and enter:
Code:
sudo chown -R user:user .
Don't forget the period . at the end of the command.
Thank you, this technique is very useful to know.
One last point though: for all directories owned solely by root, can I use the GUI to undertake rwx actions as root? This is not normally possible because I've logged in as user.
Of course, I can open a terminal at anytime, log in as root, and then undertake rwx actions via the command line. However, is it possible to do the same rwx actions as root via the GUI?
 
Old 02-23-2016, 04:52 AM   #37
hydrurga
LQ Guru
 
Registered: Nov 2008
Location: Pictland
Distribution: Linux Mint 21 MATE
Posts: 8,048
Blog Entries: 5

Rep: Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925Reputation: 2925
Quote:
Originally Posted by Higgsboson View Post
Thank you, this technique is very useful to know.
One last point though: for all directories owned solely by root, can I use the GUI to undertake rwx actions as root? This is not normally possible because I've logged in as user.
Of course, I can open a terminal at anytime, log in as root, and then undertake rwx actions via the command line. However, is it possible to do the same rwx actions as root via the GUI?
Yes, you can. The command you use depends on your desktop environment. I use KDE, so call programs with kdesudo e.g.

Code:
kdesudo kate
brings up my text editor as root after asking me for the password.

The Gnome equivalent is gksudo.
 
Old 02-23-2016, 06:08 AM   #38
TxLonghorn
Member
 
Registered: Feb 2004
Location: Austin Texas
Distribution: Mandrake 9.2
Posts: 702

Rep: Reputation: 231Reputation: 231Reputation: 231
Quote:
Originally Posted by Higgsboson View Post
Of course, I can open a terminal at anytime, log in as root, and then undertake rwx actions via the command line. However, is it possible to do the same rwx actions as root via the GUI?
Yes. If you right-click on a folder, you could see an option listed "Open As Root" or "Open As Administrator". That depends on which file manager you are using.
Or you can open a root file manager (GUI) from the terminal. What file manager are you using?
 
Old 02-24-2016, 09:39 AM   #39
Higgsboson
Member
 
Registered: Dec 2014
Location: UK
Distribution: Debian 8 Cinnamon/Xfce/gnome classic Debian live usb
Posts: 508

Original Poster
Rep: Reputation: 50
Sorry for the late reply everyone. My 6 year old ide hard drive finally died on me. Thankfully I had moved most of the home files to a newer sata hard drive.
I'll be getting hold of a ssd now to return things back to normal.
 
Old 02-24-2016, 10:05 AM   #40
TxLonghorn
Member
 
Registered: Feb 2004
Location: Austin Texas
Distribution: Mandrake 9.2
Posts: 702

Rep: Reputation: 231Reputation: 231Reputation: 231
Hard drives do fail sometimes...
Good job on having a backup!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I give added permissions when using su to run a command as another user? PastulioLive Linux - Server 4 01-12-2016 10:56 AM
How to give an user the printing permissions? Xeratul Debian 4 05-23-2014 05:15 AM
How to Give Read Write Permissions to a Particular User on a Folder Nanosuz Linux - General 1 08-16-2013 10:21 AM
how to give user bigger write permissions nephish Linux - Security 5 12-15-2006 12:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:07 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration