Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
13 years ago

Ho to execute Quartus II in Fedora Linux

Hello

I have successfully installed 11.1_173_quartus_linux.sh in fedora 16 OS.

Pl tell me how to use it .

How to launch and learn.

venkat

3 Replies

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    I'm new to this as well, but..

    lines below starting with pound '#' are commands intended to be run from a bash shell, usually in a terminal window, and in this case, in X graphical mode.

    Also, I installed to /opt/altera, examples below reflect this.

    1. put quartus in your path,# export PATH=$PATH:/opt/altera/quartus/bin

    2. optionally save this change to your ~/.bashrc or ~/.profile# echo 'export PATH=$PATH:/opt/altera/quartus/bin' >> ~/.bashrc

    3. verify your path has quartus# env

    or# which quartus

    4. run it# quartus &

    As to how to learn, I'm new too. I'm following the tutorials I find from altera.com's documentation section.

    good luck.

    juan.
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    --- Quote Start ---

    I have successfully installed 11.1_173_quartus_linux.sh in fedora 16 OS.

    Pl tell me how to use it .

    How to launch and learn.

    --- Quote End ---

    Look at the PDF for this tutorial:

    http://www.alterawiki.com/wiki/using_the_usb-blaster_as_an_sopc/qsys_avalon-mm_master_tutorial

    page 40

    http://www.ovro.caltech.edu/~dwh/correlator/pdf/altera_jtag_to_avalon_mm_tutorial.pdf (http://www.ovro.caltech.edu/%7edwh/correlator/pdf/altera_jtag_to_avalon_mm_tutorial.pdf)

    has the commands you need to add to your .bashrc file so that the commands quartus and vsim are available on your shell.

    Cheers,

    Dave
  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    You can lookup the executable file in your quartus installation directory and copy it to your /bin directory. Then make sure the file has executable permissions by tiping ls -l filename. If it doesn't use chmod to change permissions or add executable permissions. ie chmod +x filename. After that you can use your mouse to create a desktop shortcut or you can launch from command line by typing quartus (or whatever name the executable file for quartusII in bin has).

    You might need root access in different parts of these steps