Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Boot Info Script 0.61 [1 April 2012]
- ============================= Boot Info Summary: ===============================
- => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of
- the same hard drive for core.img. core.img is at this location and looks
- in partition 94 for .
- sda1: __________________________________________________________________________
- File system: ntfs
- Boot sector type: Windows Vista/7: NTFS
- Boot sector info: No errors found in the Boot Parameter Block.
- Operating System:
- Boot files: /bootmgr /Boot/BCD /Windows/System32/winload.exe
- sda2: __________________________________________________________________________
- File system: ntfs
- Boot sector type: Windows Vista/7: NTFS
- Boot sector info: No errors found in the Boot Parameter Block.
- Operating System:
- Boot files:
- sda3: __________________________________________________________________________
- File system: vfat
- Boot sector type: FAT32
- Boot sector info: According to the info in the boot sector, sda3 starts
- at sector 0. But according to the info from fdisk,
- sda3 starts at sector 237584384.
- Operating System:
- Boot files: /efi/kubuntu/grubx64.efi
- sda4: __________________________________________________________________________
- File system: Extended Partition
- Boot sector type: Unknown
- Boot sector info:
- sda5: __________________________________________________________________________
- File system: ext4
- Boot sector type: -
- Boot sector info:
- Operating System: Ubuntu 13.04
- Boot files: /boot/grub/grub.cfg /etc/fstab
- ============================ Drive/Partition Info: =============================
- Drive: sda _____________________________________________________________________
- Disk /dev/sda: 320.1 GB, 320072933376 bytes
- 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
- Units = sectors of 1 * 512 = 512 bytes
- Sector size (logical/physical): 512 bytes / 4096 bytes
- Partition Boot Start Sector End Sector # of Sectors Id System
- /dev/sda1 2,048 114,702,335 114,700,288 7 NTFS / exFAT / HPFS
- /dev/sda2 114,702,336 237,584,383 122,882,048 7 NTFS / exFAT / HPFS
- /dev/sda3 * 237,584,384 238,561,279 976,896 83 Linux
- /dev/sda4 238,563,326 625,141,759 386,578,434 5 Extended
- /dev/sda5 238,563,328 625,141,759 386,578,432 83 Linux
- "blkid" output: ________________________________________________________________
- Device UUID TYPE LABEL
- /dev/sda1 0A56597F56596C87 ntfs windows8
- /dev/sda2 EC7E935B7E931D80 ntfs softwares
- /dev/sda3 6C88-3155 vfat
- /dev/sda5 0b3e3cef-4b21-477b-b498-d13a6e570462 ext4
- ================================ Mount points: =================================
- Device Mount_Point Type Options
- /dev/sda5 / ext4 (rw,errors=remount-ro)
- =========================== sda5/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 [ x"${feature_menuentry_id}" = xy ]; then
- menuentry_id_option="--id"
- else
- menuentry_id_option=""
- fi
- export menuentry_id_option
- 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 {
- if [ x$feature_all_video_module = xy ]; then
- insmod all_video
- else
- insmod efi_gop
- insmod efi_uga
- insmod ieee1275_fb
- insmod vbe
- insmod vga
- insmod video_bochs
- insmod video_cirrus
- fi
- }
- if [ x$feature_default_font_path = xy ] ; then
- font=unicode
- else
- insmod part_msdos
- insmod ext2
- set root='hd0,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- font="/usr/share/grub/unicode.pf2"
- fi
- if loadfont $font ; then
- set gfxmode=auto
- load_video
- insmod gfxterm
- set locale_dir=$prefix/locale
- set lang=en_IN
- insmod gettext
- fi
- terminal_output gfxterm
- 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
- #set_background_image "images/tile.png";
- set menu_color_normal=white/black
- set menu_color_highlight=black/light-gray
- if background_color 0,0,0; then
- clear
- fi
- ### END /etc/grub.d/05_debian_theme ###
- ### BEGIN /etc/grub.d/10_linux ###
- function gfxmode {
- set gfxpayload="${1}"
- if [ "${1}" = "keep" ]; then
- set vt_handoff=vt.handoff=7
- else
- set vt_handoff=
- fi
- }
- if [ "${recordfail}" != 1 ]; then
- if [ -e ${prefix}/gfxblacklist.txt ]; then
- if hwmatch ${prefix}/gfxblacklist.txt 3; then
- if [ ${match} = 0 ]; then
- set linux_gfx_mode=keep
- else
- set linux_gfx_mode=text
- fi
- else
- set linux_gfx_mode=text
- fi
- else
- set linux_gfx_mode=keep
- fi
- else
- set linux_gfx_mode=text
- fi
- export linux_gfx_mode
- menuentry 'Kubuntu GNU/Linux' --class kubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0b3e3cef-4b21-477b-b498-d13a6e570462' {
- recordfail
- load_video
- gfxmode $linux_gfx_mode
- insmod gzio
- insmod part_msdos
- insmod ext2
- set root='hd0,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- linux /boot/vmlinuz-3.8.0-19-generic root=UUID=0b3e3cef-4b21-477b-b498-d13a6e570462 ro quiet splash $vt_handoff
- initrd /boot/initrd.img-3.8.0-19-generic
- }
- submenu 'Advanced options for Kubuntu GNU/Linux' $menuentry_id_option 'gnulinux-advanced-0b3e3cef-4b21-477b-b498-d13a6e570462' {
- menuentry 'Kubuntu GNU/Linux, with Linux 3.8.0-19-generic' --class kubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.8.0-19-generic-advanced-0b3e3cef-4b21-477b-b498-d13a6e570462' {
- recordfail
- load_video
- gfxmode $linux_gfx_mode
- insmod gzio
- insmod part_msdos
- insmod ext2
- set root='hd0,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- echo 'Loading Linux 3.8.0-19-generic ...'
- linux /boot/vmlinuz-3.8.0-19-generic root=UUID=0b3e3cef-4b21-477b-b498-d13a6e570462 ro quiet splash $vt_handoff
- echo 'Loading initial ramdisk ...'
- initrd /boot/initrd.img-3.8.0-19-generic
- }
- menuentry 'Kubuntu GNU/Linux, with Linux 3.8.0-19-generic (recovery mode)' --class kubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.8.0-19-generic-recovery-0b3e3cef-4b21-477b-b498-d13a6e570462' {
- recordfail
- load_video
- insmod gzio
- insmod part_msdos
- insmod ext2
- set root='hd0,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- echo 'Loading Linux 3.8.0-19-generic ...'
- linux /boot/vmlinuz-3.8.0-19-generic root=UUID=0b3e3cef-4b21-477b-b498-d13a6e570462 ro recovery nomodeset
- echo 'Loading initial ramdisk ...'
- initrd /boot/initrd.img-3.8.0-19-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,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- linux16 /boot/memtest86+.bin
- }
- menuentry "Memory test (memtest86+, serial console 115200)" {
- insmod part_msdos
- insmod ext2
- set root='hd0,msdos5'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 0b3e3cef-4b21-477b-b498-d13a6e570462
- else
- search --no-floppy --fs-uuid --set=root 0b3e3cef-4b21-477b-b498-d13a6e570462
- fi
- linux16 /boot/memtest86+.bin console=ttyS0,115200n8
- }
- ### END /etc/grub.d/20_memtest86+ ###
- ### BEGIN /etc/grub.d/30_os-prober ###
- menuentry 'Windows 8 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-0A56597F56596C87' {
- insmod part_msdos
- insmod ntfs
- set root='hd0,msdos1'
- if [ x$feature_platform_search_hint = xy ]; then
- search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 0A56597F56596C87
- else
- search --no-floppy --fs-uuid --set=root 0A56597F56596C87
- fi
- drivemap -s (hd0) ${root}
- chainloader +1
- }
- ### END /etc/grub.d/30_os-prober ###
- ### BEGIN /etc/grub.d/30_uefi-firmware ###
- ### END /etc/grub.d/30_uefi-firmware ###
- ### 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 ${config_directory}/custom.cfg ]; then
- source ${config_directory}/custom.cfg
- elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
- source $prefix/custom.cfg;
- fi
- ### END /etc/grub.d/41_custom ###
- --------------------------------------------------------------------------------
- =============================== sda5/etc/fstab: ================================
- --------------------------------------------------------------------------------
- # /etc/fstab: static file system information.
- #
- # Use 'blkid' 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>
- # / was on /dev/sda5 during installation
- UUID=0b3e3cef-4b21-477b-b498-d13a6e570462 / ext4 errors=remount-ro 0 1
- --------------------------------------------------------------------------------
- =================== sda5: Location of files loaded by Grub: ====================
- GiB - GB File Fragment(s)
- = boot/grub/grub.cfg 1
- = boot/initrd.img-3.8.0-19-generic 3
- = boot/vmlinuz-3.8.0-19-generic 1
- = initrd.img 3
- = initrd.img.old 3
- = vmlinuz 1
- ======================== Unknown MBRs/Boot Sectors/etc: ========================
- Unknown BootLoader on sda4
- 00000000 ff 25 e2 e8 25 00 68 07 01 00 00 e9 70 ef ff ff |.%..%.h.....p...|
- 00000010 ff 25 da e8 25 00 68 08 01 00 00 e9 60 ef ff ff |.%..%.h.....`...|
- 00000020 ff 25 d2 e8 25 00 68 09 01 00 00 e9 50 ef ff ff |.%..%.h.....P...|
- 00000030 ff 25 ca e8 25 00 68 0a 01 00 00 e9 40 ef ff ff |.%..%.h.....@...|
- 00000040 ff 25 c2 e8 25 00 68 0b 01 00 00 e9 30 ef ff ff |.%..%.h.....0...|
- 00000050 ff 25 ba e8 25 00 68 0c 01 00 00 e9 20 ef ff ff |.%..%.h..... ...|
- 00000060 ff 25 b2 e8 25 00 68 0d 01 00 00 e9 10 ef ff ff |.%..%.h.........|
- 00000070 ff 25 aa e8 25 00 68 0e 01 00 00 e9 00 ef ff ff |.%..%.h.........|
- 00000080 ff 25 a2 e8 25 00 68 0f 01 00 00 e9 f0 ee ff ff |.%..%.h.........|
- 00000090 ff 25 9a e8 25 00 68 10 01 00 00 e9 e0 ee ff ff |.%..%.h.........|
- 000000a0 ff 25 92 e8 25 00 68 11 01 00 00 e9 d0 ee ff ff |.%..%.h.........|
- 000000b0 ff 25 8a e8 25 00 68 12 01 00 00 e9 c0 ee ff ff |.%..%.h.........|
- 000000c0 ff 25 82 e8 25 00 68 13 01 00 00 e9 b0 ee ff ff |.%..%.h.........|
- 000000d0 ff 25 7a e8 25 00 68 14 01 00 00 e9 a0 ee ff ff |.%z.%.h.........|
- 000000e0 ff 25 72 e8 25 00 68 15 01 00 00 e9 90 ee ff ff |.%r.%.h.........|
- 000000f0 ff 25 6a e8 25 00 68 16 01 00 00 e9 80 ee ff ff |.%j.%.h.........|
- 00000100 ff 25 62 e8 25 00 68 17 01 00 00 e9 70 ee ff ff |.%b.%.h.....p...|
- 00000110 ff 25 5a e8 25 00 68 18 01 00 00 e9 60 ee ff ff |.%Z.%.h.....`...|
- 00000120 ff 25 52 e8 25 00 68 19 01 00 00 e9 50 ee ff ff |.%R.%.h.....P...|
- 00000130 ff 25 4a e8 25 00 68 1a 01 00 00 e9 40 ee ff ff |.%J.%.h.....@...|
- 00000140 ff 25 42 e8 25 00 68 1b 01 00 00 e9 30 ee ff ff |.%B.%.h.....0...|
- 00000150 ff 25 3a e8 25 00 68 1c 01 00 00 e9 20 ee ff ff |.%:.%.h..... ...|
- 00000160 ff 25 32 e8 25 00 68 1d 01 00 00 e9 10 ee ff ff |.%2.%.h.........|
- 00000170 ff 25 2a e8 25 00 68 1e 01 00 00 e9 00 ee ff ff |.%*.%.h.........|
- 00000180 ff 25 22 e8 25 00 68 1f 01 00 00 e9 f0 ed ff ff |.%".%.h.........|
- 00000190 ff 25 1a e8 25 00 68 20 01 00 00 e9 e0 ed ff ff |.%..%.h ........|
- 000001a0 ff 25 12 e8 25 00 68 21 01 00 00 e9 d0 ed ff ff |.%..%.h!........|
- 000001b0 ff 25 0a e8 25 00 68 22 01 00 00 e9 c0 ed 00 fe |.%..%.h"........|
- 000001c0 ff ff 83 fe ff ff 02 00 00 00 00 b8 0a 17 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
- =============================== StdErr Messages: ===============================
- awk: cmd. line:36: Math support is not compiled in
- awk: cmd. line:36: Math support is not compiled in
- awk: cmd. line:36: Math support is not compiled in
- awk: cmd. line:36: Math support is not compiled in
- awk: cmd. line:36: Math support is not compiled in
- awk: cmd. line:36: Math support is not compiled in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement