o pacote linux-firmware não instala… veja abaixo.por favor ajude

0
sudo apt-get -f install linux-firmware
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  amd64-microcode intel-microcode iucode-tool
Use 'apt-get autoremove' to remove them.
The following NEW packages will be installed:
  linux-firmware
0 upgraded, 1 newly installed, 0 to remove and 1800 not upgraded.
36 not fully installed or removed.
Need to get 0 B/27.6 MB of archives.
After this operation, 50.7 MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  linux-firmware
Install these packages without verification [y/N]? y
(Reading database ... 355777 files and directories currently installed.)
Unpacking linux-firmware (from .../linux-firmware_1.79.18_all.deb) ...
dpkg: error processing /var/cache/apt/archives/linux-firmware_1.79.18_all.deb (--unpack):
 trying to overwrite '/lib/firmware/usbduxfast_firmware.bin', which is also in package firmware-linux-free 3.3
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/linux-firmware_1.79.18_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
apt-get autoremove 
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:
 linux-image-generic : Depends: linux-firmware but it is not installed
E: Unmet dependencies. Try using -f.
    
por mike kieru 29.02.2016 / 11:41

2 respostas

0

Você instalou um pacote linux-firmware-free personalizado que está em conflito com linux-firmware .

Você pode corrigir isso

sudo apt-get remove linux-firmware-free
sudo apt-get install linux-firmware
    
por Pilot6 29.02.2016 / 11:53
0

tente usar aptitude install linux-firmware - ele oferecerá algumas opções para resolver esse problema de dependência.

NOTA: apt-get -f install deve ser usado sem nenhum pacote, como um comando separado. Você pode tentar apt-get -f install; apt-get -f install linux-firmware , mas não apt-get -f install linux-firmware . Claro, use sudo de acordo.

    
por tymik 29.02.2016 / 12:11