LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-05-2019, 10:25 AM   #1
removed027
LQ Newbie
 
Registered: Dec 2019
Posts: 5

Rep: Reputation: Disabled

aaa

Last edited by removed027; 12-15-2019 at 04:15 PM.
 
Old 12-05-2019, 10:32 AM   #2
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Have you got the kernel-firmware package installed?

You can check with your package manager, if the kernel-firmware package isn't installed, install it.
 
1 members found this post helpful.
Old 12-05-2019, 10:40 AM   #3
removed027
LQ Newbie
 
Registered: Dec 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
aaa

Last edited by removed027; 12-15-2019 at 04:14 PM.
 
Old 12-05-2019, 10:43 AM   #4
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hugo.account View Post
Code:
Linux hugo-pc 4.19.0-5-amd64 #1 SMP Debian 4.19.37-5+deb10u2 (2019-08-08) x86_64 GNU/Linux
In Debian this used to be in a package in the "non-free" repository called "firmware-linux-nonfree". I had to look it up, but that particular firmware seems to be now in "firmware-misc-nonfree" and "firmware-linux-nonfree" now seems to be a meta package.

https://packages.debian.org/buster/f...e-misc-nonfree
https://packages.debian.org/buster/f...-linux-nonfree

You'll need to enable the repository and install via the package manager.
 
1 members found this post helpful.
Old 12-05-2019, 10:45 AM   #5
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
You have to run the package manager as root.
 
Old 12-05-2019, 10:45 AM   #6
removed027
LQ Newbie
 
Registered: Dec 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
aaa

Last edited by removed027; 12-15-2019 at 04:14 PM.
 
Old 12-05-2019, 10:48 AM   #7
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hugo.account View Post
How would I enable this repository as a source?
Edit the sources.list file: https://wiki.debian.org/SourcesList#..._a_text_editor

The only way is to read the documentation available - hunting for easy copy and paste solutions doesn't usually go well.

//edit: There is an example sources.list on the same page: https://wiki.debian.org/SourcesList#...e_sources.list

Again, do not blindly copy and paste - if you want further guidance, you will need to post the contents of your existing sources.list file.

Last edited by cynwulf; 12-05-2019 at 10:51 AM.
 
Old 12-05-2019, 10:48 AM   #8
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Quote:
Originally Posted by hugo.account View Post
...Is there a way to give my current user the permissions denied here?
Yes, you could use "sudo" to do that, but it would be quicker and easier to run apt under the root user account instead (and that's likely the reason for the "permission denied" error messages).
 
Old 12-05-2019, 11:25 AM   #9
removed027
LQ Newbie
 
Registered: Dec 2019
Posts: 5

Original Poster
Rep: Reputation: Disabled
aaa

Last edited by removed027; 12-15-2019 at 04:14 PM.
 
Old 12-05-2019, 08:16 PM   #10
jsbjsb001
Senior Member
 
Registered: Mar 2009
Location: Earth, unfortunately...
Distribution: Currently: OpenMandriva. Previously: openSUSE, PCLinuxOS, CentOS, among others over the years.
Posts: 3,881

Rep: Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063Reputation: 2063
Yes, but it would defeat the point of having a user privilege system if you made your normal unprivileged user account a "root-like" account. So if you care about your system's security, then I would advise against doing that. It's even worse running a web browser with root privileges. So it's a bad idea to make a "root-like" account, and while I could tell you how to do it; I'm not going to encourage it by saying how to do it. It's just a bad idea, period.

When you use the su command to "switch" to the root user account, it still requires knowing what root's password is. Whereas sudo on the other hand is designed to solve this problem, and therefore you would just use your normal unprivileged user account's password instead. sudo also creates it's own auditing trail in it's own log file, so if you did attempt to run a command your normal user hasn't been sudo'd to be allowed to run, sudo would record that in it's own log file.

So for example, if you had an office network, and you had a network administrator, their deputy, and say some technicians under them that needed to be able to start/stop services, install/update software; then you could "sudo" them permission to do just those things that would otherwise require root user privileges to do using sudo. Therefore they would not need to know what the root user password is, and could not do anything else outside of starting/stopping services, installing/updating software, and sudo would once again record it if they did try using sudo to do anything outside of the permissions they'd be granted with sudo - this is the problem sudo was designed to solve. Some distributions like the *buntu's use sudo to actually replace the root user account, which is an abuse of sudo IMHO - as that's not what it was designed for.

So just switch to root with the su command (eg. su -) unless you have good reason to configure sudo and sudo your normal user.
 
1 members found this post helpful.
Old 12-06-2019, 05:56 AM   #11
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hugo.account View Post
Is there a way to just make the user I use all the time to be the root? I don't like not being permitted to do everything on my own machine.
To expand on jsbjsb001's post above - it's a common fallacy of users new to UNIX like systems to assume that they are not being "permitted" to do things on their own computer, due to running as a restricted user as standard.

Aside from it being dangerous, as described above, many user space software is simply not designed to run as the root user and will break if you attempt to do so or cause some session/configuration files to effectively become owned by root - meaning that the user will encounter errors when trying to run that programme.

It will become that appealing shortcut which invariably leads to a broken mess.

It's better to think about the operations when you would need to be root and that will be in your case only when doing package management tasks - and then think of all the occasions when you don't need to be - everything else.
 
1 members found this post helpful.
  


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
How to log internal-sftp chroot jailed users access log to /var/log/sftp.log file LittleMaster Linux - Server 0 09-04-2018 03:45 PM
Linux Server is not sending log messages in customize format to remote log collector samkh Linux - Server 3 03-27-2017 08:32 AM
[SOLVED] SELinux not sending some log message? fanoflq Linux - Newbie 2 02-23-2017 10:00 AM
kernel log format in /var/log/kern.log sinu_nayak2001 Linux - Newbie 2 10-07-2009 08:34 AM
message, message.1 in /var/log/ can be deleted for space? phpsharma Linux - Newbie 4 11-17-2004 12:23 PM

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

All times are GMT -5. The time now is 02:16 PM.

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