51 | | || '''Platform''' || '''Installer''' || '''Notes''' || |
52 | | || Ubuntu 14.04 LTS (64-bits) || [https://www.tol-project.org/packages/linux/tol-v3.3-ubuntu_14.04.amd64.deb tol-v3.3-ubuntu_14.04.amd64.deb] || || |
53 | | || Fedora 20 (64-bits) || [https://www.tol-project.org/packages/linux/tol-v3.3-linux64-fedora.deb tol-v3.3-linux64-fedora20.rpm] || || |
| 51 | The TOL installation for Linux is in three components: |
| 52 | * '''tol-core''': TOL Minimal installation. Includes the console applications: tolcon and tolsh. See: [wiki:Software]. |
| 53 | * '''tol-gui''': TOL Graphical User Interface. Includes tolbase. See: [wiki:Software#TOLBase]. |
| 54 | * '''tol-headers''': C/C++ headers for development purposes. |
57 | | || '''Distribution''' || '''Installer''' || '''Notes''' || |
58 | | || Fedora 20 (64-bits) || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-core.rpm tol-3.3-fc20.x86_64-core.rpm] || yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-core.rpm || |
59 | | || Fedora 20 (64-bits) || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-gui.rpm tol-3.3-fc20.x86_64-gui.rpm] || yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-gui.rpm || |
60 | | || Fedora 20 (64-bits) || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-headers.rpm tol-3.3-fc20.x86_64-headers.rpm] || yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-headers.rpm || |
| 58 | The following .deb files were created and tested for Ubuntu 14.04 LTS (Trusty Tahr) for 64-bits. |
| 59 | |
| 60 | || '''Component''' || '''Installer''' || '''Notes''' || |
| 61 | || tol-core || [https://www.tol-project.org/packages/linux/TOL-3.3-ubuntu_14.04.amd64-core.deb TOL-3.3-ubuntu_14.04.amd64-core.deb] || Mandatory || |
| 62 | || tol-gui || [https://www.tol-project.org/packages/linux/TOL-3.3-ubuntu_14.04.amd64-gui.deb TOL-3.3-ubuntu_14.04.amd64-gui.deb] || Recommended || |
| 63 | || tol-headers || [https://www.tol-project.org/packages/linux/TOL-3.3-ubuntu_14.04.amd64-headers.deb TOL-3.3-ubuntu_14.04.amd64-headers.deb] || Optional || |
| 64 | |
| 65 | To install the previous .deb files and their dependencies, do: |
| 66 | {{{ |
| 67 | sudo dpkg -i TOL-3.3-ubuntu_14.04.amd64-core.deb |
| 68 | sudo dpkg -i TOL-3.3-ubuntu_14.04.amd64-gui.deb |
| 69 | sudo dpkg -i TOL-3.3-ubuntu_14.04.amd64-headers.deb |
| 70 | sudo apt-get -f install |
| 71 | }}} |
| 72 | |
| 73 | To uninstall them and the dependencies, do: |
| 74 | {{{ |
| 75 | sudo dpkg -r tol-headers |
| 76 | sudo dpkg -r tol-gui |
| 77 | sudo dpkg -r tol-core |
| 78 | sudo apt-get autoremove |
| 79 | }}} |
| 80 | |
| 81 | ==== RPM-based files ==== |
| 82 | |
| 83 | The following .rpm files were created and tested for Fedora 20 for 64-bits. |
| 84 | |
| 85 | || '''Component''' || '''Installer''' || '''Notes''' || |
| 86 | || tol-core || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-core.rpm tol-3.3-fc20.x86_64-core.rpm] || Mandatory || |
| 87 | || tol-gui || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-gui.rpm tol-3.3-fc20.x86_64-gui.rpm] || Recommended || |
| 88 | || tol-headers || [https://www.tol-project.org/packages/linux/fedora/20/tol-3.3-fc20.x86_64-headers.rpm tol-3.3-fc20.x86_64-headers.rpm] || Optional || |
| 89 | |
| 90 | To install the previous .rpm files, do: |
| 91 | {{{ |
| 92 | yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-core.rpm |
| 93 | yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-gui.rpm |
| 94 | yum --nogpgcheck localinstall tol-3.3-fc20.x86_64-headers.rpm |
| 95 | }}} |