How do I check what version of syslinux I have?
Asked
Active
Viewed 6,625 times
4
-
Is there an RPM independent way of determining the version say if one installed it from source? – Joshua Enfield Feb 22 '11 at 02:40
4 Answers
8
We installed from sources,
$ strings syslinux | grep SYSLINUX
SYSLINUX
SYSLINUX 3.72 2008-09-25

Rick Berge
- 321
- 1
- 3
- 4
3
Since you're using CentOS, you can see what version of the RPM you have installed.
[user@host ~]$ which syslinux
/usr/bin/syslinux
[user@host ~]$ rpm -qf /usr/bin/syslinux
syslinux-3.11-4

Marc
- 46
- 2