Zde posilam vypis, diky moc! Nedostal jsem se k tomu nejakou dobu...
Ubuntu je tam nainstalovanz dokonce dvakrat, na obou discich, pro jistotu...:-]
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 /boot/grub.
=> No boot loader is installed in the MBR of /dev/sdb
sda1: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.04.1 LTS
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:
sdb1: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.04.1 LTS
Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sdb2: _________________________________________________________________________
File system: Extended Partition
Boot sector type: Unknown
Boot sector info:
sdb5: _________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
=========================== Drive/Partition Info: =============================
Drive: sda ___________________ _____________________________________________________
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders, total 156301488 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 150,300,671 150,298,624 83 Linux
/dev/sda2 150,302,718 156,301,311 5,998,594 5 Extended
/dev/sda5 150,302,720 156,301,311 5,998,592 82 Linux swap / Solaris
Drive: sdb ___________________ _____________________________________________________
Disk /dev/sdb: 160.0 GB, 160000000000 bytes
255 heads, 63 sectors/track, 19452 cylinders, total 312500000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start End Size Id System
/dev/sdb1 2,048 306,497,535 306,495,488 83 Linux
/dev/sdb2 306,499,582 312,498,175 5,998,594 5 Extended
/dev/sdb5 306,499,584 312,498,175 5,998,592 82 Linux swap / Solaris
blkid -c /dev/null: ____________________________________________________________
Device UUID TYPE LABEL
/dev/loop0 squashfs
/dev/sda1 22dcf3bd-140a-4e39-bc11-0455628ff379 ext4
/dev/sda2: PTTYPE="dos"
/dev/sda5 9f81061e-7785-4aef-815e-5a270556d68f swap
/dev/sda: PTTYPE="dos"
/dev/sdb1 8956332e-7a63-4d8d-8355-ed3d32de8f9e ext4
/dev/sdb2: PTTYPE="dos"
/dev/sdb5 31513e93-9e05-4d25-8622-70a9dd5513e2 swap
/dev/sdb: 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 /usr/sbin/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
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
}
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
set locale_dir=($root)/boot/grub/locale
set lang=cs
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.32-24-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=22dcf3bd-140a-4e39-bc11-0455628ff379 ro quiet splash
initrd /boot/initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-24-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
echo 'Loading Linux 2.6.32-24-generic ...'
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=22dcf3bd-140a-4e39-bc11-0455628ff379 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-24-generic
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Ubuntu, with Linux 2.6.32-24-generic (on /dev/sdb1)" {
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 295381ee-6c63-49e3-8b99-e6b3f4d2a885
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=295381ee-6c63-49e3-8b99-e6b3f4d2a885 ro quiet splash
initrd /boot/initrd.img-2.6.32-24-generic
}
menuentry "Ubuntu, with Linux 2.6.32-24-generic (recovery mode) (on /dev/sdb1)" {
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 295381ee-6c63-49e3-8b99-e6b3f4d2a885
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=295381ee-6c63-49e3-8b99-e6b3f4d2a885 ro single
initrd /boot/initrd.img-2.6.32-24-generic
}
### 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 ###
=============================== 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
/dev/sda1 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=9f81061e-7785-4aef-815e-5a270556d68f none swap sw 0 0
=================== sda1: Location of files loaded by Grub: ===================
21.6GB: boot/grub/core.img
43.0GB: boot/grub/grub.cfg
30.3GB: boot/initrd.img-2.6.32-24-generic
21.6GB: boot/vmlinuz-2.6.32-24-generic
30.3GB: initrd.img
21.6GB: vmlinuz
=========================== sdb1/boot/grub/grub.cfg: ===========================
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
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
}
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
set locale_dir=($root)/boot/grub/locale
set lang=cs
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.32-24-generic' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=8956332e-7a63-4d8d-8355-ed3d32de8f9e ro quiet splash
initrd /boot/initrd.img-2.6.32-24-generic
}
menuentry 'Ubuntu, with Linux 2.6.32-24-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
echo 'Loading Linux 2.6.32-24-generic ...'
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=8956332e-7a63-4d8d-8355-ed3d32de8f9e ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-24-generic
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set 8956332e-7a63-4d8d-8355-ed3d32de8f9e
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Ubuntu, with Linux 2.6.32-24-generic (on /dev/sda1)" {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=22dcf3bd-140a-4e39-bc11-0455628ff379 ro quiet splash
initrd /boot/initrd.img-2.6.32-24-generic
}
menuentry "Ubuntu, with Linux 2.6.32-24-generic (recovery mode) (on /dev/sda1)" {
insmod ext2
set root='(hd0,1)'
search --no-floppy --fs-uuid --set 22dcf3bd-140a-4e39-bc11-0455628ff379
linux /boot/vmlinuz-2.6.32-24-generic root=UUID=22dcf3bd-140a-4e39-bc11-0455628ff379 ro single
initrd /boot/initrd.img-2.6.32-24-generic
}
### 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 ###
=============================== sdb1/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/sdb1 during installation
UUID=8956332e-7a63-4d8d-8355-ed3d32de8f9e / ext4 errors=remount-ro 0 1
# swap was on /dev/sdb5 during installation
UUID=31513e93-9e05-4d25-8622-70a9dd5513e2 none swap sw 0 0
=================== sdb1: Location of files loaded by Grub: ===================
94.6GB: boot/grub/core.img
47.4GB: boot/grub/grub.cfg
4.5GB: boot/initrd.img-2.6.32-24-generic
94.6GB: boot/vmlinuz-2.6.32-24-generic
4.5GB: initrd.img
94.6GB: vmlinuz
=========================== Unknown MBRs/Boot Sectors/etc =======================
Unknown BootLoader on sda2
00000000 0c d1 85 c8 e7 0d ce 4f 6a a8 20 6c 6d 72 32 70 |.......Oj. lmr2p|
00000010 73 d8 9a e8 a1 29 38 ca 2c ef a1 51 24 f5 dc 64 |s....)8.,..Q$..d|
00000020 89 95 19 03 71 c6 ec 76 c5 67 ca 37 48 ac bd 1f |....q..v.g.7H...|
00000030 39 07 93 91 de 89 ca 56 f4 37 c3 3b bb 99 b7 36 |9......V.7.;...6|
00000040 a1 9b 25 17 8e e7 a8 aa 32 45 1e d6 08 41 2e 39 |..%.....2E...A.9|
00000050 f7 ad f2 f7 16 e4 e5 a2 67 a5 83 9b da e6 3f 90 |........g.....?.|
00000060 c8 c1 72 49 39 fa d4 42 df 96 27 39 75 2b 93 dc |..rI9..B..'9u+..|
00000070 55 51 8d 49 57 95 a5 b1 e9 51 a9 cc ac 40 b6 db |UQ.IW....Q...@..|
00000080 5f 00 8d b8 e4 9e 49 6a 59 23 00 60 ed f7 e3 35 |_.....IjY#.`...5|
00000090 ae 2a 9b 72 ba 7d 2c 6d 1a 8e 56 d4 ce b9 80 00 |.*.r.},m..V.....|
000000a0 1a 22 0e 3e 6f 5e 6b 1e 45 12 82 8c 49 2d 93 f8 |.".>o^k.E...I-..|
000000b0 d4 62 e0 d4 22 d3 d5 1d b8 07 74 cc b9 d5 d1 b6 |.b..".....t.....|
000000c0 ba a9 aa c9 83 cb 37 4c f5 ed 5a 60 be 06 e7 2f |......7L..Z`.../|
000000d0 88 f4 f0 ad 38 dd 31 ea 54 86 8f 1e ff 00 5a aa |....8.1.T.....Z.|
000000e0 58 31 d8 cb 9c f7 35 b4 a3 28 ca 0d 1a c2 f7 29 |X1....5..(.....)|
000000f0 c9 0a b9 3b b3 f2 f4 26 a8 f9 2b 20 05 b0 76 f7 |...;...&..+ ..v.|
00000100 39 ab 9b 4e da 6e 75 50 9e 84 65 3a 15 2b 91 9e |9..N.nuP..e:.+..|
00000110 7a f1 59 cf 13 19 21 cf f0 6f e7 a7 06 9c 1f 75 |z.Y...!..o.....u|
00000120 b9 d1 42 56 63 64 0e a8 b8 4c b0 1d fa 8a 86 44 |..BVcd...L.....D|
00000130 0f f7 f6 73 8e 3d 6b 0a b2 70 49 dc d5 3d 6f 62 |...s.=k..pI..=ob|
00000140 8d c5 a7 98 14 72 4f 50 32 73 f8 d0 d0 2f ee e2 |.....rOP2s.../..|
00000150 c2 fe ec 60 0e 72 73 c9 c9 ad 69 54 e5 83 92 5b |...`.rs...iT...[|
00000160 e8 6c a6 ec 90 d6 8d 3c a6 85 06 4a 9d d8 27 3f |.l.....<...J..'?|
00000170 5a ac e9 2f 95 bc c4 15 a6 03 6e e1 d4 52 a6 e3 |Z../......n..R..|
00000180 15 27 d5 b2 a3 2b 6f d4 43 1b 08 c4 6f 19 24 75 |.'...+o.C...o.$u|
00000190 c7 15 51 82 c7 c3 15 e7 24 13 c9 1e b4 4e ab 82 |..Q.....$....N..|
000001a0 bb 96 a6 b4 9d db 29 35 b6 c4 67 23 76 dc 92 dd |......)5..g#v...|
000001b0 b6 d6 74 91 a3 61 42 fd ee 41 ee 2a 70 b5 00 fe |..t..aB..A.*p...|
000001c0 ff ff 82 fe ff ff 02 00 00 00 00 88 5b 00 00 00 |............[...|
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
Unknown BootLoader on sdb2
00000000 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 |................|
*
000001b0 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 f1 00 fe |................|
000001c0 ff ff 82 fe ff ff 02 00 00 00 00 88 5b 00 00 00 |............[...|
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