Can Wubi use the ISO I already have?

396

Solution 1

Yes, if you have both wubi.exe and the ISO image for the same release, you can make Wubi use the ISO so it doesn't have to download the files again. This makes installation considerably faster!

  1. It's advisable to check the MD5SUM on the ISO image, to make sure it's good.

  2. Put the ISO image and wubi.exe in an empty folder.

    Technically there could be other files in here, but it would be confusing, and once you get additional Ubuntu ISO's in there, which sometimes happens for users who are trying different versions, it would be a bad situation.

  3. Run wubi.exe to install Wubi.

Screenshot showing ISO image and wubi.exe in the same folder, with wubi.exe about to be run.

That's it. With the ISO image in the same folder as wubi.exe, the Wubi installer will automatically attempt to use the ISO image (and assuming it's an ISO for the same version of Ubuntu, and the ISO is not damaged, there should be no problems).

Assuming everything goes well, it should be possible to install without even being connected to the Internet when wubi.exe is run. However, if possible, it's recommended to be connected to the Internet while installing Ubuntu (whether you install it inside Windows with Wubi as you plan to do, or alongside/replacing your existing Windows or other OS by by booting a CD/DVD?USB).

Remember, the Windows installer (wubi.exe) and the ISO image should be for the same release of Ubuntu.

Solution 2

Windows 8 currently uses UEFI so it might be problematic with Wubi on Windows 8 so you have to download Rufus (fastest one that I have tested) and the ISO.

Download Rufus: http://rufus.akeo.ie

Since you have already the ISO File plug your USB Device in a fastest port possible to ensure that Rufus will install system files in a faster way.

After plugging in, Follow these steps:

How to make Ubuntu USB:

  1. Download Rufus above
  2. Plug your USB Device before running Rufus
  3. Click on the CD icon on a button so Select the ISO dialog is displayed
  4. Navigate to Ubuntu 14.04 LTS ISO File
  5. Click START
  6. Wait for a few minutes. It should complete it successfully.

Ensure that your BIOS supports USB Booting so you can run Ubuntu from there, If it does not support USB booting (like my computer), then you will have to download and install another boot manager (plop boot manager) so you can boot from USB.

How to boot from USB Drive:

  1. Restart your computer
  2. Put the key where it leads you to the BIOS Boot Menu, It should have the option like (USB HDD: )
  3. Go to the USB HDD or something similar and press enter
  4. It should boot, After booting, Press the Install Ubuntu

How to install Ubuntu:

  1. Follow the installation steps until you have reached with Install Ubuntu alongside Windows 8
  2. Click the Install Ubuntu alongside Windows 8 button
  3. Follow these 3 steps and when you are finished, you should have the slideshow with the progress bar.

How to finalize installation:

  1. After installation is complete, Restart your computer
  2. Unplug your USB Drive after your computer/laptop actually boots into BIOS to avoid restarting the installation depending on the boot order
  3. Select Ubuntu when you are presented with Windows, Ubuntu.
  4. It should boot.
Share:
396

Related videos on Youtube

Uzair Hayat
Author by

Uzair Hayat

Updated on September 18, 2022

Comments

  • Uzair Hayat
    Uzair Hayat over 1 year

    I have a document that uses 4 links on the top navigation. Upon clicking the link a div right below it changes size. What I want to accomplish is to use a cookie to remember the last selected link.

    Here is the code for the links:

    <li><a href="#" class="desktop">Desktop</a></li>
    <li><a href="#" class="tablet">Tablet</a></li>
    <li><a href="#" class="tabletP">Tablet (P)</a></li>
    <li><a href="#" class="mobile">Mobile</a></li>
    

    And after that I have the jQuery Code that controls the DIV.

    $(document).ready(function () {
        $(".desktop").click(function() {
            $(".iframe").animate({"width" : "100%"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "100%"},{queue: false, duration: 1000 });
        });
        $(".tablet").click(function() {
            $(".iframe").animate({"width" : "1040px"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        });
        $(".tabletP").click(function() {
            $(".iframe").animate({"width" : "788px"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        });
        $(".mobile").click(function() {
            $(".iframe").animate({"width" : "350px"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        });
    });
    

    For now I am using the jQuery Cookie Pluging from which I have created the following code to create the cookie. I tweaked the above jQuery code to look like this:

    $(".desktop").click(function() {
        $(".iframe").animate({"width" : "100%"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "100%"},{queue: false, duration: 1000 });
            $.cookie("lastState", "desktop", { expires: 7 });
    });
    $(".tablet").click(function() {
        $(".iframe").animate({"width" : "1040px"},{queue: false, duration: 1000 });
        $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        $.cookie("lastState", "tablet", { expires: 7 });
    });
    $(".tabletP").click(function() {
        $(".iframe").animate({"width" : "788px"},{queue: false, duration: 1000 });
        $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        $.cookie("lastState", "tabletP", { expires: 7 });
    });
    $(".mobile").click(function() {
            $(".iframe").animate({"width" : "350px"},{queue: false, duration: 1000 });
            $(".iframe").animate({"height" : "488px"},{queue: false, duration: 1000 });
        $.cookie("lastState", "mobile", { expires: 7 });
    });
    

    Now I need to know how to read the cookie created and give out the necessary output, which is to auto select the link which would change the size of the above mentioned div.

    I had a look at some other questions. This seemed to very close to what I was looking for. But the code suggested in that question is a little confusing

    Below is the code from that question:

    $(function() {
    
        var $activeLink,
            activeLinkHref = $.cookie('activeLinkHref'),
            activeClass = 'activeLink';
    
        $('.navbar').on('click', 'a', function() {
            $activeLink && $activeLink.removeClass(activeClass);
            $activeLink = $(this).addClass(activeClass);
            $.cookie('activeLinkHref', $activeLink.attr('href'));
        });
    
        // If a cookie is found, activate the related link.
        if (activeLinkHref) 
        $('.navbar a[href="' + activeLinkHref + '"]').click();
    
    });​
    

    I hope my question is clear enough.

    • Joe
      Joe almost 10 years
      var linkClicked = $.cookie('lastState'); if(linkClicked){ $('a.'+ linkClicked +'').click(); }? Did you try to change that code to do what you want?
    • Eofla
      Eofla almost 8 years
      Are you using Windows 8?
    • ssi-anik
      ssi-anik almost 8 years
      Yes, I'm using windows 8. And I've been using Ubuntu 14.04 as a dual boot. @Eofla
  • Admin
    Admin over 11 years
    OP did not specify the Windows version. I understand that Windows 8 is problematic with Wubi. If that is correct, would you want to add some sort of caveat, just in case?
  • Eliah Kagan
    Eliah Kagan over 11 years
    @vasa1 That sounds like a good idea, but I have no idea what information ought to be provided. I can add a simple warning banner: Warning: I don't know anything about Wubi on Windows 8! But I'd like to go a little more specific. Can you recommend a source to help improve my knowledge, and also for me to include a link to? This doesn't seem like it provides concrete enough information for this purpose.
  • Admin
    Admin over 11 years
    Neither do I :( but the noise around seems to suggest that there are problems so just in a sort of CYA action, putting up a diplomatic, noncommittal disclaimer maybe the way to go until things are clear. The other point, and this may just be opinion, is that Wubi is often used by people who are just testing the waters and who do not know the intricacies of GPT v/s MBR (from your link). But I will look out for complications arising because of Win 8. Here's one: ghacks.net/2013/01/10/…
  • Eofla
    Eofla almost 8 years
    The OP has the Windows 8 so it will be problematic with Windows 8