mtftar extract bkf files

Βρήκα ένα παλιό dvd όπου είχα πάρει backup το 2003 ένα από acer travelmate laptop με windows xp που είχα.
Το dvd είχε το back up σε ένα αρχείο bkf το οποίο σε linux ανοίγει με mtftar ένα εγκαταλειμμένο project.
Όπου κιαν έψαξα όλα τα link είναι σπασμένα , ένα που βρήκα από github δεν γίνεται compile βγάζει σφάλματα στο make και όλοι έχουν το ίδιο πρόβλημα. Επειδή βρήκα άκρη το αφήνω εδώ ως how to να υπάρχει διότι αυτήν την στιγμή δεν υπάρχει κάποιος σωστός οδηγός στο internet που να ισχύει.

Warning! CERT Forensics Tools is a third-party repository

download Source Package mtftar (Package architecture x86_64) - κατεβάζουμε το mtftar (Package architecture x86_64)

wget  https://forensics.cert.org/fedora/cert/34/SRPMS/mtftar-0.9.0-1.fc34.src.rpm

to extract src.rpm file click and extract it or better you can install from your package manager rpm2cpio - για να αποσυμπιέστε το src.rpm αρχείο μπορείτε να το κάνετε με κλικς… ή ακόμα καλύτερα εγκαθιστώντας το εργαλείο rpm2cpio

ubuntu-mint etc…

sudo apt install rpm2cpio
rpm2cpio mtftar-0.9.0-1.fc34.src.rpm  | cpio -i

extract tar file - αποσυμπιέζουμε το αρχείο tar

tar -xvf mtftar-0.9.0.tar.gz

cd to file - πάμε στο αρχείο mtftar που δημιουργήθηκε

cd mtftar
make

if everything is ok with command make, then we make a tar file named backup.tar from the original bkf file - αν όλα έχουν πάει καλά με το make , τότε φτιάχνουμε ένα αρχείο με όνομα backup.tar θα δημιουργηθεί από το αρχικό bkf αρχείο που έχουμε.

cd ..
./mtftar -v -o backup.tar  < original.bkf

now extract the backup .tar file - αποσιμπιέζουμε το tar αρχείο που μόλις δημιουργήσαμε

tar -xvf backup.tar

if everything is ok we can see a folder named C:
in this folder is the windows NT backup we are looking for - αν όλα έχουν πάει καλά θα εμφανιστεί ένας φάκελος με το όνομα C: εκεί είναι το backup των windows που περιείχε το αρχικό αρχείο.bkf

good luck-καλη τύχη

edit: founder of mtftar is here The mtf Home Page
but there is a complite branche GitHub - geocar/mtftar: A filter to translate MTF/BKF backup streams from Windows, to the TAR archves used by the rest of the world., so you can dowload the zip file from github and do what you have to do…

4 «Μου αρέσει»