Lesson 2

Date: 1/29/2014
Linux installation and upgrade
Linux for Engineering and IT Applications


Package Management (dpkg)
  • Installation
    dpkg -i linux-image-3.2.0-36-generic_3.2.0-36.57_amd64.deb 
    

  • Removal
    dpkg --purge linux-image-3.2.0-36-generic 
    

  • 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