使用Linux命令行归档文件

存档文件 (Archiving Files)

As we already understand what Compression (Compression techniques in Linux) is? We shall learn about Archives. We prefer compression as it is convenient to send file compressed through a network but sometimes it is not a smart way to compress the multiple files separately but as a single entity, we can sure compress multiple files in a single line but in the core, all files are compressed independently.

众所周知, 什么是压缩( Linux中的压缩技术 ) ? 我们将学习档案。 我们更喜欢压缩,因为它可以方便地通过网络发送压缩文件,但有时并不是分开压缩多个文件的明智之举,但是作为单个实体,我们可以肯定在一行中压缩多个文件,但在核心中,所有文件是独立压缩的。

Archiving is the solution to this problem. The UNIX utility to archive files is tar, that is TApeaRchive.

存档是解决此问题的方法。 用于归档文件的UNIX实用程序是tar ,即TApeaRchive

Tar has 3 modes those are:

Tar有3种模式,分别是:

  1. Create: which is a new archive from a group of files

    创建:这是来自一组文件的新存档

  2. Extract: means getting one or more files from the archive

    提取:表示从存档中获取一个或多个文件

  3. The list: which shows the content of the archive without extracting it.

    列表:显示存档的内容而不提取它。

Our operations and command for archiving includes above three modes and will discuss throughout this article.

我们的归档操作和命令包括上述三种模式,并将在本文中进行讨论。

A tar file is also called a tarball, now let's dive into the practical thing.

tar文件也称为tarball,现在让我们深入了解实际情况。

示例1:创建模式 (Example 1: Create mode)

Archives in Linux 1

Explanation

说明

Creating a Tarball(at least) requires 2 options, here we used 'c' and 'f' :

创建一个Tarball (至少)需要两个选项,这里我们使用了'c''f'

  • c: create an archive file

    c:创建一个存档文件

  • f: tells tar to expect a file name as next argument.

    f:告诉tar将文件名作为下一个参数。

In line 1, we created the tar file with .tar extension and used a wildcard for all the files we have selected (multiple file name or both can be used).

在第1行中,我们创建了扩展名为.tartar文件,并对我们选择的所有文件使用了通配符(可以使用多个文件名,也可以使用两个文件名)。

tar command consists of:

tar命令包含:

    tar [options] tarname filename1 filename2 ...

The first option of tar always is its mode, here it was created ('c') then 'f' where we pass file names after the name ofthe tar file.

tar的第一个选项始终是它的模式,在这里先创建( 'c' ),然后创建'f' ,在此我们在tar文件名之后传递文件名。

In line 2, the size of includehelp.tar is slightly more than the files it contains, but it can be compressed either explicitly compressing it with gzip(or bzip2) or with tar itself.

在第2行中, includehelp.tar的大小略大于其包含的文件,但是可以使用gzip (或bzip2 )或tar本身对其进行显式压缩。

示例2:压缩 (Example 2: Compressing)

Archives in Linux 2

Explanation

说明

In the above example, we used 3 option format of tar, for compression with achieving.

在上面的示例中,我们使用了tar的 3个选项格式,以实现 压缩

In line 2, again the first option is to create mode, second one 'z' is for gzip (we can use 'j' for bzip2), and third for file argument. Format of compress tar with gzip is .tar.gz or .tgz(for bzip2, format will be .tar.bz or tbz).

在第2行中,第一个选项是创建模式,第二个“ z”用于gzip (我们可以将“ j”用于bzip2 ),第三个用于文件参数。 使用gzip压缩tar的格式为.tar.gz.tgz (对于bzip2 ,格式为.tar.bztbz )。

示例3:列表模式 (Example 3: List mode)

Archives in Linux 3

In the above sample, the command used is:

在上面的示例中,使用的命令是:

    tar –tzvf  filename

Where, –t option is used for list files in archive and z for gzip (j for bzip2) and v is verbose that is whatever is happing will shown on screen and f for given filename includehelp.tar.gz (or .tbz).

