Algorithms for tar and dump [closed] - algorithm

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to know how tar, dump, cpio works. what is the algorithm behind all these program. How does tar traverse a file system tree, etc. Where can I get the details?
Thanks

If you want to know in detail how they work, you can download the source code of GNU tar, GNU cpio and ext2 dump.
If you have specific, more high-level question about one of them, you can ask a new question about that.

Related

7z questions and such [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am wanting to learn the ropes with 7z. This isn't working...I followed 7z --help:
7z x -r beans.7z personal.php
I want to make a .7z file called "beans.7z" and what contains the file "personal.php"
The error I get is:
Error:
there is no such archive
Here is the correct command for what you want to do:
7z a beans.7z personal.php

Monitor a process for actions applied on a file [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to monitor a process in windows to check what actions it performs on a particular file including renaming it, or encrypt it. I want to generate events for these actions.
its easier to monitor the file than the process. Take a look at FileSystemWatcher class. http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx

Boost MD5 support? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Does Boost have a support for MD5 checksum calculation?
Is yes, how to you use or can you provide some tutorial?
Thank you.
No, it doesn't have. Consider using OpenSSL, Crypto++, and so on.

Reverse engineering [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a binary-only copy of an application written in Delphi 7; as part of its execution, it writes some data into a text file (not in plain text).
Is it possible to extract the data from the file if I know part of the input data and have a copy of this file? (What if it's encrypted?) I have no idea about the structure of the mentioned file.
And no, I don't have source code for the application -- I think that's obvious.
Yes it's possible, you would have to reverse engineer this application first (IDA, HIEW) and/or debug it while it stores the data to the file, contact me if you need more help.

Algorithm to "learn" from user input [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Like the 20Q, is there a published algorithm that allows a program to "learn" from user input?
Programs like junk mail filters learn from what you tell it and uses that information to make more insightful choices in the future when classifying an email as junk.
Mahout is one open source machine learning library. It has implementations of a few different algorithms

Resources