Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu list latest installed packages

apt list --installed | grep [name]
Comment

find installed packages in ubuntu

# This returns only the manually installed packages and only the package name (no extra info etc)
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)
Comment

How to list manually installed packages in ubuntu

comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)
Comment

PREVIOUS NEXT
Code Example
Shell :: how to check the current git user 
Shell :: batch remove quotes 
Shell :: firebase-tools npm 
Shell :: linux which shell am i running 
Shell :: setting up yarn on my mac 
Shell :: check services running on port linux 
Shell :: replace filename space with underscore bash 
Shell :: disable ufw 
Shell :: uninstall lightdm 
Shell :: install Qt5 ubuntu 20.04 
Shell :: how to install react router 
Shell :: git submodules pull 
Shell :: install compass mongodb ubuntu 
Shell :: restart xampp linux 
Shell :: upgrade streamlit 
Shell :: git rm cached gitignore 
Shell :: jupyter link environment 
Shell :: linux remove java 11 
Shell :: kubectl delete all from namespace 
Shell :: completely uninstall apache from ubuntu 
Shell :: mpeg-4 aac decoder plugin for linux download 
Shell :: gitlab ci allow failure 
Shell :: add to docker group 
Shell :: uninstall mongodb ubuntu 
Shell :: git remote url show command 
Shell :: zsh: corrupt history file /home/pi/.zsh_history 
Shell :: remove home icon ubuntu 
Shell :: restart lampp command terminal 
Shell :: how to stop port 3000 in windows 
Shell :: install rspec globally vscode 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =