Sebagai administrator sistem Debian, Anda akan sering menangani paket .deb
, mereka berisi unit fungsional yang konsisten (aplikasi, dokumentasi, dll.), yang instalasi dan perawatannya difasilitasi mereka. Oleh karena itu, ide bagus untuk mengentahui apa dan bagaimana menggunakannya.
Bab ini menjelaskan struktur dan isi paket "biner"dan "sumber". Berkas pertama dapat digunakan secara langsung oleh dpkg
, sedangkan yang kedua berisi kode sumber, maupun petunjuk untuk membuat paket biner.
5.1. Struktur Paket Biner
Format paket Debian didesain agar kontennya dapat diekstrak pada berbagai sistem Unix yang memiliki perintah klasik ar
, tar
, dan xz
atau terkadang gzip
or bzip2
. Properti yang nampak sepele ini penting untuk kesesuaian dan pemulihan bencana.
Imagine, for example, that you mistakenly deleted the
dpkg
program, and that you could thus no longer install Debian packages.
dpkg
being a Debian package itself, it would seem your system would be done for... Fortunately, you know the format of a package and can therefore
download the
.deb
file of the
dpkg package and install it manually (see sidebar
ALAT dpkg
, APT
dan ar
). If by some misfortune one or more of the programs
ar
,
tar
or
gzip
/
xz
/
bzip2
have disappeared, you will only need to copy the missing program from another system (since each of these operates in a completely autonomous manner, without dependencies, a simple copy will suffice). If your system suffered some even more outrageous misfortune, and even these don't work (maybe the deepest system libraries are missing?), you should try the static version of
busybox
(provided in the
busybox-static package), which is even more self-contained, and provides subcommands such as
busybox ar
,
busybox tar
and
busybox xz
.
Lihatlah isi berkas .deb
:
$
ar t dpkg_1.21.22_amd64.deb
debian-binary
control.tar.gz
data.tar.xz
$
ar x dpkg_1.21.22_amd64.deb
$
ls
control.tar.gz data.tar.xz debian-binary dpkg_1.21.22_amd64.deb
$
tar tJf data.tar.xz | head -n 16
./
./etc/
./etc/alternatives/
./etc/alternatives/README
./etc/cron.daily/
./etc/cron.daily/dpkg
./etc/dpkg/
./etc/dpkg/dpkg.cfg
./etc/dpkg/dpkg.cfg.d/
./etc/logrotate.d/
./etc/logrotate.d/alternatives
./etc/logrotate.d/dpkg
./lib/
./lib/systemd/
./lib/systemd/system/
./lib/systemd/system/dpkg-db-backup.service
$
tar tJf control.tar.xz
./
./conffiles
./control
./md5sums
./postinst
./postrm
./prerm
$
cat debian-binary
2.0
Seperti yang dapat Anda lihat, arsip ar
pada paket Debian mengompres tiga berkas:
debian-binary
This is a text file which simply indicates the version of the .deb
file package format version. In Debian Bookworm it is still version 2.0.
control.tar.xz
Arsip ini berisi seluruh informasi-meta yang tersedia, seperti nama dan versi paket, maupun beberapa skrip yang akan dijalankan sebelum, selama, atau setelah instalasi/membongkar. Beberapa informasi-meta ini memungkinkan alat manajemen paket untuk menentukan apakah mungkin untuk menginstall atau menguninstallnya, contohnya berdasarkan daftar paket yang telah ada di mesin, dan apakah berkas yang dipasang telah dimodifikasi secara lokal.
data.tar.xz
, data.tar.bz2
, data.tar.gz
Arsip ini berisi semua berkas yang akan diekstrak dari paket; dimana berkas executable, dokumentasi, dll., tersimpan. Paket mungkin menggunakan format kompresi yang lain, yang dalam hal tersebut berkas akan diberi nama yang berbeda xz
, bzip2
, atau gzip
.