Linux下安装UPX
linux
upx
编程技术
发布日期
2023-09-09
更新日期
2023-09-09
阅读次数 406
文章字数 903
upx 是一款压缩可执行文件的软件,压缩率在 20% 到 %70 之间。在可执行文件运行的时候并不需要解压软件,程序在内存中自动展开
下载 upx
upx 请从 upx 官网下载,不要用包管理器进下载。一般来说发行版默认源的软件比较老可能不支持比较新的语言生成的二进制文件,有压坏二进制的风险。
本教程的下载地址可能不是最新版请访问 https://upx.github.io 下载最新版
wget https://github.com/upx/upx/releases/download/v4.1.0/upx-4.1.0-amd64_linux.tar.xz
解压二进制
tar -Jxf upx*.tar.xz
添加到环境变量
为了方便使用移动 upx 到系统变量目录,如果不愿意使用 root 的话可以将 upx 目录添加到环境变量。
sudo cp upx*/upx /usr/bin
验证
[root@iZ2zebzz76jb4bnhkzg4utZ ~]# upx
Ultimate Packer for eXecutables
Copyright (C) 1996 - 2023
UPX 4.1.0 Markus Oberhumer, Laszlo Molnar & John Reiser Aug 8th 2023
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 https://upx.github.io
文章作者: 朱丰华
文章链接: https://smart.52dixiaowo.com/blog/post-499.html
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。
linux
upx
发表评论
相关推荐