Às vezes, o WiFi pára de funcionar quase sem motivo. Parece que a pequena tecla de antena (perto do Backspace) faz alguma coisa (com ou talvez sem a tecla modificadora Fn). A última vez que recorri a usá-lo foi em um prompt da BIOS, no início da inicialização.
O WiFi para o Inspiron 3135 funciona sob o Debian Jessie. Bem, o meu faz. Eu fiz o upgrade do wheezy para ganhar suporte para o novo hardware; Eu não me lembro de Wi-Fi trabalhando neste laptop sob wheezy.
$ dmesg
4: Linux version 3.14-2-amd64 ([email protected]) (gcc version 4.8.3 (Debian 4.8.3-5) ) #1 SMP Debian 3.14.13-2 (2014-07-24)
29: DMI: Dell Inc. Inspiron 3135/001GW6, BIOS A02 01/03/2014
827: ath: phy0: WB335 1-ANT card detected
828: ath: phy0: Set BT/WLAN RX diversity capability
829: ath: phy0: Enable LNA combining
830: ath: phy0: ASPM enabled: 0x42
831: ath: EEPROM regdomain: 0x60
832: ath: EEPROM indicates we should expect a direct regpair map
833: ath: Country alpha2 being used: 00
834: ath: Regpair used: 0x60
835: usbcore: registered new interface driver btusb
836: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
837: ieee80211 phy0: Atheros AR9565 Rev:1 mem=0xffffc90004880000, irq=32
$ ls / var / lib / dpkg / info / * lista | egreprierwa
/var/lib/dpkg/info/firmware-linux-free.list
/var/lib/dpkg/info/firmware-linux-nonfree.list
/var/lib/dpkg/info/firmware-realtek.list
Um ou mais deles podem ser requeridos; eles estão presentes no meu sistema.
$ ls -la / sys / classe / net / | egrep wlan0
lrwxrwxrwx 1 root root 0 Aug 7 09:38 wlan0 -> ../../devices/pci0000:00/0000:00:02.3/0000:05:00.0/net/wlan0
$ cat / proc / cpuinfo | cabeça -5
processor : 0
vendor_id : AuthenticAMD
cpu family : 22
model : 0
model name : AMD A6-1450 APU with Radeon(TM) HD Graphics
$ lspci -nn | grep 0280
05:00.0 Network controller [0280]: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter [168c:0036] (rev 01)
$ varredura do sudo iwlist wlan0
wlan0 Scan completed :
Cell 01 - Address: 00:45:C3:AB:CD:EF (invented sample data)
(typical iwlist report here)
Então, sim, esse hardware WiFi é suportado no Linux.
A tela sensível ao toque funciona tão bem quanto eu esperava, com poucas falhas, embora eu não saiba como obter um clique com o botão direito do mouse. Eu diria que é muito útil, mas não ocupa o lugar de um mouse USB externo (eu não uso a fábrica, trackpad integrado encontrado abaixo da barra de espaço).
Com / etc / X11 / xdm / Xservers especificando '-dpi 144':
:0 local /usr/bin/X :0 vt7 -dpi 144 -nolisten tcp
.. Eu acho bastante fácil de usar a tela sensível ao toque (sem dúvida, desperdiça valiosa tela real estate para fazer isso dessa maneira).
host: /etc/X11/xorg.conf.d$ cat 92-touchscreen.conf
# touchscreen device
Section "InputClass"
Identifier "ELAN Touchscreen"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
EndSection
$ cat 91-b-custom-mouse.conf
# remaps buttons on external USB trackball
Section "InputClass"
Identifier "Mouse Button Layout"
MatchProduct "Logitech USB Trackball"
MatchIsPointer "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "SendCoreEvents" "true"
Option "Buttons" "9"
Option "ButtonMapping" "1 0 3 0 0 0 0 2 7"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "7"
Option "YAxisMapping" "4 5"
Option "XAxisMapping" "6 7"
EndSection
A parte ButtonMapping parece essencial. O resto é provavelmente imitativo do trabalho dos outros; Não me lembro.
$ cat 91-c-custom-mouse.conf
# disable TouchPad found below the spacebar
Section "InputClass"
Identifier "Internal TrackPad"
MatchProduct "SynPS/2 Synaptics TouchPad"
MatchDevicePath "/dev/input/event*"
Option "Ignore" "true"
EndSection