Multiple choice technology operating systems

which command is used to install a package in ubuntu

  1. rpm -ivh

  2. yum install

  3. apt-get

  4. ./configure,make,make install

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

apt-get is Debian-based package manager used in Ubuntu for package installation. The other options belong to different Linux distributions: rpm and yum are used in RedHat/CentOS systems, while ./configure, make, make install is the manual source compilation method used across all Unix-like systems when packages aren't available through a package manager.