Skip to main content
added 2 characters in body
Source Link
phuclv
  • 2.4k
  • 1
  • 23
  • 47

What is the fastest way to grep 400gb400GB binary file? I need one txt file from hddHDD dump and iI know some strings from it and want to find this file in the dump.

I tried to use grep -a -C 10 searchstringgrep -a -C 10 searchstring but grep crashes with out of memory when it tries to read large chunkchunks of data without newline symbols. Also iI would like to start searching from not from the beginning but from some point of file

What is the fastest way to grep 400gb binary file? I need one txt file from hdd dump and i know some strings from it and want to find this file in dump.

I tried to use grep -a -C 10 searchstring but grep crashes with out of memory when it tries to read large chunk of data without newline symbols. Also i would like to start searching from not from the beginning but from some point of file

What is the fastest way to grep 400GB binary file? I need one txt file from HDD dump and I know some strings from it and want to find this file in the dump.

I tried to use grep -a -C 10 searchstring but grep crashes with out of memory when it tries to read large chunks of data without newline symbols. Also I would like to start searching not from the beginning but from some point of file

grammar
Link

Best way to grep a big binary file?

Source Link

Best way to grep big binary file?

What is the fastest way to grep 400gb binary file? I need one txt file from hdd dump and i know some strings from it and want to find this file in dump.

I tried to use grep -a -C 10 searchstring but grep crashes with out of memory when it tries to read large chunk of data without newline symbols. Also i would like to start searching from not from the beginning but from some point of file