Computer Hacking Forensic Investigator (CHFI v10) — Question 193

What will the following Linux command accomplish?
dd if=/dev/mem of=/home/sam/mem.bin bs=1024

Answer options

Correct answer: C

Explanation

The command uses 'dd' to copy data from /dev/mem, which represents the physical memory of the system, to a file named mem.bin, hence it effectively copies the running memory to a file. The other options are incorrect because they refer to different data sources or types that are not related to the command's operation.