Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

ubuntu list latest installed packages

apt list --installed | grep [name]
Comment

Ubuntu packages

sudo add-apt-repository ppa:xorg-edgers/ppa 
sudo apt-get update
sudo apt-get install libgl1-mesa-glx
sudo apt-get install libgl1-mesa-dri
sudo apt-get install libgl1-mesa-dev
sudo add-apt-repository --remove ppa:xorg-edgers/ppa
sudo apt install net-tools
sudo apt-get install -y unzip
sudo apt install gcc
sudo apt install g++
sudo apt install python
ln -s /usr/bin/python2 /usr/bin/python
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 :: install composer mac 
Shell :: install github desktop ubuntu 
Shell :: docker-compose container list 
Shell :: show weather top bar in ubuntu 
Shell :: .env.local not working react 
Shell :: git origin master some file 
Shell :: netlify build command 
Shell :: postgres config file location 
Shell :: how to clone my linux so all the installed packages 
Shell :: git delete the most recent commit 
Shell :: how to remove file changes in git 
Shell :: ho to go into a docker container 
Shell :: how to find empty directories in linux 
Shell :: install ganache cli 
Shell :: Install Nginx, MariaDB and PHP centos rhel 
Shell :: how to uninstall grepper 
Shell :: docker logs last 10 lines 
Shell :: Bashrc use modules 
Shell :: check how much memory linux 
Shell :: tar gz 
Shell :: copy file permission denied arch 
Shell :: pip installer for mac 
Shell :: git rename remote 
Shell :: ubuntu server change timezone 
Shell :: readline/readline.h: No such file or directory 
Shell :: install redis-cli only 
Shell :: git remove current pull 
Shell :: force delete folder 
Shell :: list changed files git 
Shell :: find postgres data directory and installation path 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =