How can I compile and install the package ia32-libs in Ubuntu 14.04?
Asked
Active
Viewed 4,068 times
1
-
It's not duplicate. I'm asking about how to compile it in 14.04. – user69453 Jul 02 '14 at 10:58
-
To compile see https://help.ubuntu.com/community/CompilingEasyHowTo or any compiling guide. Note: when compiling you generally have to manually resolve dependencies, although there are some commands to help. It will depend on what you are compiling. Update your question if you have a problem somewhere. – Panther Jul 02 '14 at 15:08
-
Does the source code have dependency? – user69453 Jul 02 '14 at 15:11
1 Answers
0
sudo -i
cd /etc/apt/sources.list.d
echo "deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
-
It will not make downloading dependencies automatic. I hope compiling will use new packages instead of a lot of old packages that will be downloaded. – user69453 Jul 02 '14 at 11:26