Lesson 2

Date: 1/30/2019
Linux installation and upgrade
Linux System Administration


Package Management (dpkg)
  • Installation
    dpkg -i linux-image-4.15.0-43-generic_4.15.0-43_amd64.deb
    

  • Removal
    dpkg --purge linux-image-4.15.0-43-generic_4.15.0-43_amd64.deb 
    

  • queries (list of all packages)
    dpkg -l '*'
    dpkg -l '*kernel*'
    

  • List files in the package
    dpkg -L  ncurses-term
    

  • Info on a package
    dpkg -s ncurses-term
    

  • To find out what package owns the file
    dpkg -S ncurses-term
    



  • Take me to the Course Website