Questions tagged [deb]

deb is the extension of the Debian software package format and the most often used name for such binary packages.

Debian packages are standard Unix ar archives that include two tar archives optionally compressed with gzip (zlib), Bzip2, lzma, or xz (lzma2): one archive holds the control information and another contains the program data.

The accepted program for handling these packages is dpkg, most commonly via other programs such as apt/aptitude, the Ubuntu Software Center, Synaptic or Gdebi.

Debian packages can be converted into other packages and vice versa using alien, and created from source code using CheckInstall or Debian Package Maker.

Some core Debian packages are available as udebs (“micro debs”), and are typically used only for bootstrapping a Debian installation. Although these files use the udeb filename extension, they adhere to the same structure specification as ordinary deb files. However, unlike their deb counterparts, udeb packages contain only essential functional files. In particular, documentation files are normally omitted. udeb packages are not installable on a standard Debian system.

Reference from Wikipedia.

57 questions
0
votes
3 answers

puppet 2.6.4 .deb package

Is there any 3rd party repositories that keeps up to date puppet client versions? I am looking for a puppet 2.6.4 .deb package?
Joey BagODonuts
  • 1,635
  • 2
  • 16
  • 16
0
votes
0 answers

Automatize using bash downloading deb files and dependencies and later extracting them to a unique folder and compress it to use in a live filesystem

I am developing a Live filesystem and need to be able to download deb files with its dependencies which I manually do using: apt download $(apt-cache depends --recurse --no-recommends --no-suggests \ --no-conflicts --no-breaks --no-replaces…
0
votes
1 answer

Creating .deb for Go fails

Trying to build a custom package fails like this: ~/deploy# dpkg-buildpackage -us -uc dpkg-buildpackage: info: source package deploy dpkg-buildpackage: info: source version 1.0-1 dpkg-buildpackage: info: source distribution…
Arnaud F.
  • 133
  • 7
0
votes
0 answers

ubuntu 22.10 conflict libpcre2-dev wth ppa deb sury installing php8.1-dev

I need phpize binary for install memcache with pecl, when I try to install the php8.1-dev in a Digital Ocean server, I get this: $ apt-get install php8.1-dev Reading package lists... Done Building dependency tree... Done Reading state…
shakaran
  • 356
  • 1
  • 7
  • 19
0
votes
0 answers

How to set dependency of an external deb file in the deb file?

I need to create a deb file with just set two other deb files as dependency so that both of them will install before this deb file. If it is a package available in apt repo, I can directly mention as -d like I kept for nano and git below. But it is…
user2331760
  • 155
  • 4
  • 12
0
votes
0 answers

Python setup tools getting dependency error with deb package, how to fix that?

Below is the install_requires part of setup.py of setuptools. Created rpm using this command. When I ran the deb file on another ubuntu 20 machine, got below error. But don't know why it is appending python3-*** to package names. Direct pip3…
user2331760
  • 155
  • 4
  • 12
0
votes
1 answer

How to create a deb package to install files?

Below is the working control file while creating debian package using the link. I kept a single dependency and it is creating the deb file. Package: my-program Version: 1.0 Architecture: all Essential: no Priority: optional Depends:…
uday
  • 352
  • 10
  • 30
0
votes
0 answers

How to create debian file to install tomcat and deploy a war file?

I need to install tomcat Version 9.0.35 and deploy some war files and install some related files. Can you suggest how to do this. So, direct dumping of files is not an option.I got one sh file for that.Main page link The required prerequisite is…
uday
  • 352
  • 10
  • 30
0
votes
1 answer

Ubuntu: install only a signed verified deb package

What the final goal is: Install a given package securely for a series of servers. We have servers running on different cloud data centers. We install our app on them as deb file. Currently we upload the updates as deb files via an ansible…
transient_loop
  • 499
  • 1
  • 4
  • 15
-1
votes
1 answer

Create deb package from source without ./configure file

How can I create a deb package for Ubuntu 14.04 from source when there is no ./configure file? I have tried to use checkinstall but keep getting an error like make: *** No rule to make target `install'. Stop. The source code I want to make a…
markhorrocks
  • 513
  • 3
  • 10
  • 26
-1
votes
1 answer

Install screen on ubuntu 13.04 through .deb from web

I have a server on Rackspace w/ Ubuntu 13.04 (raring) that no longer has access to install packages through apt-get. Err http://mirror.rackspace.com/ubuntu/ raring/main screen amd64 4.0.3-14ubuntu9 404 Not Found Failed to fetch…
quickshiftin
  • 2,125
  • 5
  • 27
  • 41
-1
votes
1 answer

Install .deb package only if version is higher

Is it possible to tell dpkg to only install a .deb if the new package version is higher than what's already installed on the system? Example: I have htop version 3.0.5 installed and I attempt to install 3.0.4 with dpkg -i htop-3.0.4-ubuntu.deb. The…
Lev
  • 158
  • 5
1 2 3
4