[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference hydra::amiga_v1

Title:AMIGA NOTES
Notice:Join us in the *NEW* conference - HYDRA::AMIGA_V2
Moderator:HYDRA::MOORE
Created:Sat Apr 26 1986
Last Modified:Wed Feb 05 1992
Last Successful Update:Fri Jun 06 1997
Number of topics:5378
Total number of notes:38326

3314.0. ".LZH ???" by STKHLM::BE_NYBERG () Wed Jan 10 1990 06:06

    Hi there!
    
      Could somebody tell me what a .LZH file is? My guess is that it is
    an archive of some sort. If so, what program would one use to access
    the archives?
T.RTitleUserPersonal
Name
DateLines
3314.1LHARCDESENG::ALVAREZSo much work to do...so little timeWed Jan 10 1990 10:596
     	Yes, it's an archive.
    	You need the LHARC program. I'm sure it's somewhere in WJG::AMIGA:
    or TAPE::USER2:[AMIGA]. Make sure you get the latest version (2.0 I
    believe)
    
    	Miguel A.
3314.2MQOFS::DESROSIERSLets procrastinate....tomorrowWed Jan 10 1990 12:4510
    And a darn good one at that too, I wanted to pack 11 IFF pictures on a
    single floppy, about 1.1 meg worth, ZOO got it down to 850K (or about 10%
    compression on average) LHARC got it all the way down to 650K (or about
    30% compression).  The only drawback, is that it takes a looong time to
    compress but with an Amiga, this can just be done in the background
    while you do something else.
    
    
    Jean
    
3314.3LHARC on VMS yet?STAR::ROBINSONWed Jan 10 1990 14:223
Here is another plea for a VMS version so I can check out the archive before
downloading. Anybody working on one?
Dave
3314.4SMAUG::SPODARYKBinary ThrottleWed Jan 10 1990 15:0010
    There are several tools on VMS for doing Lempel-Ziv compression/
    decompression (LZCOMP/LZDCMP).  However, they are incompatible 
    with the LHARC utility used on the Amiga.
    
    It might be possible to backwards engineer a VMS LHARC using
    archives, and the algorithms from LZCOMP/LZDCMP, but... who's
    got the time?   Has anyone contacted the LHARC author with
    this request.
                 
    ~Steve
3314.5ZIP ITDICKNS::MACDONALDWA1OMM 7.093/145.05/223.58 AX.25Wed Jan 10 1990 15:577
ZIP compresses to about the same size as LHARC, but does so much faster.
ZIP also has an intuition interface (sorry, no CLI) that makes it pretty
easy to use and straight forward. Many BBSs are now using ZIP. There
might even be a VMS version of ZIP.

Paul

3314.6Where is ZIP?????UBEAUT::MANDERSONMonday oneday, Tuesday the nextWed Jan 10 1990 19:126
    Has anyone tried LHWARP from FF295 (also on TAPE::)?
    
    Where is ZIP?? - can it please be uploaded by someone.
    
    regards and thanks
    kevin
3314.7ZIP is nice, but I'll stick with Lharc.TCC::HEFFELPigs and PoniesThu Jan 11 1990 00:466
    ZIP really does have a sharp looking GUI.  Real smooth.  If they'd
    added a command line option, I'd have used it for my archives.  I'm in
    the process of re-compressing my archives and chose Lharc because I
    could use it from a shell script.  
    
    Gary
3314.8LEVERS::PLOUFFcan't memorize Zen...Thu Jan 11 1990 14:0318
    re: pleas for VMS LHARC
    
    Somewhere over in the MS-DOS archives (arrgh! nodename flees my
    memory!) is source in C and 8086 assembler for the composite 
    Lempel-Ziv-Huffman coding used by LHARC.  This program only compresses
    one file at a time, similar to VMS Compress.  However, its power
    comes from the combination of two encoding schemes.  The compression
    scheme it uses is NOT compatible with straight Lempel-Ziv compression.
    
    Recent articles on Usenet have discussed the structure of LHARC
    archives.  So it is possible that some enterprising soul could create
    a VMS LHARC.
    
    Looks like LHARC may turn into more than just the
    archiver-of-the-month, eh?  :-)
    
    Wes
    
