Linux下如何切割与合并大文件
sinye56 2024-11-26 08:30 1 浏览 0 评论
我们传输一个大文件时,有时网络比较慢,需要花费很长时间才能传输完成,或者传输的过程中,网络不稳定,有可能导致此次传输失败,针对这种情况,我们可以把大文件切分成小文件,再逐个的传输到目的地,最后再把它们合并成一个文件
小文件传输有什么优点呢?当出现网络闪断导致传输失败了,也只需要重新传输失败的一个文件,由于文件比较小,重新传输相对大文件要快很多,另外,切割成小文件,可以增加传输的并发量,也就是说多个小文件同时传输,比传输单个文件速度更快
Linux下切割文件的命令是 split 合并文件可以使用 cat 命令,下面将介绍这两个命令的使用以及切割和合并文件的方法
语法
split 命令的语法如下:
split [OPTION]... [INPUT [PREFIX]]
INPUT 表示标准输入或者文件
PREFIX 表示大文件分割后产生的小文件名字的前缀,默认是小写字母 x,前缀后跟一组字符 , 按照类似 aa、ab、ac 字母顺序组成一个一个的文件名,比如:切割成三个文件,它们的文件名默认就是 xaa、 xab、 xac
OPTION 表示命令的选项,比如:按字节切割文件,按文件行切割文件等,下面列出了一些常用的选项
选项 | 说明 |
-l | 每个文件都包含指定的行数 |
-b | 生成指定大小的文件,单位:字节 |
-a | 文件名后缀的长度,默认是2 |
-d | 文件名后缀使用数字而不是默认的字母 |
-n | 生成指定数量的文件 |
-e | 禁止生成长度为 0 的文件 |
--verbose | 创建文件时输出日志 |
切割文件实例
下面来看几组 split 命令的使用实例吧
- 按文件大小切割
首先创建一个 10M 大小的文件
关于如何创建指定大小的文件可以参考 1s 创建100G文件,最快的方法是?
[root@localhost split_test]# fallocate -l 10M myfile
[root@localhost split_test]# ls -lh
总用量 10M
-rw-r--r-- 1 root root 10M 9月 30 11:18 myfile
[root@localhost split_test]#
把 myfile 文件分割成若干个小文件,每个文件大小为 2M
[root@localhost split_test]# split -b 2M myfile
[root@localhost split_test]# ls -lh
总用量 20M
-rw-r--r-- 1 root root 10M 9月 30 11:18 myfile
-rw-r--r-- 1 root root 2.0M 9月 30 11:23 xaa
-rw-r--r-- 1 root root 2.0M 9月 30 11:23 xab
-rw-r--r-- 1 root root 2.0M 9月 30 11:23 xac
-rw-r--r-- 1 root root 2.0M 9月 30 11:23 xad
-rw-r--r-- 1 root root 2.0M 9月 30 11:23 xae
从上述结果可以看出,输入文件 myfile 大小为 10M , 选项 " -b 2M " 表示每个输出文件 2M, 总共切割成 5 个文件,文件名分别是 xaa、xab、xac、xad、xae
- 按文件行数切割
首先创建一个 10K 大小的文件, 文件的每一行内容都是 "this is a test file"
[root@localhost split_test]# yes "this is a test file" | head -c 10K > numfile
[root@localhost split_test]# ls -lh
总用量 12K
-rw-r--r-- 1 root root 10K 9月 30 11:46 numfile
[root@localhost split_test]# wc -l numfile
512 numfile
从结果可以得知,numfile 文件大小为 10K, 总共有 512 行, 命令 wc -l numfile 是查询 numfile 文件的总行数
把 numfile 文件切割成若干文件,每个文件 100 行, 并且新生成的文件名字前缀为 "split_file_", 具体的命令以及执行结果如下:
[root@localhost split_test]# split -l 100 numfile split_file_
[root@localhost split_test]# ls -lh
总用量 36K
-rw-r--r-- 1 root root 10K 9月 30 11:46 numfile
-rw-r--r-- 1 root root 2.0K 9月 30 11:54 split_file_aa
-rw-r--r-- 1 root root 2.0K 9月 30 11:54 split_file_ab
-rw-r--r-- 1 root root 2.0K 9月 30 11:54 split_file_ac
-rw-r--r-- 1 root root 2.0K 9月 30 11:54 split_file_ad
-rw-r--r-- 1 root root 2.0K 9月 30 11:54 split_file_ae
-rw-r--r-- 1 root root 240 9月 30 11:54 split_file_af
[root@localhost split_test]# wc -l split_file_aa
100 split_file_aa
[root@localhost split_test]# wc -l split_file_ab
100 split_file_ab
[root@localhost split_test]# wc -l split_file_ac
100 split_file_ac
[root@localhost split_test]# wc -l split_file_ad
100 split_file_ad
[root@localhost split_test]# wc -l split_file_ae
100 split_file_ae
[root@localhost split_test]# wc -l split_file_af
12 split_file_af
从结果可以知道,总共512行的文件 numfile 被分成了 6 个文件,文件名分别是 split_file_aa、 split_file_ab、 split_file_ac、 split_file_ad、 split_file_ae、 split_file_af , 其中前5个文件每个文件都是 100 行,最后一个文件只有剩下的 12 行
- 按文件数量切割
选项 -n 可以控制文件切割成小文件的数量
[root@localhost split_test]# fallocate -l 5M cntfile
[root@localhost split_test]# ls -lh
总用量 5.0M
-rw-r--r-- 1 root root 5.0M 9月 30 12:51 cntfile
[root@localhost split_test]# split -d -n 5 cntfile
[root@localhost split_test]# ls -lh
总用量 10M
-rw-r--r-- 1 root root 5.0M 9月 30 12:51 cntfile
-rw-r--r-- 1 root root 1.0M 9月 30 12:58 x00
-rw-r--r-- 1 root root 1.0M 9月 30 12:58 x01
-rw-r--r-- 1 root root 1.0M 9月 30 12:58 x02
-rw-r--r-- 1 root root 1.0M 9月 30 12:58 x03
-rw-r--r-- 1 root root 1.0M 9月 30 12:58 x04
fallocate -l 5M cntfile 命令是创建一个 5M 大小的文件 cntfile
split -d -n 5 cntfile 命令是把 cntfile 文件切割成 5 个小文件, -d 选项表示文件名使用数字后缀
通过切割后的结果可以知道,切割后生成了 5 个文件,他们分别是 x00、x01、x02、x03、x04 ,每个文件大小是 1M
- 禁止生成 0 长度的文件
在上面 按文件数量切割 小节中,存在一种特殊情况,文件的大小不足以分成指定数量的小文件,比如:一个 5 字节的文件,要切割成 8 个文件,切割的最小单位是 1 字节,所以最多只能切割成 5 个文件,要切割成 8 个文件的话,那么剩下的 3 个文件大小只能是 0 字节
上述空文件即使生成了,也没什么意义,我们可以用 -e 选项来禁止生成空文件,请看下面的实例
上图中 fallocate -l 5 testfile 表示创建一个大小为 5 字节大小的文件 testfile
split --verbose -n 8 testfile 表示把 testfile 文件切割成 8 个小文件, --verbose 选项是输出创建新文件的日志
从上图可以看出,执行命令后,共创建了 8 个文件,它们分别是 xaa、 xab、 xac 、xad 、xae、 xaf、 xag、 xah , 每个文件的大小是怎样的呢, 继续看下图
上图中 ls -lh 命令结果输出了切割之后各个文件的详细信息, 从中可以得出, 前 5 个文件 ( xaa、 xab、 xac 、xad 、xae ) 大小均为 1 字节, 后三个文件,也就是图中红框中的文件 ( xaf、 xag、 xah ) 大小均为 0 字节
0 字节的文件并不包含任何内容,也不需要进行传输,所以,不需要生成它们, 我们可以用 -e 选项来禁止生成 0 字节的文件
我们先删除切割之后的小文件,再执行 split --verbose -e -n 8 testfile命令,具体的结果如下:
从上图可以看出,加上 -e 选项之后,只生成了 5 个文件,分别是 xaa、 xab、 xac 、xad 、xae, 每个文件的大小为 1 字节, 没有出现 0 字节大小的文件了
切割与合并
大文件切割成许多小文件,通过网络全部传输到远程机器上之后,需要把它们合并成一个大文件,并且合并之后的大文件与原始的大文件要一模一样,下面我们通过一个实例来说明整个过程
1、在本地生成一个 1G 大小的文件
[root@localhost split_test]# dd if=/dev/urandom of=bigfile bs=1M count=1024
记录了1024+0 的读入
记录了1024+0 的写出
1073741824字节(1.1 GB)已复制,87.5173 秒,12.3 MB/秒
[root@localhost split_test]# ls -lh
总用量 1.0G
-rw-r--r-- 1 root root 1.0G 9月 30 14:41 bigfile
2、计算出本地文件 bigfile 的 MD5, 用于后面与远程机器上大文件的校验
[root@localhost split_test]# md5sum bigfile
4b06ddf4eeecbf26f36fd3ddad331deb bigfile
3、把 bigfile 文件切割成 100M 大小的小文件
[root@localhost split_test]# split -b 100M bigfile
[root@localhost split_test]# ls -lh
总用量 2.0G
-rw-r--r-- 1 root root 1.0G 9月 30 14:41 bigfile
-rw-r--r-- 1 root root 100M 9月 30 14:44 xaa
-rw-r--r-- 1 root root 100M 9月 30 14:44 xab
-rw-r--r-- 1 root root 100M 9月 30 14:44 xac
-rw-r--r-- 1 root root 100M 9月 30 14:44 xad
-rw-r--r-- 1 root root 100M 9月 30 14:44 xae
-rw-r--r-- 1 root root 100M 9月 30 14:44 xaf
-rw-r--r-- 1 root root 100M 9月 30 14:44 xag
-rw-r--r-- 1 root root 100M 9月 30 14:44 xah
-rw-r--r-- 1 root root 100M 9月 30 14:44 xai
-rw-r--r-- 1 root root 100M 9月 30 14:44 xaj
-rw-r--r-- 1 root root 24M 9月 30 14:44 xak
4、将切割之后的文件 xaa、 xab、 xac、 xad、 xae、 xaf、 xag、 xah、 xai、 xaj、 xak 逐个传输到远程机器的 merge_test 目录中,这里省略了传输过程
5、进入远程机器的 merge_test 目录,把 xaa、 xab、 xac、 xad、 xae、 xaf、 xag、 xah、 xai、 xaj、 xak 合并成一个文件
[root@localhost merge_test]# cat x* > remote_bigfile
[root@localhost merge_test]# ls -lh
总用量 2.0G
-rw-r--r-- 1 root root 1.0G 9月 30 14:54 remote_bigfile
-rw-r--r-- 1 root root 100M 9月 30 14:53 xaa
-rw-r--r-- 1 root root 100M 9月 30 14:53 xab
-rw-r--r-- 1 root root 100M 9月 30 14:53 xac
-rw-r--r-- 1 root root 100M 9月 30 14:53 xad
-rw-r--r-- 1 root root 100M 9月 30 14:53 xae
-rw-r--r-- 1 root root 100M 9月 30 14:53 xaf
-rw-r--r-- 1 root root 100M 9月 30 14:53 xag
-rw-r--r-- 1 root root 100M 9月 30 14:53 xah
-rw-r--r-- 1 root root 100M 9月 30 14:53 xai
-rw-r--r-- 1 root root 100M 9月 30 14:53 xaj
-rw-r--r-- 1 root root 24M 9月 30 14:53 xak
6、计算合并后 remote_bigfile 文件的 MD5
[root@localhost merge_test]# md5sum remote_bigfile
4b06ddf4eeecbf26f36fd3ddad331deb remote_bigfile
7、比较本地机器上 bigfile 文件和 远程机器上 remote_bigfile 文件的 MD5, 如果相同,表示传输成功,如果不一样,表示传输失败
根据 步骤 2 和 步骤 6 的结果, bigfile 和 remote_bigfile 的 MD5 都是 4b06ddf4eeecbf26f36fd3ddad331deb, 所以此次传输成功
小结
本文介绍了文件切割命令的用法,以及切割、传输、合并、校验的整个流程,文中实例中用到的 利用 fallocate、dd 以及 yes 创建文件可以参考 1s 创建100G文件,最快的方法是?
相关推荐
- linux安装FTP
-
1、在nkftp目录下安装ftp,进入到nkftp里面[root@localhostbin]#cd/data/nkftp执行安装命令:[root@localhostnkftp]#rpm-i...
- LINUX下搭建FTP服务器
-
FTP服务器介绍FTP是FileTransferProtocol(文件传输协议)的英文简称,而中文简称为“文传协议”。用于Internet上的控制文件的双向传输。同时,它也是一个应用程序(App...
- Linux下如何进行FTP设置
-
目录:一、Redhat/CentOS安装vsftp软件二、Ubuntu/Debian安装vsftp软件一、Redhat/CentOS安装vsftp软件1.更新yum源yumupdate-y2.安...
- 推荐使用集串口 SSH远程登录和FTP传输三合一工具MobaXterm
-
来源:百问网作者:韦东山本文字数:1216,阅读时长:4分钟在以前的资料里,串口和SSH远程登使用SecureCRT,window与ubuntu数据传输使用filezilla,窗口切换来切换去,麻烦也...
- 如何搭建FTP服务器(Linux系统)
-
上次说了Windows操作系统下搭建的FTP服务器,那有朋友问我,说买的XX轻量应用服务器都是属于Linux的操作系统,我该如何为搭建FTP服务器呢?...
- Linux 命令 ncftp(文件传输)——想玩转linux就请一直看下去
-
我是IT悟道,点击右上方“关注”,每天分享IT、科技、数码方面的干货。Linuxncftp命令...
- 如何用 ftp 实现一键上传
-
简介ftp是Internet标准文件传输协议的用户界面,它允许用户与远程网络站点之间传输文件...
- Linux安装ftp
-
1安装vsftpd组件安装完后,有/etc/vsftpd/vsftpd.conf文件,是vsftp的配置文件。[root@bogon~]#yum-yinstallvsftpd2添加一个...
- 一天一点点:linux - ftp命令
-
linuxftp命令设置文件系统相关功能。FTP是ARPANet的标准文件传输协议,该网络就是现今Internet的前身。语法ftp[-dignv][主机名称或IP地址]参数:-d详细显示指令执...
- Centos 7 搭建FTP
-
目录安装软件以及启动服务添加防火墙规则关闭selinuxftp配置常用常用参数详解特殊参数配置文件没有的参数也可以添加到配置中1.安装软件以及启动服务yuminstall-yvsftpdsys...
- 【Linux】Linux中ftp命令,没有你想的那么简单
-
本文介绍了Linux中FTP命令的基本用法,包括连接与登录远程服务器,以及解析了FTP协议中五个最常用的操作命令的使用和解析过程。同时,提供了一个包含常用FTP操作命令的表格,供读者参考。通过熟练掌握...
- linux 命令行操作ftp
-
以下是linuxftp命令参数的详解。FTP>!从ftp子系统退出到外壳?FTP>?显示ftp命令说明??和help相同?格式:?[command]说明:[com...
- 多学习才能多赚钱之:linux如何使用ftp
-
linux如何使用ftp步骤1:建立FTP连接想要连接FTP服务器,在命令上中先输入ftp然后空格跟上FTP服务器的域名'domain.com'或者IP地址例如:ftpdom...
- linux常用网络操作方法:ftp命令使用方法
-
常用网络操作方法Linux提供了一组强有力的网络命令来为用户服务,这些工具能够帮助用户登录到远程计算机上、传输文件和执行远程命令等。本节介绍下列几个常用的有关网络操作的命令:ftp传输文件tel...
- Linux 5.15有望合并Memory Folios方案 内核构建速度可提升7%
-
甲骨文公司的长期内核开发人员MatthewWilcox已经研究了“内存对开区”概念相当长的一段时间,这可以改善Linux的内存管理,使其具有更大的效率。例如,使用内存对开的基准测试表明,内核的构建速...
你 发表评论:
欢迎- 一周热门
- 最近发表
- 标签列表
-
- oracle忘记用户名密码 (59)
- oracle11gr2安装教程 (55)
- mybatis调用oracle存储过程 (67)
- oracle spool的用法 (57)
- oracle asm 磁盘管理 (67)
- 前端 设计模式 (64)
- 前端面试vue (56)
- linux格式化 (55)
- linux图形界面 (62)
- linux文件压缩 (75)
- Linux设置权限 (53)
- linux服务器配置 (62)
- mysql安装linux (71)
- linux启动命令 (59)
- 查看linux磁盘 (72)
- linux用户组 (74)
- linux多线程 (70)
- linux设备驱动 (53)
- linux自启动 (59)
- linux网络命令 (55)
- linux传文件 (60)
- linux打包文件 (58)
- linux查看数据库 (61)
- linux获取ip (64)
- linux进程通信 (63)