-
Notifications
You must be signed in to change notification settings - Fork 423
Happy gelo05 create app management #1341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
489aa9d
new aritice for Insatlling, Updating, and Removing Applications
HappyGelo05 b60e11c
Updated formatting and added terminal update instructions
HappyGelo05 ff74b0f
fix lint error
HappyGelo05 204c06e
new folder for app management photos
HappyGelo05 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,346 @@ | ||
| --- | ||
| title: Installing, Updating, and Removing Applications | ||
| description: > | ||
| Quick guide to installing, updating, and removing apps on your device. | ||
| keywords: | ||
| - Apps | ||
| - Install | ||
| - Update | ||
| - Remove | ||
| - Delete | ||
|
|
||
| facebookImage: /_social/article | ||
| twitterImage: /_social/article | ||
|
|
||
| hidden: false | ||
| section: pop | ||
| tableOfContents: true | ||
| --- | ||
|
|
||
| ## Installing & Uninstalling Applications via Terminal | ||
|
|
||
| Launch the Terminal `SUPER` + `T` to Install applications using a command line interface. Terminal commands instruct package managers to retrieve application installation packages from repositories. | ||
|
|
||
| ### Flatpaks & .Deb Files | ||
|
|
||
| **Flatpaks** will install a “containerized” version of the software. This means the software runs in its own sandbox, and the installation will include all dependencies and libraries required by the application. Flatpaks pull all dependencies from flathub.org, while installing with apt will pull from Ubuntu repos. | ||
|
|
||
| Substitute `[packagename]` with the desired application (do not include brackets in the command). | ||
|
|
||
| Apt install: | ||
|
|
||
| ```bash | ||
| apt install [packagename] | ||
| ``` | ||
|
|
||
| Apt uninstall: | ||
|
|
||
| ```bash | ||
| sudo apt remove [packagename] | ||
| ``` | ||
|
|
||
| Apt uninstall (alternative): | ||
|
|
||
| ```bash | ||
| sudo apt purge [packagename] | ||
| ``` | ||
|
|
||
| Flatpak install: | ||
|
|
||
| ```bash | ||
| flatpak install [packagename] | ||
| ``` | ||
|
|
||
| Flatpak uninstallL | ||
|
|
||
| ```bash | ||
| flatpak uninstall [packagename] | ||
| ``` | ||
|
|
||
| ## Updating POP!\_OS via Terminal | ||
|
|
||
| 1. Open a terminal by pressing `SUPER` + `T` and type the following commands: | ||
|
|
||
| ```bash | ||
| sudo apt update | ||
| ``` | ||
|
|
||
| ```bash | ||
| sudo apt dist-upgrade | ||
| ``` | ||
|
|
||
| 2. Answer `Y` and enter the password when prompted. | ||
|
|
||
|  | ||
|
|
||
| 3. If an error appears, read the error message and run any commands it suggests. | ||
|
|
||
|  | ||
|
|
||
| ## Pop!\_OS 24.04 | ||
|
|
||
| ### Installing an Application | ||
|
|
||
| Cosmic includes a graphical user interface (GUI) called the Cosmic Store for easy installation and management of open source applications. | ||
|
|
||
| 1. Open Cosmic Store by clicking the icon in the dock, or press `SUPER` and type “Cosmic Store”. | ||
|
|
||
|  | ||
|
|
||
| 2. Explore apps or type the application name in the search field. | ||
|
|
||
|  | ||
|
|
||
| 3. Select the system or flathub version. | ||
|
|
||
|  | ||
|
|
||
| ### Installing an Application Not Included in the Cosmic Store | ||
|
|
||
| The Cosmic Store does not include all applications available for installation in Pop!_OS. Use the web to search for and install additional applications. | ||
|
|
||
| 1. Search for the application download link and instructions online. | ||
|
|
||
|  | ||
|
|
||
| 2. Download the application. When given file options, choose 64 bit .deb as the file type. | ||
|
|
||
|  | ||
|
|
||
| 3. After downloading, go to the Downloads folder and double click the .deb file. | ||
|
|
||
|  | ||
|
|
||
| 4. Cosmic Store will open automatically and present you with the option to install the file. | ||
|
|
||
|  | ||
|
|
||
| ### Managing Repositories | ||
|
|
||
| Add, remove, and edit repositories using Repoman. Repoman allows users to add Personal Package Archives (PPAs). PPAs are created by developers to distribute software not included in default repositories. Users may want to add a PPA if their software is not included in the Pop!_Shop, or they may want to remove PPA’s after uninstalling a package. | ||
|
|
||
| **Caution:** Adding PPA’s allows users to install software that has not been validated by System76 or other trusted linux repositories. PPA’s may not be vetted against packages that introduce security vulnerabilities. Users should take caution and only add PPA’s that they trust. | ||
|
|
||
| 1. Press `SUPER` and search for “Repoman" | ||
|
|
||
|  | ||
|
|
||
| 2. Click on the Extra Sources tab. There will be options to add repositories with the Plus button. | ||
|
|
||
|  | ||
|
|
||
| ### Adding a Repository | ||
|
|
||
| 1. Click the plus button. | ||
|
|
||
|  | ||
|
|
||
| 2. Enter the source details for the repository and click Add. | ||
|
|
||
|  | ||
|
|
||
| 3. The repository will appear in the sources list. | ||
|
|
||
|  | ||
|
|
||
| ### Removing a Repository | ||
|
|
||
| Select a repository from the list and then click on the trashcan icon to delete the repository. | ||
|
|
||
|  | ||
|
|
||
| ### Launching Applications | ||
|
|
||
| Find and start installed applications using these four methods. | ||
|
|
||
| Use the Launcher to quickly find and launch installed applications. Pressing The `SUPER` key displays the Launcher. Search for applications by name, then hit `Enter` to launch the application. | ||
|
|
||
|  | ||
|
|
||
| View installed applications with Show Applications. Display installed applications by clicking Show Applications in the dock. | ||
|
|
||
|  | ||
|
|
||
|  | ||
|
|
||
| Find applications by clicking Applications in the upper left corner of the home screen. | ||
|
|
||
|  | ||
|
|
||
| ### Add Favorite Applications to the Dock | ||
|
|
||
| Add frequently used applications to the dock for quicker access. Applications that appear on the dock can be added or removed as favorites. | ||
|
|
||
|  | ||
|
|
||
| Pin applications to the dock by right clicking and selecting `Pin to App Tray`. | ||
|
|
||
|  | ||
|
|
||
| To remove applications from the dock, right-click the app and select `Pin to app Tray`. This will uncheck the option and remove the application from the dock. | ||
|
|
||
|  | ||
|
|
||
| ### Switching Between Running Applications | ||
|
|
||
| Use keyboard shortcuts to switch between running applications. | ||
|
|
||
| | Shortcut | Action | | ||
| | ----------------------------------------------------------------------- | ---------------------------------------- | | ||
| | <kbd>SUPER</kbd></kbd> + <kbd>Tab</kbd> | Switch apps | | ||
| | <kbd>SUPER</kbd> + <kbd>Tab</kbd> + <kbd>Shift</kbd> | Switch apps in reverse order | | ||
|
|
||
| ### Updating Installed Applications | ||
|
|
||
| Update Pop!_OS and installed applications using the Cosmic Store. | ||
|
|
||
| 1. Open the Cosmic Store by clicking the icon in the dock. Click `Updates` on the sidebar. | ||
|
|
||
| 2. Select `Update All`. | ||
|
|
||
|  | ||
|
|
||
| #### Updating via Terminal | ||
|
|
||
| ```bash | ||
| sudo apt update | ||
| ``` | ||
|
|
||
| ```bash | ||
| sudo apt upgrade | ||
| ``` | ||
|
|
||
| ## Pop!\_OS 22.04 | ||
|
|
||
| ### Installing an Application | ||
|
|
||
| Pop!_OS includes a GUI (Graphical User Interface) called the Pop!_Shop for easy installation and management of open source applications | ||
|
|
||
| 1. Open the Pop! Shop by clicking the rocket ship icon in the dock, or press SUPER and type “pop shop”. | ||
|
|
||
|  | ||
|
|
||
| 2. Explore apps in categories, or type the application name in the search field. | ||
|
|
||
|  | ||
|
|
||
| 3. Select the .deb or flatpak version. | ||
|
|
||
|  | ||
|
|
||
| 4. Click **Install** | ||
|
|
||
| ### Installing an Application Not Included in the Pop!_Shop (GUI) | ||
|
|
||
| The Pop!_Shop does not include all applications available for installation in Pop!_OS. Use the web to search for and install additional applications. | ||
|
|
||
| 1. Search for the application download link and instructions online. | ||
|
|
||
|  | ||
|
|
||
| 2. Download the application. When given file options, choose 64 bit .deb as the file type. | ||
|
|
||
|  | ||
|
|
||
| 3. After downloading, go to the Downloads folder and double click the .deb file. | ||
|
|
||
|  | ||
|
|
||
| 4. Open the file in Pop!_OS’s default handler for .deb files (Eddy). | ||
|
|
||
|  | ||
|
|
||
| 5. Click in Install, enter the user password if prompted. Install using Eddy. | ||
|
|
||
|  | ||
|
|
||
| ### Managing Repositories | ||
|
|
||
| Add, remove, and edit repositories using Repoman. Repoman allows users to add Personal Package Archives (PPAs). PPAs are created by developers to distribute software not included in default repositories. Users may want to add a PPA if their software is not included in the Pop!_Shop, or they may want to remove PPA’s after uninstalling a package. | ||
|
|
||
| **Caution:** Adding PPA’s allows users to install software that has not been validated by System76 or other trusted linux repositories. PPA’s may not be vetted against packages that introduce security vulnerabilities. Users should take caution and only add PPA’s that they trust. | ||
|
|
||
| 1. Access Repoman by launching the Pop!_Shop and click the `System Software Sources` or `Ctrl` + `S`. | ||
|
|
||
|  | ||
|
|
||
| 2. Click on the Extra Sources tab. There will be options to add repositories with the Plus button. | ||
|
|
||
|  | ||
|
|
||
| ### Adding a Repository | ||
|
|
||
| 1. Click the Plus button. | ||
|
|
||
|  | ||
|
|
||
| 2. Enter the source details for the repository and click Add. | ||
|
|
||
|  | ||
|
|
||
| 3. The repository will appear in the sources list. | ||
|
|
||
|  | ||
|
|
||
| ### Removing a repository | ||
|
|
||
| Select a repository from the list and then click on the trashcan icon to delete the repository | ||
|
|
||
|  | ||
|
|
||
| ### Launching applications | ||
|
|
||
| Find and start installed applications using these four methods. | ||
|
|
||
| Use the Launcher to quickly find and launch installed applications. Pressing The `SUPER` key displays the Launcher. Search for applications by name, then hit Enter to launch the application. | ||
|
|
||
|  | ||
|
|
||
| **Use a single command to start applications**. Pressing `Alt` + `F2` displays a prompt for running commands. Enter the exact name of the application, then hit **Enter**. | ||
|
|
||
|  | ||
|
|
||
| **View installed applications** with **Show Applications**. Display installed applications by clicking **Show Applications** in the dock. | ||
|
|
||
|  | ||
|
|
||
| Find applications by clicking Applications in the upper left corner of the home screen. | ||
|
|
||
|  | ||
|
|
||
| ### Add Favorite Applications to the dock | ||
|
|
||
| Add frequently used applications to the dock for quicker access. Applications that appear on the dock can be added or removed as favorites. | ||
|
|
||
|  | ||
|
|
||
| Pin applications to the dock by right clicking and selecting **Pin to Dash**. | ||
|
|
||
|  | ||
|
|
||
| Remove applications from the dock by right clicking and choosing Remove from Favorites. | ||
|
|
||
|  | ||
|
|
||
| ### Switching Between Running Applications | ||
|
|
||
| Use keyboard shortcuts to switch between running applications. | ||
|
|
||
| | Shortcut | Action | | ||
| | ----------------------------------------------------------------------- | ---------------------------------------- | | ||
| | <kbd>SUPER</kbd> + <kbd>Tab</kbd> | Switch apps | | ||
| | <kbd>SUPER</kbd> + <kbd>Tab</kbd> + <kbd>Shift</kbd> | Switch apps in reverse order | | ||
| | <kbd>SUPER</kbd> + <kbd>`</kbd> | Switch windows of current app | | ||
| | <kbd>SUPER</kbd> + <kbd>`</kbd> + <kbd>Shift</kbd> | Switch windows of current app in reverse order | | ||
|
|
||
| ### Updating Installed Applications | ||
|
|
||
| Update Pop!_OS and installed applications using the Pop!_Shop | ||
|
|
||
| 1. Open the Pop!_Shop by clicking the rocket ship icon in the dock. Click `Updates & Installed Software` in the top middle of the window. | ||
|
|
||
|  | ||
|
|
||
| 2. Select **Update All**. | ||
|
|
||
|  | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.