4

What command is used to determine which version of Ubuntu desktop is installed?

2 Answers2

6

Execute lsb_release -a in a terminal :

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.10
Release:        16.10
Codename:       yakkety
cl-netbox
  • 31,163
  • 7
  • 94
  • 131
2

more /etc/*-release will give you the desired information.

13dimitar
  • 935