0

using a Raspberry Pi 3B with Raspbian Jessie I get this error when installing sqlite3 with

sudo apt-get install sqlite3

Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libc6 : Depends: libgcc1 but it is not going to be installed
sqlite3 : Depends: libreadline6 (>= 6.0) but it is not going to be installed
Depends: libsqlite3-0 (= 3.8.7.1-1+deb8u2) but it is not going to be installed
Depends: libtinfo5 but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

sudo apt-get -f install

Gives me this error:

Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
libgcc1
The following NEW packages will be installed:
libgcc1
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
Need to get 0 B/39.5 kB of archives.
After this operation, 160 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
E: Cannot get debconf version. Is debconf installed?
debconf: apt-extracttemplates failed: No such file or directory
dpkg: dependency problems prevent configuration of libc6:armhf:
libc6:armhf depends on libgcc1; however:
Package libgcc1 is not installed.
dpkg: error processing package libc6:armhf (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of multiarch-support:
multiarch-support depends on libc6 (>= 2.13-5); however:
Package libc6:armhf is not configured yet.
dpkg: error processing package multiarch-support (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
libc6:armhf
multiarch-support
E: Sub-process /usr/bin/dpkg returned an error code (1)

Can anyone help me out please?

Edit update:

sudo apt --reinstall install debconf

gives me this error:

The following packages have unmet dependencies:
debconf : PreDepends: perl-base (>= 5.20.1-3~) but it is not going to be installed
Recommends: apt-utils (>= 0.5.1) but it is not going to be installed
Recommends: debconf-i18n but it is not going to be installed
libc6 : Depends: libgcc1 but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

sudo apt-get -f install

Keeps giving the same 'dependency' error as above

asked Mar 15, 2018 at 22:00
4
  • 1
    yes I did, update and upgrade Commented Mar 16, 2018 at 12:22
  • Hmm, it's hard to examine this way what has gone wrong. I do not use oldstable jessie anymore. Your updated question shows that there are newer versions of some libraries expected. This I've seen when I tried to install packets from debian backports. But this is not a cause here. Next I would look at /etc/apt/sources.list where to get packets. On 2018年03月13日 we had a big upgrade on stretch from 2017年11月29日. Maybe this is affected to jessie? Is it an option to switch to stretch? Commented Mar 17, 2018 at 0:32
  • security support for oldstable Jessie ends May 2018 en.wikipedia.org/wiki/Debian_version_history#Release_table Commented Mar 17, 2018 at 3:54
  • 1
    I started over with a 'virgin' stretch and it works now! Thanks! Commented Mar 17, 2018 at 15:24

2 Answers 2

1

The error message is

E: Cannot get debconf version. Is debconf installed?

This is needed to configure installed packets. Check if it is available:

rpi3 ~$ debconf --help

Check if it is installed:

rpi3 ~$ sudo apt update
rpi3 ~$ sudo apt full-upgrade
rpi3 ~$ apt list debconf

If not installed:

rpi3 ~$ sudo apt install debconf

If installed, try to reinstall it:

rpi3 ~$ sudo apt --reinstall install debconf
answered Mar 15, 2018 at 22:39
2
  • debconf is installed but I get new errors. Pretty hard to post them here with the formatting in comments. Any suggestions how I can post these errors? Commented Mar 16, 2018 at 6:45
  • Edit your question e.g. with remark "Update:" Commented Mar 16, 2018 at 9:20
1

Updating to stretch solved the problem!

answered Mar 17, 2018 at 15:26

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.