User:Mbooth

From FedoraProject

Jump to: navigation, search

Contents

Mat Booth

Mat is a software engineer who works on SCADA systems by day and Fedora by night.

Email: fedora(at)matbooth.co.uk

Website: www.matbooth.co.uk

Activities Within Fedora

Package Maintenance

A comprehensive list of the packages I maintain in Fedora can be seen in the Package Database. What follows is a brief test plan for some of the packages I maintain.

Random Notes

Reinstate Tap-to-Click Touchpad Behaviour

 Section "InputDevice"
       Identifier  "TouchPad"
       Driver      "synaptics"
       Option      "Protocol" "auto-dev"
       Option      "TapButton1" "1"
       Option      "RTCornerButton" "2"
       Option      "RBCornerButton" "3"
       Option      "SHMConfig" "on"
 EndSection

Asus Laptop Sound Fix

Specifically for F10 on Asus Model F3Sr laptops, but this is probably valid for other configurations too.

In modprobe.conf:

 options snd-hda-intel model=lenovo

Sun Java on Linux Bug

For this locking assertion failure:

 java: xcb_xlib.c:82: xcb_xlib_unlock: Assertion `c->xlib.lock' failed

Fix for sun-java5-bin:

 sed -i 's/XINERAMA/FAKEEXTN/g' /usr/lib/jvm/java-1.5.0-sun-1.5.0.14/jre/lib/amd64/xawt/libmawt.so

Fix for sun-java6-bin:

 sed -i 's/XINERAMA/FAKEEXTN/g' /usr/lib/jvm/java-1.6.0-sun-1.6.0.5/jre/lib/amd64/xawt/libmawt.so

Missing Grub Splash Workaround

Grub splash screen image is missing on new installs of F10 and F11. To workaround, add the verbose=0 option to /boot/grub/menu.lst

New Installation Checklist

 tar -xzvf libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz
 sudo mv libflashplayer.so /usr/lib64/mozilla/plugins/
 title Winders Gaming Partition
   rootnoverify (hd1,0)
   map (hd1) (hd0)
   map (hd0) (hd1)
   makeactive
   chainloader +1
 su -c 'echo "ic:/raid        /mnt/raid       nfs defaults    0 0" >> /etc/fstab'
 if [ -n "$BASH_VERSION" -o -n "$KSH_VERSION" -o -n "$ZSH_VERSION" ]; then
 #  [ -x //usr/bin/id ] || return
 #  [ `//usr/bin/id -u` -le 100 ] && return
   # for bash and zsh, only if no alias is already set
   alias vi >/dev/null 2>&1 || alias vi=vim
 fi
 su -c 'echo "blacklist pcspkr" >> /etc/modprobe.d/blacklist.conf'