module 3 7/9 package manager chocolatey Flashcards

1
Q

What command line do you use in Windows PowerShell to download a piece of software and its dependencies? install sysinternals

A

Install-Package -Name sysinternals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

software audit

A

an examination of a software program to evaluate its quality, progress, and compliance with standards, regulations, and plans.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you verify that you have installed the package in the PowerShell CLI?

A

Get-Package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

how would I check that I have the package, sysinternals, installed on PowerShell?

A

Get-Package -name sysinternals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you install a package on Windows through the PowerShell CLI?

A

Uninstall-Package -Name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How would I uninstall the sysinternals package from my computer using the PowerShell CLI?

A

Uninstall-Package -Name sysinternals

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is NuGet?

A

a package and software manager written using .NET and .NET framework, since 2010

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is chocolatey?

A

a package manager that works with Windows. The packages are provided, maintained, and moderated by the community.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is APT?

A

The Advanced Package tool, a package manager used in Ubuntu

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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?

A

APT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the Win+x shortcut do?

A

brings up a utility bar over start menu with lots of useful tools

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is tree in Linux?

A

displays directories in a tree format

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the APT used to extend?

A

the functionality of a package

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what command would I use to install gimp on Ubuntu?

A

sudo apt install gimp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does apt do first when you type,
sudo apt install gimp?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what does the
0 upgraded, 18 newly installed, 0 to remove, and 16 not upgraded
line after the apt command mean?

A

it shows you what we and apt are doing with packages on the machine.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

how would you remove gimp from your machine? Linux.

A

Sudo apt remove gimp

18
Q

What command removes dependencies for us if we use it to remove packages? remove gimp

A

sudo apt remove gimp

19
Q

why don’t we have to search for every software we want online when it comes to linux?

A

package repository software

20
Q

What are servers that act like a central storage location for packages?

A

Repositories

21
Q

What can I do to my machine so it references a package or list of packages?

A

I can give it the address of the packages. I can add the link to the packages.

22
Q

what does the register -package source commandlet do?

A

register the location of a package for Windows PowerShell to install

23
Q

Where do you add a package or repository link in Linux?

A

/etc/apt/sources.list

24
Q

When will my computer know where to check for software?

A

if I explicitly add the package or repository link to the /etc/apt/sources.list file

25
Q

what will I see in the /etc/apt/sources.list file?

A

I’ll see a bunch of addresses that lead to repositories and packages.

26
Q

What does Ubuntu include to help you install the base OS packages?

A

several repository sources.

27
Q

What are PPAs?

A

personal package archives.

28
Q

What are hosted on Launchpad servers

A

PPAs

29
Q

What is a website owned by canonical limited? Allows open-source software developers to develop, maintain, and distribute software.

A

Launchpad

30
Q

How can I add a PPA?

A

like a depository link.

31
Q

What software isn’t vetted, and can sometimes contain defective or malicious software?

A

PPA software.

32
Q

how should you update your packages? what commands.

A

apt update, apt upgrade

33
Q

what command updates the list of packages in your repositories so you get the latest software available, but won’t install or upgrade packages for you?

A

apt update.

34
Q

What command should you use when you have an updated list of packages? It will automatically install any outdated packages for you automatically

A

apt upgrade.

35
Q

What should you run before installing new software to make sure you are getting the most up-to-date software in your repositories?

A

apt-update

36
Q

what should you run to install any available updated packages on your machine/

A

apt upgrade

37
Q

how can you learn more about apt commands?

A

–help

38
Q

what are other uses for apt?

A

list package, search package, get information about package.

39
Q

What PowerShell command will install the package, “awesomesoftware” from the Chocolatey software source?

A

Install-Package -Name awesomesoftware -Source chocolatey

40
Q
A