วันจันทร์ที่ 27 มิถุนายน พ.ศ. 2559

การสร้างไฟล์ tar.gz ใน ubuntu

รูปแบบในการสร้างไฟล์ tar

tar czf new-tar-file-name.tar.gz file-or-folder-to-archive


 Here is the command explanation:
  • tar - the tar command.
  • c - create new archive.
  • z - compress the archive using gzip. (การบีบอัด ข้อมูลที่เก็บ โดยใช้ gzip)
  • f - use archive file. (ใช้เก็บไฟล์)
  • new-tar-file-name.tar.gz - the name of the tar.gz to create. (ชื่อไฟล์ทาที่เราจะตั้ง)
  • file-or-folder-to-archive - the name of the folder we want to archive.
    (ชื่อ folder ที่เราจะเป็น tar file)
ตัวอย่าง:
เรามี folder ที่ต้องการทำเป็น file tar.gz ชื่อว่า test โดยที่ file tar.gz ที่เราจะสร้างชื่อว่า TestTar

คำสั่ง

 tar czf TestTar.tar.gz test

อ้างอิง: https://mylinuxnotebook.blogspot.com/2008/11/create-extract-targz-files.html

ไม่มีความคิดเห็น:

แสดงความคิดเห็น