Sector search for Linux how?

Asked By 10 points N/A Posted on -
qa-featured

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.

SHARE
Answered By 35 points N/A #165495

Sector search for Linux how?

qa-featured

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,

Related Questions