Tagged Questions

3
votes
1answer
274 views

Including license agreement in .deb file

How can i include a license agreement interaction in a .deb file? The question http://stackoverflow.com/questions/668838/linux-support-for-click-thru-licenses only asks if its possible, but not how. ...
2
votes
2answers
61 views

Is there a way to automatically determine dependencies when setting up a dpkg control file?

Most of the fields in a dpkg (Debian) control file are straightforward. The tricky one is determining the list of dependencies (Depends:). I was hoping that dpkg-gencontrol could do this for me by ...
2
votes
2answers
99 views

How can I uninstall the last installed application (recently installed) with dpkg?

I need to use a command and or script that uninstalls the last recently installed application deb . I can't use apt-get in this case but rather dpkg --purge or similar, something like dpkg --remove ...
2
votes
1answer
194 views

How to automate linux kernel module compilation when installing a new kernel?

I am writing a Linux kernel module. It is released with all the source files (although the license is proprietary) to be compiled against the running kernel. When installing my module (distributed as ...
1
vote
3answers
480 views

How can I list the minimal set of Debian packages needed to recreate a set of installed packages?

Is there a way of getting dpkg, apt-get or aptitude to produce a list of the packages which need to be installed on a second machine to duplicate the packages installed on a first? i.e. If I've ...
0
votes
1answer
28 views

Run time installation directory of debian package contents

I have a debian package that I built that contains a tar ball of the files, a control file, and a postinst file. Its built using dpkg-deb and it installs properly using dpkg. The modification I ...
0
votes
0answers
50 views

dpkg fails when started by C++ but not when called from command line

I'm currently developping in C++ a software which updates some packages on a Linux distribution (using dpkg, provided by Busybox). All it does is download some files, check their MD5 checksums and ...
0
votes
2answers
166 views

Language-selector-common in Ubuntu 10.10

When I am trying to install various packages, for example gitk and ruby1.8-dev, I recieve the following output: Setting up language-selector-common (0.6.7) ... dpkg: error processing ...
0
votes
4answers
216 views

Why does my hand created deb package fails at install with “unable to create” on files?

I made a perl script that creates a deb binary package from scratch. I created the data, control, etc. But when I run dpkg -i on my deb package it complains that it is unable to files from data. ...
0
votes
1answer
119 views

Debian package creation error

I'm trying to build a Debian package, but I've got this weird pseudo-directory problem. I run: $ fakeroot debian/rules binary I've built the binary before, but something must have changed on my ...