ubuntu下安装和卸载软件都会提示如下信息/usr/local/lib/libuuid.so.1: no version in
ubuntu下安装和卸载软件都会提示如下信息/usr/local/lib/libuuid.so.1:noversioninformationavailable(requi...
ubuntu下安装和卸载软件都会提示如下信息/usr/local/lib/libuuid.so.1: no version information available (required by /lib/x86_64-linux-gnu/libblkid.so.1)
展开
2个回答
展开全部
在Ubuntu 14.04 LTS 64位系统中安装libgdiplus2.10.9的时候出现了错误。
首先下载libgdiplus2.10.9安装包
进入目录开始configure编译
。/configure --prefix=/usrmake
将libgdiplus安装在/usr目录下
发现在该操作系统报错了:如下
gdiplus-private.h:33:31: fatal error: freetype/tttables.h: No such file or directory #include ^compilation terminated.make[2]: *** [adjustablearrowcap.lo] Error 1make[2]: Leaving directory `/root/libgdiplus-2.10/src‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/root/libgdiplus-2.10’make: *** [all] Error 2root@ubuntu:~/libgdiplus-2.10# sudo ln -s /usr/X11/include/freetype2/freetype/ /usr/X11/include/freetypeln: failed to create symbolic link ‘/usr/X11/include/freetype’: No such file or directory
这个错误就是说创建/usr/X11/include/freetype链接失败了,因为找不到freetype
我们打开/usr/include看有没有freetype这个目录,没有吧,但是我们找到了freetype2,这样我们做个链接吧
ln -s /usr/include/freetype2 /usr/include/freetype
然后继续make发现错误如下:
/usr/lib64/libglib-2.0.so.0: could not read symbols: Invalid operationcollect2: error: ld returned 1 exit statusmake[2]: *** [testgdi] Error 1make[2]: Leaving directory `/usr/local/src/libgdiplus-2.10.9/tests‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/usr/local/src/libgdiplus-2.10.9’make: *** [all] Error 2
解决方法:
先执行 。/configure 命令, 然后编辑 test/Makefile 文件;将 130 行的 LIBS = -lpthread -lfontconfig 改为 LIBS = -lpthread -lfontconfig -lglib-2.0 -lX11;再次执行 make 命令即可。
再次make,是不是很快成功了,ok,make install吧
上面就是Ubuntu安装libgdiplus时出错的解决方法,如果你在安装的时候系统报错了,可以尝试本文介绍的方法进行解决。
首先下载libgdiplus2.10.9安装包
进入目录开始configure编译
。/configure --prefix=/usrmake
将libgdiplus安装在/usr目录下
发现在该操作系统报错了:如下
gdiplus-private.h:33:31: fatal error: freetype/tttables.h: No such file or directory #include ^compilation terminated.make[2]: *** [adjustablearrowcap.lo] Error 1make[2]: Leaving directory `/root/libgdiplus-2.10/src‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/root/libgdiplus-2.10’make: *** [all] Error 2root@ubuntu:~/libgdiplus-2.10# sudo ln -s /usr/X11/include/freetype2/freetype/ /usr/X11/include/freetypeln: failed to create symbolic link ‘/usr/X11/include/freetype’: No such file or directory
这个错误就是说创建/usr/X11/include/freetype链接失败了,因为找不到freetype
我们打开/usr/include看有没有freetype这个目录,没有吧,但是我们找到了freetype2,这样我们做个链接吧
ln -s /usr/include/freetype2 /usr/include/freetype
然后继续make发现错误如下:
/usr/lib64/libglib-2.0.so.0: could not read symbols: Invalid operationcollect2: error: ld returned 1 exit statusmake[2]: *** [testgdi] Error 1make[2]: Leaving directory `/usr/local/src/libgdiplus-2.10.9/tests‘make[1]: *** [all-recursive] Error 1make[1]: Leaving directory `/usr/local/src/libgdiplus-2.10.9’make: *** [all] Error 2
解决方法:
先执行 。/configure 命令, 然后编辑 test/Makefile 文件;将 130 行的 LIBS = -lpthread -lfontconfig 改为 LIBS = -lpthread -lfontconfig -lglib-2.0 -lX11;再次执行 make 命令即可。
再次make,是不是很快成功了,ok,make install吧
上面就是Ubuntu安装libgdiplus时出错的解决方法,如果你在安装的时候系统报错了,可以尝试本文介绍的方法进行解决。
展开全部
这个库文件不存在,需要再安装一个对应版本的
在https://answers.launchpad.net/ubuntu/+source/util-linux/2.20.1-1ubuntu1中下载到util-linux_2.20.1.orig.tar.gz包,里面包含很多系统工具的目录,如包含libuuid目录。使用下面的方法安装uuid库(包括静态lib文件及动态链接文件):
tar xzvf util-linux_2.20.1.orig.tar.gz
cd util-linux-2.20.1
./configure --without-ncurses
cd libuuid
make
make install
想要深入了解相关知识的话建议学习《linux就该这么学》这本书
在https://answers.launchpad.net/ubuntu/+source/util-linux/2.20.1-1ubuntu1中下载到util-linux_2.20.1.orig.tar.gz包,里面包含很多系统工具的目录,如包含libuuid目录。使用下面的方法安装uuid库(包括静态lib文件及动态链接文件):
tar xzvf util-linux_2.20.1.orig.tar.gz
cd util-linux-2.20.1
./configure --without-ncurses
cd libuuid
make
make install
想要深入了解相关知识的话建议学习《linux就该这么学》这本书
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询