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.

49 questions
0
votes
1 answer

jessie-backports-sloppy/ejabberd depends on jessie-backports packages how to solve

We have a debian jessie installation and we are trying to install a the package jessie-backports-sloppy/ejabberd with # apt-get -t jessie-backports-sloppy install ejabberd Reading package lists... Done Building dependency tree Reading state…
JAR
  • 179
  • 1
  • 1
  • 9
0
votes
1 answer

Is it possible for a debian package to be installed by multiple names through apt?

I have a package foo-new, which many new users know by its old name foo-old, so they try to execute apt install foo-old which does not work. Is it possible through a control field to make a package being installed through either name from apt, so…
fornwall
  • 103
  • 3
0
votes
2 answers

Installing wkhtmltoimage in Debian 6.0 (squeeze)

How to install wkhtmltoimage in 64 bit amd debian ? I tried wget http://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.9.9-static-amd64.tar.bz2 tar xvjf wkhtmltopdf-0.9.9-static-amd64.tar.bz2 mv wkhtmltopdf-amd64 /usr/bin/wkhtmltopdf This…
Andrus
  • 169
  • 4
  • 11
0
votes
1 answer

dpkg not able to delete a symbolic link

I have the following postint script in the dpkg package: rm -f /SOMEDIRECTORY/current ln -s /SOMEDIRECTORY/releases/RELEASESHA /SOMEDIRECTORY/current ln -s /SOMEDIRECTORY/shared/config/config.json…
milosgajdos
  • 1,808
  • 2
  • 21
  • 29
0
votes
2 answers

Getting file not found error with pdebuild

I am attempting to build a Debian package using pdebuild on my main development server (running Debian wheezy). Here is the command I run: pdebuild --pbuilder cowbuilder --buildresult .. \ --debbuildopts -i -- \ --basepath…
user35042
  • 2,601
  • 10
  • 32
  • 57
0
votes
2 answers

Why does updating puppet ppa not update puppet?

Ubuntu 12.04 LTS Server Puppet 3.1.1 According to the puppet documentation, the best way to install puppet is by setting up a package. http://docs.puppetlabs.com/guides/puppetlabs_package_repositories.html#for-debian-and-ubuntu So for ubuntu…
spuder
  • 1,695
  • 2
  • 25
  • 42
0
votes
1 answer

installing php .deb files

I am using dotdeb.org php 5.4.8 http://archives.dotdeb.org/dists/squeeze/php5/5.4.8/binary-amd64/ I download all the files on to my box and run the following cd /tmp/php-deb-5.4.8 dpkg -i php5-common_5.4.8-1~dotdeb.0_amd64.deb dpkg -i…
slik
  • 155
  • 2
  • 7
0
votes
2 answers

Install multiple instances of a program from .deb file to different locations

Here's the issue: I have Google Desktop for Linux in a .deb file, and I have an account on a server without su privilege. I would like to install Google Desktop on the server just for myself, in my home directory, but the .deb file wants to install…
0
votes
1 answer

Best practice signing debian packages

On my environment the packages are created by running 'debuild -b' and uploaded to the debian repository with dput. The debuild step is telling me that the package has been signed so should be cool. I have my keys generated with gpg, it's asking for…
0
votes
1 answer

simple-cdd : including custom deb files

I can create a custom CD with simple-cdd wich install by default severals packages (I want apache and mysql for example), but I have a problem when I want to add custom deb files (first one is nammed siglcode). I put them in a directory, I add the…
Cédric Girard
  • 397
  • 2
  • 11
  • 25
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

Managing config files with Debhelper

I have packaged an application for Debian using Debhelper. The application's config file is located under /opt/{package}/releases/default/ instead of /etc/{package}/ and cannot be moved easily. Up until recently all that was required to mark this…
ChrisdV
  • 1
  • 1
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
  • 257
  • 2
  • 21
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
  • 257
  • 2
  • 21
0
votes
1 answer

How to add multiple dependencies to debian package?

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
  • 257
  • 2
  • 21