After i installed “tegra development pack” on my ubuntu, the installation opened eclipse IDE for me and then i closed and then figured out that there isn’t any shortcut or anything i could launch it from.
Update:
I followed “Venzen” solution till step 3 and used the filtering command. That showed me that there is another folder named “NVPACK” is located in username > NVPACK > eclipse which I didn’t know about, I kept locking tipping in “eclipse” in the terminal.
Also, there is something stupid I did I would like to share; what happened here is that I kept looking at NVPACK installation folder at windows files not in linux files. (I’m using ubuntu in windows).
You could open a terminal and try to launch Eclipse from the command line:
If this does not work it could mean that the
eclipsebinary was installed somewhere outside of yourPATHand you will have to look for it. I am not familiar with Tegra, but here is a general purpose “process of elimination” to find a file in *nix:update the locate database
$ sudo updatedb
use the
whichcommand to interrogate the updated locate database$ which eclipse
you should have found it by now. If you haven’t all is not lost – run the
locatecommand just for good measure$ sudo locate eclipse
locatecould potentially output lots of matches since it outputs any match to your search term whether its a file or a folder. If the output oflocatescrolls off the screen then usegrepto filter out only matches whereeclipseis a file:If this produces several matches then choose the
eclipsefile which resides in abinfolder.If, by now, a file called eclipse has not yet shown itself, then there are 2 more options left – a long way and a short way…
findcommandeither way, kindly post here should steps 1-3 above not reveal eclipse.