PDA

View Full Version : [ubuntu] New Install



boycey9
March 4th, 2011, 07:19 PM
Hi All,

I am trying to install 10.10 on my laptop, downloaded the CD a few times and run the install a few times but still get an error saying operating system cant be found. I have read many threads but all seem to refer to dual boot mine is a straight install on hard drive.
Laptop is ACER Aspire 1500
I have ensured that the Bios is set to boot from HDD, network boot is disabled, I have also tried reinstalling Grub following another thread Please help.

On Another Thread I read running the boot info script so I have done this and posted below.


Boot Info Script 0.55 dated February 15th, 2010

============================= Boot Info Summary: ==============================

=> Grub 2 is installed in the MBR of /dev/sda and looks on the same drive in
partition #1 for (,msdos1)/boot/grub.

sda1: __________________________________________________ _______________________

File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.10
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img

sda2: __________________________________________________ _______________________

File system: Extended Partition
Boot sector type: Unknown
Boot sector info:

sda5: __________________________________________________ _______________________

File system: swap
Boot sector type: -
Boot sector info:

=========================== Drive/Partition Info: =============================

Drive: sda ___________________ __________________________________________________ ___

Disk /dev/sda: 40.0 GB, 40007761920 bytes
255 heads, 63 sectors/track, 4864 cylinders, total 78140160 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition Boot Start End Size Id System

/dev/sda1 * 2,048 76,603,391 76,601,344 83 Linux
/dev/sda2 76,605,438 78,139,391 1,533,954 5 Extended
/dev/sda5 76,605,440 78,139,391 1,533,952 82 Linux swap / Solaris


blkid -c /dev/null: __________________________________________________ __________

Device UUID TYPE LABEL

/dev/loop0 squashfs
/dev/ramzswap0 swap
/dev/sda1 de66de4f-c497-4f35-8f95-1f49bd9ec86a ext4
/dev/sda2: PTTYPE="dos"
/dev/sda5 6b40a37f-0ee1-44fe-8324-22c33c8bc6ba swap
/dev/sda: PTTYPE="dos"

============================ "mount | grep ^/dev output: ===========================

Device Mount_Point Type Options

aufs / aufs (rw)
/dev/sr0 /cdrom iso9660 (ro,noatime)
/dev/loop0 /rofs squashfs (ro,noatime)


=========================== sda1/boot/grub/grub.cfg: ===========================

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi

function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}

function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}

function load_video {
insmod vbe
insmod vga
}

insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
load_video
insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ "${recordfail}" = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, with Linux 2.6.35-22-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=de66de4f-c497-4f35-8f95-1f49bd9ec86a ro quiet splash
initrd /boot/initrd.img-2.6.35-22-generic
}
menuentry 'Ubuntu, with Linux 2.6.35-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
echo 'Loading Linux 2.6.35-22-generic ...'
linux /boot/vmlinuz-2.6.35-22-generic root=UUID=de66de4f-c497-4f35-8f95-1f49bd9ec86a ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.35-22-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set de66de4f-c497-4f35-8f95-1f49bd9ec86a
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
if [ "x${timeout}" != "x-1" ]; then
if keystatus; then
if keystatus --shift; then
set timeout=-1
else
set timeout=0
fi
else
if sleep --interruptible 3 ; then
set timeout=0
fi
fi
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

=============================== sda1/etc/fstab: ===============================

# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda1 during installation
UUID=de66de4f-c497-4f35-8f95-1f49bd9ec86a / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=6b40a37f-0ee1-44fe-8324-22c33c8bc6ba none swap sw 0 0

=================== sda1: Location of files loaded by Grub: ===================


23.7GB: boot/grub/core.img
10.9GB: boot/grub/grub.cfg
.9GB: boot/initrd.img-2.6.35-22-generic
.4GB: boot/vmlinuz-2.6.35-22-generic
.9GB: initrd.img
.4GB: vmlinuz
=========================== Unknown MBRs/Boot Sectors/etc =======================

