Michael Morgan wrote: > When I ran "apt --fix-broken install", I got the following message: > > The following additional packages will be installed: > chromium-browser chromium-codecs-ffmpeg-extra > The following packages will be upgraded: > chromium-browser chromium-codecs-ffmpeg-extra > > But when I continued with the installation, it froze again: > Reading changelogs... 33% > > What should I do?
1. Check disk space: sudo df -h sudo df -i If you are out of disk space on any filesystem, or out of inodes, you will need to clear space before doing anything else. 2. Clear existing packages. sudo apt clean 3. Get a new update on repository state: sudo apt update 4. Download the new packages without installing them: sudo apt upgrade -d 5. Install the new packages: sudo apt upgrade Each step needs to be successful before starting the next one; if you run into errors or warnings, come back and tell us exactly what they are.