首页 > 系统相关 >Windows下分卷压缩后到Linux进行解压的方法

Windows下分卷压缩后到Linux进行解压的方法

时间:2024-05-24 17:06:56浏览次数:28  
标签:24 分卷压缩 Windows Grafana -- 文档 Linux p7zip root

windows 分卷压缩后 linux解压缩

 

Linux服务器在内网,中途隔了一层堡垒机。文件太大,堡垒机对此有限制,需要在Windows上分包,然后上送到Linux上进行合并解压。

我探索出来的办法有两个,以下依次介绍:

1、WinRAR+7za命令

WinRAR上需要选择压缩格式为zip,输入分卷大小:

 然后将分卷都传输到Linux上面:

[root@test1 20250523]# ll
总用量 68556
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z01
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z02
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z03
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z04
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z05
-rw-r--r-- 1 root root 10485760 5月  24 16:54 Grafana文档.z06
-rw-r--r-- 1 root root  4873087 5月  24 16:54 Grafana文档.zip

 

然后安装7za命令:

yum install p7zip -y

若是需要内网安装,可以下载离线安装包:

yumdownloader --resolve  p7zip
[root@test1 20250523]# yumdownloader --resolve  p7zip
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * centos-sclo-rh: ftp.sjtu.edu.cn
 * centos-sclo-sclo: ftp.sjtu.edu.cn
 * epel: mirror.nyist.edu.cn
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
--> 正在检查事务
---> 软件包 p7zip.x86_64.0.16.02-20.el7 将被 已重新安装
--> 解决依赖关系完成
p7zip-16.02-20.el7.x86_64.rpm                                                                                                                                                                                     | 605 kB  00:00:18
[root@test1 20250523]# ls *.rpm
p7zip-16.02-20.el7.x86_64.rpm
[root@test1 20250523]#

 

然后解压缩:

[root@test1 20250523]# 7za x Grafana文档.zip

7-Zip (a) [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=zh_CN.UTF-8,Utf16=on,HugeFiles=on,64 bits,4 CPUs Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (806EA),ASM,AES-NI)

Scanning the drive for archives:
1 file, 4873087 bytes (4759 KiB)

Extracting archive: Grafana文档.zip
--
Path = Grafana文档.zip
Type = zip
Physical Size = 4873087
Embedded Stub Size = 4
Total Physical Size = 67787647
Multivolume = +
Volume Index = 6
Volumes = 7
                                                                                                                                                                                                                                       Everything is Ok

Size:       71008659
Compressed: 67787647
[root@test1 20250523]# ls
Grafana文档.docx  

 

只需要将zip结尾的压缩文件附带到命令参数中即可。解压后得到的文件是可以正常使用的。

方法2:7Z.exe+7z命令

需要再Windows上面安装7Z压缩软件:

下载地址:https://www.7-zip.org/download.html

安装好之后,右键需要分卷的文件,选择添加到压缩文件,输入分卷大小:

 

然后上送到Linux服务器:

[root@test1 20250523]# ll Grafana文档*
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.001
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.002
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.003
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.004
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.005
-rw-r--r-- 1 root root 10485760 5月  24 17:04 Grafana文档.7z.006
-rw-r--r-- 1 root root  3809723 5月  24 17:04 Grafana文档.7z.007

安装7z命令:

sudo yum install p7zip p7zip-plugins -y

若需要离线安装,请下载离线安装包:

[root@test1 20250523]# yumdownloader --resolve  p7zip p7zip-plugins
已加载插件:fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirrors.aliyun.com
 * centos-sclo-rh: ftp.sjtu.edu.cn
 * centos-sclo-sclo: ftp.sjtu.edu.cn
 * epel: mirror.nyist.edu.cn
 * extras: mirrors.aliyun.com
 * updates: mirrors.aliyun.com
--> 正在检查事务
---> 软件包 p7zip.x86_64.0.16.02-20.el7 将被 已重新安装
---> 软件包 p7zip-plugins.x86_64.0.16.02-20.el7 将被 已重新安装
--> 解决依赖关系完成
(1/2): p7zip-16.02-20.el7.x86_64.rpm                                                                                                                                                                              | 605 kB  00:00:15
(2/2): p7zip-plugins-16.02-20.el7.x86_64.rpm                                                                                                                                                                      | 969 kB  00:00:00
[root@test1 20250523]# ls *.rpm
p7zip-16.02-20.el7.x86_64.rpm  p7zip-plugins-16.02-20.el7.x86_64.rpm
[root@test1 20250523]#

然后解压缩:

[root@test1 20250523]# 7z x Grafana文档.7z.001

7-Zip [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=zh_CN.UTF-8,Utf16=on,HugeFiles=on,64 bits,4 CPUs Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz (806EA),ASM,AES-NI)

Scanning the drive for archives:
1 file, 10485760 bytes (10 MiB)

