Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 22-02-2017, 07:39
felice2011's Avatar
felice2011 felice2011 is offline
Registered User
 
Join Date: Feb 2011
Location: italy
Posts: 836
Thanks: 357
Thanked 1,158 Times in 390 Posts
felice2011 is on a distinguished road
Quote:
Originally Posted by swyambhu View Post
Someone????? Please tell me???????? how to change the dictionary size?????
use original nanozip from the command line and set the compression options in arc.ini.

Code:
NanoZip 0.09 alpha/Win64  (C) 2008-2011 Sami Runsas  www.nanozip.net
  Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz|36533 MHz|#4+HT|5790/8150 MB

usage: nz <command> [-<opt_1>...-<opt_n>] <archive_file> <files...>
e.g. nz a -cO -m1.2g backup document1.txt document2.txt

 commands:
  a       add files to archive
  l       list contents of archive
  t       test archive, decompress without writing output
  s       simulate compression without writing output
  x       extract files from archive
  w32c    create self-extracting archive (windows 32-bit console)
  info    information about host system
  help    show advanced options

 compression specific options (must be set at compression time):
  c<n,f,F,         compressor: none, nz_lzpf, nz_lzpf_large,
    d,dp,dP        nz_lzhd, nz_lzhd_parallel, nz_lzhd_parallel_extra,
    D,Dp,DP        nz_lzhds, nz_lzhds_parallel, nz_lzhds_parallel_extra,
    o,O,c>         nz_optimum1 (default), nz_optimum2, nz_cm
                   (use parallel compressor on multicore platform only)
  p<0...n>         number of compressors to run in parallel
                   (default: 0=auto/smart config based on -c, -t and files)
  m<0...n>[k,m,g]  memory use (approximate limit) (default: 512m)
  s<n,e,a,s>       sort files before compression by: nothing,
                   extension (default), name, size

 general options:
  -                stop scanning switches
  r                recurse subdirectories
  t<0...n>         number of threads (default: 0=autodetect)
  br<0...n>[k,m,g] read-ahead buffer size (default: auto)
  bw<0...n>[k,m,g] write-behind buffer size (default: auto)
  h<n,c,C,f>       checksum: none, crc16, crc32, fletcher16 (default)
  nt               do not store timestamps
  np               do not store permissions
  nm               do not store metadata or redundancy (equals -nt -np -hn)
  sp               strip paths from files
  o<path>          output path
  y                yes to all queries
  v                verbose
  x<file>          exclude file(s)
__________________
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« I Mediocri Imitano, I Geni Copiano, Dio Crea & Distrugge » (Io Ridefinisco & Perfeziono le Loro Opere Rendendole Uniche)
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« Mediocrities Imitate, Genius Copy, God Creates & Destroys » (I Reconsider & Improve Their Works, Rending Them One And Only)
Reply With Quote
Sponsored Links
  #2  
Old 22-02-2017, 13:08
felice2011's Avatar
felice2011 felice2011 is offline
Registered User
 
Join Date: Feb 2011
Location: italy
Posts: 836
Thanks: 357
Thanked 1,158 Times in 390 Posts
felice2011 is on a distinguished road
The example given by razor on the first page has the function of compression and decompression through DLL, without setting mode through INI files, if you want to change the compression options, use nanozip in normal mode with FreeArc support, and add the external compressor settings in the "arc.ini" configuration file, logically without DLL, with native compressor nz or nz64.

Code:
[External compressor:nz]
packcmd    = nz a -r -v -cc -m1g -br256m -bw256m -p2 -t2 -nm $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp
unpackcmd  = nz x -m1g -p0 -t0 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp    
datafile   = $$arcdatafile$$.tmp
packedfile = $$arcpackedfile$$.tmp.nz

[External compressor:nz64]
packcmd    = nz64 a -r -v -cc -m2g -br512m -bw512m -p6 -t6 -nm $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp
unpackcmd  = nz64 x -m2g -p6 -t6 $$arcpackedfile$$.tmp.nz $$arcdatafile$$.tmp   
datafile   = $$arcdatafile$$.tmp
packedfile = $$arcpackedfile$$.tmp.nz
Code:
Arc a -ma9 -ds -lc1024 -ld1024 -ep1 -di -i2 -ed -r -s; -w.\temp "data.arc" -mnz64 "pack\*"
or 
Arc.exe a -ep1 -r -ed -s; -w.\temp -mnz64 data.arc "pack\*"
__________________
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« I Mediocri Imitano, I Geni Copiano, Dio Crea & Distrugge » (Io Ridefinisco & Perfeziono le Loro Opere Rendendole Uniche)
≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈ ≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈≈
« Mediocrities Imitate, Genius Copy, God Creates & Destroys » (I Reconsider & Improve Their Works, Rending Them One And Only)
Reply With Quote
The Following User Says Thank You to felice2011 For This Useful Post:
EzzEldin16 (19-11-2017)
  #3  
Old 22-02-2017, 13:20
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
nanozip is very complex for a programmer in grass
Reply With Quote
  #4  
Old 04-11-2018, 03:41
Blackrazor1998 Blackrazor1998 is offline
Registered User
 
Join Date: Oct 2018
Location: Iran
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Blackrazor1998 is on a distinguished road
Hi sorry i'm new i have question why when i use srep64+nz after installing my data i see one garbage temp folder(freearc2029159381.temp) in game installation directory temp name is"$$arcdatafile$$.tmp" how can i fix this can you help me please ?

Last edited by Blackrazor1998; 04-11-2018 at 04:00.
Reply With Quote
  #5  
Old 04-11-2018, 04:02
Simorq's Avatar
Simorq Simorq is offline
Registered User
 
Join Date: Mar 2014
Location: Iran
Posts: 642
Thanks: 3,602
Thanked 1,308 Times in 464 Posts
Simorq is on a distinguished road
Quote:
Originally Posted by Blackrazor1998 View Post
Hi sorry i'm new i have question why when i use srep64+nz after installing my data i see one garbage temp folder(freearc2029159381.temp) in game installation directory temp name is"$$arcdatafile$$.tmp" how can i fix this can you help me please ?
http://krinkels.org/threads/stdio-nanozip.3777/
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Advanced Compressor (Nanozip) panker1992 Conversion Tutorials 17 15-10-2021 15:11
Preview Animated Installer v0.0.1 JRD! Conversion Tutorials 50 06-11-2018 20:02



All times are GMT -7. The time now is 11:54.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com