Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Hệ điều hành
Module Linux essentials - Module 7: Archiving and compression
Đang chuẩn bị liên kết để tải về tài liệu:
Module Linux essentials - Module 7: Archiving and compression
Xuân Kiên
115
10
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Module Linux essentials - Module 6 guide archive files on the command line. This module include content: Archiving vs. compression, uses of archiving and compression, lossless vs lossy compression, gzip vs bzip2, using gzip/gunzip/bzip2/bunzip2,. | Module 7 Archiving and Compression Exam Objective 3.1 Archiving Files on the Command Line Objective Summary Using archiving and compression with files and directories Archiving and Compression Archiving vs. Compression Archiving collapses multiple files into one A few files or multiple directories Compression makes a file smaller Remove redundant information, replace with a smaller code Can be applied to individual files, groups of files or entire directory trees Uses of Archiving and Compression Managing log files Sharing groups of files Project documents Source code Compressing for more efficient transfer Less data to send over the Internet or to tape Keep like files together grouped by time Backups Lossless vs Lossy Compression Lossless: Decompressed file is the same as the original Doesn’t compress as well as lossy For data you want to preserve Logs, documents, binaries, configuration Lossy: Decompressed file might have lost information from the original Drops “unimportant” information from the file to make it compress better Images, sound, movies gzip vs bzip2 gzip and gunzip Uses Lempel-Ziv coding Lossless compression, good efficiency Bzip2 and bunzip2 Burrows-Wheeler block sorting Lossless compression, slightly more efficient than gzip, but requires more CPU Used almost identically as gzip Using gzip/gunzip/bzip2/bunzip2 gzip foo # removes foo; creates foo.gz gunzip foo.gz # removes foo.gz; creates foo gunzip –l foo.gz # shows statistics bzip2 foo # removes foo; creates foo.bz2 bunzip2 foo.bz2 bunzip2 –l foo.bz2 # DOESN’T EXIST! Tape Archive - TAR tar –cf foo.tar * # create tar –tf foo.tar # show info tar –xf foo.tar # extract tar –czf foo.tgz * # gzip tar –xjf foo.tbz # bunzip2 tar –xf foo.tar home/joe # only extract home/joe ZIP zip output.zip file1 file2 file3 zip foo.zip file.doc # One file zip –r foo.zip Documents # recurse unzip –l foo.zip # show contents unzip foo.zip # extract all unzip foo.zip file1 # just file 1 unzip foo.zip Documents/projectA/* # everything under Documents/projectA | Module 7 Archiving and Compression Exam Objective 3.1 Archiving Files on the Command Line Objective Summary Using archiving and compression with files and directories Archiving and Compression Archiving vs. Compression Archiving collapses multiple files into one A few files or multiple directories Compression makes a file smaller Remove redundant information, replace with a smaller code Can be applied to individual files, groups of files or entire directory trees Uses of Archiving and Compression Managing log files Sharing groups of files Project documents Source code Compressing for more efficient transfer Less data to send over the Internet or to tape Keep like files together grouped by time Backups Lossless vs Lossy Compression Lossless: Decompressed file is the same as the original Doesn’t compress as well as lossy For data you want to preserve Logs, documents, binaries, configuration Lossy: Decompressed file might have lost information from the original Drops “unimportant” .
TÀI LIỆU LIÊN QUAN
Module Linux essentials - Module 0: Linux essentials chapters
Module Linux essentials - Module 1: Introduction to Linux
Module Linux essentials - Module 3: Using Linux
Module Linux essentials - Module 4: Command line skills
Module Linux essentials - Module 2: Open source applications and licenses
Module Linux essentials - Module 5: Getting help
Module Linux essentials - Module 6: Working with files and directories
Module Linux essentials - Module 7: Archiving and compression
Module Linux essentials - Module 8: Pipes, redirection and REGEX
Module Linux essentials - Module 9: Basic scripting
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.