其中, -t选项用于归档文件中的列表文件, z表示gzip ( j表示bzip2 ), v表示冗长 ,即屏幕上将显示的内容是hap ,给定文件名 includehelp.tar.gz (或.tbz )将显示f

Note:

注意:

Although the position of the option doesn't matter in Linux command line in case of tar command, we always need to keep –f option at the end because after f it expects a filename.

尽管在使用tar命令的情况下,选项的位置在Linux命令行中并不重要,但我们始终需要在最后保留–f选项,因为在f之后需要一个文件名。

Recommended Articles:

推荐文章:

  • Make Utility (MakeFile) in Linux

    在Linux中制作实用程序(MakeFile)

  • Compression techniques in Linux

    Linux中的压缩技术

  • ZIP files on command line in Linux

    Linux中命令行上的ZIP文件

翻译自: https://www.includehelp.com/linux/archiving-files-using-linux-command-line.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541601.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

http缓存机制之304状态码

在网上看到一篇关于解释浏览器缓存更新机制304状态码的文章,里面说如果请求头中的If-Modified-Since字段和If-None-Match字段的值分别和响应头中的Last-Modified字段和Etag字段值一致,服务器就会返回304状态码(无响应体),浏览器就从本地读取缓…

东北大学 计算机技术导师,报考东北大学 计算机技术 329分 求调剂相关专业

自荐类型:硕士自荐报考院校:东北大学报考专业:(专业硕士)计算机技术[085211]本科院校:沈阳工程学院本科专业:计算机科学与技术初试成绩:总分:329政治:69 英语:71 …

c语言i++和++i程序_使用C ++程序修改链接列表的内容

c语言i和i程序Problem statement: 问题陈述: Given a linked list, you modified that linked list in such a way that the elements of the first half of that linked list are the difference of the first node to the last node and next node is the differ…

原生js设置div隐藏或者显示_10种JS控制DIV的显示隐藏代码

div隐藏与显示#menus {background-color: #c4cff0;}function Layer_HideOrShow(cur_div){ var currentdocument.getElementById(cur_div);if(current.style.visibility"hidden"){current.style.visibility "visible";}else{current.style.visibility "…

计算机工作对身体有害吗,在电脑前长时间工作会对身体有害处吗?

病情分析:目前,电脑对人体生理和心理方面的负面影响已日益受到人们的重视.为此科学使用电脑,减少电脑和网络的危害是十分必要的.指导意见:一是要增强自我保健意识工作间隙注意适当休息,一般来说,电脑操作人员在连续工作1小时后应该休息10分钟左右.并且最…

Java LinkedList getFirst()方法与示例

LinkedList getFirst()方法 (LinkedList getFirst() method) This method is available in package java.util.LinkedList. 软件包java.util.LinkedList中提供了此方法。 This method is used to return the first or initial or beginning element of the linked list. 此方法…

C++第15周(春)项目2 - 用文件保存的学生名单

课程首页在:http://blog.csdn.net/sxhelijian/article/details/11890759。内有完整教学方案及资源链接本程序中须要的相关文件。请到http://pan.baidu.com/s/1qW59HTi下载。【项目2-用文件保存的学生名单】  文件score.dat中保存的是若干名学生的姓名和C课、高数和…

计算机选配 注意事项,选择鼠标注意事项有哪些

选择鼠标注意事项有哪些每台电脑旁边都有了一个忠实的伴侣,那就是“Mouse”--鼠标。选择鼠标最重要的一点就是质量,无论它的功能有多强大、外形多漂亮,如果质量不好那么一切都不用考虑了。那么,选择鼠标注意事项有哪些?笔记本鼠标…

js 验证护照_护照本地策略第2部分| Node.js

js 验证护照In my last article (Passport local strategy section 1 | Node.js), we started the implementation of the passport-local authentication strategy. We also looked at the various requirements to get started with the login form. In this article, we wil…

