Results 1 to 7 of 7
New to Linux using Ubuntu 10.04. I installed a software package. Symantec shows that it is installed. Aptitude shows that it is installed. It isn't in any of the menus ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 12-08-2012 #1Just Joined!
- Join Date
- Dec 2012
- Posts
- 5
Where did it go?
New to Linux using Ubuntu 10.04. I installed a software package. Symantec shows that it is installed. Aptitude shows that it is installed. It isn't in any of the menus and I've tried to trace the executable via file search and can't find it. It does show the files in Symantec under Properties > Installed Files but I still can't find the correct file/pathname to create a menu entry.
What am I doing wrong here?
- 12-08-2012 #2
Howdy there!

I guess that the first question is: What did you install?
Second: Did you install it via package manager, or from source code?Jay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 12-08-2012 #3Just Joined!
- Join Date
- Dec 2012
- Posts
- 5
- 12-09-2012 #4
Try using dpkg to locate the package
If that's successful then find out what files were installed with the packageCode:$ sudo dpkg -l tesseract-ocr
Otherwise install using apt-getCode:sudo dpkg -L tesseract-ocr
Code:sudo apt-get install tesseract-ocr
- 12-09-2012 #5Just Joined!
- Join Date
- Dec 2012
- Posts
- 5
This returned the following:
Reading package lists... Done
Building dependency tree
Reading state information... Done
tesseract-ocr is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[/COLOR]
Already installed? OK Back to step 2
Step 2 returned:
/.
/usr
/usr/bin
/usr/bin/cntraining
/usr/bin/mftraining
/usr/bin/tesseract
/usr/bin/unicharset_extractor
/usr/bin/wordlist2dawg
AND A BUNCH OF OTHERS
According to a properties check, the /usr/bin/tesseract is an executable file. How does that go into the menu editor so the program will execute? Or isn't that the right file to execute?
- 12-09-2012 #6
That's the right file to execute. tesseract isn't a graphical tool so it doesn't go into the menu. You have to use it from the command line. Check out the man page for more info.
Code:$ man tesseract NAME tesseract - command line OCR tool SYNOPSIS tesseract imagename outputbase [configfile] [-l <langid>]
- 12-10-2012 #7Just Joined!
- Join Date
- Dec 2012
- Posts
- 5


Reply With Quote

