From db163c6b784731b9396320a5a7f32713f519658e Mon Sep 17 00:00:00 2001 From: Steve Robillard Date: Sun, 10 Oct 2021 11:31:12 -0400 Subject: [PATCH] checkinstall: add page (#6916) --- pages/linux/checkinstall.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/checkinstall.md diff --git a/pages/linux/checkinstall.md b/pages/linux/checkinstall.md new file mode 100644 index 000000000..50954c239 --- /dev/null +++ b/pages/linux/checkinstall.md @@ -0,0 +1,24 @@ +# checkinstall + +> Track the local installation of a software package, and produce a binary package which can be used with a system's native package manager. +> More information: . + +- Create and install a package with default settings: + +`sudo checkinstall --default` + +- Create a package but don't install it: + +`sudo checkinstall --install={{no}}` + +- Create a package without documentation: + +`sudo checkinstall --nodoc` + +- Create a package and set the name: + +`sudo checkinstall --pkgname {{package}}` + +- Create a package and specify where to save it: + +`sudo checkinstall --pakdir {{path/to/directory}}`