module 3 7/9 package manager chocolatey Flashcards
What command line do you use in Windows PowerShell to download a piece of software and its dependencies? install sysinternals
Install-Package -Name sysinternals
software audit
an examination of a software program to evaluate its quality, progress, and compliance with standards, regulations, and plans.
How can you verify that you have installed the package in the PowerShell CLI?
Get-Package
how would I check that I have the package, sysinternals, installed on PowerShell?
Get-Package -name sysinternals
How can you install a package on Windows through the PowerShell CLI?
Uninstall-Package -Name
How would I uninstall the sysinternals package from my computer using the PowerShell CLI?
Uninstall-Package -Name sysinternals
What is NuGet?
a package and software manager written using .NET and .NET framework, since 2010
What is chocolatey?
a package manager that works with Windows. The packages are provided, maintained, and moderated by the community.
What is APT?
The Advanced Package tool, a package manager used in Ubuntu
What tool in Ubuntu installs package dependencies, makes it easier to find packages we can install, cleans up packages we don’t need anymore, and more?
APT
What does the Win+x shortcut do?
brings up a utility bar over start menu with lots of useful tools
what is tree in Linux?
displays directories in a tree format
What is the APT used to extend?
the functionality of a package
what command would I use to install gimp on Ubuntu?
sudo apt install gimp
What does apt do first when you type,
sudo apt install gimp?
it grabs the package dependencies for gimp automatically and asks if we want to install it, all of the stuff that is needed. Then you can confirm or deny.
what does the
0 upgraded, 18 newly installed, 0 to remove, and 16 not upgraded
line after the apt command mean?
it shows you what we and apt are doing with packages on the machine.