Skip to content
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

Update broken package check #532

Merged
merged 2 commits into from
May 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions docs/user/troubleshooting/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,20 @@ summary: Basic troubleshooting for some of the most common Solus problems.

# Troubleshooting Common Issues

This guide provides some basic troubleshooting instructions for when you have an issue in Solus. Before reporting bugs, it is important to validate your Solus installation doesn't suffer from missing files or disk corruption. Also ensuring the system is fully up to date as the bug may have already been fixed.
This guide provides some basic troubleshooting instructions for when you have an issue in Solus. Before reporting bugs, it is important to validate your Solus installation doesn't suffer from missing files or disk corruption. Also ensure the system is fully up to date as the bug may have already been fixed.
davidjharder marked this conversation as resolved.
Show resolved Hide resolved

First of all perform a full system update `sudo eopkg up` (or via the Software Center). Then validate that packages are installed correctly and aren't missing files: (run this once, it will take some time and may not show much output)
First, perform a full system update on command line with `sudo eopkg up` (or via the Software Center).
davidjharder marked this conversation as resolved.
Show resolved Hide resolved

Next, validate that packages are installed correctly and aren't missing files. Run this once, it will take some time. If there are no broken packages on your system, there will be no output. Otherwise, you will see packages be reinstalled.

```bash
sudo eopkg check | grep Broken | awk '{print $4}' | xargs sudo eopkg it --reinstall
sudo eopkg check | grep Broken | awk '{print $4}' | xargs -r sudo eopkg it --reinstall
davidjharder marked this conversation as resolved.
Show resolved Hide resolved
```

Then reboot the system to make sure the issue still persists on a clean system.
Reboot the system and see if the issue is resolved.

```
::

## Issues with Software Center or eopkg

Expand Down