Packages Flashcards
displays installed and available http packages
dnf list 'http*'
search for packages with “web server” in their name, summary, and description fields
dnf search all ‘web server’
retrieves information about the dnf httpd package, including needed disk space for installation
dnf info httpd
displays packages that match the specified path name
dnf provides /var/www/html
obtains and installs a software package, including any dependencies
dnf install httpd
installs all relevant updates
dnf update
list all installed and available kernels
dnf list kernel
show the kernel release and additional information
uname -a
show the kernel version and release
uname -r
removes an installed software package, including any supported packages
dnf remove httpd