This is a static archive of the old Zorin Forum.

The information below may be outdated. Visit the new Zorin Forum here ›

If you have registered on the old forum, you will need to create an account on the new forum.

How to find files on Zorin

trailblazer

Fri Jul 03, 2015 3:02:53 pm

I tried to move a folder with cyrilic file names and I lost it. How can I search for it?

Swarfendor437

Sat Jul 04, 2015 10:29:17 am

Open your /home folder and in the 'Explorer' window, organise your files by 'last modified' - this should help?

Keep us posted! :D

Linx

Mon Jul 06, 2015 9:36:04 pm

Try this
Code:
find / -iname *filename* 2> /dev/null

Note: Keep the * characters in the search string

This uses a program called "find" tells it to begin searching in "/" which is your system root (everything on your computer) -iname says you are searching for a case insensitive filename, *filename* says to look for something with "filename" in the name (It may have something before or after it) and the "2> /dev/null" says don't show me errors, There will be alot of errors as while searching it will try to access files you don't have access to.

Terminal supports Unicode characters (most things Linux will by default), if you have some weird character you need to put in I suggest using the character map found under Zorin Menu > Accessories > Character Map