YUM由于库缺失而崩溃


0

我试图删除股票Lua并构建我自己的股票,所以我试过:

yum remove lua

但是对包的依赖性太多而且它不允许我删除它所以我使用rpm代替:

rpm -r --nodeps --force lua

它删除了Lua。然后我建立了自己的。然而yum从现在开始崩溃,每次我运行yum(如果是yum install或yum list,或者只是yum都没关系),它给了我

error:There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:

   liblua-5.1.so: cannot open shared object file: No such file or directory

Please install a package which provides this module, or
verify that the module is installed correctly.

It's possible that the above module doesn't match the
current version of Python, which is:
2.7.3 (default, Aug  9 2012, 17:23:57) 
[GCC 4.7.1 20120720 (Red Hat 4.7.1-5)]

If you cannot solve this problem yourself, please go to 
the yum faq at:
  http://yum.baseurl.org/wiki/Faq

我甚至无法安装lua,因为它不允许我运行。rpm也崩溃了:

rpm: error while loading shared libraries: liblua-5.1.so: cannot open shared object file: No such file or directory

我有一个版本的liblua-5.1.so,但我试图将符号链接放在/ usr / lib和/ usr / local / lib中,它仍然会出现此错误。请帮忙......我不想重新安装。

Answers:


0

它似乎yum取决于Lua库共享对象文件(liblua-5.1.so)的特定版本。编译自己的库版本时使用的编译标志似乎不兼容。

因此,您应该确定您的架构(uname -m)然后从Fedora 下载lua i686x86_64软件包并安装它rpm以恢复yum到正常工作。


如果您无法使用,rpm那么获取Fedora LiveCD / LiveUSB。您将chroot进入安装并尝试修复。以下是一些指导原则

确定Fedora /所在的分区

sudo -i
blkid

挂载你的Fedora分区

arch="i686"
mntDir="/mnt"
mount /dev/sdX# "$mntDir"
rpm -i lua-5.1.4-12.fc19.${arch}.rpm --prefix "$mntDir"

Chroot进入安装

mount -t proc proc "${mntDir}/proc/"
mount -t sysfs sys "${mntDir}/sys/"
mount -o bind /dev "${mntDir}/dev/"
mount -t devpts pts "${mntDir}/dev/pts"
chroot "$mntDir" /bin/bash

调试安装

yum --help

嗨,每当我运行rpm,它给我错误,所以基本上我无法安装任何东西......甚至本地
texasbruce 2013年

你尝试过LiveCD + chroot吗?
刚刚浏览2013年

我最后使用了类似的东西...使用了现场CD和yum --installroot / mnt lua.x64_64并修复了它。谢谢!
texasbruce 2013年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.