1

I installed A app called Tuxpaint But when I looked for it I could not find it. I know it installed because on the Lubuntu Software Center It showed up on installed Packages. Because I can't find the location I can not use the app.

j0h
  • 14,825
bobby
  • 11
  • 2

2 Answers2

3

You can use the command in the terminal find for searching an folder:

find / -name tuxpaint

or you can be more accurate in your research by specify an repertory

find /usr/ -name tuxpaint
Dhouzy
  • 31
  • 2
0

Open a terminal and run any of these commands to find the location (path):

find `pwd` -name "filename" 

readlink -f "filename "

whereis "filename"

which "filename"

sudo find "$(cd ..; pwd)" -name "filename"

sudo find .. -name "filename" -exec readlink -f {} \;

("file name"=tuxpaint)

cl-netbox
  • 31,163
  • 7
  • 94
  • 131
Ravan
  • 9,379