1

How can I compile and install the package ia32-libs in Ubuntu 14.04?

A J
  • 11,367
  • 17
  • 44
  • 59
user69453
  • 763
  • 2
  • 9
  • 13
  • 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 Answers1

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
Parto
  • 15,325
  • 24
  • 86
  • 117
Pabi
  • 7,401
  • 3
  • 40
  • 49
  • 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