Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

What is software-properties-common

Writer Matthew Barrera

I have been installing a couple of softwares and I noticed that when you are to install a software from a PPA, the command is usually preceeded with

sudo apt-get install software-properties-common

I look for why installing this package but I could not get a reason.

0

2 Answers

As described in apt-show software-properties-common

This software provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources.

In practice that means it provides some useful scripts for adding and removing PPAs:

$ dpkg -L software-properties-common | grep 'bin/'
/usr/bin/add-apt-repository
/usr/bin/apt-add-repository

plus the DBUS backends to do the same via the Software and Updates GUI.

Without it, you would need to add and remove repositories (such as PPAs) manually by editing /etc/apt/sources.list and/or any subsidiary files in /etc/apt/sources.list.d

3

It facilitates to manage the repositories that you install software from (common) It provides an abstraction of the used apt repositories. It allows you to easily manage your distribution and independent software vendor software sources. This package contains the common files for software-properties like the D-Bus backend.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy