You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update content
* Add commands
* Fix lint issue
* Update wording to directly mention files that will be created
* Pop!_Shop > Pop Shop
Update to not mention Pop Shop but Ubuntu Store -- Software & Updates
Update both for Apt > APT
* Fix spelling and formatting
---------
Co-authored-by: Aaron Honeycutt <[email protected]>
Co-authored-by: Thomas Zimmerman <[email protected]>
Co-authored-by: thomas-zimmerman <[email protected]>
If your system complains about a failed upgrade, package manager conflicts, broken upgrades, or other package-related issues, there are several common fixes to these problems. Some package manager issues can be resolved with the graphical update program, but many require the command line. Try running these commands to fix your package manager:
24
24
@@ -112,11 +112,11 @@ apt-mark showhold
112
112
113
113
If the Terminal returns nothing, no packages are held.
114
114
115
-
If the Pop!_Shop indicates that some remote repositories can't be reached, open [Repoman](/articles/manage-repos-pop) and look in the **Extra Sources** page for the broken repository. Either disable or remove the repository, or search for the software vendor to determine what has happened to their software server. Sometimes the version of the repo (xenial, bionic, focal, groovy, etc) needs changed to match the current version of the operating system.
115
+
If the <u>Pop!_Shop</u> indicates that some remote repositories can't be reached, open [Repoman](/articles/manage-repos-pop) and look in the **Extra Sources** page for the broken repository. Either disable or remove the repository, or search for the software vendor to determine what has happened to their software server. Sometimes the version of the repo (xenial, bionic, focal, groovy, etc) needs changed to match the current version of the operating system.
116
116
117
117
## Flatpak
118
118
119
-
If the Pop!_Shop is showing an update available, but there are no updates listed on the update page, there may be a Flatpak runtime (a backend program that another Flatpak depends on) with an update available. Run these commands to update all Flatpaks and remove any Flatpak runtimes that are no longer required by any installed programs:
119
+
If the <u>Pop!_Shop</u> is showing an update available, but there are no updates listed on the update page, there may be a Flatpak runtime (a backend program that another Flatpak depends on) with an update available. Run these commands to update all Flatpaks and remove any Flatpak runtimes that are no longer required by any installed programs:
120
120
121
121
```bash
122
122
flatpak update
@@ -131,3 +131,22 @@ The program <u>Synaptic Package Manager</u> is a very powerful GUI frontend for
131
131
```bash
132
132
sudo apt install synaptic
133
133
```
134
+
135
+
## Sending information to support
136
+
137
+
The following commands will save the output to `upgrade.txt` and `sources.txt` so that they can be attached to support emails.
138
+
139
+
```bash
140
+
sudo apt clean | tee -a ~/upgrade.txt
141
+
sudo apt update -m | tee -a ~/upgrade.txt
142
+
sudo dpkg --configure -a | tee -a ~/upgrade.txt
143
+
sudo apt install -f | tee -a ~/upgrade.txt
144
+
sudo apt full-upgrade | tee -a ~/upgrade.txt
145
+
sudo apt autoremove --purge | tee -a ~/upgrade.txt
146
+
147
+
cat /etc/apt/sources.list | tee -a ~/sources.txt
148
+
cat /etc/apt/sources.list.d/*| tee -a ~/sources.txt
149
+
ls /etc/apt/sources.list.d/ | tee -a ~/sources.txt
150
+
cat /etc/apt/sources.list.d/system.sources | tee -a ~/sources.txt
151
+
cat /etc/apt/sources.list.d/pop-os-apps.sources | tee -a ~/sources.txt
If your system complains about a failed upgrade, package manager conflicts, broken upgrades, or other package-related issues, there are several common fixes to these problems. Some package manager issues can be resolved with the graphical update program, but many require the command line. If you get the red circle in the status bar, run these commands to fix your package manager:
22
24
23
25
```bash
@@ -112,7 +114,7 @@ apt-mark showhold
112
114
113
115
If the Terminal returns nothing, no packages are held.
114
116
115
-
If the Pop!_Shop indicates that some remote repositories can't be reached, open [Repoman](/articles/manage-repos-pop) and look in the **Extra Sources** page for the broken repository. Either disable or remove the repository, or search for the software vendor to determine what has happened to their software server. Sometimes the version of the repo (xenial, bionic, focal, groovy, etc) needs changed to match the current version of the operating system.
117
+
If the Ubuntu Store indicates that some remote repositories can't be reached, open <u>Software & Updates</u> and look in the **Extra Sources** page for the broken repository. Either disable or remove the repository, or search for the software vendor to determine what has happened to their software server. Sometimes the version of the repo (xenial, bionic, focal, groovy, etc) needs changed to match the current version of the operating system.
116
118
117
119
## Snap Pacakges
118
120
@@ -136,3 +138,22 @@ The program <u>Synaptic</u> is a very powerful GUI of the package manager. Pack
136
138
```bash
137
139
sudo apt install synaptic
138
140
```
141
+
142
+
## Sending information to support
143
+
144
+
The following commands will save the output to `upgrade.txt` and `sources.txt` so that they can be attached to support emails.
145
+
146
+
```bash
147
+
sudo apt clean | tee -a ~/upgrade.txt
148
+
sudo apt update -m | tee -a ~/upgrade.txt
149
+
sudo dpkg --configure -a | tee -a ~/upgrade.txt
150
+
sudo apt install -f | tee -a ~/upgrade.txt
151
+
sudo apt full-upgrade | tee -a ~/upgrade.txt
152
+
sudo apt autoremove --purge | tee -a ~/upgrade.txt
153
+
154
+
cat /etc/apt/sources.list | tee -a ~/sources.txt
155
+
cat /etc/apt/sources.list.d/*| tee -a ~/sources.txt
156
+
ls /etc/apt/sources.list.d/ | tee -a ~/sources.txt
157
+
cat /etc/apt/sources.list.d/system.sources | tee -a ~/sources.txt
158
+
cat /etc/apt/sources.list.d/pop-os-apps.sources | tee -a ~/sources.txt
0 commit comments