Linux

Topics

Initial Setup

sudo apt install git vim dconf-cli uuid-runtime pulseaudio blueman pavucontrol \
  pip3 install --user powerline-status
flatpak update

Systemd

Look to see which processes are taking the most time of the boot process

systemd-analyze blame
systemd-analyze critical-chain

Displays the current services

Disable a systemd service

Verify services dependencies

Ubuntu

Create a new file in /etc/ld.so.conf.d/ called .conf Edit the file and add a line per directory of shared libraries (*.so files), it will look something like:

Reload the list of system-wide library paths:

Debian

Edit /etc/ld.so.conf Add a line per directory of shared libraries (*.so files) to the bottom of the file, it will look something like:

Reload the list of system-wide library paths:

If you run your new application it should now work fine without you having to set any LD_LIBRARY_PATH environment variables. If you still have problems you can obtain a list of the libraries that are on the system path by re-running the ldconfig command in verbose mode:

Terminal

Copy/paste to clipboard

  • Create alias to commands inside .bashrc or .zshrc

  • Example

Install `.deb` files

Last updated

Was this helpful?