I am trying to install an up-to-date version (2.19) of util-linux
to get lsblk
but yum doesn't find it:
[Harry@SN031568820668 ~]$ sudo yum install util-linux
Loaded plugins: presto, refresh-packagekit
Setting up Install Process
Package util-linux-ng-2.16.2-9.fc12.i686 already installed and latest version
Nothing to do
Please, is there a way round this? I am using Fedora 12 (until tomorrow).
lsblk
was not inutil-linux
until v2.19... or so. – Harry Weston Feb 08 '14 at 14:40lsblk
's source and compile it manually. I seem to remember doing this a few months ago on FC14 to see some changes to that package when answering a Q here. It's not too complicated if you need it. – slm Feb 08 '14 at 14:42util-linux
is distributed by kernel.org: https://www.kernel.org/pub/linux/utils/util-linux/ I recommend you build this and install it into/usr/local
, which will be the default. This way you can make the system prefer the new version by appending/usr/local
to$PATH
(I think fedora does this) or conversely removing it.make uninstall
should also work for that package (if you leave your build directory as is post configure), but again, don't install it over top of the existing distro version. – goldilocks Feb 08 '14 at 14:59