Da mich der Ehrgeiz gepackt hat versuche ich seit einigen Tagen eine KNX Visualisierung auf meiner NAS BOX, auf der Debian Squeeze läuft, zum Laufen zu bringen (irgendwann würde ich gerne auf Rasperry Bi umsteigen).
Schritt 1 - Problem 1: apt-get install build-essential
Code: Alles auswählen
apt-get install bcusdk
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package bcusdk
root@NAS:~# nano /etc/apt/sources.list
root@NAS:~# apt-get install bcusdk
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package bcusdk
root@NAS:~# apt-get install build-essential
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:
build-essential : Depends: gcc (>= 4:4.9.1) but it is not going to be installed
Depends: g++ (>= 4:4.9.1) but it is not going to be installed
Depends: dpkg-dev (>= 1.17.11) but it is not going to be installed
cpp-4.4 : Depends: gcc-4.4-base (= 4.4.5-8) but 4.4.7-6 is to be installed
libc-dev-bin : Depends: libc6 (> 2.19) but 2.11.3-4 is to be installed
libc6-dev : Depends: libc6 (= 2.19-14) but 2.11.3-4 is to be installed
libglib2.0-0 : Depends: libc6 (>= 2.17) but 2.11.3-4 is to be installed
Recommends: xdg-user-dirs but it is not going to be installed
libstdc++6 : Depends: gcc-4.4-base (= 4.4.5-8) but 4.4.7-6 is to be installed
make : Depends: libc6 (>= 2.17) but 2.11.3-4 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Code: Alles auswählen
root@NAS:~# apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
cpp-4.4 gcc-4.4-base libc6 libgmp10 libmpfr4 libstdc++6
Suggested packages:
gcc-4.4-locales glibc-doc
The following NEW packages will be installed:
libgmp10
The following packages will be upgraded:
cpp-4.4 gcc-4.4-base libc6 libmpfr4 libstdc++6
5 upgraded, 1 newly installed, 0 to remove and 215 not upgraded.
5 not fully installed or removed.
Need to get 0 B/7714 kB of archives.
After this operation, 141 kB disk space will be freed.
Do you want to continue [Y/n]? Y
Preconfiguring packages ...
(Reading database ... 17556 files and directories currently installed.)
Preparing to replace libc6 2.11.3-4 (using .../libc6_2.19-14_armel.deb) ...
Checking for services that may need to be restarted...
Checking init scripts...
Warning: found a potentially broken dynamic loader symlink,
disabling ldconfig to avoid a possible system breakage. It
will be reenabled when a new version of libc-bin is unpacked.
WARNING: this version of the GNU libc requires kernel version
2.6.32 or later. Please upgrade your kernel before installing
glibc.
The installation of a 2.6 kernel _could_ ask you to install a new libc
first, this is NOT a bug, and should *NOT* be reported. In that case,
please add lenny sources to your /etc/apt/sources.list and run:
apt-get install -t lenny linux-image-2.6
Then reboot into this new kernel, and proceed with your upgrade
dpkg: error processing /var/cache/apt/archives/libc6_2.19-14_armel.deb (--unpack):
subprocess new pre-installation script returned error exit status 1
configured to not write apport reports
Errors were encountered while processing:
/var/cache/apt/archives/libc6_2.19-14_armel.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Vielleicht kann mir jemand einen Tipp geben
Danke
Polle