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.
Asked
Active
Viewed 597 times
2 Answers
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
-
i tried it shows "dd: failed to open '/dev/sda3': No such file or directory" – akki Mar 04 '20 at 10:47
-
aslo i tried with first command but it shows "dd: failed to open '/dev/sda': Permission denied" – akki Mar 04 '20 at 10:48
-
@akki, those are examples to demonstrate the command. Feel free to change it according to your disks/partitions – Romeo Ninov Mar 04 '20 at 10:49
-
-
-
@akki, this is vendor specific format. So you should use vendor software. But check with the vendor if you can open raw images – Romeo Ninov Mar 04 '20 at 11:28
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