프로그램 사용2008. 12. 29. 16:28
UPX는 실행프로그램을 압축해 주는 유틸리티 입니다.
예를 들어 컴파일한 프로그램의 용량이 500KB 인데 MTD 등에 저장을 해야 해서 용량을 줄이고 싶다면
UPX를 통해 압축을 하면, 프로그램의 용량이 절반 정도로 줄어 듭니다.

C:\cvsdown\upx303w>upx.exe
                       Ultimate Packer for eXecutables
                          Copyright (C) 1996 - 2008
UPX 3.03w       Markus Oberhumer, Laszlo Molnar & John Reiser   Apr 27th 2008

Usage: upx [-123456789dlthVL] [-qvfk] [-o file] file..

Commands:
  -1     compress faster                   -9    compress better
  -d     decompress                        -l    list compressed file
  -t     test compressed file              -V    display version number
  -h     give more help                    -L    display software license
Options:
  -q     be quiet                          -v    be verbose
  -oFILE write output to 'FILE'
  -f     force compression of suspicious files
  -k     keep backup files
file..   executables to (de)compress

Type 'upx --help' for more detailed help.

UPX comes with ABSOLUTELY NO WARRANTY; for details visit http://upx.sf.net

notepad2의 용량이 커서 이것으로 압축을 해보았습니다.
 명령어 : upx.exe -9 -o notepad2_packed.exe notepad2.exe

그랬더니 프로그램의 크기가 절반정도로 줄어 드는군요!
 2008-12-24  오전 12:47           580,096 Notepad2.exe
 2008-12-24  오전 12:47           221,696 Notepad2_packed.exe

알려주신 okto님께 감사의 말씀을 +_+

[링크: http://upx.sourceforge.net/]
Posted by 구차니