Results 1 to 9 of 9

Thread: How to search entire computer for file

  1. #1
    Join Date
    Jan 2008
    Beans
    43

    How to search entire computer for file

    Whats the best way to search all of ubuntu drive for a particular file? Tracker search tool doesn't seem to search everywhere. Is there another search tool like the one windows uses?

  2. #2
    Join Date
    Jul 2007
    Location
    UK
    Beans
    17,059
    Distro
    Ubuntu Development Release

    Re: How to search entire computer for file

    Quote Originally Posted by billmik View Post
    Whats the best way to search all of ubuntu drive for a particular file? Tracker search tool doesn't seem to search everywhere. Is there another search tool like the one windows uses?
    Places - down the bottom > search for files.

  3. #3
    Join Date
    Aug 2007
    Location
    Manchester, UK
    Beans
    10,285
    Distro
    Ubuntu

    Re: How to search entire computer for file

    Using the method philinux mentioned you will need to change "Search in folder" to be "Filesystem"

  4. #4
    Join Date
    Jul 2007
    Location
    Brugge, België
    Beans
    2,933

    Re: How to search entire computer for file

    Quote Originally Posted by billmik View Post
    Whats the best way to search all of ubuntu drive for a particular file? Tracker search tool doesn't seem to search everywhere. Is there another search tool like the one windows uses?
    The only files I need to search for are music files (to much to navigate properly). I use "places -> search for files" and it always find the files in seconds.

    There is the "deskbar applet" but I never used it.

    You can use the terminal to search for files. Google for it as I've never used this.

    According the the ubuntu wiki there are other search applications.

    - beagle (I've heard this one isn't friendly on resources, but I never used it)
    - strigi
    - recoll

  5. #5
    Join Date
    Jan 2008
    Location
    Bentonville AR
    Beans
    Hidden!
    Distro
    Ubuntu 13.10 Saucy Salamander

    Re: How to search entire computer for file

    I use catfish (I find it versatile)
    Code:
    sudo apt-get install catfish
    Then goto Applications->Accessories->File Search
    Sayak Banerjee
    KDE Sysadmin | KDE e.V.
    Need help? Contact us.

  6. #6
    Join Date
    Mar 2007
    Beans
    50

    Re: How to search entire computer for file

    from the terminal:

    cd /
    sudo find -name file_name -print



    Using this, you can also find the hidden files. I don't think that searching from Places-->Search for files will show hidden files.

    Example:
    cd /
    sudo find -name .bash_history -print
    [sudo] password for user:
    ./home/user/.bash_history

  7. #7
    Join Date
    Jul 2007
    Location
    Brugge, België
    Beans
    2,933

    Re: How to search entire computer for file

    Quote Originally Posted by enigmaniac23 View Post
    from the terminal:

    cd /
    sudo find -name file_name -print



    Using this, you can also find the hidden files. I don't think that searching from Places-->Search for files will show hidden files.

    Example:
    cd /
    sudo find -name .bash_history -print
    [sudo] password for user:
    ./home/user/.bash_history
    "Search for files" can look for hidden files. But you'll need to enable it in the "select more options" drop-down menu. This will take longer than normal searches.

  8. #8
    Join Date
    Jan 2008
    Beans
    43

    Re: How to search entire computer for file

    Thanks catfish is exaxtly what i was looking for

  9. #9
    Join Date
    May 2007
    Location
    Kansas City, MO
    Beans
    129

    Re: How to search entire computer for file

    I've always been a big fan of slocate.

    Secure Locate provides a secure way to index and quickly search for files on your system. It uses incremental encoding just like GNU locate to compress its database to make searching faster, but it will also store file permissions and ownership so that users will not see files they do not have access to.
    It searches quickly, and can be updated quickly if you are searching for something you just saved with.
    Code:
    sudo updatedb
    Then you can just use:
    Code:
    slocate nameOfFile
    which views all the files you can see. Or if you want to search all the files in the system just use sudo along with it to see everything.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •