How can I find a specific file from a Linux terminal?

debian, linux

Solution

Find from root path `find / -name "index.html"`

Find from current path `find . -name "index.html"`

Problem

I am trying to find where `index.html` is located on my linux server, and was wondering if there was a command to do that. Very new to linux and appreciate any help I can get.

Original source

Related problems