在 Ubuntu 16.04 LTS 中安装佳能 mf8350cdn 打印机

在 Ubuntu 16.04 LTS 中安装佳能 mf8350cdn 打印机

我已经从佳能下载了 mf8350cdn Linux 驱动程序。但是对于连接到路由器/家庭网络的打印机,我该如何实际安装它?(型号不在佳能下拉“选择驱动程序”列表中,尽管该型号确实出现在“选择设备”列表中。)

按照说明进行操作;输出结果如下:

marilyn@marilyn-XPS-8500:~/Downloads/ron/linux-UFRII-drv-v331-usen/64-bit_Driver/Debian$ sudo apt-get -f install libglade2-0 libc6:i386 lib32z1 libxml2:i386 libjpeg62:i386 libstdc++6:i386
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:
 lib32z1 : Depends: libc6-i386 (>= 2.4) but it is not going to be installed
 libc6:i386 : Depends: libgcc1:i386 but it is not going to be installed
 libstdc++6:i386 : Depends: gcc-5-base:i386 (= 5.4.0-6ubuntu1~16.04.4) but it is not going to be installed
                   Depends: libgcc1:i386 (>= 1:4.2) but it is not going to be installed
 libxml2:i386 : Depends: libicu55:i386 (>= 55.1-1~) but it is not going to be installed
                Depends: liblzma5:i386 (>= 5.1.1alpha+20120614) but it is not going to be installed
                Depends: zlib1g:i386 (>= 1:1.2.3.3) but it is not going to be installed
                Recommends: xml-core:i386 but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

任何帮助都将不胜感激。

答案1

可能的解决方案:

首先,您需要满足一些先决条件:

sudo apt-get -y install libglade2-0 libc6:i386 lib32z1 libxml2:i386 libjpeg62:i386 libstdc++6:i386

接下来,从这里(您正在寻找 Linux 版本,它应该下载一个名为的文件Linux_UFRII_PrinterDriver_V320_us_EN.tar.gz

下载完成后,打开终端,然后cd转到下载目录。

提取下载文件的时间:

gunzip -c Linux_UFRII_PrinterDriver_V320_us_EN.tar.gz | tar xvf -

然后cd进入 64bit Debian Driver 文件夹,如下所示

cd Linux_UFRII_PrinterDriver_V320_us_EN/64-bit_Driver/Debian/

最后,安装驱动程序:

sudo dpkg -i *.deb

相关内容