I know I have the file /etc/ssh/sshd_config.
I wanted to find it because I didn't remember the path.
Referring to this, https://linux.die.net/man/1/find , and some comments of people with the same problem using "find" I tried: find / sshd_config and sudo find / sshd_config and find /etc sshd_config and find /etc/ssh sshd_config
Result: No such file or directory
I'd like to know why find does not find that file. I also like to know if it is not the right command, which command is the right one ti find a file when we don't know the path (also using wildcard will help).
