创建一个打包的目录,类似rpmbuild,这里创建了目录deb_build
mkdir deb_build
我有一个hello的二进制文件hello和源码hello.c, 准备安装到/opt/helloworld目录中
mkdir helloworld
$ tree helloworld/
helloworld/
├── DEBIAN
│ └── control
└── opt
└── helloworld
├── hello
└── hello.c
3 directories, 3 files
control文件类似rpm的spec文件,包含deb的包信息
只要把想安装的文件写到对应目录就可以安装到对应的系统目录
这里描述一个最简易的control文件
Package: helloworld Description: my deb test Maintainer: username <user@mail.com> Version: 0.1 Architecture: all
dpkg -b helloworld
即可在当前目录生成deb包$ dpkg -b helloworld
dpkg-deb: building package 'hello' in 'helloworld.deb'.
也可以指定
dpkg -b hellorld hellorld-0.1-all.deb
$ dpkg -b helloworld helloworld-0.1-all.deb dpkg-deb: building package 'helloworld' in 'helloworld-0.1-all.deb'.
查看包的字段信息:
$ dpkg -f helloworld-0.1-all.deb
Package: helloworld
Description: my deb test
Maintainer: WangLin <email@163.com>
Version: 0.1
Architecture: all
查看deb包的详细信息:
$ dpkg -I helloworld-0.1-all.deb
new Debian package, version 2.0.
size 2804 bytes: control archive=296 bytes.
112 bytes, 5 lines control
Package: helloworld
Description: my deb test
Maintainer: WangLin <email@163.com>
Version: 0.1
Architecture: all
查看deb包中的文件列表:
$ dpkg -c helloworld-0.1-all.deb
drwxrwxr-x wanglin/wanglin 0 2023-01-11 07:51 ./
drwxrwxr-x wanglin/wanglin 0 2023-01-11 07:54 ./opt/
drwxrwxr-x wanglin/wanglin 0 2023-01-11 07:54 ./opt/helloworld/
-rwxrwxr-x wanglin/wanglin 8304 2023-01-11 07:53 ./opt/helloworld/hello
-rw-rw-r-- wanglin/wanglin 100 2023-01-11 07:53 ./opt/helloworld/hello.c
$ sudo dpkg -i helloworld-0.1-all.deb
Selecting previously unselected package helloworld.
(Reading database ... 208913 files and directories currently installed.)
Preparing to unpack helloworld-0.1-all.deb ...
Unpacking helloworld (0.1) ...
Setting up helloworld (0.1) ...
此时/opt/helloworld/hello和hello.c 就安装在/opt/helloworld目录下了
$ dpkg -l helloworld
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-=======================-================-================-===================================================
ii helloworld 0.1 all my deb test
$ ls /opt/helloworld/
hello hello.c
$ sudo /opt/helloworld/hello
hello world
$ dpkg -s helloworld
Package: helloworld
Status: install ok installed
Maintainer: WangLin <email@163.com>
Architecture: all
Version: 0.1
Description: my deb test
$ cat /var/lib/dpkg/status|grep helloworld -A 5
Package: helloworld
Status: install ok installed
Maintainer: WangLin <email@163.com>
Architecture: all
Version: 0.1
Description: my deb test
$ dpkg -L helloworld
/.
/opt
/opt/helloworld
/opt/helloworld/hello
/opt/helloworld/hello.c