Week 3/4 Flashcards
Microsoft install package (.msi)
Used to guide a program called the Windows Installer in the installation, maintenance, and removal of programs on the Windows operating system
What OS and file extension are Debian packages used?
Ubuntu and file extension is .deb
What is the command to install a .deb package?
dpkg -i
Side loading
The act of installing mobile apps directly without the used of an app store
Cache for mobile apps
The reserves storage on a mobile device for the app. By clearing the cache for an app you have restored it to its original settings and signed out of any accounts on it
Archive
Comprised of one or more files that’s compressed into a single file
Package archives
The core or source software files that are compressed into one file
Popular archive file extensions
.rar
.zip
.tar
What is the windows command for PowerShell to archive files?
Compress-Archive -Path [source] [archive_name]
How to extract a file in Linux
7z e [archive]
How to create an archive in Linux
tar -cf [archive_name] [file1] [file2] etc…
- c is to create the archive
- f tells bash that the name is what’s coming next
Having dependencies
Counting on other pieces of software to make an application work, since one bit of code depends on another, in order to work
Library
A way to package a bunch of useful code that someone else wrote
What is a cmdlet?
Any windows command that uses the verb-noun format
Get-Help
Find-Package
Package managers
Come with the works to make package installation and removal easier, including installing package dependencies
Installing something from the repository in Linux?
sudo apt install [file]
Personal Package Archive (PPA)
A software repository for uploading source packages to be built and published as an Advanced Packaging Tool (APT) repository by Launchpad
In Ubuntu, where are repository sources listed?
They are found in the /etc/apt/sources.list file
What is Launchpad?
Allows open source software developers to develop, maintain, and distribute software