Re: What's the easiest way for a shell script to tell if grub version 1 is installed?
- From: Bob Proulx <bob@xxxxxxxxxx>
- Date: Thu, 1 Jul 2010 20:47:25 -0600
Stephen Powell wrote:
What's the easiest way for a shell script to tell if grub version 1
is installed? It is important to distinguish grub version 1 from
grub version 2. For example, can I just do this?
if [ -f /boot/grub/menu.lst ];then
blah
blah
blah
fi
If you only need to know if the grub2 *package* is installed then a
very quick check is to see if the documentation directory for it is
installed. Since all packages are required by Debian Policy to have a
documentation directory.
if [ -d /usr/share/doc/grub-pc ]; then
echo The Grub2 package is installed.
fi
Or does that file exist in grub version 2 as well?
If the machine was upgraded from version 1 to version 2 then the
menu.lst file will be left behind until manually removed. Because it
facilitates returning to version 1 if required.
But having the package installed doesn't meant that the machine
actually has grub2 installed in the boot path. That seems a little
more difficult.
I recently read this blog entry by Colin Watson that talked a little
bit about grub versions and the problems of mixing them. You might
find it interesting.
http://www.chiark.greenend.org.uk/ucgi/~cjwatson/blosxom/2010/06/21#2010-06-21-grub2-boot-problems
Bob
Attachment:
signature.asc
Description: Digital signature
- Follow-Ups:
- References:
- What's the easiest way for a shell script to tell if grub version 1 is installed?
- From: Stephen Powell
- What's the easiest way for a shell script to tell if grub version 1 is installed?
- Prev by Date: Re: Misleading Debian's installer choice
- Next by Date: Re: firefox images look like bacon strips
- Previous by thread: Re: What's the easiest way for a shell script to tell if grub version 1 is installed?
- Next by thread: Re: What's the easiest way for a shell script to tell if grub version 1 is installed?
- Index(es):
Relevant Pages
|