Open 000 file in fedora

Hi everybody,

I need a way to unzip .000 file with 2G of volume in fedora. what softwares are suitable؟

Open it with Gnome Archiver , it will unzip it if your .000 is in a supported format. (in KDE, the equivalent app is called Ark.)

I opened it with Gnome Archiver. but don’t support it.

.000 could indicate that this archive is part of a larger zip archive with many files .001, .002, `…).

if you are sure it’s a single zip archive, try from command line: unzip filename.000

No, it isn’t dingle file. but i have other parts of this file :slight_smile:

rfile00000.000
rfile00000.001
rfile00001.000
rfile00002.000
rfile00002.001
rfile00002.002
rfile00002.003
rfile00003.000
rfile00003.001
rfile00003.002
rfile00003.003
rfile00003.004
rfile00004.000
rfile00005.000
rfile00006.000
rfile00007.000
rfile00008.000

OK, in that case you need to join the parts together first before unzipping. unzip doesn’t support multipart zip files.

Assuming rfile00000.000 and rfile00000.001 belong together, you do

cat rfile00000.* > rfile0.zip

then unzip it.

Then you repeat the step above with all files rfile00001 to ...8

Or if they all together make up the zip archive it would be something like

cat rfile00000.000 rfile00000.001 rfile00001.000 rfile00002.000 rfile00002.001 rfile00002.002 rfile00002.003 rfile00003.000 rfile00003.001 rfile00003.002 rfile00003.003 rfile00003.004 rfile00004.000 rfile00005.000 rfile00006.000 rfile00007.000 rfile00008.000 > rfile.zip

EDIT: Apparently 7z understands multipart zip files. So install that (sudo dnf install p7zip) and run:

 7z x rfile00000.000