Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
kernel-compression [2022/12/19 01:57] – snacsnoc | kernel-compression [2022/12/19 05:10] (current) – snacsnoc | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | Kernel compression methods: | + | The main difference between XZ compression and Gzip compression is in the compression algorithms they use. XZ compression is based on the LZMA2 algorithm, which is designed to achieve very high compression ratios. Gzip compression, |
+ | |||
+ | Another difference is that XZ compression is usually more efficient than Gzip in terms of file size when compressing larger files. This is because the XZ compression algorithm is designed to detect and store repeating patterns more efficiently. Gzip, on the other hand, is better suited for compressing smaller files, as the Deflate algorithm is faster and more efficient in these cases. | ||
+ | |||
+ | |||
+ | Kernel compression methods | ||
GZIP, bzip2, LZMA, XZ, LZO, | GZIP, bzip2, LZMA, XZ, LZO, | ||
+ | ====== Size ====== | ||
ls -s bzImage | ls -s bzImage | ||
Line 8: | Line 14: | ||
4276 bzImage | 4276 bzImage | ||
LZO: | LZO: | ||
+ | 5988 arch/ | ||
LZMA: | LZMA: | ||
+ | 4584 arch/ | ||
+ | |||
+ | ====== Compressing root build directory: ====== | ||
+ | |||
+ | |||
+ | [easto@cupcake][/ | ||
+ | cpio: File ./rootfs.gz grew, 1048576 new bytes not copied | ||
+ | [easto@cupcake][/ | ||
+ | 7812 rootfs.gz | ||
+ | [easto@cupcake][/ | ||
+ | cpio: File ./rootfs.gz grew, 1064960 new bytes not copied | ||
+ | [easto@cupcake][/ | ||
+ | 7852 rootfs.gz | ||
+ | | ||
+ | |||
+ | ====== Speed: ====== | ||
+ | |||
+ | |||
+ | [easto@cupcake][~/ | ||
+ | | ||
+ | real 0m0.661s | ||
+ | user 0m0.607s | ||
+ | sys | ||
+ | [easto@cupcake][/ | ||
+ | | ||
+ | real 0m4.697s | ||
+ | user 0m4.521s | ||
+ | sys |