How to list uninstall hardware and how to install it? [closed]
Clash Royale CLAN TAG#URR8PPP
up vote
-2
down vote
favorite
I am a debian newbie and wanted to know, how can I get list uninstall hardware on from my computer.
How can I install the drivers for it?
debian
closed as unclear what you're asking by Rui F Ribeiro, Jeff Schaller, GAD3R, dr01, X Tian May 17 at 15:57
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
 |Â
show 2 more comments
up vote
-2
down vote
favorite
I am a debian newbie and wanted to know, how can I get list uninstall hardware on from my computer.
How can I install the drivers for it?
debian
closed as unclear what you're asking by Rui F Ribeiro, Jeff Schaller, GAD3R, dr01, X Tian May 17 at 15:57
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28
 |Â
show 2 more comments
up vote
-2
down vote
favorite
up vote
-2
down vote
favorite
I am a debian newbie and wanted to know, how can I get list uninstall hardware on from my computer.
How can I install the drivers for it?
debian
I am a debian newbie and wanted to know, how can I get list uninstall hardware on from my computer.
How can I install the drivers for it?
debian
asked May 17 at 10:53
zero_coding
1105
1105
closed as unclear what you're asking by Rui F Ribeiro, Jeff Schaller, GAD3R, dr01, X Tian May 17 at 15:57
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Rui F Ribeiro, Jeff Schaller, GAD3R, dr01, X Tian May 17 at 15:57
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28
 |Â
show 2 more comments
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28
 |Â
show 2 more comments
1 Answer
1
active
oldest
votes
up vote
1
down vote
List all installed packages
With version and architecture information, and description, in a table:
dpkg-query -l
Package names only, one per line:
dpkg-query -f '$binary:Packagen' -W
List packages using a search pattern
It is possible to add a search pattern to list packages:
dpkg-query -l 'foo*'
Show status of all packages on the system
To check the status of all packages on your system:
dpkg-query -l '*' | less
This will show all packages (one line each) that are in various stages of installation (including packages that were removed but not purged) and packages just available from a repository. To show only installed packages:
dpkg -l | grep '^.i'
you can filter with grep to get results for "i".
You can also use:
apt-cache pkgnames
Or you can use dpkg to list the current package selections (the desired state of either installed or to be installed packages):
dpkg --get-selections
And store the list of software to a file called /backup/package-selections
dpkg --get-selections >/backup/package-selections
During the installation it says:iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?
â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
List all installed packages
With version and architecture information, and description, in a table:
dpkg-query -l
Package names only, one per line:
dpkg-query -f '$binary:Packagen' -W
List packages using a search pattern
It is possible to add a search pattern to list packages:
dpkg-query -l 'foo*'
Show status of all packages on the system
To check the status of all packages on your system:
dpkg-query -l '*' | less
This will show all packages (one line each) that are in various stages of installation (including packages that were removed but not purged) and packages just available from a repository. To show only installed packages:
dpkg -l | grep '^.i'
you can filter with grep to get results for "i".
You can also use:
apt-cache pkgnames
Or you can use dpkg to list the current package selections (the desired state of either installed or to be installed packages):
dpkg --get-selections
And store the list of software to a file called /backup/package-selections
dpkg --get-selections >/backup/package-selections
During the installation it says:iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?
â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
add a comment |Â
up vote
1
down vote
List all installed packages
With version and architecture information, and description, in a table:
dpkg-query -l
Package names only, one per line:
dpkg-query -f '$binary:Packagen' -W
List packages using a search pattern
It is possible to add a search pattern to list packages:
dpkg-query -l 'foo*'
Show status of all packages on the system
To check the status of all packages on your system:
dpkg-query -l '*' | less
This will show all packages (one line each) that are in various stages of installation (including packages that were removed but not purged) and packages just available from a repository. To show only installed packages:
dpkg -l | grep '^.i'
you can filter with grep to get results for "i".
You can also use:
apt-cache pkgnames
Or you can use dpkg to list the current package selections (the desired state of either installed or to be installed packages):
dpkg --get-selections
And store the list of software to a file called /backup/package-selections
dpkg --get-selections >/backup/package-selections
During the installation it says:iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?
â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
add a comment |Â
up vote
1
down vote
up vote
1
down vote
List all installed packages
With version and architecture information, and description, in a table:
dpkg-query -l
Package names only, one per line:
dpkg-query -f '$binary:Packagen' -W
List packages using a search pattern
It is possible to add a search pattern to list packages:
dpkg-query -l 'foo*'
Show status of all packages on the system
To check the status of all packages on your system:
dpkg-query -l '*' | less
This will show all packages (one line each) that are in various stages of installation (including packages that were removed but not purged) and packages just available from a repository. To show only installed packages:
dpkg -l | grep '^.i'
you can filter with grep to get results for "i".
You can also use:
apt-cache pkgnames
Or you can use dpkg to list the current package selections (the desired state of either installed or to be installed packages):
dpkg --get-selections
And store the list of software to a file called /backup/package-selections
dpkg --get-selections >/backup/package-selections
List all installed packages
With version and architecture information, and description, in a table:
dpkg-query -l
Package names only, one per line:
dpkg-query -f '$binary:Packagen' -W
List packages using a search pattern
It is possible to add a search pattern to list packages:
dpkg-query -l 'foo*'
Show status of all packages on the system
To check the status of all packages on your system:
dpkg-query -l '*' | less
This will show all packages (one line each) that are in various stages of installation (including packages that were removed but not purged) and packages just available from a repository. To show only installed packages:
dpkg -l | grep '^.i'
you can filter with grep to get results for "i".
You can also use:
apt-cache pkgnames
Or you can use dpkg to list the current package selections (the desired state of either installed or to be installed packages):
dpkg --get-selections
And store the list of software to a file called /backup/package-selections
dpkg --get-selections >/backup/package-selections
answered May 17 at 11:42
SivaPrasath
4,74212445
4,74212445
During the installation it says:iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?
â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
add a comment |Â
During the installation it says:iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?
â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
During the installation it says:
iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?â zero_coding
May 17 at 12:30
During the installation it says:
iwlwifi-7265D-26.ucode iwlwifi-7265D-25.ucode
etc... What does it mean?â zero_coding
May 17 at 12:30
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
share the complete result in ur question.
â SivaPrasath
May 17 at 12:58
add a comment |Â
Uninstalling hardware or drives?
â SivaPrasath
May 17 at 10:55
I want to install my wifi, so I need hardware driver.
â zero_coding
May 17 at 11:06
First, check the compatibility of your wifi device with Linux. if it so you can download the Debian package from the net.
â SivaPrasath
May 17 at 11:14
How to do it? Can you please show it to me?
â zero_coding
May 17 at 11:22
Possible duplicate of How to install WiFi and graphics driver in Debian 9?
â SivaPrasath
May 17 at 11:28