FireFox Backspace fixen
De bedoeling is dat het teruggaat naar de vorige pagina, maar na de upgrade reageert het als een "page up"-knop.
Oplossing: Tik in adresbalk "about:config", ga dan naar "browser.backspace_action" en wijzig de waarde naar "0".
First you'll need the WINE Windows emulator to extract the firmware from the XP driver as well as a tool to cut the firmware out of the drivers:
# yum -y install wine bcm43xx-fwcutter
Second you'll need to download the XP Broadcom Wifi drivers from HP's support site. The file should be called sp30381.exe . Then run it through WINE to extract the files:
$ wine sp30381.exe
This will extract the files to ~/.wine/drive_c/SWSetup/SP30381A where you will need to use the fwcuttter you also installed to yank the firmware out of the driver files. You'll need to run this as root as it will install the firmware in the correct system directory.
# cd ~user/.wine/drive_c/SWSetup/SP30381A
# bcm43xx-fwcutter -w /lib/firmware bcmwl5.sys
Then finally create a file /etc/modprobe.d/bcm43xx with the following contents:
alias pci:v000014E4d0x00004301sv*sd*bc*sc*i* bcm43xx
alias pci:v000014E4d0x00004307sv*sd*bc*sc*i* bcm43xx
alias pci:v000014E4d0x00004318sv*sd*bc*sc*i* bcm43xx
alias pci:v000014E4d0x00004320sv*sd*bc*sc*i* bcm43xx
alias pci:v000014E4d0x00004324sv*sd*bc*sc*i* bcm43xx
alias pci:v000014E4d0x00004325sv*sd*bc*sc*i* bcm43xx
Then you should be able to load the module and it should appear as eth1 and you can set up that interface as any other wireless interface. (modprobe bcm43xx)