3

When I try to install a 32 bit program on ubuntu 13.10 64bit it falis. My command is as follow:

linux32 ./setup.sh

Output is:

The setup program seems to have failed on x86/unknown

Fatal error, no tech support email configured in this setup

Is there a way to install 32bit program on ubuntu 13.10? When running the following command:

./setup.sh

The output is as below:

The setup program seems to have failed on amd64/unknown

Fatal error, no tech support email configured in this setup
Alireza
  • 1,243
  • 3
  • 14
  • 26
  • There is a similar question [here](http://askubuntu.com/questions/297151/how-to-run-32-bit-programs-on-a-64-bit-system-ubuntu-13-04) – Wilf Jan 03 '14 at 15:03
  • @wilf Didn't help. I get `ia32-libs has no candidate` error. – Alireza Jan 03 '14 at 15:06
  • 1
    @phpGeek What is the output of `uname -a` and what 32bit program are you trying to `./setup.sh` ? – jmunsch Jan 03 '14 at 15:16
  • I want to install Longman Dictionary. – Alireza Jan 03 '14 at 15:28
  • Output: Linux myUserName 3.11.0-12-generic #19-Ubuntu SMP Wed Oct 9 16:20:46 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux – Alireza Jan 03 '14 at 15:29
  • 2
    You could also try `sudo apt-get install ia32-libs-multiarch` – Wilf Jan 03 '14 at 17:59
  • I think the problem is as @Wilf has pointed out and that you do not have the 32bit architecture support needed to install a 32bit program on a 64bit system. Run the command he suggested, then try installing again and see what happens – Duck Oct 24 '14 at 14:12
  • I installed what @Wilf said, and it everything works fine now. – Alireza Oct 26 '14 at 08:07

1 Answers1

1

Try this:

sudo apt-get install ia32-libs-multiarch
Wilf
  • 29,694
  • 16
  • 106
  • 164