Use EasyBCD to create dual-boot Ubuntu 13.04 and win 8

82

Solution 1

Simple solution to your problem will be using Boot-Repair.Run Ubuntu live cd.Open terminal and type:

sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update

Press Enter and type:

sudo apt-get install -y boot-repair && (boot-repair &)

And press Enter. Now type boot-repair and press Enter once again. Use *Recommended repair. It will do the job.

Solution 2

TYPE According to the Ubuntu documentation, Ubuntu 13.04 by default uses grub 1.99, or Grub 2. So, when it asks for the TYPE, you choose Grub 2.

DRIVE Now, I don't know the details as to which you installed first (Ubuntu or Windows) or where you installed Grub (to the main drive/partition, or the linux one) but we should assume that for Drive, you need to choose Partition 6, or the Linux one.

Share:
82

Related videos on Youtube

stw
Author by

stw

Updated on September 18, 2022

Comments

  • stw
    stw almost 2 years

    The following function bindF has a type error:

    type F<M, AS extends any[]> = (this: M, ...args: AS) => any;
    
    function bindF<M, AS extends any[]>(f: F<M, AS>, m: M) {
        return f.bind(m); // error
    }
    
    Overload 1 of 6, '(this: F<M, AS>, thisArg: ThisParameterType<F<M, AS>>): OmitThisParameter<F<M, AS>>', gave the following error.
        Argument of type 'M' is not assignable to parameter of type 'ThisParameterType<F<M, AS>>'.
      Overload 2 of 6, '(this: (this: M, ...args: any[]) => any, thisArg: M, ...args: any[]): (...args: any[]) => any', gave the following error.
        The 'this' context of type 'F<M, AS>' is not assignable to method's 'this' of type '(this: M, ...args: any[]) => any'.
          Types of parameters 'args' and 'args' are incompatible.
            Type 'any[]' is not assignable to type 'AS'.
              'any[]' is assignable to the constraint of type 'AS', but 'AS' could be instantiated with a different subtype of constraint 'any[]'.
    

    The problem seems to be that there isn't an overload of bind to handle the generic rest parameter AS. Is there a way to get around this?

    Playground

    • Daniel B
      Daniel B over 10 years
      The Windows Boot Loader cannot boot ELF binaries. As such, you need another boot loader. One of the options for that is Grub. I also don't see what's wrong with it...?
  • egigundari
    egigundari about 11 years
    Thanks. I installed Windows 8 first then Ubuntu in Partition 6, it' only show BASH-Like supported ... blablaabla ... grub>, and then nothing. What I have to do to entering ubuntu? I appreciate your help.
  • gronostaj
    gronostaj over 10 years
    So, what exactly will it do? What will be the result?
  • rizvaughan
    rizvaughan over 10 years
    You will get boot option on startup for both Windows 8 and Ubuntu.