Managing Packages & Users
Index Installing and Removing Software in Linux Getting and Unpacking the Package Configuring the Package Compiling the Package Managing Users and Groups Installing and Removing Software in Linux Enable root user sudo passwd root Install the package in the root user (vim is text editor package/ software) apt-get install vim Install the package in the normal user (okular is pdf viewer package) sudo apt-get install okular Removing Package/ Software sudo apt remove vim (vim package name ) Getting and unpacking the package A tar.gz file contains several compressed files to save storage space, as well as bandwidth during the downloading process. The .tar file acts as a portable container for other files and is sometimes called a tarball. The .gz part of the extension stands for gzip, a commonly-used compression ...