共计 549 个字符,预计需要花费 2 分钟才能阅读完成。
debian11 Alist 自编译运行
问题:
./alist: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by ./alist)
./alist: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./alist)
./alist: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./alist)
解决方法:
根据网络搜索结果:debian11更新glibc_debian安装glibc-CSDN博客
打开终端并运行以下命令:
sudo echo “deb http://deb.debian.org/debian sid main” >> /etc/apt/sources.list
运行以下命令更新软件包列表:
sudo apt update
运行以下命令安装最新的 GLIBC:
sudo apt -t sid install libc6
一直默认回车,安装完成后,就可以运行了。
总结:
大概是因为debian11 没有这些库的原因,需要自己加debian新版本的源。(个人猜测)
正文完