4

How do I check what version of syslinux I have?

Joshua Enfield
  • 3,404
  • 8
  • 41
  • 58

4 Answers4

8

We installed from sources,

$ strings syslinux | grep SYSLINUX
SYSLINUX
SYSLINUX 3.72 2008-09-25
Rick Berge
  • 321
  • 1
  • 3
  • 4
4

Try with

rpm -qf $(type -p syslinux)
rems
  • 2,240
  • 13
  • 11
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
0

On Ubuntu, try dpkg -s syslinux

jcarpio
  • 330
  • 1
  • 6
  • 12