Hi,
I can't install CmapTools on Linux
Here is what happen:
me:~$ chmod +x Linux64CmapTools_v6.03_10-04-17.bin
chmod: impossible d'accéder à 'Linux64CmapTools_v6.03_10-04-17.bin': Aucun fichier ou dossier de ce type
me:~$ sudo ./Linux64CmapTools_v6.03_10-04-17.bin -i GUI
[sudo] Mot de passe de me :
sudo: ./Linux64CmapTools_v6.03_10-04-17.bin : commande introuvable
Do you have a idea about what I've done wrong?
Can't install CmapTools on Linux Ubuntu
Forum rules
Before you post a problem or bug, please be sure you have included the version number of IHMC CmapTools, the operating system and version, the amount of RAM, and any other information that allows us to be able to replicate the problem you are having. (i.e. what were you doing when the problem occur? were you running another program (application) by the time you have the problem?)
Before you post a problem or bug, please be sure you have included the version number of IHMC CmapTools, the operating system and version, the amount of RAM, and any other information that allows us to be able to replicate the problem you are having. (i.e. what were you doing when the problem occur? were you running another program (application) by the time you have the problem?)
-
- Site Admin
- Posts: 608
- Joined: Sat Dec 13, 2008 2:22 pm
Re: Can't install CmapTools on Linux Ubuntu
Don't understand French, but seems like the chmod did not succeed? Maybe need sudo chmod +x ./Linux64... so it finds the file?
-
- Posts: 2
- Joined: Tue Oct 24, 2017 2:42 pm
Re: Can't install CmapTools on Linux Ubuntu
Thanks to your help I was able to install Cmap tools but the IHMC CmapTools folder is in root so I can't run the program. Any idea of the next step?
-
- Site Admin
- Posts: 608
- Joined: Sat Dec 13, 2008 2:22 pm
Re: Can't install CmapTools on Linux Ubuntu
You probably need to get some help from a Unix/Linux user as you are having issues with permissions in your system, not with CmapTools. Hard to tell where you installed and what permissions the installation has.
-
- Posts: 118
- Joined: Sun May 31, 2009 9:12 pm
- Location: Minnesota USA
Re: Can't install CmapTools on Linux Ubuntu
These are my notes for installing on Ubuntu 16.04. Yes, I don't install in the /root directory for exactly that problem. I also slightly change the name of the install folder from "IHMC CmapTools" to "IHMC_CmapTools" to avoid having to type escapes when typing in the paths. I did this on our home computer where multiple accounts needed access to cmaptools and also in the disk image which is used on around 100 clients in our school. In detail, this is what I do:
- Find & download the most recent software with a browser: http://cmap.ihmc.us/cmaptools/cmaptools-download/
- To move to the directory where the software was just downloaded:
Code: Select all
cd ~/Downloads
- To make the downloaded file 'executable' (but always type in the exact version you have):
Code: Select all
sudo chmod +x Linux64CmapTools_v6.02_08-11-16.bin
- To start the installer:
Code: Select all
sudo ./Linux64CmapTools_v6.02_08-11-16.bin
- Press "Next"; Select check-box next to "I accept the terms..." and press "Next"; Select "Advanced Configuration" and press "Next"...
- Changed install location by typing in: /opt/IHMC_CmapTools then press "Next"
- Accept default, "Don't create links" and press "Next"
- Everything else continues to be default. At the "Pre-Installation Summary" press "Install".
- Next, to make a launcher for CmapTools I did the following:
- Download the small jpg attached to this forum post--it's a little jpeg of the icon.
- Name it /opt/IHMC_CmapTools/cmap-tools-logo.jpg then go to the directory of the launcher:
Code: Select all
cd /usr/share/applications/
- Then make a new blank text file:
Code: Select all
sudo touch CmapTools.desktop
- Then open that file in edit mode...
Code: Select all
sudo nano CmapTools.destkop
- And then make it say exactly the following:
Icon=/opt/IHMC_CmapTools/cmap-tools-logo.jpg
Name=CmapTools
Type=Application
Exec=/opt/IHMC_CmapTools/bin/CmapTools
Terminal=false
Categories=Utility;Application;
Now, all users should be able to find the application by typing ‘Cma’ whatever into the dash! Good luck.
Last edited by dgroos on Fri Dec 29, 2017 8:11 pm, edited 3 times in total.
-
- Site Admin
- Posts: 608
- Joined: Sat Dec 13, 2008 2:22 pm
Re: Can't install CmapTools on Linux Ubuntu
Thanks a lot. I'm sure it will be a lot of help.