mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
commit
1bd744f35d
@ -1,214 +0,0 @@
|
||||
[#]: collector: (lujun9972)
|
||||
[#]: translator: (MjSeven)
|
||||
[#]: reviewer: ( )
|
||||
[#]: publisher: ( )
|
||||
[#]: url: ( )
|
||||
[#]: subject: (How to Create and Manage Archive Files in Linux)
|
||||
[#]: via: (https://www.linux.com/news/how-to-create-and-manage-archive-files-in-linux-2/)
|
||||
[#]: author: (LF Training https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/)
|
||||
|
||||
How to Create and Manage Archive Files in Linux
|
||||
======
|
||||
|
||||
_By Matt Zand and Kevin Downs_
|
||||
|
||||
In a nutshell, an archive is a single file that contains a collection of other files and/or directories. Archive files are typically used for a transfer (locally or over the internet) or make a backup copy of a collection of files and directories which allow you to work with only one file (if compressed, it has a lower size than the sum of all files within it) instead of many. Likewise, archives are used for software application packaging. This single file can be easily compressed for ease of transfer while the files in the archive retain the structure and permissions of the original files.
|
||||
|
||||
We can use the tar tool to create, list, and extract files from archives. Archives made with tar are normally called “tar files,” “tar archives,” or—since all the archived files are rolled into one—“tarballs.”
|
||||
|
||||
This tutorial shows how to use tar to create an archive, list the contents of an archive, and extract the files from an archive. Two common options used with all three of these operations are ‘-f’ and ‘-v’: to specify the name of the archive file, use ‘-f’ followed by the file name; use the ‘-v’ (“verbose”) option to have tar output the names of files as they are processed. While the ‘-v’ option is not necessary, it lets you observe the progress of your tar operation.
|
||||
|
||||
For the remainder of this tutorial, we cover 3 topics: 1- Create an archive file, 2- List contents of an archive file, and 3- Extract contents from an archive file. We conclude this tutorial by surveying 6 practical questions related to archive file management. What you take away from this tutorial is essential for performing tasks related to [cybersecurity][1] and [cloud technology][2].
|
||||
|
||||
### 1- Creating an Archive File
|
||||
|
||||
To create an archive with tar, use the ‘-c’ (“create”) option, and specify the name of the archive file to create with the ‘-f’ option. It’s common practice to use a name with a ‘.tar’ extension, such as ‘my-backup.tar’. Note that unless specifically mentioned otherwise, all commands and command parameters used in the remainder of this article are used in lowercase. Keep in mind that while typing commands in this article on your terminal, you need not type the $ prompt sign that comes at the beginning of each command line.
|
||||
|
||||
Give as arguments the names of the files to be archived; to create an archive of a directory and all of the files and subdirectories it contains, give the directory’s name as an argument.
|
||||
|
||||
* *To create an archive called ‘project.tar’ from the contents of the ‘project’ directory, type:
|
||||
|
||||
$ _tar -cvf project.tar project_
|
||||
|
||||
This command creates an archive file called ‘project.tar’ containing the ‘project’ directory and all of its contents. The original ‘project’ directory remains unchanged.
|
||||
|
||||
Use the ‘-z’ option to compress the archive as it is being written. This yields the same output as creating an uncompressed archive and then using gzip to compress it, but it eliminates the extra step.
|
||||
|
||||
* *To create a compressed archive called ‘project.tar.gz’ from the contents of the ‘project’ directory, type:
|
||||
|
||||
$ _tar -zcvf project.tar.gz project_
|
||||
|
||||
This command creates a compressed archive file, ‘project.tar.gz’, containing the ‘project’ directory and all of its contents. The original ‘project’ directory remains unchanged.
|
||||
|
||||
**NOTE:** While using the ‘-z’ option, you should specify the archive name with a ‘.tar.gz’ extension and not a ‘.tar’ extension, so the file name shows that the archive is compressed. Although not required, it is a good practice to follow.
|
||||
|
||||
Gzip is not the only form of compression. There is also bzip2 and and xz. When we see a file with an extension of xz we know it has been compressed using xz. When we see a file with the extension of .bz2 we can infer it was compressed using bzip2. We are going to steer away from bzip2 as it is becoming unmaintained and focus on xz. When compressing using xz it is going to take longer for the files to compressed. However, it is typically worth the wait as the compression is much more effective, meaning the resulting file will usually be smaller than other compression methods used. Even better is the fact that decompression, or expanding the file, is not much different between the different methods of compression. Below we see an example of how to utilize xz when compressing a file using tar
|
||||
|
||||
$ _tar -Jcvf project.tar.xz project_
|
||||
|
||||
We simply switch -z for gzip to uppercase -J for xz. Here are some outputs to display the differences between the forms of compression:
|
||||
|
||||
![][3]
|
||||
|
||||
![][4]
|
||||
|
||||
As you can see xz does take the longest to compress. However it does the best job of reducing files size, so it’s worth the wait. The larger the file is the better the compression becomes too!
|
||||
|
||||
### 2- Listing Contents of an Archive File
|
||||
|
||||
To list the contents of a tar archive without extracting them, use tar with the ‘-t’ option.
|
||||
|
||||
* *To list the contents of an archive called ‘project.tar’, type:
|
||||
|
||||
$ _tar -tvf project.tar_ * *
|
||||
|
||||
This command lists the contents of the ‘project.tar’ archive. Using the ‘-v’ option along with the ‘-t’ option causes tar to output the permissions and modification time of each file, along with its file name—the same format used by the ls command with the ‘-l’ option.
|
||||
|
||||
* *To list the contents of a compressed archive called ‘project.tar.gz’, type:
|
||||
|
||||
$ _tar -tvf project.tar_
|
||||
|
||||
* *3- Extracting contents from an Archive File
|
||||
|
||||
To extract (or _unpack_) the contents of a tar archive, use tar with the ‘-x’ (“extract”) option.
|
||||
|
||||
* *To extract the contents of an archive called ‘project.tar’, type:
|
||||
|
||||
$ _tar -xvf project.tar_
|
||||
|
||||
This command extracts the contents of the ‘project.tar’ archive into the current directory.
|
||||
|
||||
If an archive is compressed, which usually means it will have a ‘.tar.gz’ or ‘.tgz’ extension, include the ‘-z’ option.
|
||||
|
||||
* *To extract the contents of a compressed archive called ‘project.tar.gz’, type:
|
||||
|
||||
$ _tar -zxvf project.tar.gz_
|
||||
|
||||
**NOTE:** If there are files or subdirectories in the current directory with the same name as any of those in the archive, those files will be overwritten when the archive is extracted. If you don’t know what files are included in an archive, consider listing the contents of the archive first.
|
||||
|
||||
Another reason to list the contents of an archive before extracting them is to determine whether the files in the archive are contained in a directory. If not, and the current directory contains many unrelated files, you might confuse them with the files extracted from the archive.
|
||||
|
||||
To extract the files into a directory of their own, make a new directory, move the archive to that directory, and change to that directory, where you can then extract the files from the archive.
|
||||
|
||||
Now that we have learned how to create an Archive file and list/extract its contents, we can move on to discuss the following 9 practical questions that are frequently asked by Linux professionals.
|
||||
|
||||
* Can we add content to an archive file without unpacking it?
|
||||
|
||||
|
||||
|
||||
Unfortunately, once a file has been compressed there is no way to add content to it. You would have to “unpack” it or extract the contents, edit or add content, and then compress the file again. If it’s a small file this process will not take long. If it’s a larger file then be prepared for it to take a while.
|
||||
|
||||
* Can we delete content from an archive file without unpacking it?
|
||||
|
||||
|
||||
|
||||
This depends on the version of tar being used. Newer versions of tar will support a –delete.
|
||||
|
||||
For example, let’s say we have files file1 and file2 . They can be removed from file.tar with the following:
|
||||
|
||||
_$ tar -vf file.tar –delete file1 file2_
|
||||
|
||||
To remove a directory dir1:
|
||||
|
||||
_$ tar -f file.tar –delete dir1/*_
|
||||
|
||||
* What are the differences between compressing a folder and archiving it?
|
||||
|
||||
|
||||
|
||||
The simplest way to look at the difference between archiving and compressing is to look at the end result. When you archive files you are combining multiple files into one. So if we archive 10 100kb files you will end up with one 1000kb file. On the other hand if we compress those files we could end up with a file that is only a few kb or close to 100kb.
|
||||
|
||||
* How to compress archive files?
|
||||
|
||||
|
||||
|
||||
As we saw above you can create and archive files using the tar command with the cvf options. To compress the archive file we made there are two options; run the archive file through compression such as gzip. Or use a compression flag when using the tar command. The most common compression flags are- z for gzip, -j for bzip and -J for xz. We can see the first method below:
|
||||
|
||||
_$ gzip file.tar_
|
||||
|
||||
Or we can just use a compression flag when using the tar command, here we’ll see the gzip flag “z”:
|
||||
|
||||
_$ tar -cvzf file.tar /some/directory_
|
||||
|
||||
* How to create archives of multiple directories and/or files at one time?
|
||||
|
||||
|
||||
|
||||
It is not uncommon to be in situations where we want to archive multiple files or directories at once. And it’s not as difficult as you think to tar multiple files and directories at one time. You simply supply which files or directories you want to tar as arguments to the tar command:
|
||||
|
||||
_$ tar -cvzf file.tar file1 file2 file3_
|
||||
|
||||
or
|
||||
|
||||
_$ tar -cvzf file.tar /some/directory1 /some/directory2_
|
||||
|
||||
* How to skip directories and/or files when creating an archive?
|
||||
|
||||
|
||||
|
||||
You may run into a situation where you want to archive a directory or file but you don’t need certain files to be archived. To avoid archiving those files or “exclude” them you would use the –exclude option with tar:
|
||||
|
||||
_$ tar –exclude ‘/some/directory’ -cvf file.tar /home/user_
|
||||
|
||||
So in this example /home/user would be archived but it would exclude the /some/directory if it was under /home/user. It’s important that you put the –exclude option before the source and destination as well as to encapsulate the file or directory being excluded with single quotation marks.
|
||||
|
||||
### Summary
|
||||
|
||||
The tar command is useful for creating backups or compressing files you no longer need. It’s good practice to back up files before changing them. If something doesn’t work how it’s intended to after the change you will always be able to revert back to the old file. Compressing files no longer in use helps keep systems clean and lowers the disk space usage. There are other utilities available but tar has reigned supreme for its versatility, ease of use and popularity.
|
||||
|
||||
### Resources
|
||||
|
||||
If you like to learn more about Linux, reading the following articles and tutorials are highly recommended:
|
||||
|
||||
* [Comprehensive Review of Linux File System Architecture and Management][5]
|
||||
* [Comprehensive Review of How Linux File and Directory System Works][6]
|
||||
* [Comprehensive list of all Linux OS distributions][7]
|
||||
* [Comprehensive list of all special purpose Linux distributions][8]
|
||||
* [Linux System Admin Guide- Best Practices for Making and Managing Backup Operations][9]
|
||||
* [Linux System Admin Guide- Overview of Linux Virtual Memory and Disk Buffer Cache][10]
|
||||
* [Linux System Admin Guide- Best Practices for Monitoring Linux Systems][11]
|
||||
* [Linux System Admin Guide- Best Practices for Performing Linux Boots and Shutdowns][12]
|
||||
|
||||
|
||||
|
||||
### About the Authors
|
||||
|
||||
**Matt Zand** is a serial entrepreneur and the founder of 3 tech startups: [DC Web Makers][13], [Coding Bootcamps][14] and [High School Technology Services][15]. He is a leading author of [Hands-on Smart Contract Development with Hyperledger Fabric][16] book by O’Reilly Media. He has written more than 100 technical articles and tutorials on blockchain development for Hyperledger, Ethereum and Corda R3 platforms. At DC Web Makers, he leads a team of blockchain experts for consulting and deploying enterprise decentralized applications. As chief architect, he has designed and developed blockchain courses and training programs for Coding Bootcamps. He has a master’s degree in business management from the University of Maryland. Prior to blockchain development and consulting, he worked as senior web and mobile App developer and consultant, angel investor, business advisor for a few startup companies. You can connect with him on LI: <https://www.linkedin.com/in/matt-zand-64047871>
|
||||
|
||||
**Kevin Downs** is Red Hat Certified System Administrator or RHCSA. At his current job at IBM as Sys Admin, he is in charge of administering hundreds of servers running on different Linux distributions. He is a Lead Linux Instructor at [Coding Bootcamps][17] where he has authored [5 self-paced Courses][18].
|
||||
|
||||
The post [How to Create and Manage Archive Files in Linux][19] appeared first on [Linux Foundation – Training][20].
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://www.linux.com/news/how-to-create-and-manage-archive-files-in-linux-2/
|
||||
|
||||
作者:[LF Training][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://learn.coding-bootcamps.com/p/essential-practical-guide-to-cybersecurity-for-system-admin-and-developers
|
||||
[2]: https://learn.coding-bootcamps.com/p/introduction-to-cloud-technology
|
||||
[3]: https://training.linuxfoundation.org/wp-content/uploads/2020/12/Linux1-300x94.png
|
||||
[4]: https://training.linuxfoundation.org/wp-content/uploads/2020/12/Linux2-300x110.png
|
||||
[5]: https://blockchain.dcwebmakers.com/blog/linux-os-file-system-architecture-and-management.html
|
||||
[6]: https://coding-bootcamps.com/linux/filesystem/index.html
|
||||
[7]: https://myhsts.org/tutorial-list-of-all-linux-operating-system-distributions.php
|
||||
[8]: https://coding-bootcamps.com/list-of-all-special-purpose-linux-distributions.html
|
||||
[9]: https://myhsts.org/tutorial-system-admin-best-practices-for-managing-backup-operations.php
|
||||
[10]: https://myhsts.org/tutorial-how-linux-virtual-memory-and-disk-buffer-cache-work.php
|
||||
[11]: https://myhsts.org/tutorial-system-admin-best-practices-for-monitoring-linux-systems.php
|
||||
[12]: https://myhsts.org/tutorial-best-practices-for-performing-linux-boots-and-shutdowns.php
|
||||
[13]: https://blockchain.dcwebmakers.com/
|
||||
[14]: http://coding-bootcamps.com/
|
||||
[15]: https://myhsts.org/
|
||||
[16]: https://www.oreilly.com/library/view/hands-on-smart-contract/9781492086116/
|
||||
[17]: https://coding-bootcamps.com/
|
||||
[18]: https://learn.coding-bootcamps.com/courses/author/758905
|
||||
[19]: https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/
|
||||
[20]: https://training.linuxfoundation.org/
|
@ -0,0 +1,202 @@
|
||||
[#]: collector: "lujun9972"
|
||||
[#]: translator: "MjSeven"
|
||||
[#]: reviewer: " "
|
||||
[#]: publisher: " "
|
||||
[#]: url: " "
|
||||
[#]: subject: "How to Create and Manage Archive Files in Linux"
|
||||
[#]: via: "https://www.linux.com/news/how-to-create-and-manage-archive-files-in-linux-2/"
|
||||
[#]: author: "LF Training https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/"
|
||||
|
||||
如何在 Linux 中创建和管理归档文件
|
||||
======
|
||||
|
||||
_由 Matt Zand 和 Kevin Downs 联合写作_
|
||||
|
||||
简而言之,归档是一个包含一系列文件和(或)目录的单一文件。归档文件通常用于在本地或互联网上传输,或成为一个一系列文件和目录的备份副本,从而允许你使用一个文件来工作(如果压缩,则其大小会小于所有文件的总和)。同样的,归档也用于软件应用程序打包。为了方便传输,可以很容易地压缩这个单一文件,而存档中的文件会保留原始结构和权限。
|
||||
|
||||
我们可以使用 tar 工具来创建、列出和提取归档中的文件。用 tar 生成的归档通常称为“tar 文件”、“tar 归档”或者“压缩包”(因为所有已归档的文件被合成了一个文件)。
|
||||
|
||||
本教程会展示如何使用 tar 创建、列出和提取归档中的内容。这三个操作都会使用两个公共选项 "-f" 和 "-v":使用 "-f" 指定归档文件的名称,使用 "-v"("verbose") 选项使 tar 在处理文件时输出文件名。虽然 "-v" 选项不是必需的,但是它可以让你观察 tar 操作的过程。
|
||||
|
||||
在本教程的剩余部分中,会涵盖 3 个主题:1、创建一个归档文件;2、列出归档文件内容;3、提取归档文件内容。另外我们会回答通过调查与归档文件管理的 6 个实际问题来结束本教程。你从本教程学到的内容对于执行与[网络安全][1]和[云技术][2]相关的任务至关重要。
|
||||
|
||||
### 1- 创建一个归档文件
|
||||
|
||||
要使用 tar 创建一个归档文件,使用 "-c"("create") 选项,然后用 "-f" 选项指定要创建的归档文件名。通常的做法是使用带有 ".tar" 扩展名的名称,例如 "my-backup.tar"。注意,除非另有特别说明,否则本文其余部分中使用的所有命令和参数都以小写形式使用。记住,在你的终端上输入本文的命令时,无需输入每个命令行开头的 $ 提示符。
|
||||
|
||||
输入要归档的文件名作为参数;如果要创建一个包含所有文件及其子目录的归档文件,提供目录名称作为参数。
|
||||
|
||||
要归档 "project" 目录内容,输入
|
||||
|
||||
$ _tar -cvf project.tar project_
|
||||
|
||||
这个命令将创建一个名为 "project.tar" 的归档文件,包含 "project" 目录的所有内容,而原目录 "project" 将保持不变。
|
||||
|
||||
使用 "-z" 选项可以对归档文件进行压缩,这样产生的输出与创建未压缩的存档然后用 gzip 压缩是一样的,但它省去了额外的步骤。
|
||||
|
||||
要从 "project" 目录创建一个 "project.tar.gz" 的压缩包,输入:
|
||||
|
||||
$ _tar -zcvf project.tar.gz project_
|
||||
|
||||
这个命令将创建一个 "project.tar.gz" 的压缩包,包含 "project" 目录的所有内容,而原目录 "project" 将保持不变。
|
||||
|
||||
**注意:**在使用 "-z" 选项时,你应该使用 ".tar.gz" 扩展名而不是 ".tar" 扩展名,这样表示已压缩。虽然不是必须的,但这是一个很好的实践。
|
||||
|
||||
Gzip 不是唯一的压缩形式,还有 bzip2 和 xz。当我们看到扩展名为 xz 的文件时,我们知道该文件是使用 xz 压缩的,扩展名为 .bz2 的文件是用 bzip2 压缩的。随着 bzip2 不再维护,我们将远离它而关注 xz。使用 xz 压缩时,需要花费更长的时间。然而,等待通常是值得的,因为压缩效果要好的多,这意味着压缩包通常比使用其它压缩形式要小。更好的是,不同压缩形式之间的解压缩或提取文件并没有太大区别。下面我们将看到一个使用 tar 压缩文件时如何使用 xz 的示例:
|
||||
|
||||
$ _tar -Jcvf project.tar.xz project_
|
||||
|
||||
我们只需将 gzip 的 -z 选项转换为 xz 的大写 -J 即可。以下是一些输出,显示压缩形式之间的差异:
|
||||
|
||||
![][3]
|
||||
|
||||
![][4]
|
||||
|
||||
如你所见,zx 的压缩时间最长。但是,它在减小文件大小方面做的最好,所以值得等待。文件越大,压缩效果也越好。
|
||||
|
||||
### 2- 列出归档文件的内容
|
||||
|
||||
要列出 tar 归档文件的内容但不提取,使用 "-t" 选项。
|
||||
|
||||
要列出 "project.tar" 的内容,输入:
|
||||
|
||||
$ _tar -tvf project.tar_ * *
|
||||
|
||||
这个命令列出了 "project.tar" 归档的内容。"-v" 和 "-t" 选项一起使用会输出每个文件的权限和修改时间,以及文件名。这与 ls 命令使用 "-l" 选项时使用的格式相同。
|
||||
|
||||
要列出 "project.tar.gz" 压缩包的内容,输入:
|
||||
|
||||
$ _tar -tvf project.tar_
|
||||
|
||||
### 3- 从归档中提取内容
|
||||
|
||||
要提取(解压)tar 归档文件中的内容,使用 "-x"("extract") 选项。
|
||||
|
||||
要提取 "project.tar" 归档的内容,输入:
|
||||
|
||||
$ _tar -xvf project.tar_
|
||||
|
||||
这个命令会将 "project.tar" 归档的内容提取到当前目录。
|
||||
|
||||
如果一个归档文件被压缩,通常来说它的扩展名为 ".tar.gz" 或 ".tgz",包括 "-z" 选项。
|
||||
|
||||
要提取 "project.tar.gz" 压缩包的内容,输入:
|
||||
|
||||
$ _tar -zxvf project.tar.gz_
|
||||
|
||||
**注意**:如果当前目录中有文件或子目录与归档文件中的内容同名,那么在提取归档文件时,这些文件或子目录将被覆盖。如果你不知道归档中包含哪些文件,请考虑先查看归档文件的内容。
|
||||
|
||||
在提取归档内容之前列出其内容的另一个原因是,确定归档中的内容是否包含在目录中。如果没有,而当前目录中包含许多不相关的文件,那么你可能将它们与归档中提取的文件混淆。
|
||||
|
||||
要将文件提取到它们自己的目录中,新建一个目录,将归档文件移到该目录,然后你就可以在新目录中提取文件。
|
||||
|
||||
现在我们已经学习了如何创建归档文件并列出和提取其内容,接下来我们可以继续讨论 Linux 专业人员经常被问到的 9 个实用问题。
|
||||
|
||||
* 可以在不解压缩的情况下添加内容到压缩包中吗?
|
||||
|
||||
很不幸,一旦文件将被压缩,就无法向其添加内容。你需要解压缩或提取其内容,然后编辑或添加内容,最后再次压缩文件。如果文件很小,这个过程不会花费很长时间,否则请等待一会。
|
||||
|
||||
* 可以在不解压缩的情况下删除归档文件中的内容吗?
|
||||
|
||||
这取决压缩时使用的 tar 版本。较新版本的 tar 支持 -delete 选项。
|
||||
|
||||
例如,假设归档文件中有 file1 和 file2,可以使用以下命令将它们从 file.tar 中删除:
|
||||
|
||||
_$ tar -vf file.tar –delete file1 file2_
|
||||
|
||||
删除目录 dir1:
|
||||
|
||||
_$ tar -f file.tar –delete dir1/*_
|
||||
|
||||
* 压缩和归档之间有什么区别?
|
||||
|
||||
查看归档和压缩之间差异最简单的方法是查看其解压大小。归档文件时,会将多个文件合并为一个。所以,如果我们归档 10 个 100kb 文件,则最终会得到一个 100kb 大小的文件。而如果压缩这些文件,则最终可能得到一个只有几 kb 或接近 100kb 的文件。
|
||||
|
||||
* 如何压缩归档文件?
|
||||
|
||||
如上所说,你可以使用带有 cvf 选项的 tar 目录来创建和归档文件。要压缩归档文件,有两个选择:通过压缩程序(例如 gzip)运行归档文件,或在使用 tar 命令时使用压缩选项。最常见的压缩标志 -z 表示 gzip,-j 表示 bzip,-J 表示 xz。例如:
|
||||
|
||||
_$ gzip file.tar_
|
||||
|
||||
或者,我们可以在使用 tar 命令时使用压缩标志,以下命令使用 gzip 标志 "z":
|
||||
|
||||
_$ tar -cvzf file.tar /some/directory_
|
||||
|
||||
* 如何一次创建多个目录和/或文件的归档?
|
||||
|
||||
一次要归档多个文件,这种情况并不少见。一次归档多个文件和目录并不像你想的那么难,你只需要提供多个文件或目录作为 tar 的参数即可:
|
||||
|
||||
_$ tar -cvzf file.tar file1 file2 file3_
|
||||
|
||||
或者
|
||||
|
||||
_$ tar -cvzf file.tar /some/directory1 /some/directory2_
|
||||
|
||||
* 创建归档时如何跳过目录和/或文件?
|
||||
|
||||
你可能会遇到这样的情况:要归档一个目录或文件,但不是所有文件,这种情况下可以使用 --exclude 选项:
|
||||
|
||||
_$ tar –exclude ‘/some/directory’ -cvf file.tar /home/user_
|
||||
|
||||
在示例中,/home/user 目录中除了 /some/directory 之外都将被归档。将 -exclude 选项放在源和目标之前,并用单引号将要排除的文件或目录引起来,这一点很重要。
|
||||
|
||||
### 总结
|
||||
|
||||
tar 命令对展示不需要的文件创建备份或压缩文件很有用。在更改文件之前备份它们是一个很好的做法。如果某些东西在更改后没有按预期正常工作,你始终可以还原到旧文件。压缩不再使用的文件有助于保持系统干净,并降低磁盘空间使用率。还有其它实用程序可以归档或压缩,但是 tar 因其多功能、易用性和受欢迎程度而独占鳌头。
|
||||
|
||||
### 资源
|
||||
|
||||
如果你想了解有关 Linux 的更多信息,强烈建议阅读以下文章和教程:
|
||||
|
||||
* [Linux 文件系统架构和管理综述][5]
|
||||
* [Linux 文件和目录系统工作原理的全面回顾][6]
|
||||
* [所有 Linux 系统发行版的综合列表][7]
|
||||
* [特殊用途 Linux 发行版的综合列表][8]
|
||||
* [Linux 系统管理指南 - 制作和管理备份操作的最佳实践][9]
|
||||
* [Linux 系统管理指南 - Linux 虚拟内存和磁盘缓冲区缓存概述][10]
|
||||
* [Linux 系统管理指南 - 监控 Linux 的最佳实践][11]
|
||||
* [Linux 系统管理指南 - Linux 启动和关闭的最佳实践][12]
|
||||
|
||||
|
||||
|
||||
### 关于作者
|
||||
|
||||
**Matt Zand** 是一位创业者,也是 3 家科技创业公司的创始人: [DC Web Makers][13]、[Coding Bootcamps][14] 和 [High School Technology Services][15]。他也是 [使用 Hyperledger Fabric 进行智能合约开发][16] 一书的主要作者。他为 Hyperledger、以太坊和 Corda R3 平台编写了 100 多篇关于区块链开发的技术文章和教程。在 DC Web Makers,他领导了一个区块链专家团队,负责咨询和部署企业去中心化应用程序。作为首席架构师,他为编码训练营设计和开发了区块链课程和培训项目。他拥有马里兰大学(University of Maryland)工商管理硕士学位。在区块链开发和咨询之前,他曾担任一些初创公司的高级网页和移动应用程序开发和顾问、天使投资人和业务顾问。你可以通过以下这个网址和他取得联系: <https://www.linkedin.com/in/matt-zand-64047871>。
|
||||
|
||||
**Kevin Downs** 是 Red Hat 认证的系统管理员和 RHCSA。他目前在 IBM 担任系统管理员,负责管理数百台运行在不同 Linux 发行版上的服务器。他是[编码训练营][17]的首席 Linux 讲师,并且他会讲授 [5 个自己的课程][18].
|
||||
|
||||
本文首发在 [Linux 基础培训][20]上。
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://www.linux.com/news/how-to-create-and-manage-archive-files-in-linux-2/
|
||||
|
||||
作者:[LF Training][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[MjSeven](https://github.com/MjSeven)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://learn.coding-bootcamps.com/p/essential-practical-guide-to-cybersecurity-for-system-admin-and-developers
|
||||
[2]: https://learn.coding-bootcamps.com/p/introduction-to-cloud-technology
|
||||
[3]: https://training.linuxfoundation.org/wp-content/uploads/2020/12/Linux1-300x94.png
|
||||
[4]: https://training.linuxfoundation.org/wp-content/uploads/2020/12/Linux2-300x110.png
|
||||
[5]: https://blockchain.dcwebmakers.com/blog/linux-os-file-system-architecture-and-management.html
|
||||
[6]: https://coding-bootcamps.com/linux/filesystem/index.html
|
||||
[7]: https://myhsts.org/tutorial-list-of-all-linux-operating-system-distributions.php
|
||||
[8]: https://coding-bootcamps.com/list-of-all-special-purpose-linux-distributions.html
|
||||
[9]: https://myhsts.org/tutorial-system-admin-best-practices-for-managing-backup-operations.php
|
||||
[10]: https://myhsts.org/tutorial-how-linux-virtual-memory-and-disk-buffer-cache-work.php
|
||||
[11]: https://myhsts.org/tutorial-system-admin-best-practices-for-monitoring-linux-systems.php
|
||||
[12]: https://myhsts.org/tutorial-best-practices-for-performing-linux-boots-and-shutdowns.php
|
||||
[13]: https://blockchain.dcwebmakers.com/
|
||||
[14]: http://coding-bootcamps.com/
|
||||
[15]: https://myhsts.org/
|
||||
[16]: https://www.oreilly.com/library/view/hands-on-smart-contract/9781492086116/
|
||||
[17]: https://coding-bootcamps.com/
|
||||
[18]: https://learn.coding-bootcamps.com/courses/author/758905
|
||||
[19]: https://training.linuxfoundation.org/announcements/how-to-create-and-manage-archive-files-in-linux/
|
||||
[20]: https://training.linuxfoundation.org/
|
Loading…
Reference in New Issue
Block a user