ubuntu pthread 相关manpage

本文探讨了安装glibc-doc和manpages-posix-dev后是否能获取所有POSIX manpage的问题。

apt 两个 glibc-doc 和manpages-posix-dev。我们猜一猜是不是装完posix的所有manpage都有啦

┌──(rootkali)-[/home/kali/dnsperf-2.14.0] └─# ./configure --prefix=/usr/local --disable-ssl --disable-tsig 2 ⚙ configure: WARNING: unrecognized options: --disable-ssl, --disable-tsig checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a race-free mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether gcc accepts -g... yes checking for gcc option to enable C11 features... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... gcc3 checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for wchar.h... yes checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for gcc... (cached) gcc checking whether the compiler supports GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to enable C11 features... (cached) none needed checking whether gcc understands -c and -o together... (cached) yes checking dependency style of gcc... (cached) gcc3 checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for inline... inline checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/x86_64-linux-gnu-ld checking if the linker (/usr/bin/x86_64-linux-gnu-ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for /usr/bin/x86_64-linux-gnu-ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /usr/bin/dd checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1 checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/x86_64-linux-gnu-ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking how to run the C preprocessor... gcc -E checking whether gcc is Clang... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking whether more special flags are required for pthreads... no checking for PTHREAD_PRIO_INHERIT... yes checking for pthread_setname_np... yes checking for pthread_set_name_np... no checking for pthread_np.h... no checking for sqrt in -lm... yes checking for stdatomic.h... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for libssl... no configure: error: Package requirements (libssl) were not met: Package 'libssl', required by 'virtual:world', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables libssl_CFLAGS and libssl_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.
最新发布
01-01
### 解决python3-bcrypt破坏python3-passlib版本依赖问题 - **修复依赖关系**:使用 `apt` 命令尝试修复依赖关系,执行以下命令: ```bash sudo apt install -f ``` - **更新软件包列表**:在修复依赖关系后,更新软件包列表: ```bash sudo apt update ``` - **手动升级冲突的软件包**:尝试手动升级 `python3-passlib` 到不冲突的版本,例如: ```bash sudo apt-get install python3-passlib=1.9.3-1~ ``` 需注意,实际版本号可能需要根据系统的软件源进行调整。 - **临时忽略依赖关系(不推荐)**:在某些情况下,可尝试临时忽略依赖关系来安装软件包,但这种方法可能会导致系统不稳定: ```bash sudo apt-get install --fix-broken --allow-downgrades --allow-remove-essential --allow-change-held-packages libssl-dev ``` ### 解决dnsperf configure报错缺少libssl的问题 - **安装libssl-dev**:通常,`dnsperf` 依赖 `libssl`,可以通过安装 `libssl-dev` 来解决缺少 `libssl` 的问题: ```bash sudo apt-get install libssl-dev ``` 若安装 `libssl-dev` 时出现依赖问题,可参考上述解决 `python3-bcrypt` 与 `python3-passlib` 版本冲突的方法。 - **添加软件源(若有必要)**:若 `apt-get install libssl-dev` 无法修正错误,可尝试往 `/etc/apt/sources.list` 文件中添加一行: ```plaintext deb http://security.ubuntu.com/ubuntu xenial-security main ``` 添加后,更新软件包列表并再次尝试安装: ```bash sudo apt update sudo apt-get install libssl-dev ```
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值