Monday, September 07, 2020

Check if package is installed in Ubuntu/Debian/Mint

To check if a package is installed on Ubuntu/Debian/Mint, do:

$: dpkg -s dkms

This will display information if dkms is installed.

Reference(s):
http://www.cyberciti.biz/faq/find-out-if-package-is-installed-in-linux/


No comments:

CPP Quick Guide

Basics Hello world User input While loop If statement For loop Switch statement Read file using ifstream Write to a file using ofstr...