Dell XPS M1530 and OEL 5.3
Well why make a post about this?
OEL does not seem to be a complete operating system – it feels like Linux 5 years ago with loads of drivers missing and command line fiddling.
One chapter for each part…
Graphics
This does work out of the box but the built in driver is not great and make the fan run at full all the time.
If you installed in Virtualbox then fix the graphics card by getting this driver:
http://www.nvidia.com/object/linux_display_ia32_180.51.html
You have to install it outside X11 so issue this command:
$ init 3
To exit X11 and login to a command prompt.
Then run the Nvidia install script:
$ ./NVDIA*run
When done then:
$ init 5
To get X11 back.
Network
Should work. Ensure that \System\Administration\Network has a entry using Marvell network driver.
Wireless
I configured the network is two steps.
First ensure you got a wlan0 device in \System\Administration\Network in Devices and Hardware tab.
Next ensure you have define wlan security in \System\Preferences\More Preferences\Network Connections in Wireless tab.
After all this wireless still doesn’t work but try these two lines:
$ chkconfig NetworkManager on
$ service NetworkManager start
This starts the wireless service and now it should work.
Bluetooth
Bluetooth does not work immediately – for some reason it does not detect any devices. You normally get this:
$ hcitool scan
Scanning …
Inquiry failed: Connection timed out
First reset Bluetooth to enable discovery:
$ hciconfig hci0 reset
If the Bluetooth does not discover after reboot try to add the reset to /etc/modprobe.con
options hci_usb reset=1
Then scan for any devices:
$ hcitool scan
00:1D:D8:98:6F:23 Microsoft Bluetooth Notebook Mouse 5000
Bingo – things start to work now…
Next configure the security settings by editing /etc/bluetooth/hcid.conf and change to (in bold):
# HCId options options { # Automatically initialize new devices autoinit yes; # Security Manager mode # Pairing mode # Default PIN code for incoming connections device 00:1D:D8:98:6F:23 { |
Then ensure the Bluetooth manager discovers the device by editing /etc/default/bluetooth:
# Defaults for bluez
# start bluetooth on boot? # This setting will switch HID devices (e.g mouse/keyboad) to HCI mode, that is |
Then restart Bluetooth:
$ /etc/init.d/bluetooth restart
Connect to the new device using:
$ hidd –search
Searching …
Connecting to device 00:1D:D8:98:6F:23
And everything should work now!!!
At least my MS BT mouse did except for the scroll wheel.
MS BT Mouse – Microsoft Bluetooth Notebook Mouse 5000
First get the Bluetooth to work as above.
Touchpad
When touching my touchpad it is erratic.
First get hold of your input devices.
Probe the mouse devices using this command:
$ udevinfo -a -p `udevinfo -q path -n /dev/input/mouse1`
And change the mouse# until you get an output like:
looking at device ‘/class/input/input2/mouse1’: KERNEL==”mouse1″ SUBSYSTEM==”input” SYSFS{dev}==”13:33″ looking at parent device ‘/class/input/input2’: |
The ALPS is your touchpad.
Update your /etc/X11/xorg.conf to include mouse1:
…Section “ServerLayout” Identifier “single head configuration” Screen 0 “Screen0” 0 0 InputDevice “Mouse0” “CorePointer” InputDevice “Mouse1” “SendCoreEvents” InputDevice “Keyboard0” “CoreKeyboard” EndSection Section “InputDevice” |
Now we need to fix the erratic behaviour.
Edit /boot/grub/menu.lst and include “i8042.nomux=1” when starting Linux:
# grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You do not have a /boot partition. This means that # all kernel and initrd paths are relative to /, eg. # root (hd0,0) # kernel /boot/vmlinuz-version ro root=/dev/sda1 # initrd /boot/initrd-version.img #boot=/dev/sda default=0 timeout=5 splashimage=(hd0,0)/boot/grub/splash.xpm.gz hiddenmenu title Enterprise Linux (2.6.18-128.el5) root (hd0,0) kernel /boot/vmlinuz-2.6.18-128.el5 ro root=LABEL=/ rhgb quiet i8042.nomux=1 initrd /boot/initrd-2.6.18-128.el5.img |
Reboot and the touchpad should work now.