0

I forgot the Ubuntu version that installed in my laptop because I use a dual OS. Where may I find my software version?

3 Answers3

2

In a terminal window type: lsb_release -sd

Stormlord
  • 6,807
1

Alternative way:

$ source /etc/os-release; echo $PRETTY_NAME
Ubuntu 24.04.1 LTS

or even:

$ . /etc/os-release ; echo $NAME $VERSION
Ubuntu 24.04.1 LTS (Noble Numbat)
Hannu
  • 6,605
  • 1
  • 28
  • 45
0

GUI Application: Settings->System Info

Mahler
  • 739