Unknown BootLoader on sda2

00000000 32 35 2c 39 34 31 2c 35 38 32 2c 31 30 31 36 2c |25,941,582,1016,|
00000010 35 38 37 2c 37 34 30 2c 34 34 34 2c 34 34 35 2c |587,740,444,445,|
00000020 36 38 2c 39 38 34 2c 32 34 37 2c 34 35 32 2c 39 |68,984,247,452,9|
00000030 34 39 2c 39 35 30 2c 39 35 31 2c 34 35 34 2c 31 |49,950,951,454,1|
00000040 31 30 2c 34 35 37 2c 34 35 38 2c 34 35 39 2c 34 |10,457,458,459,4|
00000050 36 30 2c 36 32 36 2c 34 36 34 2c 38 35 37 2c 38 |60,626,464,857,8|
00000060 36 34 2c 32 33 39 2c 31 30 32 30 2c 36 32 39 2c |64,239,1020,629,|
00000070 32 36 38 2c 34 36 36 2c 32 38 32 2c 32 35 38 2c |268,466,282,258,|
00000080 34 37 31 2c 37 37 39 2c 34 37 32 2c 34 37 34 2c |471,779,472,474,|
00000090 36 33 36 2c 36 33 38 2c 31 30 32 39 2c 32 38 35 |636,638,1029,285|
000000a0 2c 34 38 31 2c 34 38 30 2c 32 37 36 2c 36 34 39 |,481,480,276,649|
000000b0 2c 33 31 34 2c 34 38 37 2c 33 32 37 2c 39 36 33 |,314,487,327,963|
000000c0 2c 34 39 32 2c 34 39 33 2c 36 35 34 2c 33 32 31 |,492,493,654,321|
000000d0 2c 39 36 39 2c 34 39 37 2c 39 37 30 2c 32 33 30 |,969,497,970,230|
000000e0 2c 31 30 33 35 2c 38 30 35 2c 35 30 35 2c 35 30 |,1035,805,505,50|
000000f0 36 2c 35 30 38 2c 31 30 34 31 2c 31 30 34 34 2c |6,508,1041,1044,|
00000100 20 3c 2f 6b 65 79 3e 0d 0a 3c 6b 65 79 20 6e 61 | </key>..<key na|
00000110 6d 65 3d 22 74 6f 6f 22 3e 20 36 2c 38 38 2c 31 |me="too"> 6,88,1|
00000120 30 30 33 2c 31 32 36 2c 31 30 30 36 2c 36 30 31 |003,126,1006,601|
00000130 2c 20 3c 2f 6b 65 79 3e 0d 0a 3c 6b 65 79 20 6e |, </key>..<key n|
00000140 61 6d 65 3d 22 74 6f 6f 6c 22 3e 20 39 39 37 2c |ame="tool"> 997,|
00000150 30 2c 39 37 37 2c 34 2c 39 30 36 2c 39 30 37 2c |0,977,4,906,907,|
00000160 38 31 30 2c 33 33 35 2c 33 33 38 2c 33 34 33 2c |810,335,338,343,|
00000170 33 34 35 2c 33 35 30 2c 33 35 33 2c 33 35 34 2c |345,350,353,354,|
00000180 33 35 36 2c 33 36 30 2c 38 31 36 2c 35 38 33 2c |356,360,816,583,|
00000190 33 37 32 2c 31 30 30 33 2c 36 33 31 2c 38 33 34 |372,1003,631,834|
000001a0 2c 38 33 35 2c 33 39 32 2c 39 32 34 2c 39 37 33 |,835,392,924,973|
000001b0 2c 31 33 33 2c 38 33 37 2c 38 33 38 2c 31 00 fe |,133,837,838,1..|
000001c0 ff ff 82 fe ff ff 02 00 00 00 00 68 17 00 00 00 |...........h....|
000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200

boycey9
March 5th, 2011, 12:58 PM
Does no one have any ideas on this, really stuck here as Laptop now US. Seems MBR is corrupt as no operating system will repair