https://github.com/gmartinezramirez-old/file-splitter
:scissors: [Finished] File splitter and recover using pipes. Based on the functioning of RAID 5. Coursework: Operating Systems
https://github.com/gmartinezramirez-old/file-splitter
file-recovery file-split filesystem raid5 xor
Last synced: 2 days ago
JSON representation
:scissors: [Finished] File splitter and recover using pipes. Based on the functioning of RAID 5. Coursework: Operating Systems
- Host: GitHub
- URL: https://github.com/gmartinezramirez-old/file-splitter
- Owner: gmartinezramirez-old
- License: mit
- Created: 2017-04-15T01:36:42.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-30T07:10:26.000Z (over 8 years ago)
- Last Synced: 2025-09-03T10:38:50.222Z (5 months ago)
- Topics: file-recovery, file-split, filesystem, raid5, xor
- Language: C++
- Homepage:
- Size: 13.7 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File Splitter and joiner
## Compilation
* Execute makefile, to compile the 3 executables: main, CUT and JOIN. The object code will be compiled in the "build / obj" folder and the executables in the "build /" folder.
```
$ make
```
## Execution
* Go to `build/' directory.
* For execution you must run the main program __`main`__ next to the Options __` - cut N `__ if you want to cut the _input_ file in _N_ parts, or with __` - join `__ if you want to restore the original file.
* The JOIN program will retrieve the missing part - if any - and unite all the parts to restore the original program.
```
$ ./main --cut N file.extension
```
```
$ ./main --join file.extension
```
## Example
```
$ ./main --cut 6 doc.pdf
```
```
$ ./main --join doc.pdf
```