博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下大型容量件的切割与合并
阅读量:6829 次
发布时间:2019-06-26

本文共 1422 字,大约阅读时间需要 4 分钟。

Linux下大型容量件的切割与合并
              
当前目录下有sp4.exe文件容量129M
我用64的U盘把spe.exe考到另一台机器上
#split -b 60m sp4.exe
-b, --bytes=SIZE   SIZE 值为每一输出档案的大小,单位为 byte。-C, --line-bytes=SIZE SIZE 可加入单位: b 代表 512, k 代表 1K, m 代表 1 Meg
#ls
-rw-r--r--    1 root     root     62914560  5月 18 00:40 xaa
-rw-r--r--    1 root     root     62914560  5月 18 00:41 xab
-rw-r--r--    1 root     root      8576176  5月 18 00:41 xac
到另一台机器上合并
#cat xa* >; ./sp4.exe     用jion也可以合并
还有一种方法
到[url]http://see.online.sh.cn/ch/sw/dl/split.htm[/url]下载
解压后
[root@rhas3 knife-2.0.1]# ls
knife  link  linkfiles.pl  sp4.exe
分割:
[root@rhas3 knife-2.0.1]# ./knife -c sp4.exe 500   ( 500:字节大小)
Cutting......Cutted Over 
[root@rhas3 knife-2.0.1]# ls -l
总用量 44
-rwxr-xr-x    1 root     root        12949 2000-02-28  knife
-rwxr-xr-x    1 root     root           17 2000-02-28  link
-rwxr-xr-x    1 root     root         1088 2000-02-28  linkfiles.pl
-rw-r--r--    1 root     root         1543 2000-02-28  sp4.exe
-rw-r--r--    1 root     root          500  5月 18 00:49 sp4.exe.k00
-rw-r--r--    1 root     root          500  5月 18 00:49 sp4.exe.k01
-rw-r--r--    1 root     root          500  5月 18 00:49 sp4.exe.k02
-rw-r--r--    1 root     root           43  5月 18 00:49 sp4.exe.k03
合并:
[root@rhas3 knife-2.0.1]# ./link sp4.exe.k00 sp4.exe.k01 sp4.exe.k02 sp4.exe.k03                                                                                 
Please intput the file name you want to LINK up, one by one.
Just input OK when you have finished inputting.
(一定要全输完在ok)
ok
In this order:
Now it's time you type the name of the output file.
-->;sp4.exe
[root@rhas3 knife-2.0.1]#
OK!
 本文转自 李晨光 51CTO博客,原文链接:http://blog.51cto.com/chenguang/69946
,如需转载请自行联系原作者
你可能感兴趣的文章
亚马逊最新财报盈利下滑,我们仍然看好
查看>>
python入门学习常见错误 python基础
查看>>
SpringMVC的工作原理
查看>>
Drupal释新版修补jQuery与Symfony脚本漏洞
查看>>
Apache的访问控制
查看>>
keepalived配置lvs使用
查看>>
Java之品优购课程讲义_day04(2)
查看>>
程序清单4.4_pizza.c程序_《C Primer Plus》P65
查看>>
玩转数据结构
查看>>
mariadb/mysql主从、级联、主主、半同步、加密复制中的主、从、中间节点命令、选项总结...
查看>>
自然语言处理中的分词问题总结
查看>>
关于Spring Cloud的核心特性
查看>>
51CTO学院讲师账号后台——新增“商品名称”搜索功能!
查看>>
创客集结号:3D打印的材料
查看>>
Ceph
查看>>
架构的“一小步”,业务的一大步
查看>>
libvirt虚拟系统如何增加usb设备
查看>>
API 接口防刷
查看>>
Corrupted MAC on input
查看>>
vCenter Server 返回 503 服务不可用错误
查看>>