forked from peazip/peazip.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arc-files-utility.html
970 lines (970 loc) · 42 KB
/
arc-files-utility.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<meta name="AUTHOR" content="PeaZip Free Archiver Utility">
<meta name="DESCRIPTION"
content="Work with FreeArc ARC archives, free compression and extraction utility. How to manage, create, encrypt, open, extract / unzip ARC files on Windows and Linux">
<meta name="KEYWORDS"
content="how to, file, arc, format, freearc, extract, open, free, .arc, encrypt, convert, files, archives, software, utility, extraction, unzip, compression, work with">
<meta name="ROBOTS" content="all">
<title>How to create, encrypt, open, extract ARC files</title>
<meta name="viewport" content="width=device-width">
<meta property="og:site_name"
content="PeaZip file archiver utility, free RAR ZIP software">
<meta property="og:title"
content="How to create, encrypt, open, extract ARC files">
<meta property="og:description"
content="Work with FreeArc ARC archives, free compression and extraction utility. How to manage, create, encrypt, open, extract / unzip ARC files on Windows and Linux">
<meta property="og:image" content="free-zip/peazip-icon.png">
<meta property="og:url"
content="https://peazip.github.io/arc-files-utility.html">
<link rel="stylesheet" type="text/css" href="peazip-software.css">
</head>
<body>
<div style="text-align: center;">
<table
style="width: 100%; text-align: left; margin-left: auto; margin-right: auto;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; text-align: center;">
<table
style="text-align: left; margin-left: auto; margin-right: auto;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top;"> <img title="ARC files"
alt="open arc files" src="peazip_ico24.png"
style="border: 0px solid ; width: 24px; height: 24px;"> </td>
<td style="vertical-align: middle;">
<br>
</td>
<td style="vertical-align: middle; font-weight: bold;"><a
href="index.html">DOWNLOAD PEAZIP</a> </td>
<td style="vertical-align: middle; font-weight: bold;">
<br>
</td>
<td style="vertical-align: middle; font-weight: bold;"><a
href="peazip-help-faq.html">ONLINE SUPPORT</a> </td>
<td style="vertical-align: top; font-weight: bold;">
<br>
</td>
<td style="vertical-align: middle; font-weight: bold;"><a
href="screenshots-peazip-1.html">SCREENSHOTS</a> </td>
<td style="vertical-align: top; font-weight: bold;">
<br>
</td>
<td style="vertical-align: middle; font-weight: bold;"><a
href="peazip-compression-benchmark.html">BENCHMARKS</a> </td>
<td style="vertical-align: top;">
<br>
</td>
<td style="vertical-align: middle; font-weight: bold;"><a
href="donations.html">DONATE</a> </td>
</tr>
<tr>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><img
alt="arc files extractor software" src="free-rar/archive-manager.png"
style="width: 12px; height: 12px;"> </td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="text-align: center; vertical-align: bottom;"><br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr align="center">
<td
style="vertical-align: top; background-color: rgb(72, 136, 248);">
<div style="text-align: left;"> </div>
<table
style="width: 960px; text-align: left; font-weight: bold; color: rgb(253, 253, 253);"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td colspan="1" rowspan="1" style="vertical-align: top;"> <br>
<h1 style="text-align: center; font-weight: bold;"><big><big><big><a
name="open_arc_files"></a>How to create, open, extract
ARC files</big></big></big></h1>
<br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(204, 204, 204);"><img
alt="Work with FreeArc ARC archives free compression and extraction utility"
src="free-rar/file-compressor.png" style="width: 2px; height: 2px;"><br>
</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(240, 239, 238);"><img
alt="How to manage create encrypt open extract unzip ARC files on Windows and Linux"
src="free-rar/file-compressor.png" style="width: 2px; height: 2px;"><br>
</td>
</tr>
<tr align="center">
<td style="vertical-align: top;"><br>
<table style="text-align: left;" border="0" cellpadding="6"
cellspacing="0">
<tbody>
<tr>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><a
href="peazip-help-faq.html">FAQ, HOW TO</a></small></td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; text-align: center; background-color: rgb(240, 239, 238); font-weight: bold;"><small><a
href="peazip-help.html">ONLINE TUTORIAL</a></small></td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; text-align: center; background-color: rgb(240, 239, 238); font-weight: bold;"><small><a
href="peazip-more.html">ISSUE TRACKER, CVE<br>
</a></small></td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; background-color: rgb(240, 239, 238); text-align: center; font-weight: bold;"><a
href="changelog.html"><small>CHANGE LOG</small></a><br>
</td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; background-color: rgb(240, 239, 238); text-align: center; font-weight: bold;"><small><a
href="peazip-tos-privacy.html">TOS, PRIVACY</a><br>
</small></td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; background-color: rgb(240, 239, 238); text-align: center; font-weight: bold;"><small><a
href="peazip-free-archiver.html">WHAT IS PEAZIP</a><br>
</small></td>
<td
style="vertical-align: top; text-align: center; font-weight: bold;"><small><br>
</small></td>
<td
style="vertical-align: top; background-color: rgb(240, 239, 238); text-align: center; font-weight: bold;"><small><a
href="peazip-reviews.html">REVIEWS</a></small></td>
</tr>
</tbody>
</table>
<br>
<table
style="background-color: rgb(240, 240, 240); width: 960px; text-align: left;"
border="0" cellpadding="48" cellspacing="0">
<tbody>
<tr align="left">
<td
style="background-color: rgb(255, 255, 255); vertical-align: top;">
<ul>
<li>
<p><a href="#manage_arc_format">WORK WITH ARC FILES,
COMPRESSION AND EXTRACTION</a></p>
</li>
<li>
<p><a href="#arc_specifications">WHAT IS ARC FILE
EXTENSION (FREEARC ARCHIVE FORMAT)</a></p>
</li>
</ul>
<br>
<h2><big><big><big><a style="font-weight: bold;"
name="manage_arc_format"></a><a
href="arc-files-utility.html#open_arc_files"><span
style="font-weight: bold;">Work with ARC files,
compression and
extraction</span><br>
</a></big></big></big></h2>
<br>
<a name="work_with_arc_files"></a>PeaZip provides full
read-write support (create, open and extract arc files) for FreeARC
ARC/WRC format
on Linux and Windows using FreeArc
as backend compression / extraction executable - please note SEA ARC is
a separate, non
compatible archive format.<br>
<br>
<h3><img alt="work with arc files on windows and linux"
title="How to create, encrypt, open, extract / unzip ARC files on Windows and Linux"
src="read-write.png"
style="border: 0px solid ; width: 800px; height: 39px;"></h3>
<br>
<table style="width: 100%; text-align: left;" border="0"
cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; width: 448px;">
<table
style="background-color: rgb(240, 240, 240); width: 100%; text-align: left;"
border="0" cellpadding="24" cellspacing="1">
<tbody>
<tr>
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(250, 250, 250);">
<h3><big><span style="font-weight: bold;">Compress
to ARC format</span><br>
</big></h3>
<p><a name="arc_file_creation"></a>To add
files/folders to a new archive or
into an existing .arc file</p>
<ul>
<li>
<h4><a name="arc_compression"></a>Compress
to ARC from system file explorer</h4>
</li>
<ul>
<li>
<p>Context menu
entry PeaZip > Add to archive, shows archive creation
screen, to set compression settings, output destination,
encryption (password protection), and other archiving options.</p>
</li>
</ul>
<li> <a name="add_to_arc_file"></a>Create
arc
files from PeaZip </li>
<ul>
<li>
<p>Use Add
button
(or
Add context
menu entry) to show archive creation screen</p>
</li>
</ul>
<ul>
<li>
<p>Drag and drop files / folders from the
system
to a
PeaZip
instance; if you are browsing
an existing archive you will be asked if you want to add files to
current archive or create a new one</p>
</li>
</ul>
</ul>
<h2><img alt="create arc files"
title="How to compress to ARC format" src="add-to-archive.png"
style="width: 100px; height: 45px;"></h2>
<a name="how_to_create_arc_files"></a>From
archive creation screen it is also possible to apply encryption (<span
style="font-weight: bold;">Blowfish</span>, <span
style="font-weight: bold;">Twofish</span>, <span
style="font-weight: bold;">AES</span>, and <span
style="font-weight: bold;">Serpent</span> cyphers are supported)<span
style="font-weight: bold;"> </span>to
password-protect the archive, <span style="font-weight: bold;">create
recovery records</span> (which allows to recover mildly corrupted
archives), and to <span style="font-weight: bold;">split
file</span> - create
multiple volumes smaller than desired<span style="font-style: italic;">
maximum output size</span>. From "Advanced" tab, it is possible to
further fine-tune compression settings.<br>
Learn more about <a href="how-to-compress-files-folders.html">how to
create arc, tar, zip archive files</a><br>
</td>
</tr>
</tbody>
</table>
<br>
<table
style="background-color: rgb(240, 240, 240); width: 100%; text-align: left;"
border="0" cellpadding="24" cellspacing="1">
<tbody>
<tr>
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(250, 250, 250);">
<h3 style="font-weight: bold;"><big>Update
existing ARC archives</big></h3>
<br>
<a name="manage_arc_files"></a>Easiest way to
update an existing ARC archive is opening it in PeaZip and
dragging files/folders to it, read more about <a
href="how-to-update-existing-archive.html">how to update existing
archives</a>.<br>
<br>
Press cancel or "Delete from archive"
button to remove items already in archive, view also: <span
style="font-weight: bold;"></span><a
href="add-remove-files-from-archive.html">add or delete data from
archive</a>.<br>
<br>
<a name="convert_zip_to_arc"></a>Converting
existing archives from / to
.arc format is possible using <span style="font-weight: bold;">Convert
</span>button,
which extracts and then re-pack input archive files, view faq about <a
href="convert-files.html">how to convert arc, rar, zip files</a>
<h2><img alt="free arc files extraction utility"
title="Convert from/to ARC format" src="convert.png"
style="width: 120px; height: 45px;"></h2>
</td>
</tr>
</tbody>
</table>
<br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 448px;">
<table
style="background-color: rgb(240, 240, 240); width: 100%; text-align: left;"
border="0" cellpadding="24" cellspacing="1">
<tbody>
<tr>
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(250, 250, 250);">
<h2 style="font-weight: bold;"><big>Open ARC
files</big></h2>
<br>
<a name="open_arc_archives"></a>Open arc
files in PeaZip with double click, or context menu "Open as archive"
entry,
that
will attempt to read any user provided file type regardless file
extension associations<br>
<br>
<h2 style="font-weight: bold;"><big>Extract ARC
files</big></h2>
<div style="text-align: left;"> </div>
<br>
<h3><a name="unzip_arc_files"></a>Decompress
ARC files from the system</h3>
<ul style="text-align: left;">
<li>
<p><a name="extract_arc_archives"></a>Context
menu PeaZip > Extract... shows archive
extraction screen, to set
output path, password (if needed) and other extraction options</p>
</li>
<li>
<p><a name="arc_file_extractor"></a>Select
one
or more archives and use
context
menu <span style="font-weight: bold;">Extract here</span> or <span
style="font-weight: bold;">Extract
here (to new folder)</span> for quick extraction with no further
confirmation </p>
</li>
</ul>
Extract ARC files from PeaZip
application<br>
<ul style="text-align: left;">
<li>
<p><a name="view_arc_files"></a>Extract
button shows archive
extraction screen providing access to all decompression options</p>
</li>
<li>
<p><a name="extract_arc"></a>Extract
all to... button starts
simplified
unpacking procedure, only asking for output path</p>
</li>
<li>As alternative, simply drag & drop
from
the
application to the system the items you want to extract</li>
</ul>
<h2><img alt="arc files extraction"
title="How to decompress ARC archive" src="extract-archive.png"
style="width: 112px; height: 45px;"></h2>
<br>
<a name="how_to_open_arc_file"></a>Doubleclick
on
an archived file to
open
it in
preview
mode, to inspect its content before real
extraction<br>
<br>
<a name="arc_extraction"></a>To
browse or extract a spanned (split) ARC file, save all the parts in
same
directory, open the first volume (.ARC.001 extension). </td>
</tr>
</tbody>
</table>
<br>
<table
style="background-color: rgb(240, 240, 240); width: 100%; text-align: left;"
border="0" cellpadding="24" cellspacing="1">
<tbody>
<tr>
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(250, 250, 250);">
<h3><big><span style="font-weight: bold;">Work
with encrypted ARC files</span><br>
</big></h3>
<br>
<a name="arc_utility"></a>To create or extract
an encrypted
.arc file, enter
the password from the padlock icon, alternatively click Tools
>
Enter
password / keyfile in main menu, or F9 accelerator key.<br>
<h3><img alt="unzip arc files"
title="ARC file password" src="rar-files/cryptography.gif"
style="width: 16px; height: 16px;" align="middle"></h3>
<a name="handle_arc_archives"></a>Password
protected items are
marked by * sign after
filename.<br>
ARC ecryption algorithm can be changed in Advanced tab,
supported cyphers are <span style="font-weight: bold;">Blowfish </span>(448bit
cypher with 64 bit blocks), <span style="font-weight: bold;">Twofish256</span>,
<span style="font-weight: bold;">AES256 </span>(default),
<span style="font-weight: bold;">Serpent256</span>.<br>
Read more about <a href="encrypt-files.html">how to create encrypted
archives</a> and <a href="extract-encrypted-files.html">how to extract
encrypted archives</a><br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<br>
</td>
</tr>
</tbody>
</table>
<table
style="background-color: rgb(240, 240, 240); width: 960px; text-align: left;"
border="0" cellpadding="48" cellspacing="0">
<tbody>
<tr align="left">
<td
style="background-color: rgb(255, 255, 255); vertical-align: top;">
<div style="text-align: left; color: rgb(0, 0, 0);"><big> </big>
<h2><big><big><big style="font-weight: bold;"><a
name="arc_specifications"></a><a href="#open_arc_files">What is ARC
file extension (FreeArc
archive format)</a></big><big><br>
</big></big></big></h2>
<br>
<br>
<h2 style="font-weight: bold;"><big>What is .arc file format</big></h2>
<br>
</div>
<a name="what_is_arc_file"></a><span
style="font-weight: bold;">ARC</span> extension designates the native
archive format developed for <a href="http://freearc.org/">FreeArc<img
alt="what is .arc file" title="ARC file format specifications"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a>, a modern
open source file archiver created by Bulat Ziganshin, featuring high
level of compression (11 lossless data compression algorithms and
filtes are supported, including LZMA and PPMD) with good efficiency (<a
href="http://www.tomshardware.com/reviews/archive-zip-compression,2572-6.html">Tom's
Hardware comparative<img alt="arc vs rar vs 7z benchmark"
title="ARC format performances" src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a>)
comparable or better than <a href="what-is-rar-file.html">rar format</a>
and in many cases also of <a href="7z-file-format.html">7z format</a>,
<a href="encrypt-files.html">strong
encryption</a> (<span style="font-weight: bold;">AES</span>, <span
style="font-weight: bold;">Blowfish</span>, and AES contest finalist
algorithms <span style="font-weight: bold;">Twofish</span>, and <span
style="font-weight: bold;">Serpent</span>), and ability to create
recovery records (option which is notably featured by proprietary RAR
format but not by open format 7Z). The file format is also known with <span
style="font-weight: bold;">WRC</span> extension.<br>
<br>
<br>
<h2 style="font-weight: bold;"><big>Maximum size of ARC
file
format</big><br>
</h2>
<br>
<a name="max_size_of_arc_file"></a>The max size of ARC
files is 2^63 bytes (8 exabytes of
total size of the archive), filesize field represented by a signed 64
bit integer, exceeding current needs and
limitations of common filesystems.<br>
<br>
<br>
<h2 style="font-weight: bold;"><big>Maximum number of files
in a
single ARC archive</big></h2>
<br>
<a name="max_files_numbers_arc_format"></a>The maximum
number of input files allowed into a singe ARC package is limited to
2^31 (max 2 billion files), file number filed represented by a signed
32
bit integer, which - like maximum archive size limit - practically
exceeds current needs.<br>
<table style="width: 100%; text-align: left;" border="0"
cellpadding="24" cellspacing="0">
<tbody>
<tr>
<td
style="text-align: right; vertical-align: middle; width: 64px;">
<h2><span style="font-weight: bold;"><img
title="What is ARC file format, native FreeArc archives extension"
alt="freearc arc format features" src="file-format/information.png"
style="width: 48px; height: 48px;"><br>
</span></h2>
</td>
<td
style="font-style: italic; vertical-align: middle;"><span
style="font-style: italic;"><a name="arc_file_type"></a>FreeArc's
format must not be
confused
with 1985 </span><a style="font-style: italic;"
href="https://en.wikipedia.org/wiki/ARC_%28file_format%29">SEA's ARC
format<img alt=".arc file definition" title="SEA ARC file format"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a><span
style="font-style: italic;">, using same .arc file extension. The
company pionereed the data
compression in BBS era, but ARC program fell in popularity after the
introduction of more efficient Phil Katz's PKARC, which later developed
largely modified and improved ZIP format for PKZIP program, in response
to the notorious lawsuit ensued between SEA and PKWARE.</span></td>
</tr>
</tbody>
</table>
<span style="font-style: italic;"></span><br>
<h3><big style="font-weight: bold;">Types of files with
.arc extension supported by PeaZip</big></h3>
<br>
PeaZip features <a href="arc-files-utility.html">creation
and
extraction of ARC files</a>: create, open, browse, and extract ARC
archives, convert any supported archive to .arc format and vice-versa.
Also, the application supports creation of arc-format <a
href="self-extracting-archives.html">self extracting
archives</a> (<span style="font-weight: bold;">SFX</span>), so
recipient
will not need a FreeArc compatible extractor when receiving one of
those self-extracting files.<br>
PeaZip currently does not support reading, nor writing, the unrelated
SEA's ARC format.<br>
<h2><img title="ARC file format features"
alt="what are arc files" src="add-to-archive.png"
style="width: 100px; height: 45px;"></h2>
<h3><img title="ARC format specifications"
alt="arc extension" src="extract-archive.png"
style="width: 112px; height: 45px;"></h3>
<br>
<a name="arc_file_format_specifications"></a>Read more .arc
file type <span style="text-decoration: underline;"></span><a
href="https://en.wikipedia.org/wiki/FreeArc">FreeArc Wikipedia entry<img
title="Wikipedia FreeArc" alt="FreeArc software"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px; font-weight: bold;"></a>,
<a target="_blank"
href="http://en.wikipedia.org/wiki/Prediction_by_partial_matching">PPMd<img
title="PPM algorithm" alt="Wikipedia prediction by partial matching"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a> and <a
target="_blank"
href="http://en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Markov_chain_algorithm">LZMA/LZMA2<img
alt="Lempel Ziv Markov chain algorithm" src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a> data
compression algorithms, <a target="_blank"
href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">AES<img
title="Rijndael" alt="wikipedia aes algorithm"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a>, <a
target="_blank" href="https://www.schneier.com/twofish.html">Twofish<img
title="Bruce Schneier" alt="twofish algorithm"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a>, <a
target="_blank"
href="http://en.wikipedia.org/wiki/Serpent_%28cipher%29">Serpent<img
title="Ross Anderson, Eli Biham, Lars Knudsen" alt="Serpent algorithm"
src="free-rar/extractor.png"
style="border: 0px solid ; width: 12px; height: 10px;"></a> ciphers.<br>
<br>
<table
style="background-color: rgb(72, 136, 248); width: 100%; text-align: left;"
border="0" cellpadding="0" cellspacing="1">
<tbody>
<tr style="color: rgb(245, 245, 245);">
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(72, 136, 248);">
<table style="width: 100%; text-align: left;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top; width: 24px;">
<br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;">
<br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td
style="vertical-align: top; color: rgb(245, 245, 245); width: 430px;">
<table style="width: 100%; text-align: left;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td
style="width: 50%; color: rgb(245, 245, 245); vertical-align: middle;">
<h3><big><big><big><big><big><a
name="arc_format_specifications"></a>.ARC</big></big></big></big></big></h3>
</td>
<td
style="width: 50%; color: rgb(245, 245, 245); vertical-align: middle;">Author
Bulat Ziganshin, 2007<br>
8 EB max total archive size limit<br>
2 billions files limit in a single archive<br>
</td>
</tr>
</tbody>
</table>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td
style="vertical-align: top; color: rgb(245, 245, 245); width: 430px;">
<h4><big>SPEED <img alt="arc format specs"
title="arc compression speed" src="zip-files/star4.png"
style="width: 80px; height: 16px;"></big></h4>
Arc format features good speed. Very efficient implementation makes it
significantly faster than
7Z
compression and extraction (and marginally faster than RAR), with
comparable compression ratio.<br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td
style="vertical-align: top; color: rgb(245, 245, 245); width: 430px;">
<h4><big>COMPRESSION
RATIO <img alt="arc format specifications"
title=".ARC compression performances" src="zip-files/star4p5.png"
style="width: 80px; height: 16px;"></big></h4>
Arc archives features very good compression ratio. Comparable to 7-Zip
with LZMA / LZMA2 compression,
consistently better than
RAR format, but inferior
to PAQ compressors family.</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td
style="vertical-align: top; color: rgb(245, 245, 245); width: 430px;">
<h4><big>ADVANCED
OPTIONS <img alt="arc format aes sperpent tworfish encryption"
title="ARC format options" src="zip-files/star4p5.png"
style="width: 80px; height: 16px;"></big></h4>
Arc format features a very good selection of advanced functions.
Built-in support for AES, Twofish and Serpent encryption,
and optional creation of recovery records - ARC is one of the few file
types alongside RAR providing error recovery feature.<br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
<td style="vertical-align: top; width: 430px;"><br>
</td>
<td style="vertical-align: top; width: 24px;"><br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<br>
<p><span style="font-weight: bold;">Synopsis: Work with
FreeArc ARC archives using PeaZip free compression and extraction
utility. How to manage, create, encrypt, open, extract (unzip) ARC
files on Windows and Linux machines. Update and convert existing ARC
archives. Specs and features of ARC file extension-<br>
</span></p>
<p><span style="font-weight: bold;">Topics: create ARC
files, open and extract ARC archives, FreeARC format specs</span><br>
<span style="font-weight: bold;"></span><span
style="font-weight: bold;"></span></p>
<p><span style="font-weight: bold;">PeaZip > FAQ
> How to create, encrypt, open, extract ARC files<br>
</span></p>
<table
style="background-color: rgb(240, 240, 240); width: 100%; text-align: left;"
border="0" cellpadding="24" cellspacing="1">
<tbody>
<tr>
<td colspan="1" rowspan="1"
style="vertical-align: top; background-color: rgb(250, 250, 250);">
<h3 style="color: rgb(0, 0, 0);"><img
title="FAQ how to extract 7Z, RAR, TAR, ZIP..."
alt="open and extract arc files" src="file-format/archive-format.png"
style="width: 96px; height: 96px;" align="right"><a
name="open_and_extract_archive"></a>WORK WITH
SUPPORTED
FILE TYPES</h3>
<p><a style="font-weight: bold;"
href="7zip-files-utility.html">Create, open, extract 7Z files</a><br>
</p>
<p><a style="font-weight: bold;"
href="ace-files-utility.html">Open and extract ACE files</a><br>
</p>
<p><a style="font-weight: bold;"
href="arc-files-utility.html">Create, open, extract ARC files</a><br>
</p>
<p><a href="brotli-compression-utility.html"><span
style="font-weight: bold;">Create, open, extract Brotli files</span></a><br>
</p>
<p><a href="bzip2-utility.html"><span
style="font-weight: bold;">Compress, decompress Bzip2 files</span></a><br>
</p>
<p><a style="font-weight: bold;"
href="cab-files-utility.html">Open and extract CAB files</a><br>
</p>
<p><a href="gzip-utility.html"><span
style="font-weight: bold;">Compress, decompress GZip files</span></a><br>
</p>
<p><a style="font-weight: bold;"
href="iso-utility.html">Open and extract DMG, ISO, UDF disk images</a><br>
</p>
<p><a href="paq-files-compression-utility.html"><span
style="font-weight: bold;">Create, open, extract PAQ, LPAQ, ZPAQ files</span></a><br>
</p>
<p style="font-weight: bold;"><a
href="pea-archiving-utility.html">PEA: Pack Encrypt Authenticate</a><a
href="pea-archiving-utility.html"><br>
</a></p>
<p><a style="font-weight: bold;" href="free-rar.html">Open
and extract RAR files</a><span style="font-weight: bold;"></span> </p>
<p><a style="font-weight: bold;"
href="tar-windows.html">Create, open, extract
TAR, TGZ, TBZ files</a><br>
</p>
<p><a style="font-weight: bold;"
href="wim-utility.html">Create, open, extract WIM disk images</a><br>
</p>
<p> </p>
<p><a style="font-weight: bold;"
href="zip-files-utility.html">Create, open, extract ZIP files</a><span
style="font-weight: bold;"></span> </p>
<p><a style="font-weight: bold;"
href="zipx-files-software.html">Create, open, extract ZIPX files</a><br>
</p>
<p style="font-weight: bold;"><a
href="zstandard-compression-utility.html">Create, open, extract
Zstandard files</a></p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<br>
</td>
</tr>
<tr align="center">
<td style="vertical-align: top;">
<table
style="margin-left: auto; margin-right: auto; width: 960px; text-align: left;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
<td style="vertical-align: top;"><br>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 25%;"><small> <img
alt="Compress to ARC format" src="titles.png"
style="width: 129px; height: 2px;"><br>
<a name="extract_arc_files"></a>DOWNLOADS<br>
<img alt="free arc files extraction utility"
src="free-rar/extract-rar.png" style="width: 1px; height: 1px;"
vspace="3"><br>
</small><small><a href="index.html">All
PeaZip downloads</a><br>
</small><small><a href="peazip-linux.html">PeaZip
for Linux</a><br>
</small><small><a href="peazip-macos.html">PeaZip
for macOS</a></small><br>
<small> <a href="peazip-64bit.html">PeaZip
for Windows</a><br>
</small><small><a href="peazip-sources.html">PeaZip sources</a></small><small><br>
</small></td>
<td style="vertical-align: top; width: 25%;"><small><img
alt="create arc files" src="titles.png"
style="width: 129px; height: 2px;"><br>
<a name="arc_files_extraction"></a>SUPPORT<br>
<img alt="Open ARC files" src="free-rar/extract-rar.png"
style="width: 1px; height: 1px;" vspace="3"><br>
<a href="peazip-help.html">Online
help</a><br>
<a href="peazip-help-faq.html">Frequently
Asked Questions</a><br>
</small><br>
</td>
<td style="vertical-align: top; width: 25%;"><small><img
alt="peazip file compression software" src="titles.png"
style="width: 129px; height: 2px;"><br>
<a style="color: rgb(0, 0, 0);"
name="peazip_cross_platform_archive_manager_tool"></a>ABOUT<br
style="font-style: italic;">
<img alt="peazip free archiver utility"
src="free-rar/extract-rar.png" style="width: 1px; height: 1px;"
vspace="3"><br style="font-style: italic;">
</small><small><a href="peazip-tos-privacy.html"
style="font-weight: normal;">PeaZip project: TOS,
Privacy</a><br>
</small></td>
<td style="vertical-align: top; width: 247px;">
<table
style="width: 100%; text-align: left; margin-left: auto; margin-right: 0px;"
border="0" cellpadding="3" cellspacing="0">
<tbody>
<tr>
<td style="text-align: right; vertical-align: middle;"><small><a
target="_blank" href="https://github.com/peazip/PeaZip/releases.atom">Releases
Feed</a></small></td>
<td
style="text-align: right; width: 30px; vertical-align: middle;"><small><img
alt="arc files extraction" title="PeaZip releases feed"
src="extract-zip/rss16.png" style="width: 24px; height: 24px;"
align="middle"></small></td>
</tr>
<tr>
<td style="text-align: right; vertical-align: middle;"><small><a
target="_blank" href="https://github.com/peazip/PeaZip/wiki">PeaZip
Wiki</a></small></td>
<td
style="text-align: right; width: 30px; vertical-align: middle;"><small><img
title="PeaZip Wiki online" alt="Work with encrypted ARC files"
src="free-zip/wikipedia.png" style="width: 24px; height: 24px;"
align="middle"></small></td>
</tr>
<tr>
<td style="text-align: right; vertical-align: middle;"><small><a
href="mailto:giorgio.tani.software@gmail.com">Developer email</a></small></td>
<td
style="text-align: right; width: 30px; vertical-align: middle;"><small><img
alt="unzip arc files" title="Mail developer | Giorgio Tani"
src="free-zip/mail.png" style="width: 24px; height: 24px;"><br>
</small></td>
</tr>
<tr>
<td style="text-align: right; vertical-align: middle;"><small><a
href="peazip-more.html">Search knowledge-base</a><br>
</small></td>
<td
style="text-align: right; width: 30px; vertical-align: middle;"><small><img
alt="free arc files extractor" title="Search in PeaZip project domain"
src="extract-rar/rar-opener.png"
style="border: 0px solid ; width: 24px; height: 24px;" align="middle"></small></td>
</tr>
</tbody>
</table>
<br>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>