0
votes
0answers
19 views

DPKG installation error due to LZMA error

I am using Ubuntu 10.04 LTS. I had recently upgraded the LMZA library to 4.43 which is the latest version. Ever since it gives error while installing few softwares and upgrades. It shows the ...
0
votes
0answers
31 views

Unpacking with dpkg incredibly slow

I'm experiencing a huge slow down during any installation with apt or "dpkg --install" whenever the installation comes to the point of unpacking something. For example, currently the system is ...
1
vote
1answer
25 views

can dpkg obtain the source code of a package?

apt-get source {some-package-name} gets the source code of that .deb. Can this be achieved with dpkg instead? Or with software-center?
3
votes
1answer
54 views

What is a tainted binary package?

Using dpkg I created some debian packages containing self-written libraries that install without problems. But when I try to run lintian on one of them, I just get the following error: warning: ...
0
votes
0answers
52 views

How come I cannot install packages?

My ubuntu 12.10 won't allow me to install any online packages. I can go to the software center and install games and stuff no issue. But if I go to a program website it always fails to install every ...
3
votes
2answers
22 views

Splitting a large package into smaller ones/upgrade path for users?

I maintain a couple of large packages that we use internally and starting with the next release I would like to split those into smaller packages. These packages are already installed in a number of ...
2
votes
1answer
43 views

How do I specify a string to display in the Ubuntu software-center when creating a package with dpkg-deb?

When I open *.deb packages downloaded from the internet in the Ubuntu software-center, it displays a "nice" name for the package (including upper- and lowercase, spaces, special characters, ...). ...
2
votes
1answer
212 views

unstripped binary or object creating debian package

I'm new to package creation and I'm trying to create a .deb package and keep getting 'unstripped-binary-or-object' on all my libraries and executables. I have everything setup in the directory tree ...
1
vote
0answers
105 views

dpkg from URL wrapper not functioning… :(

I have modified an already available wrapper to execute the process in a safer manner. The containing script cat-s the body into an executable script under /usr/bin/. #!/bin/bash # dpkg-url # ...
2
votes
1answer
110 views

How can I include a custom command in deb file, to be executed at the end of installation?

Well, I like to mark /usr/bin/program.sh as executable using following command: chmod +x /usr/bin/program.sh I want the above command to be executed at the end of installation of the Debian ...
2
votes
1answer
143 views

How to cd to where I extracted a package, and run dpkg-deb -D?

I am following the step-by-step instructions on how to install ThinkPad Fan Control here but I could not get past this step (seen below): Open a terminal and run this command: Code: ...
2
votes
2answers
182 views

How do I check if I have the exact same deb as installed on a system

When building packages for internal company projects, sometimes we loose track of the package source and only have the binary .deb. Even worse, the package builder may install it onto a production ...
1
vote
1answer
979 views

fakeroot debian/rules binary error

I have a package I'm maintaining. When I issue "fakeroot debian/rules binary" I get this error: dh_install --sourcedir=debian/tmp cp: cannot stat `debian/tmp/usr/share/prg/1.svg': No such file or ...
4
votes
1answer
67 views

How to find and back up only files not part of a package

How can I find a list of every file that is modified or added outside the debian package management system? Cruft is unmaintained and doesn't know about the way today's debian package management ...
2
votes
1answer
256 views

Packages not showing up in created APT repository

I created an APT repository using deb-scanpackages, and it seemed to go well. When I did a apt-get update on another server, the Packages.gz file was retrieved, and all seemed well - until I went to ...
3
votes
1answer
326 views

Filenames in the apt cache directory

Why the packages in the directory /var/cache/apt/archives/ have names like: *x11proto-damage-Dev_1%3a1.2.0-1_all.deb* where the "strange" in this case is "%3". In fact, if I download it ...
6
votes
1answer
668 views

Building a .deb file, install dependencies too

I am part of a small team that develop an intranet web app. We want to a method of easy installation, so we were thinking about how apt-get works, especially with installing dependencies. Our app has ...
3
votes
3answers
314 views

Apt-get with no HTTP/FTP access

Is it possible to install packages using apt-get install without having HTTP access? In other words, can apt-get install packages from a small local repository? I know I can use sudo dpkg -i deb_file ...