<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>KentW Limited &#187; Dell XPS M1530</title>
	<atom:link href="http://ltd.kentw.co.uk/tag/m1530/feed/" rel="self" type="application/rss+xml" />
	<link>http://ltd.kentw.co.uk</link>
	<description>Appsblog 2.1</description>
	<lastBuildDate>Sun, 21 Feb 2010 23:11:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dell XPS M1530 and OEL 5.3</title>
		<link>http://ltd.kentw.co.uk/technical/dell-xps-m1530-and-oel-53/</link>
		<comments>http://ltd.kentw.co.uk/technical/dell-xps-m1530-and-oel-53/#comments</comments>
		<pubDate>Fri, 15 May 2009 20:31:42 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Dell XPS M1530]]></category>
		<category><![CDATA[Oracle Enterprise Linux]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/oracle/technology/dell-xps-m1530-and-oel-53/</guid>
		<description><![CDATA[Well why make a post about this?
OEL does not seem to be a complete operating system &#8211; 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 [...]]]></description>
			<content:encoded><![CDATA[<p>Well why make a post about this?</p>
<p>OEL does not seem to be a complete operating system &#8211; it feels like Linux 5 years ago with loads of drivers missing and command line fiddling.</p>
<p>One chapter for each part…</p>
<h3>Graphics</h3>
<p>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.</p>
<p>If you installed in Virtualbox then fix the graphics card by getting this driver:</p>
<p><a title="http://www.nvidia.com/object/linux_display_ia32_180.51.html" href="http://www.nvidia.com/object/linux_display_ia32_180.51.html">http://www.nvidia.com/object/linux_display_ia32_180.51.html</a></p>
<p>You have to install it outside X11 so issue this command:</p>
<p>$ init 3</p>
<p>To exit X11 and login to a command prompt.</p>
<p>Then run the Nvidia install script:</p>
<p>$ ./NVDIA*run</p>
<p>When done then:</p>
<p>$ init 5</p>
<p>To get X11 back.</p>
<h3>Network</h3>
<p>Should work. Ensure that \System\Administration\Network has a entry using Marvell network driver.</p>
<h3>Wireless</h3>
<p>I configured the network is two steps.</p>
<p>First ensure you got a wlan0 device in \System\Administration\Network in Devices and Hardware tab.</p>
<p>Next ensure you have define wlan security in \System\Preferences\More Preferences\Network Connections in Wireless tab.</p>
<p>After all this wireless still doesn’t work but try these two lines:</p>
<p>$ chkconfig NetworkManager on    <br />$ service NetworkManager start</p>
<p>This starts the wireless service and now it should work.</p>
<h3>Bluetooth</h3>
<p>Bluetooth does not work immediately &#8211; for some reason it does not detect any devices. You normally get this:</p>
<p>$ hcitool scan    <br />Scanning &#8230;     <br />Inquiry failed: Connection timed out</p>
<p>First reset Bluetooth to enable discovery:</p>
<p>$ hciconfig hci0 reset</p>
<p>If the Bluetooth does not discover after reboot try to add the reset to /etc/modprobe.con</p>
<p>options hci_usb reset=1</p>
<p>Then scan for any devices:</p>
<p>$ hcitool scan    <br />00:1D:D8:98:6F:23&#160;&#160;&#160;&#160;&#160;&#160; Microsoft Bluetooth Notebook Mouse 5000</p>
<p>Bingo &#8211; things start to work now…</p>
<p>Next configure the security settings by editing /etc/bluetooth/hcid.conf and change to (in bold):</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="598">
<p># HCId options            <br />options {             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; # Automatically initialize new devices             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; autoinit yes;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; # Security Manager mode            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; none &#8211; Security manager disabled             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; auto &#8211; Use local PIN for incoming connections             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; user &#8211; Always ask user for a PIN             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong>security</strong> <strong>auto</strong>;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; # Pairing mode            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; none&#160; &#8211; Pairing disabled             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; multi &#8211; Allow pairing with already paired devices             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; #&#160;&#160; once&#160; &#8211; Pair once and deny successive attempts             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pairing multi;</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; # Default PIN code for incoming connections            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong>passkey</strong> <strong>&quot;&quot;</strong>;             <br />}</p>
<p><strong>device 00:1D:D8:98:6F:23&#160; {              <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; name &quot;Microsoft Bluetooth Notebook Mouse 5000&quot;;               <br />}</strong></p>
</td>
</tr>
</tbody>
</table>
<p>Then ensure the Bluetooth manager discovers the device by editing /etc/default/bluetooth:</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="598">
<p># Defaults for bluez</p>
<p># start bluetooth on boot?            <br /># compatibility note: If this variable is not found bluetooth will             <br /># start             <br />BLUETOOTH_ENABLED=1</p>
<p># This setting will switch HID devices (e.g mouse/keyboad) to HCI mode, that is            <br /># you will have bluetooth functionality from your dongle instead of only HID.             <br /># Note that not every bluetooth dongle is capable of switching back to HID             <br /># mode, see <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=355497">http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=355497</a>             <br />HID2HCI_ENABLED=1             <br />HID2HCI_UNDO=1             <br />HIDD_ENABLED=1             <br />HIDD_OPTIONS=&quot;&#8211;connect 00:1D:D8:98:6F:23 &#8211;server&quot;</p>
</td>
</tr>
</tbody>
</table>
<p>Then restart Bluetooth:</p>
<p>$ /etc/init.d/bluetooth restart</p>
<p>Connect to the new device using:</p>
<p>$ hidd &#8211;search    <br />Searching &#8230;     <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Connecting to device 00:1D:D8:98:6F:23</p>
<p>And everything should work now!!!</p>
<p>At least my MS BT mouse did except for the scroll wheel.</p>
<h3>MS BT Mouse &#8211; Microsoft Bluetooth Notebook Mouse 5000</h3>
<p>First get the Bluetooth to work as above.</p>
<p>&#160;</p>
<h3>Touchpad</h3>
<p>When touching my touchpad it is erratic.</p>
<p>First get hold of your input devices.</p>
<p>Probe the mouse devices using this command:</p>
<p>$ udevinfo -a -p `udevinfo -q path -n /dev/input/mouse1`</p>
<p>And change the mouse# until you get an output like:</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="600">
<p>looking at device &#8216;/class/input/input2/mouse1&#8242;:            <br />&#160; KERNEL==&quot;mouse1&quot;             <br />&#160; SUBSYSTEM==&quot;input&quot;             <br />&#160; SYSFS{dev}==&quot;13:33&quot;</p>
<p>looking at parent device &#8216;/class/input/input2&#8242;:            <br />&#160; ID==&quot;input2&quot;             <br />&#160; BUS==&quot;input&quot;             <br />&#160; DRIVER==&quot;&quot;             <br />&#160; SYSFS{modalias}==&quot;input:b0011v0002p0008e7321-e0,1,2,3,k110,111,112,145,14A,r0,1,a0,1,18,mlsfw&quot;             <br />&#160; SYSFS{uniq}==&quot;&quot;             <br />&#160; SYSFS{phys}==&quot;isa0060/serio1/input0&quot;             <br />&#160; SYSFS{name}==&quot;AlpsPS/2 ALPS GlidePoint&quot;</p>
</td>
</tr>
</tbody>
</table>
<p>The ALPS is your touchpad.</p>
<p>Update your /etc/X11/xorg.conf to include mouse1:</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="600">…
<p>Section &quot;ServerLayout&quot;            <br />&#160;&#160;&#160; Identifier&#160;&#160;&#160;&#160; &quot;single head configuration&quot;             <br />&#160;&#160;&#160; Screen&#160;&#160;&#160;&#160;&#160; 0&#160; &quot;Screen0&quot; 0 0             <br />&#160;&#160;&#160; InputDevice&#160;&#160;&#160; &quot;Mouse0&quot; &quot;CorePointer&quot;             <br />&#160;&#160;&#160; InputDevice&#160;&#160;&#160; &quot;Mouse1&quot; &quot;SendCoreEvents&quot;             <br />&#160;&#160;&#160; InputDevice&#160;&#160;&#160; &quot;Keyboard0&quot; &quot;CoreKeyboard&quot;             <br />EndSection</p>
<p>Section &quot;InputDevice&quot;            <br />&#160;&#160;&#160; # KWI: Synaptics             <br />&#160;&#160;&#160; Identifier&#160;&#160;&#160;&#160; &quot;Mouse1&quot;             <br />&#160;&#160;&#160; Driver&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;synaptics&quot;             <br />&#160;&#160;&#160; Option&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;Protocol&quot; &quot;auto-dev&quot;             <br />&#160;&#160;&#160; Option&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;Device&quot; &quot;/dev/input/mice&quot;             <br />&#160;&#160;&#160; Option&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;SendCoreEvents&quot; &quot;true&quot;             <br />&#160;&#160;&#160; Option &quot;LeftEdge&quot; &quot;120&quot;             <br />&#160;&#160;&#160; Option &quot;RightEdge&quot; &quot;830&quot;             <br />&#160;&#160;&#160; Option &quot;TopEdge&quot; &quot;120&quot;             <br />&#160;&#160;&#160; Option &quot;BottomEdge&quot; &quot;650&quot;             <br />&#160;&#160;&#160; Option &quot;FingerLow&quot; &quot;14&quot;             <br />&#160;&#160;&#160; Option &quot;FingerHigh&quot; &quot;15&quot;             <br />&#160;&#160;&#160; Option &quot;MaxTapTime&quot; &quot;180&quot;             <br />&#160;&#160;&#160; Option &quot;MaxTapMove&quot; &quot;110&quot;             <br />&#160;&#160;&#160; Option &quot;ClickTime&quot; &quot;0&quot;             <br />&#160;&#160;&#160; Option &quot;EmulateMidButtonTime&quot; &quot;75&quot;             <br />&#160;&#160;&#160; Option &quot;VertScrollDelta&quot; &quot;10&quot;             <br />&#160;&#160;&#160; Option &quot;HorizScrollDelta&quot; &quot;0&quot;             <br />&#160;&#160;&#160; Option &quot;MinSpeed&quot; &quot;0.45&quot;             <br />&#160;&#160;&#160; Option &quot;MaxSpeed&quot; &quot;0.75&quot;             <br />&#160;&#160;&#160; Option &quot;AccelFactor&quot; &quot;0.020&quot;             <br />&#160;&#160;&#160; Option &quot;EdgeMotionMinSpeed&quot; &quot;200&quot;             <br />&#160;&#160;&#160; Option &quot;EdgeMotionMaxSpeed&quot; &quot;200&quot;             <br />&#160;&#160;&#160; Option &quot;UpDownScrolling&quot; &quot;1&quot;             <br />&#160;&#160;&#160; Option &quot;CircularScrolling&quot; &quot;0&quot;             <br />&#160;&#160;&#160; Option &quot;SHMConfig&quot; &quot;true&quot;             <br />EndSection</p>
</td>
</tr>
</tbody>
</table>
<p>Now we need to fix the erratic behaviour.</p>
<p>Edit /boot/grub/menu.lst and include “i8042.nomux=1” when starting Linux:</p>
<table border="1" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="600">
<p># grub.conf generated by anaconda            <br />#             <br /># Note that you do not have to rerun grub after making changes to this file             <br /># NOTICE:&#160; You do not have a /boot partition.&#160; This means that             <br />#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; all kernel and initrd paths are relative to /, eg.             <br />#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; root (hd0,0)             <br />#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; kernel /boot/vmlinuz-version ro root=/dev/sda1             <br />#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; initrd /boot/initrd-version.img             <br />#boot=/dev/sda             <br />default=0             <br />timeout=5             <br />splashimage=(hd0,0)/boot/grub/splash.xpm.gz             <br />hiddenmenu             <br />title Enterprise Linux (2.6.18-128.el5)             <br />&#160;&#160;&#160; root (hd0,0)             <br />&#160;&#160;&#160; kernel /boot/vmlinuz-2.6.18-128.el5 ro root=LABEL=/ rhgb quiet <strong>i8042.nomux=1              <br /></strong>&#160;&#160;&#160; initrd /boot/initrd-2.6.18-128.el5.img</p>
</td>
</tr>
</tbody>
</table>
<p>Reboot and the touchpad should work now.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/dell-xps-m1530-and-oel-53/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R12 &#8211; Hardware and Software</title>
		<link>http://ltd.kentw.co.uk/technical/r12-vis-hardware-and-virtualization/</link>
		<comments>http://ltd.kentw.co.uk/technical/r12-vis-hardware-and-virtualization/#comments</comments>
		<pubDate>Thu, 07 May 2009 10:11:49 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Dell XPS M1530]]></category>
		<category><![CDATA[e-Business Suite]]></category>
		<category><![CDATA[Oracle Enterprise Linux]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[Red Hat Enterprise Linux]]></category>
		<category><![CDATA[Virtualbox]]></category>

		<guid isPermaLink="false">http://ltd.kentw.co.uk/technical/r12-vis-hardware-and-virtualization/</guid>
		<description><![CDATA[This is the hardware and software I use for the R12 Laptop.
I recommend you to start with this article to get R12 up and running.
Laptop
My laptop is a Dell XPS M1530 with the following specs:



CPU
Intel® Core™ 2 Duo Processor T8300 (2.40 GHz, 800 MHz FSB, 3 MB L2 cache)


Memory
3072MB 667MHz Dual Channel DDR2 SDRAM [1x2048+1x1024]


Video [...]]]></description>
			<content:encoded><![CDATA[<p>This is the hardware and software I use for the R12 Laptop.</p>
<p>I recommend you to start with <a href="http://ltd.kentw.co.uk/technical/r12-vis-installation/" target="_blank">this article</a> to get R12 up and running.</p>
<h3>Laptop</h3>
<p>My laptop is a Dell XPS M1530 with the following specs:</p>
<table border="1" cellspacing="0" cellpadding="0" width="533">
<tbody>
<tr>
<td valign="top" width="149">CPU</td>
<td valign="top" width="382">Intel® Core™ 2 Duo Processor T8300 (2.40 GHz, 800 MHz FSB, 3 MB L2 cache)</td>
</tr>
<tr>
<td valign="top" width="149">Memory</td>
<td valign="top" width="382">3072MB 667MHz Dual Channel DDR2 SDRAM [1x2048+1x1024]</td>
</tr>
<tr>
<td valign="top" width="149">Video Card</td>
<td valign="top" width="382">NVIDIA® GeForce™ Go 8600M GT with 256Mb dedicated graphic memory</td>
</tr>
<tr>
<td valign="top" width="149">Hard Drive</td>
<td valign="top" width="382">500Gb (5.400rpm) SATA Hard Drive</td>
</tr>
<tr>
<td valign="top" width="149">OS</td>
<td valign="top" width="382">Microsoft VISTA SP1</td>
</tr>
<tr>
<td valign="top" width="149">LCD</td>
<td valign="top" width="382">15.4&quot; Widescreen WXGA+ (1440&#215;900) TFT Display with TrueLife™</td>
</tr>
</tbody>
</table>
<h3>Virtualbox</h3>
<p>Get it from <a href="http://www.virtualbox.org" target="_blank">http://www.virtualbox.org</a></p>
<p>I have tried to run EBS from Vbox both using a VDI and direct to EXT3 however it just doesn’t perform on a laptop.</p>
<p>I even tried to use my eSATA as well to no avail.</p>
<h3>Ubuntu</h3>
<p>Get it from <a title="http://www.ubuntu.com/" href="http://www.ubuntu.com/" target="_blank">http://www.ubuntu.com/</a></p>
<p>Using Virtualbox you install Ubuntu to a VDI and when booted into this you can install it onto a USB stick attached with a USB Vbox filter.</p>
<p>If you then boot into Ubuntu using a USB stick file transfers is much faster. Very useful indeed when transferring Oracle files from NTFS to the external OEL USB disk.</p>
]]></content:encoded>
			<wfw:commentRss>http://ltd.kentw.co.uk/technical/r12-vis-hardware-and-virtualization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
