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.
python main.py ...
– Nonny Moose Aug 03 '17 at 16:51rb main.py -o recovery -s recovered /media/ubuntu/bakup/reactNative/
– steeldriver Aug 03 '17 at 17:36