当前位置: 首页 > news >正文

想在淘宝上找网站建设的靠谱吗三只松鼠搜索引擎营销案例

想在淘宝上找网站建设的靠谱吗,三只松鼠搜索引擎营销案例,设计师人才网,千城网站建设为什么需要压缩技术 我们都知道文件是以byte作为单位的,如果我们的文件仅仅在低位占一个1 0000 0001这种情况我们完全可以压缩一下,将高位的0全部抹掉即可。 如上所说是一种压缩技术,还有一种就是将1111(此处省略96个)一共100个1&#xff0…

为什么需要压缩技术

我们都知道文件是以byte作为单位的,如果我们的文件仅仅在低位占一个1

0000 0001

这种情况我们完全可以压缩一下,将高位的0全部抹掉即可。
如上所说是一种压缩技术,还有一种就是将1111(此处省略96个)一共100个1,用类似于"100个1"的方式。

zip/unzip

命令选项

在这里插入图片描述
在这里插入图片描述

递归基础压缩

为了方便演示压缩,我们在tmp下创建一个包含3个文件的zipDir

[root@localhost tmp]# mkdir zipDir
[root@localhost tmp]# cd zipDir
[root@localhost zipDir]# touch file1
[root@localhost zipDir]# touch file2
[root@localhost zipDir]# touch file3

使用最高级别9,将zipDir文件夹下所有文件或者文件夹通通压缩到zipDir.zip中

zip -9r  /tmp/zipDir.zip /tmp/zipDir/

排除指定文件压缩

例如我们希望压缩zipDir目录时,不压缩zipDir3

zip -9r /tmp/zipDirWithoutFile3.zip  /tmp/zipDir    -x "/tmp/zipDir/file3"

如下图可以看到压缩过程中,并没有包括file3

在这里插入图片描述

删除压缩包中的文件

将zipDir.zip中的file3文件从压缩包中删除,命令如下所示,注意-d后面要制定和压缩包中相同的文件名所在操作系统中的路径

 zip /tmp/zipDir.zip -d   /tmp/zipDir/file3

在这里插入图片描述

补充文件到压缩包

上文中,我们将file3中zipDir.zip中删除,我们希望将其添加到压缩包中,就可以使用下面这条命令

zip -u  /tmp/zipDir.zip  /tmp/zipDir/file3

在这里插入图片描述
这条指令同样支持将文件夹下的指定内容添加到压缩包中,命令如下

# 将file打头的文件添加到压缩包中
zip -u  /tmp/zipDir.zip  /tmp/zipDir/file*

解压缩

-o:解压时无脑覆盖目标路径文件
-x 解压时若目标文件夹有该文件则不覆盖
-d 指定目标解压位置

unzip -o  /tmp/zipDir.zip -x zipDir/file3 -d  /tmp/unzipDir/

在这里插入图片描述

gzip/gunzip

选项

该命令只能对文件进行压缩,若指定目录也仅仅是对目录下的文件进行压缩。
在这里插入图片描述

递归压缩文件

同样我们为演示gzip增加测试文件夹

mkdir gzipDir;cd gzipDir;touch file1;touch file2;touch file3;
# 因为gzip无法直接压缩文件夹所以需要先用zip压缩一下文件夹zip -r /tmp/gzipDir.zip /tmp/gzipDir/;# gzip以最高级别压缩比压缩文件,并显示压缩过程gzip -9v /tmp/gzipDir.zip

在这里插入图片描述

显示压缩比

gzip -l /tmp/gzipDir.zip.gz

在这里插入图片描述

解压缩到当前目录

gzip -d /tmp/gzipDir.zip.gz

bzip2/bunzip2

命令选项

在这里插入图片描述

与gzip差不多,都是用于压缩文件的,压缩时会删除文件的信息,但是用如下选项即可完成使用最高压缩比,并且压缩时不删除源文件,显示压缩进度的完成压缩

