Seite 1 von 1

Manual installation using .deb package

Verfasst: 03 Dez 2018, 05:08
von rmtevesjr
Hi everyone,
If I want to install from .deb file from http://download.opensuse.org/repositori ... n_9.0/all/. What should I install first? I tried it but I think there are dependencies.
Example. If I install python-opsi_4.1.1.47-1_all.deb , I got this error :
dpkg: error processing package python-opsi (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
python-opsi

I tried to install using apt install opsi-server , but I'm getting this error Unable to correct problems, you have held broken packages.

Re: Manual installation using .deb package

Verfasst: 03 Dez 2018, 09:35
von ThomasT
Hey there,

you could try to resolve the dependencies manually using the

Code: Alles auswählen

apt-cache depends PACKAGENAME
Tool. I would not recommend it. If you just want to prevent upgrades you could use

Code: Alles auswählen

apt-mark hold PACKAGENAME
.

Re: Manual installation using .deb package

Verfasst: 20 Dez 2018, 02:10
von rmtevesjr
Thanks a lot. This was resolved by adding this in apt.conf
Acquire::http::Proxy::repo.internal.local DIRECT;

The repo.internal.local is the local repository.

Btw, I didn't use .deb files, I followed the installation guide as it is posted in the website. Thank you.