<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Install on bramp.net</title>
    <link>https://blog.bramp.net/</link>
    <description>Recent content in Install on bramp.net</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-GB</language>
    <lastBuildDate>Mon, 01 Sep 2008 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://blog.bramp.net/tags/install/" rel="self" type="application/rss+xml" />
    
    <item>
      <title>ASUS X56Se Linux</title>
      <link>https://blog.bramp.net/post/2008/09/01/asus-x56se-linux/</link>
      <pubDate>Mon, 01 Sep 2008 00:00:00 +0000</pubDate>
      
      <guid>https://blog.bramp.net/post/2008/09/01/asus-x56se-linux/</guid>
      <description><p>My girlfriend just purchased a <a href="http://www.ebuyer.com/product/147001">ASUS X56Se from eBuyer</a> and I wanted to install Linux on it.</p>
<p>If you google for this laptop you won’t find many pages about it, in fact I could find no information about the laptop on all of ASUS’s website. However, there is the <a href="http://www.asus.com/products.aspx?l1=5&amp;l2=74&amp;l3=604&amp;l4=0&amp;model=2109&amp;modelmenu=1">ASUS M51Se</a> which looks very similar in the photographs. I’ve even <a href="http://vip.asus.com/forum/view.aspx?board_id=3&amp;model=X53Se&amp;id=20080831051338546&amp;page=1&amp;SLanguage=en-us">asked on the ASUS forums</a> if anyone know more information.</p>
<p>Using Vista (which was pre-installed) I was able to get this list of hardware, which should help me with the installation process:</p>
<pre tabindex="0"><code>Atheros L1 Gigabit Ethernet
Intel Wireless 3945ABG
JMicron JMB36X
ATI Mobility Radeon HD 3470
Intel ICH8
Intel(R) 82801HBM/HEM I/O controller hub (ICH8M) SATA Controller
Intel ICH8M Ultra ATA Storage Controller 2850
Realtek HD Audio
Intel(R) GM965 Express Chipset
Intel 82GM965 Memory Controller
Intel(R) 965GM Graphics And Memory Controller Hub(GMCH)
</code></pre><p>Regardless of knowing if Linux would install or not, I went ahead and tried <a href="http://www.debian.org/devel/debian-installer/">Debian lenny beta 2</a>. However, as it was booting it would crash and fill the screen with “pretty” colours. I then tried a old Debian disc I had lying around, then a new and old Ubuntu disk, and all these failed to load. So then I tried different kernel options, and eventually I found this command worked:</p>
<p><code>acpi=off</code></p>
<p>To make it clear, at the Debian boot menu for the installer, you select “Install”, but then press tab instead of enter. Then select the 2nd line, press e, and then type the command on the very end. After this press enter, then b to boot the installer.</p>
<p>This command disables most power management controls, but at least allows Linux to be installed and boot. Here comes the next problem, X won’t start. When X attempts to start it again dies either with pretty colours, or with just a full black screen. I haven’t finished debugging this, but I’ve tried the Radeon driver, the Radeonhd driver, and the official ATI fglrx.</p>
</description>
    </item>
    
    <item>
      <title>Create Bootable Windows Server 2008 USB Stick</title>
      <link>https://blog.bramp.net/post/2008/06/23/create-bootable-windows-server-2008-usb-stick/</link>
      <pubDate>Mon, 23 Jun 2008 00:00:00 +0000</pubDate>
      
      <guid>https://blog.bramp.net/post/2008/06/23/create-bootable-windows-server-2008-usb-stick/</guid>
      <description><p>I recently had the need to install Windows Server 2008 from a USB stick. This was because I didn’t have a working DVD drive to hand. I found a couple of <a href="http://blogs.dirteam.com/blogs/sanderberkouwer/archive/2008/05/01/installing-windows-server-2008.aspx">tutorials</a> <a href="http://www.jesscoburn.com/archives/2007/10/15/installing-windows-2008-via-usb-thumbdrive/">online</a> explaining how to create the disk. They generally explained this technique:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">C:<span class="se">\&gt;</span> diskpart
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">DISKPART&gt; list disk
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">     Select the USB device from the list and substitute the disk number below
</span></span><span class="line"><span class="cl">     when necessary
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">DISKPART&gt; <span class="k">select</span> disk <span class="m">1</span>
</span></span><span class="line"><span class="cl">DISKPART&gt; clean
</span></span><span class="line"><span class="cl">DISKPART&gt; create partition primary
</span></span><span class="line"><span class="cl">DISKPART&gt; <span class="k">select</span> partition <span class="m">1</span>
</span></span><span class="line"><span class="cl">DISKPART&gt; active
</span></span><span class="line"><span class="cl">DISKPART&gt; format <span class="nv">fs</span><span class="o">=</span>fat32
</span></span><span class="line"><span class="cl">DISKPART&gt; assign
</span></span><span class="line"><span class="cl">DISKPART&gt; <span class="nb">exit</span>
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">xcopy X:<span class="se">\*</span>.* /s/e/f Y:<span class="se">\
</span></span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">     where X:<span class="se">\ </span>is your mounted image or physical DVD and Y:<span class="se">\ </span>is your USB
</span></span><span class="line"><span class="cl">     device
</span></span></code></pre></div><p>However it appears diskpart is unable to see USB sticks under Windows XP. I have later tried on Vista and this limitation appears removed. But for those using Windows XP I have found an alternative method.</p>
<p>Firstly find the bootsect.exe tool on the Windows Server disc (in the boot directory). Then run this command where U is the drive letter of the USB stick.</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="cl">D:<span class="se">\b</span>oot&gt; bootsect.exe /nt60 U:
</span></span></code></pre></div><p>Now copy all the files from the Windows Server disc onto the USB stick. This can be done by dragging in the GUI or using the xcopy method shown previously.</p>
<p>I have yet to repeat this procedure and I might have previous partitioned or formatted my USB stick in a unique way. So if this method doesn’t work <a href="/about-me/">drop me a mail</a> and I’ll see what I can do.</p>
</description>
    </item>
    
  </channel>
</rss>
