0

Is there any way to create logical image (l01) in Ubuntu. i am trying it with FTK-Image but gives exe file. but i want to create it in Ubuntu system.

akki
  • 21
  • 5

2 Answers2

0

To create a image of your disk you can use command like:

dd if=/dev/sda of=/path/to/imagefile

If you want to create image of only one filesystem you can use:

dd if=/dev/sda3 of=/path/to/imagefile

NB! Do not write the image file in to the same disk/filesystem

Romeo Ninov
  • 6,538
  • 1
  • 22
  • 31
0

There is a CLI version of FTK that also runs on Ubuntu http://aaforensics.blogspot.com/2017/09/command-line-ftk-imager.html. Direct Download from FTK DEBIAN AND UBUNTU X64 – 3.1.1. There is also a Live-CD from Paladin where tools are integrated, which create a logical or physical image

donald123
  • 5,638
  • 3
  • 26
  • 23