0

I am trying to recover my data from a ntfs partition.

I am using recuperabit .

I only want to recover the files of a particular folder.

folder name is reactNative.

partition is labelled as bakup.

command I tried:

rb main.py /media/ubuntu/bakup/reactNative/ -o recovery -s recovered

error:

rb: error: unrecognized arguments: /media/ubuntu/bakup/reactNative/

Note : I have symlinked it and named it as rb . This is the reference for symlink.

YaSh Chaudhary
  • 153
  • 1
  • 7

1 Answers1

0

The command line you typed does not make sense

Note: I am the author of both the essay you linked and RecuperaBit itself.

The article is pretty clear about symlinking the main RecuperaBit executable:

ln -s /opt/RecuperaBit/main.py /usr/local/bin/recuperabit

Given that you are linking to the main.py program, you must not reference it again while running the software. Your command then would become:

recuperabit /media/ubuntu/bakup/reactNative/ -o recovery -s recovered

But again there is no way this would work. You are referencing a directory while the only mandatory argument of RecuperaBit is the disk image that you want to analyze. Or, at worst, a block device (this is not advised but may work).

A meaningful command could be similar to:

recuperabit /path/to/the/disk/image.dd -o recovery/ -s scan.save

All of these points are thoroughly discussed in the aforementioned article and here on Ask Ubuntu.