error in upgrade to 12.04 (64 bit) from 11.10 (64 bit) using wubi as installer

2013-01-18 Thread Abhishek Dixit
I happen to get some failure in doing a 11.04 to 12.04 move so I stuck
back to Wubi here is my message on user list
https://lists.ubuntu.com/archives/ubuntu-users/2013-January/266972.html


how ever it appears the ability to install using wubi has been disabled
as mentioned on this message
https://lists.ubuntu.com/archives/ubuntu-devel/2012-March/034970.html

please let me know if there is a situation for people like me on Windows 7.

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: wubi missing module multiboot to boot with Xen

2011-03-12 Thread Abhishek Dixit
On Sat, Mar 12, 2011 at 11:35 PM, Phillip Susi  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 03/12/2011 02:05 AM, Abhishek Dixit wrote:
>> As Phillip suggested
>> set prefix=(loop0)/boot/grub
>>
>> I tried putting above line at many different places which included
>> before I gave command
>> insmod multiboot
>> and I am getting the same file not found error.
>>
>> Any further things that I may look into?
>
> Is multiboot.mod actually in (loop0)/boot/grub?
The folder is in C drive of Windows
C:\ubuntu\
there is no folder named boot here and instead it is C:\ubuntu\disks\boot\grub
and this folder is completely empty.
I think Wubi installation does not uses grub.
I have not done any changes to any default installation.
It was just a normal installation.

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: wubi missing module multiboot to boot with Xen

2011-03-11 Thread Abhishek Dixit
Continuing in same thread where we are trying to debug a grub problem
on a machine where Ubuntu
 was installed using Wubi in C driver of Windows 7 C:\ubuntu
following are the grub entries we need to boot

menuentry "Xen Linux 2.6.32.27" {
 insmod ntfs
 set root='(hd0,2)'
 loopback loop0 /ubuntu/disks/root.disk
 set root=(loop0)
 multiboot /boot/xen.gz
 module/boot/vmlinuz-2.6.32.27 dummy=dummy root=/dev/sda2
loop=/ubuntu/disks/root.disk ro console=tty0
 module/boot/initrd.img-2.6.32.27
}

with above entries I was getting

error:file not found.
when booting and command multiboot ,module are not present.


Now to dig this issue further I reboot the machine and go to grub command prompt

and manually pass on each of the above parameters which you see in the
grub entry
when I reached
grub> insmod multiboot
then I got following message on screen
error:file not found.



On Thu, Mar 10, 2011 at 9:28 PM, Phillip Susi  wrote:
> On 3/10/2011 12:41 AM, Abhishek Dixit wrote:
>> I am not very clear with what you said in following entry where should
>> I add the line as you suggested.
>
> Any time before the insmod that fails.
>




As Phillip suggested
set prefix=(loop0)/boot/grub

I tried putting above line at many different places which included
before I gave command
insmod multiboot
and I am getting the same file not found error.

Any further things that I may look into?

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


Re: wubi missing module multiboot to boot with Xen

2011-03-09 Thread Abhishek Dixit
On Wed, Mar 9, 2011 at 8:40 PM, Phillip Susi  wrote:
> On 3/9/2011 12:29 AM, Abhishek Dixit wrote:
>> ntfs (hd0,2). Therefore any attempt to read any files from (hd0,2)
>> simply wont work, cause there's no file there.It's a somewhat
>
> Then you want to change the prefix to point to where the module can be
> found:
>
> set prefix=(loop0)/boot/grub
>
I am not very clear with what you said in following entry where should
I add the line as you suggested.

menuentry "Xen Linux 2.6.32.27" {
 insmod ntfs
 set root='(hd0,2)'
 loopback loop0 /ubuntu/disks/root.disk
 set root=(loop0)
 multiboot /boot/xen.gz
 module/boot/vmlinuz-2.6.32.27 dummy=dummy root=/dev/sda2
loop=/ubuntu/disks/root.disk ro console=tty0
 module/boot/initrd.img-2.6.32.27
}




Wubi with Xen problem set multiboot module missing,module command not
found error was being discussed above.
-- 
Regards
Abhi

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss


wubi missing module multiboot to boot with Xen

2011-03-08 Thread Abhishek Dixit
Here is a situation 1 week back I had asked in this list about a clean
way to install Ubuntu on a friends laptop and how to uninstall.
I have installed and things worked by now perfectly without any problem.
We are trying to set up a Xen (virtualization)environment in this
laptop as this is the only piece of good hardware with VT support in
built available to us.
After setting up every thing cleanly.
When I needed to boot with following grub entries

menuentry "Xen Linux 2.6.32.27" {
     insmod ntfs
     set root='(hd0,2)'
     loopback loop0 /ubuntu/disks/root.disk
     set root=(loop0)
     multiboot /boot/xen.gz
     module    /boot/vmlinuz-2.6.32.27 dummy=dummy root=/dev/sda2
loop=/ubuntu/disks/root.disk ro console=tty0
     module    /boot/initrd.img-2.6.32.27
}

I got
error:file not found.
when booting and command multiboot ,kernel,module are not present.

Now to dig this issue further I reboot the machine and go to grub command prompt

and manually pass on each of the above parameters which you see in the
grub entry
when I reached
grub> insmod multiboot
then I got following message on screen
error:file not found.

It looks like my  grub setup has just enough modules to use loopback
file on ntfs, but the ACTUAL /boot directory is on the loopback NOT
ntfs (hd0,2). Therefore any attempt to read any files from (hd0,2)
simply wont work, cause there's no file there.It's a somewhat
advanced setup, I am trying to troubleshoot ntfs-loop-xen
combination.This is not Xen-specific, but rather wubi - grub -
multiboot
issue.I want to know how can I install the missing modules of grub in Wubi?
I need to use insmod multiboot and commands kernel,module available in
grub in this Ubuntu setup which was done using Wubi.
How can I get module multiboot in this Wubi based install.Since the
laptop is given to me on trust so I can not format drives
and use a usual partition without Wubi type setup so any clues what
should I do in this situation?

Is Ubuntu only for kids who do not know ls,cd,pwd or it can be made to
work in this grave virtualization situation which I am facing?

-- 
Ubuntu-devel-discuss mailing list
Ubuntu-devel-discuss@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel-discuss