Asked By
thor peiann
10 points
N/A
Posted on - 03/31/2013
Hello experts, from all around the world can you tell me how can make sector search for Linux? I am new at Linux OS. Can you tell me about very simple fast and easy good tools by which I can check my HDD. So that I can easily know my HDD damage or good. Mind the OS is Linux. Please do not ask me any question.
Sector search for Linux how?
Hi,
You can search for files in linux using the following methods-
1) Applications>>accessories>>search for files. This could be different for different Linux operating systems.
2) Using find command in the terminal. You can use it as following command-
find / -name 'filename'
/ is used to search for files from the root.
-name matches the pattern
Filename is the name of the file you want to search for.
You can use the following command, if you are unsure about the full file name.
find / -name 'filename*'
You can refer- https://www.computerhope.com/issues/ch000623.htm
Regards,