3314.9ZOOTOLZHDICKNS::MACDONALDWA1OMM 7.093/145.05/223.58 AX.25Thu Jan 11 1990 17:5038
Here is a script for automatically converting a zoo file to an lzh file.
Change the lock and unlock commands to suit your needs. Your drives
might be different. Use the protect command to set the S protection so
you can run this as a command. Also, be sure to specify the entire path
for the zoo files like this example:

ZOOTOLZH DH0:downloads/*.zoo
Next reply contains one for ARC to LZH. Same rules apply.



.key pat/a
lock dh0: off
lock dh10: off
lock dh11: off
lock dh0: on
lock dh10: on
lock dh11: on
assign DEST: VD0:
failat 21
makedir RAM:LH
list >t:q<$$> <pat> lformat="cd ram:lh\ndelete #? all\nzoo x//
%s%s\n;%s\nlharc -rx a %s.lzh #?\nrename #?.zoo.lzh #?.lzh\ncopy #?.lzh
dest:\n\n"
IF NOT FAIL
;quit
execute t:q<$$>
ELSE
echo "<pat> not found"
ENDIF
failat 10
delete ram:lh/#?
re
delete ram:lh
lock dh0: off
lock dh10: off
lock dh11: off
;do wildcards for single arg command
3314.10ARCTOLZHDICKNS::MACDONALDWA1OMM 7.093/145.05/223.58 AX.25Thu Jan 11 1990 17:5231

.key pat/a
lock dh0: off
lock dh10: off
lock dh11: off
lock dh0: on
lock dh10: on
lock dh11: on
assign DEST: VD0:
failat 21
makedir RAM:LH
list >t:q<$$> <pat> lformat="cd ram:lh\ndelete #? all\npkax
%s%s\n;%s\nlharc -rx a %s.lzh #?\nrename #?.arc.lzh #?.lzh\ncopy #?.lzh
dest:\n\n"
IF NOT FAIL
;quit
execute t:q<$$>
ELSE
echo "<pat> not found"
ENDIF
failat 10
delete ram:lh/#?
re
delete ram:lh
lock dh0: off
lock dh10: off
lock dh11: off
;do wildcards for single arg command


3314.11REDICKNS::MACDONALDWA1OMM 7.093/145.05/223.58 AX.25Thu Jan 11 1990 17:552
Oh, BTW, the "re" command in those two scripts is my alias for "return
back to the top level directory."
3314.12But, where?OOTOOL::SOOWe need the machine that goes *ping*.Mon Apr 30 1990 19:306
    OK, I am still looking for the mysterious LHARC thingie.  Could someone
    point me to one, so I can look at the WB20PICS.LZH thing?
    
    Thank you.
    
    -=Chong=-
3314.13WJG::GUINEAUMon Apr 30 1990 20:583
look in WJG::AMIGA:LHARC10.ARC;1

john
3314.14How about for VMS?KYOA::MIANOJohn - NY Retail Banking Resource CntrMon Apr 30 1990 22:424
Now does anyone have either a VMS version OR the source code so that
I could make one if I had to?

John
3314.15SIEVAX::GRAHAMBanking; now _that's_ a man's lifeTue May 01 1990 12:496
Re: .14

>> Now does anyone have either a VMS version OR the source code so that
>> I could make one if I had to?

See note 3734!
3314.16LHARC.EXEDICKNS::MACDONALDVAXELN - Realtime Software PubsWed Jun 27 1990 13:534
    Has there been any further releases of LHARC.EXE for VMS since the
    first FT release?
    
    Still looking for wildcard support.
3314.17latest version in CGFSV3""::amnew:CGOFS::OAKLEYBCNU2Wed Jun 27 1990 21:0613
    
    Steve, has not yet put the wildcard extract into lharc, but the
    wildcard add does function.
    
    The latest/current version is kept in CGFSV3""::amnew:lharc.exe.
    
    Apparently Steve has not kept up with putting the latest version in
    amnew: but assures me that it is now current.
    
    LHARC V1.0 is the current version and supports the wildcard add.
    
    wayne