<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: ubuntu compaq 1801 microcode patch error in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220881#M60274</link>
    <description>Thank you very much, you helped alot. I got it all fixed.</description>
    <pubDate>Thu, 21 Jan 2010 19:38:29 GMT</pubDate>
    <dc:creator>Niebr</dc:creator>
    <dc:date>2010-01-21T19:38:29Z</dc:date>
    <item>
      <title>ubuntu compaq 1801 microcode patch error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220879#M60272</link>
      <description>alright, so I have a compaq evo w4000, running ubuntu 9.10. with a dell processor in it. (yes I know its a mess) so basically, I need a microcode patch that will work with all this. Does anyone have any ideas? I already downloaded SP24303.exe, which was for the compaq evo w4000. yet WINE fails to actually do anything with the file.</description>
      <pubDate>Thu, 21 Jan 2010 16:31:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220879#M60272</guid>
      <dc:creator>Niebr</dc:creator>
      <dc:date>2010-01-21T16:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: ubuntu compaq 1801 microcode patch error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220880#M60273</link>
      <description>Welcome to the ITRC Forums!&lt;BR /&gt;&lt;BR /&gt;Microcode? SP24303.exe is a BIOS update. Microcode is something rather different.&lt;BR /&gt;&lt;BR /&gt;SP24303.exe is a self-extracting archive, which can be extracted with 7-zip on Linux.&lt;BR /&gt;&lt;BR /&gt;$ 7z x sp24303.exe&lt;BR /&gt;&lt;BR /&gt;The result will be two files, copydisk.exe and 686Y2.IMG. Knowing Compaq's standard practice, 686Y2.IMG is a floppy disk image... but it's exactly 32 bytes longer than a standard 1.44 M disk image. &lt;BR /&gt;&lt;BR /&gt;It turns out the first 32 bytes are a header for copydisk.exe. Let's strip it away and see if Linux can access it as a FAT filesystem image:&lt;BR /&gt;&lt;BR /&gt;$ dd if=686Y2.IMG bs=32 skip=1 of=686y2-linux.img&lt;BR /&gt;46080+0 records in&lt;BR /&gt;46080+0 records out&lt;BR /&gt;1474560 bytes (1.5 MB) copied, 0.0763746 s, 19.3 MB/s&lt;BR /&gt;$ file 686y2-linux.img &lt;BR /&gt;686y2-linux.img: DOS floppy 1440k, x86 hard disk boot sector&lt;BR /&gt;&lt;BR /&gt;The result is a plain FAT filesystem image which can be mounted for examination:&lt;BR /&gt;&lt;BR /&gt;$ sudo mount -o loop,ro -t vfat 686y2-linux.img /mnt&lt;BR /&gt;$ ls -l /mnt&lt;BR /&gt;total 519&lt;BR /&gt;-rwxr-xr-x 1 root root    107 2003-04-21 14:09 config.sys&lt;BR /&gt;-rwxr-xr-x 1 root root   3076 2001-01-18 16:35 FLSH.CPU&lt;BR /&gt;-rwxr-xr-x 1 root root  17640 2001-01-18 16:35 HIMEM.EXE&lt;BR /&gt;-r-xr-xr-x 1 root root  37410 2001-01-18 16:35 IO.SYS&lt;BR /&gt;-r-xr-xr-x 1 root root  38154 2001-01-18 16:35 MSDOS.SYS&lt;BR /&gt;-rwxr-xr-x 1 root root  91339 2001-01-18 16:35 ROMPAQ.EXE&lt;BR /&gt;-rwxr-xr-x 1 root root 340556 2003-04-21 14:02 YELLOW20.306&lt;BR /&gt;$ sudo umount /mnt&lt;BR /&gt;&lt;BR /&gt;You might wish to write the image to a disk, and run the BIOS update by booting the system from it. Just insert a disk and run this command:&lt;BR /&gt;&lt;BR /&gt;$ sudo dd if=686y2-linux.img bs=512 of=/dev/fd0&lt;BR /&gt;2880+0 records in&lt;BR /&gt;2880+0 records out&lt;BR /&gt;1474560 bytes (1.5 MB) copied, 0.00208399 s, 708 MB/s&lt;BR /&gt;&lt;BR /&gt;Looks like we did not need that copydisk.exe at all.&lt;BR /&gt;&lt;BR /&gt;Alternatively, you might wish to generate a bootable CD for the update, if you don't happen to have 3.5" floppy disks around. &lt;BR /&gt;&lt;BR /&gt;This will create an ISO image file named "evo-w4000-biosupdate.iso", which can then be burned onto CD using the "Burn CD Image" function of your favorite CD-R burning program:&lt;BR /&gt;&lt;BR /&gt;$ mkdir cdstuff&lt;BR /&gt;$ mv 686y2-linux.img cdstuff/&lt;BR /&gt;$ genisoimage -b 686y2-linux.img -c boot.cat -o evo-w4000-biosupdate.iso cdstuff&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Thu, 21 Jan 2010 18:29:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220880#M60273</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2010-01-21T18:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: ubuntu compaq 1801 microcode patch error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220881#M60274</link>
      <description>Thank you very much, you helped alot. I got it all fixed.</description>
      <pubDate>Thu, 21 Jan 2010 19:38:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220881#M60274</guid>
      <dc:creator>Niebr</dc:creator>
      <dc:date>2010-01-21T19:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: ubuntu compaq 1801 microcode patch error</title>
      <link>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220882#M60275</link>
      <description>Thank you.</description>
      <pubDate>Thu, 21 Jan 2010 19:39:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/ubuntu-compaq-1801-microcode-patch-error/m-p/5220882#M60275</guid>
      <dc:creator>Niebr</dc:creator>
      <dc:date>2010-01-21T19:39:03Z</dc:date>
    </item>
  </channel>
</rss>