Extracting archive: Grafana文档.7z.001
--
Path = Grafana文档.7z.001
Type = Split
Physical Size = 10485760
Volumes = 7
Total Physical Size = 66724283
----
Path = Grafana文档.7z
Size = 66724283
--
Path = Grafana文档.7z
Type = 7z
Physical Size = 66724283
Headers Size = 138
Method = LZMA2:24
Solid = -
Blocks = 1
                                                                                                                                                                                                                     Everything is Ok    
Size:       71008659
Compressed: 66724283
[root@test1 20250523]# ls *.docx
Grafana文档.docx
[root@test1 20250523]#

解压缩的时候也只需要将第一个文件附带到命令参数中。

 

标签:24,分卷压缩,Windows,Grafana,--,文档,Linux,p7zip,root
From: https://www.cnblogs.com/love-DanDan/p/18211334

相关文章

  • 安装 Windows Server 2022
    将WindowsServer安装介质插入计算机的光盘驱动器,然后重新启动计算机,然后,显示以下屏幕,继续点击【下一步】按钮。单击【立即安装】开始安装。选择要安装的WindowsServer版本。在此示例中,使用【DatacenterwithGraphical***】版本进行处理。仔细阅读许可条款并选中一个框......
  • Linux系统中如何查看磁盘情况
    Linux不像windows系统那样方便的图形界面,特别是作为服务器使用的时候,只有命令行可以使用。我有个云服务器平时用来做一些数据分享用的,最近想看看磁盘和其中文件的占用情况,于是搜索并学习了一些查看磁盘空间信息的命令,命令虽然简单,但对我自己来说还是有些新的东西值得记录。1.df......
  • 除了Windows加密以外,还有好用的加密工具吗?
    文件、文件夹想要加密,Windows中自带了加密功能,但是之前介绍过一篇文章,有些朋友的Windows加密功能是灰色的,不能使用。这是因为Windows加密功能只可以在专业版中可以使用,、那么除了Windows加密以外还有其他好用的加密工具吗?今天给大家分享加密工具:奥凯丰极简加密。支持批量加密......
  • orangepi zero2在linux5.4以上内核使用ili9341
    背景根据orangepizero2用户手册说明,linux5.13内核不能使用modprobefbtft_device驱动spilcd查看linux内核源码提交记录,发现在v5.4-rc3中删除了fbtft_device.c文件commit如下staging/fbtft:Removefbtft_deviceCommitc440eee("Staging:fbtft:Switchtothegpiode......
  • Linux系统postdrop服务进程持续增加导致无法登录
    临时解决方案:#servicepostfixstatus#servicesendmailstatus#servicepostfixstop[root@wign~]#ps-ef|grepsendmail|wc-l3038[root@wign~]#ps-ef|greppostdrop|wc-l3162停止postdrop服务,杀掉postdrop的进程#psaux|greppostdrop|grep-vgrep|cut-c9-15|xargs......
  • Linux安装卸载MySQL
    大家好,我是Java陈序员。今天,给大家分享下在Linux环境中如何安装卸载MySQL.关注微信公众号:【Java陈序员】,获取开源项目分享、AI副业分享、超200本经典计算机电子书籍等。MySQL安装准备一台Linux服务器下载Linux版MySQL安装包下载地址:https://downloads.m......
  • GDB对Linux信号的处理方式
    前言在软件开发过程中,调试工具是程序员不可或缺的助手。GDB(GNUDebugger)作为一个强大的调试器,广泛应用于Linux系统中的C/C++程序调试。然而,信号处理机制的复杂性常常给调试带来挑战。特别是在处理异步和同步信号时,不同的信号处理方式对程序执行流和调试工具的行为会产生显......
  • Bash反弹shell & 搭建网页服务器 & 文件描述符学习 & ssh连接vm虚拟机 & sftp进行文件
    环境:kali:┌──(kali㉿kali)-[~/Desktop]└─$cat/proc/versionLinuxversion6.0.0-kali5-amd64([email protected])(gcc-12(Debian12.2.0-9)12.2.0,GNUld(GNUBinutilsforDebian)1.建立一个简单的链接进行nc,可以进行两个端口通信!#首先使用nc监听......
  • C++Linux系统编程——文件和目录操作函数
    stat函数(重要)#include<sys/types.h>#include<sys/stat.h>#include<unistd.h>​intstat(constchar*path,structstat*buf);intlstat(constchar*pathname,structstat*buf);功能: 获取文件状态信息 stat和lstat的区别:   当文件是一个符号......
  • [IMX6ULL驱动开发]-Linux对中断的处理(一)
    目录中断概念的引入ARM架构中断的流程异常向量表Linux系统对中断的处理ARM对程序和中断的处理Linux进程中断处理中断概念的引入如何理解中断,我们可以进行如下抽象。把CPU看做一个母亲,当它正在执行任务的时候,可以看为是一个母亲在看书。此时可能发生许多不同的情况,比......