能够在64位的linux下安装32位jdk么

2024-11-28 09:49:34
推荐回答(1个)
回答(1):

可以安装的,但是需要loader的支持。
在64位的ubuntu下装32位JDK死活装不上
报错
./jdk-6u7-linux-i586.bin: 480: ./install.sfx.2354: not found
Failed to extract the files. Please refer to the Troubleshooting section of
the Installation Instructions on the download page for more information
找来找去说是64位环境不支持32位JDK
后找到解决办法
原来是64位Ubuntu连32位程序的loader都没有安装,需要安装
sudo apt-get install libc6-i386
另外,一些常用的32位库
sudo apt-get install lib32asound2 lib32z1 lib32stdc++6 lib32bz2-1.0
原来apt也有search命令,只是要通过apt-cache来搜索