4

I'd like to know which Ubuntu distro is installed on my laptop. I know that it is Precise Pangolin, but is it Xubuntu, Lubuntu, plain Ubuntu or something else?

When I run the usual lsb_release -a command, it says "Ubuntu", but running the same command after having booted from a Lubuntu installation USB-stick gives the same answer, so that is obviously not the answer.

Is there another command that will tell me the answer? (Or some other means?)


P.S. The GUI settings have been changed, so I cannot simply identify the look of the desktop visually.

P.P.S. I found several questions on this topic, but they all seem to answer the question which version of Ubuntu is installed. Note that this is not what I'm asking for.

zrajm
  • 2,616
  • What do you get with echo $DESKTOP_SESSION? possible duplicated: http://askubuntu.com/q/72549/62483 – Lucio Mar 04 '14 at 00:26
  • 1
    @Lucio He doesn't want to know what desktop session he is using, he wants to know what flavour of Ubuntu he is using. – Seth Mar 04 '14 at 00:46
  • I thought that the major change between those type of distro is the desktop environment/session. – Lucio Mar 04 '14 at 02:17

1 Answers1

3

The answer may not be totally straightforward because after the system is installed you can mix-and-match different components, including the desktop environment, applications etc. Everything is installed from the common repository so with time it may be difficult to tell what "flavor" of Ubuntu it is.

For example, on my laptop I used to have Ubuntu with Unity, but with time I replaced Unity with KDE and removed most of the default applications. Would you still consider it Ubuntu or is it Kubuntu now?

So maybe a better question to ask is "what distro was originally installed on the machine?"

On 12.04 I think you can check that with

cat /etc/apt/sources.list|grep cdrom

At some point in 13.x series the format of files in /etc/apt has changed, so the above doesn't work anymore, but I think you can find some clues by doing

cat /var/log/installer/media-info

See this question for more details

Sergey
  • 43,665
  • On Ubuntu 13.10 I get cat: /var/log/installer/media-info: No such file or directory – Lucio Mar 04 '14 at 02:21
  • 1
    @Lucio: yeah, the /var/log/installer/media-info is a bit magical - some people reported it existing on their machines, and some don't have it, as you can see from the accepted answer to the question I linked to. The /etc/apt/sources.list used to be more reliable, but the file doesn't exist anymore in modern releases of Ubuntu. The OP was asking about 12.04 though, so should work for him. – Sergey Mar 04 '14 at 03:22
  • @Sergey yup. You're right. That's a rephrasing of the question which makes it clearer. – zrajm Mar 04 '14 at 06:45
  • The grep cdrom /etc/apt/sources.list trick worked excellently for me. – zrajm Mar 04 '14 at 07:40
  • 1
    "The /etc/apt/sources.list used to be more reliable, but the file doesn't exist anymore in modern releases of Ubuntu." the file is and will be always there, without being replaced. It is where APT gets all repositories. – Braiam Mar 04 '14 at 14:02