패키징 및 압축
파일이나 폴더를 패키지로 결합한 다음 압축 알고리즘을 통해 데이터를 압축하여 패키지 크기를 줄이고 네트워크 전송을 용이하게 합니다.
windows: zip rar linux: zip tar gz bz2 tar.gz tar.bz2 压缩算法: gzip bzip2
zip
은 Windows 및 Linux에서 일반적으로 사용되는 패키징 및 압축 도구입니다. 지원되는 압축 알고리즘은 zip입니다.
zip工具需要安装 yum install zip
zip은 파일을 압축합니다
# 格式 zip [参数] 压缩包名称 文件路径 [root@abc ~]# zip 123.zip 123.log adding: 123.log (deflated 87%) [root@abc ~]# ls -l
zip은 폴더를 압축합니다
# 需要一个-r参数去递归压缩文件夹下的所有内容 [root@abc ~]# zip -r dir.zip dir/ adding: dir/ (stored 0%) adding: dir/one/ (stored 0%) adding: dir/123.log (deflated 87%)
zip의 자동 출력
# -q:参数就是不输出任何打包信息 [root@abc opt]# zip -r -q etc.zip /etc/ [root@abc opt]# ls -l
zip 압축 해제 명령(압축 풀기)
# 格式 unzip [参数] 压缩包路径 # unzip解压命令只能解压由zip打包的压缩文件 [root@abc ~]# unzip dir.zip Archive: dir.zip inflating: dir/123.log [root@abc ~]# # 其他压缩包由unzip解压时随即报错。 [root@abc opt]# unzip nginx-.tar.gz Archive: nginx-.tar.gz End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment will be found on the last disk(s) of this archive. unzip: cannot find zipfile directory in one of nginx-.tar.gz or nginx-.tar.gz.zip, and cannot find nginx-.tar.gz.ZIP, period. # 查看压缩包中压缩那些内容,不解压? # 只查看压缩包内容不解压需要使用 -l 参数 [root@abc opt]# unzip -l dir.zip Archive: dir.zip Length Date Time Name --------- ---------- ----- ---- 0 03-11-2021 12:04 dir/ --------- ------- 0 1 file # 解压到指定目录(-d) [root@abc ~]# unzip -d /root/ etc.zip [root@abc opt]# cd /root/ [root@abc ~]# ls ] anaconda-ks.cfg dir.zip index.html test.pdf.gz xxxeth0xxx 系统优化.md 123.log demo.txt etc nginx-0.1.22.tar.gz test.txt 上传与下载.md 123.zip dir eth0xxx test xxxeth0 文件管理_(高级).pdf # 静默输出(-q) [root@abc ~]# rm -rf etc [root@abc ~]# unzip -q -d /root/ /opt/etc.zip [root@abc ~]# ls -l
tar
tar 압축은 여러 압축 알고리즘을 지원합니다
tar.gz gzip( 가장 일반적으로 사용됨)
tar.bz2 bzip2
gzip
gzip 압축 알고리즘을 사용하여 파일을 특정 볼륨으로 압축하면 전송에 유리합니다. 패키징은 지원되지 않습니다
[root@abc ~]# ls -l total 4828 -rw-r--r-- 1 root root 244977 Mar 10 12:12 index.html [root@abc ~]# gzip index.html [root@abc ~]# ls -l
gzip은 디렉터리를 압축합니다
[root@abc etc]# gzip -r /etc [root@abc etc]# ls
gzip 압축 해제(-d)
[root@abc ~]# ls -l -rw-r--r-- 1 0 0 22652 Mar 10 12:12 index.html.gz [root@abc ~]# gzip -d index.html.gz [root@abc ~]# ls -l
bzip2
bzip2 압축 알고리즘을 사용하여 특정 볼륨의 파일을 압축합니다.
[root@abc ~]# ls -l total 4828 -rw-r--r-- 1 root root 646165 Mar 9 10:31 123.log [root@abc ~]# bzip2 123.log [root@abc ~]# ls -l total 4240 -rw-r--r-- 1 root root 0 Mar 10 12:04 ]
bzip2 압축 해제(-d)
bzip2 압축 해제는 bzip2 압축 패키지의 압축을 풀기 위한 것입니다.
[root@abc ~]# ls -l total 4240 -rw-r--r-- 1 root root 42210 Mar 9 10:31 123.log.bz2 [root@abc ~]# bzip2 -d 123.log.bz2 [root@abc ~]# ls -l
tar
tar는 실제로 압축 기능이 없는 패키징 도구이지만, 매개변수를 사용하여 압축 해제를 위한 압축 도구를 호출할 수 있습니다.
tar参数 -c : 创建压缩 -f ; 指定压缩包名称 -z : 使用gzip压缩工具进行压缩 -j : 使用bzip2压缩工具进行压缩 -J : 使用xz压缩工具进行压缩 -t : 显示压缩包内容,不解压 -v : 显示压缩过程 -P : 允许使用绝对路径进行压缩 -x : 解压 -C : 指定解压路径 -h : 打包软连接 --exclude : 排除某些文件 --exclude-from :
Parameters
-c: 압축 패키지 생성
-f: 압축 패키지 이름 지정
[root@abc ~]# tar -c -f test.tar 123.log [root@abc ~]# ls -l
-z: 압축을 위한 gzip 압축 도구 사용 지정
[root@abc ~]# tar -c -z -f test-one.tar 123.log [root@abc ~]# ls -l total 5084 -rw-r--r-- 1 root root 85279 Mar 11 15:56 test-one.tar # 注:使用-z参数,不会自动添加.gz后缀 [root@abc ~]# tar -c -z -f anaconda.tar.gz anaconda-ks.cfg [root@abc ~]# ls -l
-j: 압축을 위해 bzip2 압축 도구 사용을 지정
[root@abc ~]# tar -c -j -f 123-bask-one.tar 123.log [root@abc ~]# ls -l
-J: 압축을 위해 xz 압축 도구 사용을 지정
[root@abc test-tar]# tar -c -J -f etc.tar.xz /etc/ [root@abc ~]# ls -l
-t: 압축된 패키지
[root@abc ~]# tar -t -f 123-bak.tar.bz2 123.log [root@abc ~]#
-v : 압축된 패키지의 압축 과정을 표시합니다
[root@abc ~]# tar -x -v -f etc.tar -C /opt/
-P : 패키징에 절대 경로 사용 허용
[root@abc ~]# tar -c -P -f 123-three.tar /etc/passwd [root@abc ~]# tar -c -f 123-three.tar /etc/passwd tar: Removing leading `/' from member names [root@abc ~]#
-
-x : 압축 해제
# tar解压是按照原来的路径进行解压 [root@abc test]# tar -x -f etc.tar # tar会自动识别压缩功能
-C : 압축 해제 경로 지정
[root@abc ~]# tar -x -f etc.tar -C /opt/ tar: Removing leading `/' from member names [root@abc ~]# cd /opt/ [root@abc opt]# ls abc23 dir dir.zip etc nginx-0.1.22.tar.gz nginx-.tar.gz xxx [root@abc opt]#
–exclude: 특정 파일 제외
[root@abc test-tar]# tar -c -f abc.tar ./* --exclude=abc7 --exclude=abc5 --exclude=abc1 [root@abc test-tar]# tar -t -f abc.tar ./abc2 ./abc3 ./abc4 ./abc6 ./abc8 ./abc9 [root@abc test-tar]#
–exclude-from: 특정 파일 목록을 기준으로 여러 파일 제외
[root@abc test-tar]# cat list.txt abc995 abc996 abc997 abc998 abc999 [root@abc test-tar]# tar -c -f abc.tar ./* --exclude-from=list.txt
-h: 소프트 링크 팩
[root@abc test-tar]# tar -c -h -f bin-h.tar /bin
위 내용은 리눅스 파일 패키징 및 압축 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

Dreamweaver Mac版
시각적 웹 개발 도구

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

SublimeText3 영어 버전
권장 사항: Win 버전, 코드 프롬프트 지원!

DVWA
DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는
