How lsb module affects system, and can be made available to the system?

aks@aks-K55VD:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 12.04.1 LTS
Release: 12.04
Codename: precise

used the command lsb_release -aand found 'No LSB modules are available'

LSB->

what does that mean by the unavailability of this module and how can they be made available to my system?

1 Answer

Since there are no lsb modules installed in your machine, you get that message.

You can install the lsb modules using the command

sudo apt-get install lsb-core

After installation, when you run the same command you wont see the message saying 'No LSB modules are available'

lsb_release -a will display some basic info about to which LSB specifications your system/OS complies with.

Hope this helps.

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

You Might Also Like