I'm heading to write a script that parses known devices, that are 'important' to the core system.
It then adds the result to a list, and installs that list in a later process.
The script, as of now, just parses the search strings, and prints out the result.
As i have not that many hardware, or dont cant think of more atm, i'd like to ask for your help.
Please run this code in a terminal, and post its result:
PHP Code:
# | Variables
todoDriver="Audio Graphic VGA Display Wireless Ethernet"
dgpu="Intel Ati nVidia"
dnetworks="Realtek Broadcom"
dsound="Intel"
# | Parsing
for devItem in $todoDriver ; do
firstline="Parsing for $devItem devices..."
#echo $firstline
tempResult=$(lspci|grep $devItem)
echo "$devItem :-___-: $tempResult"
done
The results will let me continue with this, it shall only install drivers that are shipped with Fedora.
And determine which one's are needed (and their additional tools, if any) and which not.
If you have an addition what is essential for the system, dont kow, something like harddisk that needs a special drivers, please freel free to add it here.
Thank you.
PS:
Using now lspci, but later on, parsing either dmesg or dmidecode or even proc, but as you have a running system now, lspci is the easiest and quickest to get many information.