1

Конечная цель - заставить мой Raspberry Pi работать в качестве сервера печати, обеспечивающего AirPrint для принтера Brother DCP-195C, который у них уже есть.

Я пытаюсь следовать этому ответу о том, как этого добиться.

Так что я уже дошел до того, что установил драйвер принтера, но так как он предоставляется только в скомпилированном виде для 32-битной x86. Поэтому я попытался установить Qemu, чтобы иметь возможность использовать их.

Я застреваю на

$ sudo apt install libc6:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Немного больше информации:

$ sudo aptitude install libc6:i386
The following NEW packages will be installed:
  gcc-6-base:i386{ab} libc6:i386 libgcc1:i386{ab} 
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 2,698 kB of archives. After unpacking 10.2 MB will be used.
The following packages have unmet dependencies:
 gcc-6-base : Breaks: gcc-6-base:i386 (!= 6.3.0-18+rpi1+deb9u1) but 6.3.0-18+deb9u1 is to be installed
 gcc-6-base:i386 : Breaks: gcc-6-base (!= 6.3.0-18+deb9u1) but 6.3.0-18+rpi1+deb9u1 is installed
 libgcc1 : Breaks: libgcc1:i386 (!= 1:6.3.0-18+rpi1+deb9u1) but 1:6.3.0-18+deb9u1 is to be installed
 libgcc1:i386 : Breaks: libgcc1 (!= 1:6.3.0-18+deb9u1) but 1:6.3.0-18+rpi1+deb9u1 is installed
The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     gcc-6-base:i386 [Not Installed]                    
2)     libc6:i386 [Not Installed]                         
3)     libgcc1:i386 [Not Installed]                       



Accept this solution? [Y/n/q/?] n

*** No more solutions available ***

The following actions will resolve these dependencies:

     Keep the following packages at their current version:
1)     gcc-6-base:i386 [Not Installed]                    
2)     libc6:i386 [Not Installed]                         
3)     libgcc1:i386 [Not Installed]                       



Accept this solution? [Y/n/q/?] y
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
How can I either make this work or is there another way to get the printer working?

0