Re: [gentoo-user] Kernel drivers and modules list

2020-05-18 Thread Dr Rainer Woitok
Volker, Raphael, and All,

On Sunday, 2020-05-17 20:33:22 +0200, Volker Schneider wrote:

> ...
> I have a good manual for kernel config.
> I saved the website of 'Firas Khalil Khana' called 'dotslashlinux'

You can still read all 18 parts of that documentation online at

   
http://web.archive.org/web/20180226135953/https://www.dotslashlinux.com/post/the-linux-kernel-configuration-guide-part-1-introduction/

Sincerely,
 Rainer



Re: [gentoo-user] Kernel drivers and modules list

2020-05-17 Thread Dale
Raphael MD wrote:
> Hello everyone,
>
> I’ve booted my system with a gentoo live cd, just to figure out my
> system drivers and modules to configure the kernel, because it’s
> difficult to realize what drive my intel Ethernet card uses and many
> others.
>
> Are there  some command to extract that list to configure the kernel?
>
> In fact, are there some manual to help to configure the kernel in the
> best way?
>
>  Usually I configure my Zen processor, put my schedule, and set
> preemptive kernel to low latency and put out every other drive.
>
> Thanks!
>
> -- 
> M.S. Raphael Mejias Dias
> ​Nuclear Engineer | Reactors
>
> Secure e-mail: raphael.mejias.d...@protonmail.com
> 
> PGP Key for raph...@gmail.com :
> https://pgp.mit.edu/pks/lookup?op=get&search=0x87BC5A746072F951


Generally a person installs from some sort of Linux bootable device, CD,
DVD, USB stick or something.  If everything works as it should, the
easiest way I know to get a list of drivers, lspci -k should work.  If
you want to narrow down to the drivers themselves, you can do it like this:


root@fireball / # lspci -k | grep driver
    Kernel driver in use: pcieport
    Kernel driver in use: pcieport
    Kernel driver in use: pcieport
    Kernel driver in use: ahci
    Kernel driver in use: ohci-pci
    Kernel driver in use: ehci-pci
    Kernel driver in use: ohci-pci
    Kernel driver in use: ehci-pci
    Kernel driver in use: piix4_smbus
    Kernel driver in use: snd_hda_intel
    Kernel driver in use: ohci-pci
    Kernel driver in use: pcieport
    Kernel driver in use: ohci-pci
    Kernel driver in use: ehci-pci
    Kernel driver in use: k10temp
    Kernel driver in use: fam15h_power
    Kernel driver in use: nvidia
    Kernel driver in use: snd_hda_intel
    Kernel driver in use: xhci_hcd
    Kernel driver in use: r8169
    Kernel driver in use: dmfe
    Kernel driver in use: ahci
root@fireball / #


At that point, you can use those names to search for the driver and
enable them.  That's the way I've done it in the past and it gives you a
very high chance of a working kernel for all hardware.  If you want to
see what each driver drives, just leave off the grep part.

Hope that helps.

Dale

:-)  :-) 


Re: [gentoo-user] Kernel drivers and modules list

2020-05-17 Thread Ashley Dixon
On Sun, May 17, 2020 at 02:47:33PM -0300, Raphael MD wrote:
> I’ve booted my system with a gentoo live cd, just to figure out my system
> drivers and modules to configure the kernel, because it's difficult to
> realize what drive my intel Ethernet card uses and many others.
> 
> Are there some command to extract that list to configure the kernel?

Sorry if I'm misunderstanding you here, but it seems like [1] might be of  help,
providing you can access the details of your connected devices with `lspci`  and
`lsusb`.

For example, if I wanted to set up my Ethernet card, I would run

$ `lspci | grep -i ethernet`
00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (2)
I218-V (rev 05)

and then use "Intel" (vendor) and "I218-V" (name) at [1] to find that  I  needed
to  enable  CONFIG_E1000E,  CONFIG_ETHERNET,  and  CONFIG_NET_VENDOR_INTEL  [2].

[1] https://linux-hardware.org/index.php?view=search
[2] https://linux-hardware.org/index.php?id=pci:8086-15a1-1043-85c4

-- 

Ashley Dixon
suugaku.co.uk

2A9A 4117
DA96 D18A
8A7B B0D2
A30E BF25
F290 A8AA



signature.asc
Description: PGP signature


Re: [gentoo-user] Kernel drivers and modules list

2020-05-17 Thread Volker Schneider
Raphael MD schrieb:
> Hello everyone,
>
> I’ve booted my system with a gentoo live cd, just to figure out my
> system drivers and modules to configure the kernel, because it’s
> difficult to realize what drive my intel Ethernet card uses and many
> others.
>
> Are there  some command to extract that list to configure the kernel?
>
> In fact, are there some manual to help to configure the kernel in the
> best way?
>
>  Usually I configure my Zen processor, put my schedule, and set
> preemptive kernel to low latency and put out every other drive.
>
> Thanks!
>
> -- 
> M.S. Raphael Mejias Dias
> ​Nuclear Engineer | Reactors
>
> Secure e-mail: raphael.mejias.d...@protonmail.com
> 
> PGP Key for raph...@gmail.com :
> https://pgp.mit.edu/pks/lookup?op=get&search=0x87BC5A746072F951


Hi Raphael,

I have a good manual for kernel config.
I saved the website of 'Firas Khalil Khana' called 'dotslashlinux'

I can send it to you via mail.

Please tell me.

--Volker--



Re: [gentoo-user] Kernel drivers and modules list

2020-05-17 Thread Mark Knecht
On Sun, May 17, 2020 at 10:48 AM Raphael MD  wrote:
>
> Hello everyone,
>
> I’ve booted my system with a gentoo live cd, just to figure out my system
drivers and modules to configure the kernel, because it’s difficult to
realize what drive my intel Ethernet card uses and many others.
>
> Are there  some command to extract that list to configure the kernel?
>
> In fact, are there some manual to help to configure the kernel in the
best way?
>
>  Usually I configure my Zen processor, put my schedule, and set
preemptive kernel to low latency and put out every other drive.
>
> Thanks!

https://superuser.com/questions/287371/obtain-kernel-config-from-currently-running-linux-system


[gentoo-user] Kernel drivers and modules list

2020-05-17 Thread Raphael MD
Hello everyone,

I’ve booted my system with a gentoo live cd, just to figure out my system
drivers and modules to configure the kernel, because it’s difficult to
realize what drive my intel Ethernet card uses and many others.

Are there  some command to extract that list to configure the kernel?

In fact, are there some manual to help to configure the kernel in the best
way?

 Usually I configure my Zen processor, put my schedule, and set preemptive
kernel to low latency and put out every other drive.

Thanks!

-- 
M.S. Raphael Mejias Dias
​Nuclear Engineer | Reactors

Secure e-mail: raphael.mejias.d...@protonmail.com
PGP Key for raph...@gmail.com:
https://pgp.mit.edu/pks/lookup?op=get&search=0x87BC5A746072F951