03 First Boot & Basic Settings

Table of Contents

Previous Page

Next Page


First Commands!

“sudo”, which means “super user do”, will prompt for the admin password since it’s an elevated command, like changing a system file. Meant to prevent other users from breaking things.

This will update the repositories, but doesn’t download or install anything!

sudo apt update

This will install (upgrade) all packages that have available updates.

sudo apt upgrade

You can combine commands! The -y automatically answers “yes” to the prompt.

sudo apt update && sudo apt upgrade -y

What about removing / cleaning? ~~~~~~~~~~~~~~~~~

For removing specific packages, I recommend Synaptic Application Manager, to make searching apps easier.

sudo apt install synaptic

For cleaning up old installs and leftover pieces, this combo command takes care of it:

sudo apt autoclean && sudo apt autoremove

I enjoy making scripts, like this updater & cleaner: ~~~~~~~

  1. Make file
sudo nano /usr/local/bin/bondate
  1. copy this into empty file:
#!/bin/bash

sudo apt update && sudo apt upgrade -y ; \
sudo apt autoclean -y ; \
sudo apt autoremove -y ; \
flatpak update ; \
sudo needrestart ; \
echo Also, ; \
echo Consider: sudo rclone selfupdate ; \
echo Consider: winetricks --self-update
  1. save file; then make executable:
sudo chmod +x /usr/local/bin/bondate
  1. and now entering ‘bondate’ in any terminal runs all the updates!

Random audio cracking issues: ~~~~~~~~~~~~~~~~~~~

One of the things that can make you want to go back to Windows.
This config location is specific to current Pop_OS version:

sudo nano /usr/share/wireplumber/main.lua.d/50-alsa-config.lua
systemctl restart --user pipewire.service

Go here for more detailed reasonings, or for other distros: Audio Troubleshooting
This issue is NOT unique or specific to Pop!_OS


Table of Contents

Previous Page

Next Page