Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| quartus_on_64bit_linux [2013/05/13 15:22] – chroot added beckmanf | quartus_on_64bit_linux [2014/10/06 22:46] (current) – [Install 32Bit Libraries] beckmanf | ||
|---|---|---|---|
| Line 4: | Line 4: | ||
| Install virtual Debian system from debian-7.0.0-amd64-netinst.iso. | Install virtual Debian system from debian-7.0.0-amd64-netinst.iso. | ||
| + | |||
| + | === Minimal installation === | ||
| + | In the install process you have only selected | ||
| + | |||
| + | * SSH server | ||
| + | |||
| + | You have created user " | ||
| + | |||
| + | < | ||
| + | apt-get install sudo | ||
| + | adduser fritz sudo | ||
| + | exit | ||
| + | </ | ||
| + | |||
| + | The login as user " | ||
| + | |||
| + | === Desktop installation === | ||
| + | |||
| + | Login as " | ||
| + | |||
| + | < | ||
| + | su | ||
| + | adduser fritz sudo | ||
| + | exit | ||
| + | </ | ||
| + | |||
| + | === VMWare Tools === | ||
| Mount the vmware tools CDROM iso Virtuelle Maschine-> | Mount the vmware tools CDROM iso Virtuelle Maschine-> | ||
| + | |||
| + | Manual mount of the CDROM for the minimal system: | ||
| < | < | ||
| - | cd /media/carom | + | sudo mount /dev/cdrom / |
| + | </ | ||
| + | |||
| + | < | ||
| + | cd /media/cdrom | ||
| cp VMwareTools-9.2.2-893683.tar.gz /tmp | cp VMwareTools-9.2.2-893683.tar.gz /tmp | ||
| Line 17: | Line 50: | ||
| sudo apt-get install build-essential linux-headers-amd64 | sudo apt-get install build-essential linux-headers-amd64 | ||
| - | sudo ./ | + | sudo ./ |
| </ | </ | ||
| - | ==== CHROOT setup ==== | + | ==== Install 32Bit Libraries |
| + | |||
| + | Quartus and Modelsim require 32Bit Libraries which are not installed by default. | ||
| + | |||
| + | Enable multiple architectures (32 Bit / 64 Bit) | ||
| + | |||
| + | < | ||
| + | sudo dpkg --add-architecture i386 | ||
| + | sudo apt-get update | ||
| + | </ | ||
| + | |||
| + | Install the 32Bit libraries | ||
| + | |||
| + | < | ||
| + | sudo apt-get install libc6:i386 libpng12-0: | ||
| + | </ | ||
| + | |||
| + | Now continue with the [[ubuntu_virtual_cae_system# | ||
| + | |||
| + | |||
| + | |||
| - | The Quartus free edition does not work in a 64Bit environment. So quartus is installed in a separate 32bit chroot | ||
| - | environment. | ||