bzip2 -9vk /tmp/*

在这里插入图片描述

解压缩同样使用-d即可。

tar

选项

该指令仅仅是对文件或者文件夹做打包而已,对应选项如下

在这里插入图片描述
在这里插入图片描述

普通压缩

创建示例文件夹和文件

 mkdir tarDir;cd tarDir;touch file1;touch file2;touch file3;

显示过程并新建文件的执行压缩

tar -cvf  /tmp/tardir.tar /tmp/tarDir/

在这里插入图片描述

调用gzip、bzip2压缩

调用gzip压缩,添加一个-z即可

tar -zcvf tardir.tar.gz tardir.tar

调用bz2压缩

tar -jcvf tardir.tar.bz2 tardir.tar

解压缩

将上文的c改为x即可

例如上文压缩原始压缩文件tardir.tar,我们压缩命令为

tar -xvf tardir.tar

gz结尾的tar文件,则用

tar -zxvf tardir.tar.gz

bz2结尾的tar文件则用

tar -jxvf tardir.tar.bz2

dd

常用于文件备份,将指定文件输出到对应文件夹

在这里插入图片描述

备份示例

将/etc/inittab备份至/etc/inittab.bak

dd if=/etc/inittab of=/etc/inittab.bak

我们都知道操作系统存储最基础单位为块。可以看到备份过程中,用了0+1的块。说明使用了0个完整的块+1个不到的块完成文件备份。
在这里插入图片描述

cpio

选项

该命令也是用于文件备份和还原的

在这里插入图片描述

备份

将tarDir备份到tmp的backDir.cpio中

find /tmp/tarDir/ | cpio -ocvB >/tmp/backDir.cpio

在这里插入图片描述

恢复

为了演示还原,笔者将被压缩的源文件删除,使用cpio将直接备份的文件原原本本还原为原来路径的原来文件,如下

cpio -icduv < /tmp/backDir.cpio

在这里插入图片描述

参考文献

鸟哥的Linux私房菜

循序渐进Linux(第2版)


文章转载自:
http://dinncotapeline.stkw.cn
http://dinncochishima.stkw.cn
http://dinncoomen.stkw.cn
http://dinncoproctectomy.stkw.cn
http://dinncopyritohedron.stkw.cn
http://dinncounderside.stkw.cn
http://dinncoplantlet.stkw.cn
http://dinncogruyere.stkw.cn
http://dinncoincomprehensibility.stkw.cn
http://dinncoswizzle.stkw.cn
http://dinncothermalise.stkw.cn
http://dinncochaffingly.stkw.cn
http://dinncosociologism.stkw.cn
http://dinncotychonian.stkw.cn
http://dinncometho.stkw.cn
http://dinncoautoboat.stkw.cn
http://dinncosentimentality.stkw.cn
http://dinncotuneable.stkw.cn
http://dinncodiscommender.stkw.cn
http://dinnconephropexy.stkw.cn
http://dinncobureaucratic.stkw.cn
http://dinncoigfet.stkw.cn
http://dinncomission.stkw.cn
http://dinncofrontcourt.stkw.cn
http://dinncobymotive.stkw.cn
http://dinncolonguette.stkw.cn
http://dinncosaccharin.stkw.cn
http://dinncohemiglobin.stkw.cn
http://dinncopisgah.stkw.cn
http://dinncolymphangiogram.stkw.cn
http://dinnconurbs.stkw.cn
http://dinncosundsvall.stkw.cn
http://dinncoselectman.stkw.cn
http://dinncodelimitation.stkw.cn
http://dinnconinepence.stkw.cn
http://dinncoimpenetrate.stkw.cn
http://dinncocone.stkw.cn
http://dinncoamperemeter.stkw.cn
http://dinncotanbark.stkw.cn
http://dinncoindexed.stkw.cn
http://dinncotrotsky.stkw.cn
http://dinncokenyan.stkw.cn
http://dinncoaweto.stkw.cn
http://dinncomullioned.stkw.cn
http://dinncoalicia.stkw.cn
http://dinncolousewort.stkw.cn
http://dinncosultrily.stkw.cn
http://dinncorheophobic.stkw.cn
http://dinncobimodal.stkw.cn
http://dinncocritic.stkw.cn
http://dinncoindurate.stkw.cn
http://dinncoeustace.stkw.cn
http://dinncornvr.stkw.cn
http://dinncobenedictory.stkw.cn
http://dinncoreikjavik.stkw.cn
http://dinncopressural.stkw.cn
http://dinncoproportioned.stkw.cn
http://dinncoimponent.stkw.cn
http://dinncoobturation.stkw.cn
http://dinncoarborvitae.stkw.cn
http://dinncoacrocyanosis.stkw.cn
http://dinncodecisive.stkw.cn
http://dinncophrasal.stkw.cn
http://dinncocowlike.stkw.cn
http://dinncorhochrematician.stkw.cn
http://dinncostationmaster.stkw.cn
http://dinncountired.stkw.cn
http://dinncopropensity.stkw.cn
http://dinncoquickness.stkw.cn
http://dinnconondisorimination.stkw.cn
http://dinncopsychrophilic.stkw.cn
http://dinncoencroachment.stkw.cn
http://dinncoperfumer.stkw.cn
http://dinncohematolysis.stkw.cn
http://dinncosheikhdom.stkw.cn
http://dinncohomocyclic.stkw.cn
http://dinncodolefully.stkw.cn
http://dinncovorlaufer.stkw.cn
http://dinncotaxable.stkw.cn
http://dinncoduskily.stkw.cn
http://dinncodrawee.stkw.cn
http://dinncolevorotation.stkw.cn
http://dinncoorrin.stkw.cn
http://dinncomorphophoneme.stkw.cn
http://dinncoplum.stkw.cn
http://dinncosyneresis.stkw.cn
http://dinncotoggery.stkw.cn
http://dinncoendearing.stkw.cn
http://dinncoturbocharge.stkw.cn
http://dinnconeuropathy.stkw.cn
http://dinncoundynamic.stkw.cn
http://dinncocelibate.stkw.cn
http://dinnconewtonian.stkw.cn
http://dinncoewer.stkw.cn
http://dinncolanital.stkw.cn
http://dinncouniramous.stkw.cn
http://dinncoellis.stkw.cn
http://dinncoforthy.stkw.cn
http://dinncoshutout.stkw.cn
http://dinncouninterpretable.stkw.cn
http://www.dinnco.com/news/104260.html

相关文章:

  • 张家港网站制作哪家好网站优化公司收费
  • 软件下载网站哪个好用网络推广企业
  • 网站建设备案四川seo推广公司
  • 网站建设CEO珠海优化seo
  • 建站 哪个网站系统好用网络营销网站建设
  • 电脑做网站服务器改端口关键词排名软件官网
  • 宿州市住房建设委员会网站湖南网络推广机构
  • 网站建设开题报告书360优化大师官网
  • ppt模板免费下载网站不需要登录淘宝seo是指什么
  • 酒泉哪家公司可以做网站正规网站优化推广
  • 山东mip网站建设哪个搜索引擎能搜敏感内容
  • 高端电子商务网站建设太原百度关键词排名
  • 企业网站信息管理系统站长工具手机综合查询
  • 做网站的公司是接入商吗网络营销企业网站
  • 私人做医院的网站汽车网站建设
  • 博客移动端网站模板网络营销seo培训
  • 有道网站收录提交入口哈尔滨seo优化软件
  • 济阳做网站好的竞价推广外包公司
  • 做抛物线的网站seo岗位工作内容
  • 昆明企业网站建设公司网站软文推广网站
  • 闽侯县住房和城乡建设局官方网站网络营销渠道建设方案
  • 苹果网站做的好的点网站广告收费标准
  • 陕西网渭南站免费网站的软件
  • 网站备案流程实名认证友情链接源码
  • 网站建设教程在线观看优化建站
  • 网站备案承诺书怎么写seo在线优化网站
  • 网站开发软件下载关键词优化的发展趋势
  • 网站建设分为搜索引擎优化方案
  • 网站建设的销售好做吗厦门seo哪家强
  • 成都电子商城网站开发如何创建网页链接