How do I find the version of GRUB that is running in a particular version of Ubuntu? I want a terminal command that tells me.
7 Answers
For me the above answer given by @Daniel does not work. I have Ubuntu 14.04 LTS (this also works with Ubuntu 17.10) and to check the version of Grub (Grub2) I need to type:
grub-install --version
- 36,890
- 56
- 97
- 151
- 1,034
On clean ubuntu installs the grub package itself doesn't seem to be installed. Thus typing 'grub -anyoption' results in an error that says grub is not installed. However you can type for example
grub-install -v
And it will give you the correct version of grub currently installed
The version of the Grub is 1.99-21ubuntu3
EDIT: As others have pointed out the commandline flags have been changed in newer versions. So now instead of typing grub-install -v you'd have to use a capital 'V' or the explicit --version
This will roughly do the job:
dpkg -l | grep grub | grep ii
You should note that just to confuse things that the version 1.9x is known as Grub2. I think they number it in a similar way that people would call the 1600-1699, the 17th century.
- 299,380
to find out what bootloader you're using, you have to look at the bootloader!
try dd if=/dev/sda bs=512 count=1 2> /dev/null | grep -q GRUB && echo "GRUB found"
All querying of installed packages, as described in the other answers, miss an important point: to probe your bootloader, look at the bootloader!
In other words, you can install whatever packages you like in whatever OS or distro you like, but none of this has anything to do with the bootloader you'll use when you reboot.
specifically, for MBR/msdos partitioned disks: probe the MBR (i.e. look at the bootloader to see what bootloader you're using)
This duplicate has some good answers: How do I find out which boot loader I have?
I like this more complete answer, found in a newer question:
question: https://superuser.com/questions/466086/how-can-i-discover-which-bootloader-is-installed-where
answer: https://superuser.com/a/466248
- 299
The package name is grub-pc, so you can do this:
dpkg -l grub-pc
which will show you something like this:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-========================================-=========================-=========================-=====================================================================================
ii grub-pc 2.02~beta2-9ubuntu1.7 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version)
- 21
I'll throw my hat into the ring as well. You can also do it with apt-cache policy grub-pc
:~$ apt-cache policy grub-pc
grub-pc:
Installed: 2.02-2ubuntu8.7
Candidate: 2.02-2ubuntu8.7
Version table:
*** 2.02-2ubuntu8.7 500
500 http://us.archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages
100 /var/lib/dpkg/status
2.02-2ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
- 43,712
