Seguí las instrucciones en la respuesta de
Compatibilidad con Dell XPS 13 (9350)
para resolver el problema de wifi que no funciona (broadcom BCM4350) en mi Dell XPS 13 (9350) con Ubuntu 15.10 recién instalado.
Después de descomprimir, sigo los comandos detallados en la respuesta. La primera
sudo chown root:root brcmfmac4350-pcie.bin BCM-0a5c-6412.hcd
devoluciones
chown: changing ownership of 'brcmfmac4350-pcie.bin': Operation not permitted
chown: changing ownership of 'BCM-0a5c-6412.hcd': Operation not permitted
La siguiente línea de comando
sudo mv -t /lib/firmware/brcm/ BCM-0a5c-6412.hcd brcmfmac4350-pcie.bin
funciona bien, mientras
sudo dpkg -i linux-headers-4.3.0-wifitest-custom_4.3.0-wifitest-custom-10.00.Custom_amd64.deb linux-image-4.3.0-wifitest-custom_4.3.0-wifitest-custom-10.00.Custom_amd64.deb
devoluciones
Error! Your kernel headers for kernel 4.3.0-wifitest-custom cannot be found. Please install the linux-headers-4.3.0-wifitest-custom package, or use the --kernelsourcedir option to tell DKMS where it's located
Se agradece cualquier ayuda ya que soy un verdadero novato en Linux.
Respuesta1
Este adaptador no es compatible con los núcleos estables de Ubuntu.
Una forma de hacerlo funcionar es instalar un kernel 4.4 desde la rama Ubuntu 16.04.
Conéctese a Internet por cable y ejecútelo en la terminal
mkdir linux-4.4
cd linux-4.4
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-image-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-image-extra-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-8-generic_4.4.0-8.23_amd64.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux/linux-headers-4.4.0-8_4.4.0-8.23_all.deb
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux-firmware_1.156_all.deb
sudo dpkg -i *.deb
Luego reinicie y pruebe el wifi.
Los archivos del kernel son objeto de actualizaciones. Los enlaces deberán actualizarse.Búsqueda de paquetes de Ubuntuse puede utilizar para obtener los enlaces correctos
Actualizar:Para los usuarios de Ubuntu 14.04, el kernel 4.4 puede instalarse mediante
sudo apt-get install linux-generic-lts-xenial
Pero los paquetes dkms no se compilarán con este kenel si no está instalado gcc 4.9+.
Respuesta2
Acabo de instalar el kernel v4.5 dehttp://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/en mi Dell XPS 13 (9350) y el wifi ahora funciona bien. Anteriormente tenía el kernel v4.2 e intenté instalar v4.4 rc6 y rc7 sin éxito (ni siquiera pude iniciar Ubuntu después de la instalación).
Pasos a seguir:
mkdir /tmp
cd /tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-headers-4.5.0-040500-generic_4.5.0-040500.201603140130_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-headers-4.5.0-040500_4.5.0-040500.201603140130_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5-wily/linux-image-4.5.0-040500-generic_4.5.0-040500.201603140130_amd64.deb
sudo dpkg -i *.deb
reboot