svn版利用什么技术实现_金葱粉涂料印花利用了什么技术?

金葱粉涂料印花利用了什么技术:金葱粉用涂料而不是用染料来生产印花布已经非常广泛,以致开始把它当作一种独立的印花方式。涂料印花是用涂料直接印花,该工艺通常叫做干法印花,以区别于湿法印花(或染料印花)。通过比较同一块织物上印花部位和未…

网站换服务器需要注意什么问题,网站更换服务器要注意哪些事项

原标题:网站更换服务器要注意哪些事项网站在运营的过程中,出于某种考虑,我们会将网站进行服务器的变更,那么在进行服务器变成过程中,需要注意哪些事项。一、如果是跨服务商更换网站服务器,需要做备案迁移。…

json转string示例_C.示例中的String.Insert()方法

json转string示例C#String.Insert()方法 (C# String.Insert() Method) String.Insert() method is used to insert a string in an existence string at specified index and returns a new string. String.Insert()方法用于在指定索引处的存在字符串中插入一个字符…

kafka分区与分组原理_大数据技术-Kafka入门

在大数据学习当中,主要的学习重点就是大数据技术框架,针对于大数据处理的不同环节,需要不同的技术框架来解决问题。以Kafka来说,主要就是针对于实时消息处理,在大数据平台当中的应用也很广泛。大数据学习一般都有哪些内…

mac 电脑找不到服务器 dns 地址,MAC OS下如何快速设置DNS服务器地址

楼主你好!介绍以下Mac OS X DNS设置方法:1、点击桌面顶部状态栏里的苹果图标,在菜单里选择“系统偏好设置”。2、点击互联网与无线下的“网络”。3、在网络界面,选中正在联网的网络连接,点击右下角的“高级”选项。4、…

ActiveReports 报表控件官方中文新手教程 (1)-安装、激活以及产品资源

本系列文章主要是面向初次接触 ActiveReports 产品的用户,能够帮助您在三天之内轻松的掌握ActiveReports控件的基本用法,包含安装、激活、创建报表、绑定数据源以及公布等内容。本篇文章我们就从安装产品開始带您开启轻松的 Ac…

如何在React Native中使用React JS Hooks?

In my articles, Im going to be using either expo or snack online IDE and android emulator. 在我的文章中,我将使用expo或点心在线IDE和android模拟器。 React Hooks is simply an awesome tool that helps us use states and other react features without w…

华为P40pro 手机云台_2020年目前拍照最好的手机推荐!华为P40 Pro!DXO全球榜首

目前最热门的拍照手机自然是华为P40 Pro,其相机性能直接问鼎DXOMARK手机相机评分榜首。对于拍照要极求高的用户,华为P40 Pro将是一个非常不错的选择。那么,华为P40 Pro除了出色的相机之外,其它方面表现如何呢?下面&…

容器性能比无容器服务器,【译】容器 vs 无服务器(Serverless)

一些历史不久之前,开发,部署和运维还相当复杂。在一开始,运维不仅需要修补程序代码,还要支持物理机器。保持服务器,硬件与软件处于最新状态也是一项艰巨的任务。在2000年代,一个新的模型——架构即服务(Iaa…

Centos 7安装与配置nagios监控(一)

目 录序言(必备知识)一、安装规划1.1系统环境1.2所需软件包二、配置安装环境2.1同步时间2.2禁用SElinux2.3 xftp上传软件包2.4安装邮件服务三、监控主机安装3.1安装nagios的运行环境3.2增加用户3.3安装nagios3.4配置权限3.5安装插件3.6安装nrpe四、远程主机安装4.1配置运行环境…

java字符串删掉子串_如何从Java中的列表中删除子列表?

java字符串删掉子串从列表中删除子列表 (Removing SubList from a List) Suppose, we have a list of few elements like this, 假设我们列出了一些这样的元素, list [10,20,30,40,50]From the list, we have to delete a sub list between sourcing_index (inclu…