我已将/lib/i386-linux-gnu/ld-2.24.so
文件移至/home/ubuntu/ld-2.24.so
并且无法将其移回。如何将其移动或复制回/lib/i386-linux-gnu/ld-2.24.so
. 谢谢。
我有一个用 Qt/C++ 编写的应用程序的源代码,我可以尝试在 Linux 上构建它。
系统是 Ubuntu 19.04。该应用程序需要一些旧版本的软件包,例如 openssl-1.0.2。
我在安装后运行了以下步骤来设置 Qt 5.11:
sudo su -
apt-get install build-essential
apt-get install qtcreator
apt-get install qt5-default
apt-get install git
apt-get install qtwebengine5-dev
apt-get install qtmultimedia5-dev
apt-get install qtscript5-dev
apt-get install open-vm-tools-desktop
cd /opt
wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz
gunzip openssl-1.0.2l.tar.gz
tar xf openssl-1.0.2l.tar
cd openssl-1.0.2l/
./config
make install
ln -s /opt/openssl-1.0.2l/include/openssl/ /usr/include/openssl
apt install libleptonica-dev
apt-get install tesseract-ocr
apt-get install libtesseract-dev
apt-get install libvlc-dev
完成上述步骤后,应用程序在 Qt 中编译,但构建给出了ld
错误:
找不到 libssl 找不到 libcrypto
我认为这是因为这些库作为静态链接库存在.a
,而不是作为 .so 共享对象库存在。
我尝试构建.so
如下:
cd /opt/openssl-1.0.2l
./config shared
make install
这失败了:
make[2]: Entering directory '/opt/openssl-1.0.2l'
[ -z "" ] || gcc -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -Wa,--noexecstack -m64 -DL_ENDIAN -O3 -Wall -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DRC4_ASM -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DWHIRLPOOL_ASM -DGHASH_ASM -DECP_NISTZ256_ASM -Iinclude \
-DFINGERPRINT_PREMAIN_DSO_LOAD -o fips_premain_dso \
fips_premain.c fipscanister.o \
libcrypto.a -ldl
make[3]: Entering directory '/opt/openssl-1.0.2l'
make[4]: Entering directory '/opt/openssl-1.0.2l'
/usr/bin/ld: libcrypto.a(gost_eng.o): relocation R_X86_64_PC32 against symbol `stderr@@GLIBC_2.2.5' can not be used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: nonrepresentable section on output
collect2: error: ld returned 1 exit status
make[4]: *** [Makefile.shared:169: link_a.gnu] Error 1
make[4]: Leaving directory '/opt/openssl-1.0.2l'
make[3]: *** [Makefile:357: do_linux-shared] Error 2
make[3]: Leaving directory '/opt/openssl-1.0.2l'
make[2]: *** [Makefile:310: libcrypto.so.1.0.0] Error 2
make[2]: Leaving directory '/opt/openssl-1.0.2l'
make[1]: *** [Makefile:109: shared] Error 2
make[1]: Leaving directory '/opt/openssl-1.0.2l/crypto'
make: *** [Makefile:287: build_crypto] Error 1
所以问题是,如何让 openssl-1.0.2 在 Ubuntu 19.04 上生成 libssl.so 和 libcrypt.so。
我试图在我的 Ubuntu 19.04 上使用 安装 Unity sudo apt install ubuntu-unity-desktop
,但桌面没有按预期工作,所以我决定撤消并重做它。在我回滚更改的过程中,重新登录到 GNOME 后,我得到了这个:
然后在我卸载桌面后sudo apt autoremove
,我注意到标题栏恢复正常,但我得到了这个错误:
在这个页面之后,事实证明autoremove
已经删除了gtk3-nocsd
which contains libgtk3-nocsd.so.0
,一个LD_PRELOAD
不知何故需要的文件,所以它在抱怨它。我重新安装了它,错误消失了,但是第二个标题栏又回来了。
我认为 Unity 已经搞砸LD_PRELOAD
了,我仍然找不到解决这个问题的方法。
注意:我访问了许多主题与此类似的问题,尽管选择为已接受的解决方案都是我已经尝试过的,所以请在标记为重复之前考虑这一点。
另外,总的来说,我是 Linux 的新手,所以如果我说的根本不正确,请随时纠正我。
问题:
我正在尝试创建和使用 C++共享库,虽然“创建”部分似乎已完成,但在尝试链接它时,ld 看不到它。
这是我已经设法做到的:
编译所有带有 -fPIC 明确声明的 .cpp 文件
创建图书馆
g++ -shared -fPIC -Wl,-soname,libcustom_program_options.so.1 -o libcustom_program_options.so.1.0.1 *.o
Ran ldconfig 像这样更新加载器缓存:
sudo ldconfig -n /usr/local/lib
当我尝试将库链接到我的测试程序时:
g++ main.cpp -o main -L /usr/local/lib -l libcustom_program_options
这是发生的事情:
/usr/bin/ld: 找不到 -llibcustom_program_options
collect2:错误:ld 返回 1 个退出状态
注意:我不确定 ld 是在寻找库的全名还是soname,或者可能是“lib- 和 .so.{version} 之间的名称”,所以我尝试了其中的每一个。也没有帮助。
我正在尝试编写一个systemd
使用看门狗的服务,然后
sudo apt install libsystemd-dev
我检查以确保它可用:
$ ldconfig -p |grep systemd
libsystemd.so.0 (libc6,x86-64) => /lib/x86_64-linux-gnu/libsystemd.so.0
libsystemd.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libsystemd.so
libnss_systemd.so.2 (libc6,x86-64) => /lib/x86_64-linux-gnu/libnss_systemd.so.2
然后检查以确保链接器可以找到它:
$ echo "int main(){}" | gcc -x c++ -Wl,--no-as-needed -llibsystemd - && ldd a.out | grep libsystemd
/usr/bin/ld: cannot find -llibsystemd
collect2: error: ld returned 1 exit status
为什么ld
找不到呢?
运行 make 时,终端中出现以下错误:
//usr/local/lib/liblua.a(loadlib.o) : In function «lookforfunc » : loadlib.c:(.text+0x576): warning : Using 'dlopen ' 在静态链接的应用程序中,在运行时需要 glibc 版本中用于链接
/usr/bin/x86_64-linux-gnu-ld 的共享库:找不到 -lQt5Widgets
/usr/bin/x86_64-linux-gnu-ld :找不到-lQt5Gui
/usr/bin/x86_64-linux-gnu-ld:找不到 -lQt5Core
/usr/bin/x86_64-linux-gnu-ld:找不到 -lGL
collect2:错误:ld 返回 1 个退出状态
我已经安装libhdf5-dev
了 apt-get 但gcc
找不到它:
~$ locate libhdf5.so
/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so
~$ gcc -lhdf5
/usr/bin/ld: cannot find -lhdf5
collect2: error: ld returned 1 exit status
我在 Ubuntu 17.10 上。
我试着用谷歌搜索这个库属于什么,但找不到任何东西。
有任何想法吗?