今天看到了 php-8.2.9.tar.xz 文檔。 先了解一下 xz, 用 man xz 命令看一下。
xz is a general-purpose data compression tool with command line syntax
similar to gzip(1) and bzip2(1)
一種壓縮格式,和 gzip bizp2 類似。
# 壓縮
xz filename
# 解壓縮
xz -d filename.xz or unxz filename.xz
在 man tar 命令的解釋中 有:
-J, --xz
filter the archive through xz
所以解壓縮命令:
tar -xJf php-8.2.9.tar.xz