Advertisement
Guest User

Untitled

a guest
Aug 16th, 2014
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.66 KB | None | 0 0
  1. Boot Info Script 0.61 [1 April 2012]
  2.  
  3.  
  4. ============================= Boot Info Summary: ===============================
  5.  
  6. => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of
  7. the same hard drive for core.img. core.img is at this location and looks
  8. in partition 112 for .
  9. => Syslinux MBR (4.04 and higher) is installed in the MBR of /dev/sdb.
  10.  
  11. sda1: __________________________________________________________________________
  12.  
  13. File system: ext4
  14. Boot sector type: -
  15. Boot sector info:
  16. Operating System: Ubuntu 14.04.1 LTS
  17. Boot files: /boot/grub/grub.cfg /etc/fstab
  18.  
  19. sda2: __________________________________________________________________________
  20.  
  21. File system: Extended Partition
  22. Boot sector type: -
  23. Boot sector info:
  24.  
  25. sda5: __________________________________________________________________________
  26.  
  27. File system: swap
  28. Boot sector type: -
  29. Boot sector info:
  30.  
  31. sdb1: __________________________________________________________________________
  32.  
  33. File system: vfat
  34. Boot sector type: SYSLINUX 4.05 20130218
  35. Boot sector info: Syslinux looks at sector 6405248 of /dev/sdb1 for its
  36. second stage. SYSLINUX is installed in the directory.
  37. The integrity check of the ADV area failed. No errors
  38. found in the Boot Parameter Block.
  39. Operating System:
  40. Boot files: /boot/grub/grub.cfg /syslinux/syslinux.cfg
  41. /efi/BOOT/grubx64.efi /ldlinux.sys
  42.  
  43. ============================ Drive/Partition Info: =============================
  44.  
  45. Drive: sda _____________________________________________________________________
  46.  
  47. Disk /dev/sda: 500.1 GB, 500107861504 bytes
  48. 255 heads, 63 sectors/track, 60801 cylinders, total 976773167 sectors
  49. Units = sectors of 1 * 512 = 512 bytes
  50. Sector size (logical/physical): 512 bytes / 512 bytes
  51.  
  52. Partition Boot Start Sector End Sector # of Sectors Id System
  53.  
  54. /dev/sda1 * 2,048 966,811,647 966,809,600 83 Linux
  55. /dev/sda2 966,813,694 976,771,071 9,957,378 5 Extended
  56. /dev/sda5 966,813,696 976,771,071 9,957,376 82 Linux swap / Solaris
  57.  
  58.  
  59. Drive: sdb _____________________________________________________________________
  60.  
  61. Disk /dev/sdb: 32.0 GB, 32019316736 bytes
  62. 64 heads, 32 sectors/track, 30536 cylinders, total 62537728 sectors
  63. Units = sectors of 1 * 512 = 512 bytes
  64. Sector size (logical/physical): 512 bytes / 512 bytes
  65.  
  66. Partition Boot Start Sector End Sector # of Sectors Id System
  67.  
  68. /dev/sdb1 * 8,064 62,537,727 62,529,664 c W95 FAT32 (LBA)
  69.  
  70.  
  71. "blkid" output: ________________________________________________________________
  72.  
  73. Device UUID TYPE LABEL
  74.  
  75. /dev/loop0 squashfs
  76. /dev/loop1 4b98b4f0-753c-4288-a753-3f2be7a9404c ext3
  77. /dev/sda1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d ext4
  78. /dev/sda5 f2a6a4e1-4a57-4cb5-a4ee-78b6ec1e0a31 swap
  79. /dev/sdb1 9A28-51C7 vfat NANO PRO
  80.  
  81. ================================ Mount points: =================================
  82.  
  83. Device Mount_Point Type Options
  84.  
  85. /dev/loop0 /rofs squashfs (ro,noatime)
  86. /dev/sdb1 /cdrom vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  87.  
  88.  
  89. =========================== sda1/boot/grub/grub.cfg: ===========================
  90.  
  91. --------------------------------------------------------------------------------
  92. #
  93. # DO NOT EDIT THIS FILE
  94. #
  95. # It is automatically generated by grub-mkconfig using templates
  96. # from /etc/grub.d and settings from /etc/default/grub
  97. #
  98.  
  99. ### BEGIN /etc/grub.d/00_header ###
  100. if [ -s $prefix/grubenv ]; then
  101. set have_grubenv=true
  102. load_env
  103. fi
  104. if [ "${next_entry}" ] ; then
  105. set default="${next_entry}"
  106. set next_entry=
  107. save_env next_entry
  108. set boot_once=true
  109. else
  110. set default="0"
  111. fi
  112.  
  113. if [ x"${feature_menuentry_id}" = xy ]; then
  114. menuentry_id_option="--id"
  115. else
  116. menuentry_id_option=""
  117. fi
  118.  
  119. export menuentry_id_option
  120.  
  121. if [ "${prev_saved_entry}" ]; then
  122. set saved_entry="${prev_saved_entry}"
  123. save_env saved_entry
  124. set prev_saved_entry=
  125. save_env prev_saved_entry
  126. set boot_once=true
  127. fi
  128.  
  129. function savedefault {
  130. if [ -z "${boot_once}" ]; then
  131. saved_entry="${chosen}"
  132. save_env saved_entry
  133. fi
  134. }
  135. function recordfail {
  136. set recordfail=1
  137. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  138. }
  139. function load_video {
  140. if [ x$feature_all_video_module = xy ]; then
  141. insmod all_video
  142. else
  143. insmod efi_gop
  144. insmod efi_uga
  145. insmod ieee1275_fb
  146. insmod vbe
  147. insmod vga
  148. insmod video_bochs
  149. insmod video_cirrus
  150. fi
  151. }
  152.  
  153. if [ x$feature_default_font_path = xy ] ; then
  154. font=unicode
  155. else
  156. insmod part_msdos
  157. insmod ext2
  158. set root='hd1,msdos1'
  159. if [ x$feature_platform_search_hint = xy ]; then
  160. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  161. else
  162. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  163. fi
  164. font="/usr/share/grub/unicode.pf2"
  165. fi
  166.  
  167. if loadfont $font ; then
  168. set gfxmode=auto
  169. load_video
  170. insmod gfxterm
  171. set locale_dir=$prefix/locale
  172. set lang=en_US
  173. insmod gettext
  174. fi
  175. terminal_output gfxterm
  176. if [ "${recordfail}" = 1 ] ; then
  177. set timeout=-1
  178. else
  179. if [ x$feature_timeout_style = xy ] ; then
  180. set timeout_style=hidden
  181. set timeout=0
  182. # Fallback hidden-timeout code in case the timeout_style feature is
  183. # unavailable.
  184. elif sleep --interruptible 0 ; then
  185. set timeout=0
  186. fi
  187. fi
  188. ### END /etc/grub.d/00_header ###
  189.  
  190. ### BEGIN /etc/grub.d/05_debian_theme ###
  191. set menu_color_normal=white/black
  192. set menu_color_highlight=black/light-gray
  193. if background_color 44,0,30; then
  194. clear
  195. fi
  196. ### END /etc/grub.d/05_debian_theme ###
  197.  
  198. ### BEGIN /etc/grub.d/10_linux ###
  199. function gfxmode {
  200. set gfxpayload="${1}"
  201. if [ "${1}" = "keep" ]; then
  202. set vt_handoff=vt.handoff=7
  203. else
  204. set vt_handoff=
  205. fi
  206. }
  207. if [ "${recordfail}" != 1 ]; then
  208. if [ -e ${prefix}/gfxblacklist.txt ]; then
  209. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  210. if [ ${match} = 0 ]; then
  211. set linux_gfx_mode=keep
  212. else
  213. set linux_gfx_mode=text
  214. fi
  215. else
  216. set linux_gfx_mode=text
  217. fi
  218. else
  219. set linux_gfx_mode=keep
  220. fi
  221. else
  222. set linux_gfx_mode=text
  223. fi
  224. export linux_gfx_mode
  225. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-d5ff7eb7-7a11-490e-a925-c47b6ab0764d' {
  226. recordfail
  227. load_video
  228. gfxmode $linux_gfx_mode
  229. insmod gzio
  230. insmod part_msdos
  231. insmod ext2
  232. set root='hd1,msdos1'
  233. if [ x$feature_platform_search_hint = xy ]; then
  234. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  235. else
  236. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  237. fi
  238. linux /boot/vmlinuz-3.13.0-32-generic root=UUID=d5ff7eb7-7a11-490e-a925-c47b6ab0764d ro quiet splash $vt_handoff
  239. initrd /boot/initrd.img-3.13.0-32-generic
  240. }
  241. submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-d5ff7eb7-7a11-490e-a925-c47b6ab0764d' {
  242. menuentry 'Ubuntu, with Linux 3.13.0-32-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-advanced-d5ff7eb7-7a11-490e-a925-c47b6ab0764d' {
  243. recordfail
  244. load_video
  245. gfxmode $linux_gfx_mode
  246. insmod gzio
  247. insmod part_msdos
  248. insmod ext2
  249. set root='hd1,msdos1'
  250. if [ x$feature_platform_search_hint = xy ]; then
  251. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  252. else
  253. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  254. fi
  255. echo 'Loading Linux 3.13.0-32-generic ...'
  256. linux /boot/vmlinuz-3.13.0-32-generic root=UUID=d5ff7eb7-7a11-490e-a925-c47b6ab0764d ro quiet splash $vt_handoff
  257. echo 'Loading initial ramdisk ...'
  258. initrd /boot/initrd.img-3.13.0-32-generic
  259. }
  260. menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-recovery-d5ff7eb7-7a11-490e-a925-c47b6ab0764d' {
  261. recordfail
  262. load_video
  263. insmod gzio
  264. insmod part_msdos
  265. insmod ext2
  266. set root='hd1,msdos1'
  267. if [ x$feature_platform_search_hint = xy ]; then
  268. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  269. else
  270. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  271. fi
  272. echo 'Loading Linux 3.13.0-32-generic ...'
  273. linux /boot/vmlinuz-3.13.0-32-generic root=UUID=d5ff7eb7-7a11-490e-a925-c47b6ab0764d ro recovery nomodeset
  274. echo 'Loading initial ramdisk ...'
  275. initrd /boot/initrd.img-3.13.0-32-generic
  276. }
  277. }
  278.  
  279. ### END /etc/grub.d/10_linux ###
  280.  
  281. ### BEGIN /etc/grub.d/20_linux_xen ###
  282.  
  283. ### END /etc/grub.d/20_linux_xen ###
  284.  
  285. ### BEGIN /etc/grub.d/20_memtest86+ ###
  286. menuentry 'Memory test (memtest86+)' {
  287. insmod part_msdos
  288. insmod ext2
  289. set root='hd1,msdos1'
  290. if [ x$feature_platform_search_hint = xy ]; then
  291. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  292. else
  293. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  294. fi
  295. knetbsd /boot/memtest86+.elf
  296. }
  297. menuentry 'Memory test (memtest86+, serial console 115200)' {
  298. insmod part_msdos
  299. insmod ext2
  300. set root='hd1,msdos1'
  301. if [ x$feature_platform_search_hint = xy ]; then
  302. search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  303. else
  304. search --no-floppy --fs-uuid --set=root d5ff7eb7-7a11-490e-a925-c47b6ab0764d
  305. fi
  306. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  307. }
  308. ### END /etc/grub.d/20_memtest86+ ###
  309.  
  310. ### BEGIN /etc/grub.d/30_os-prober ###
  311. ### END /etc/grub.d/30_os-prober ###
  312.  
  313. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  314. ### END /etc/grub.d/30_uefi-firmware ###
  315.  
  316. ### BEGIN /etc/grub.d/40_custom ###
  317. # This file provides an easy way to add custom menu entries. Simply type the
  318. # menu entries you want to add after this comment. Be careful not to change
  319. # the 'exec tail' line above.
  320. ### END /etc/grub.d/40_custom ###
  321.  
  322. ### BEGIN /etc/grub.d/41_custom ###
  323. if [ -f ${config_directory}/custom.cfg ]; then
  324. source ${config_directory}/custom.cfg
  325. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  326. source $prefix/custom.cfg;
  327. fi
  328. ### END /etc/grub.d/41_custom ###
  329. --------------------------------------------------------------------------------
  330.  
  331. =============================== sda1/etc/fstab: ================================
  332.  
  333. --------------------------------------------------------------------------------
  334. # /etc/fstab: static file system information.
  335. #
  336. # Use 'blkid' to print the universally unique identifier for a
  337. # device; this may be used with UUID= as a more robust way to name devices
  338. # that works even if disks are added and removed. See fstab(5).
  339. #
  340. # <file system> <mount point> <type> <options> <dump> <pass>
  341. # / was on /dev/sdb1 during installation
  342. UUID=d5ff7eb7-7a11-490e-a925-c47b6ab0764d / ext4 errors=remount-ro 0 1
  343. # swap was on /dev/sdb5 during installation
  344. UUID=f2a6a4e1-4a57-4cb5-a4ee-78b6ec1e0a31 none swap sw 0 0
  345. --------------------------------------------------------------------------------
  346.  
  347. =================== sda1: Location of files loaded by Grub: ====================
  348.  
  349. GiB - GB File Fragment(s)
  350.  
  351.  
  352. =========================== sdb1/boot/grub/grub.cfg: ===========================
  353.  
  354. --------------------------------------------------------------------------------
  355.  
  356. if loadfont /boot/grub/font.pf2 ; then
  357. set gfxmode=auto
  358. insmod efi_gop
  359. insmod efi_uga
  360. insmod gfxterm
  361. terminal_output gfxterm
  362. fi
  363.  
  364. set menu_color_normal=white/black
  365. set menu_color_highlight=black/light-gray
  366.  
  367. menuentry "Try Ubuntu without installing" {
  368. set gfxpayload=keep
  369. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
  370. initrd /casper/initrd.lz
  371. }
  372. menuentry "Install Ubuntu" {
  373. set gfxpayload=keep
  374. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --
  375. initrd /casper/initrd.lz
  376. }
  377. menuentry "OEM install (for manufacturers)" {
  378. set gfxpayload=keep
  379. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --
  380. initrd /casper/initrd.lz
  381. }
  382. menuentry "Check disc for defects" {
  383. set gfxpayload=keep
  384. linux /casper/vmlinuz.efi boot=casper integrity-check quiet splash --
  385. initrd /casper/initrd.lz
  386. }
  387. --------------------------------------------------------------------------------
  388.  
  389. ========================= sdb1/syslinux/syslinux.cfg: ==========================
  390.  
  391. --------------------------------------------------------------------------------
  392. # D-I config version 2.0
  393. include menu.cfg
  394. default vesamenu.c32
  395. prompt 0
  396. timeout 50
  397. ui gfxboot bootlogo
  398. --------------------------------------------------------------------------------
  399.  
  400. =================== sdb1: Location of files loaded by Grub: ====================
  401.  
  402. GiB - GB File Fragment(s)
  403.  
  404.  
  405. ================= sdb1: Location of files loaded by Syslinux: ==================
  406.  
  407. GiB - GB File Fragment(s)
  408.  
  409.  
  410. ============== sdb1: Version of COM32(R) files used by Syslinux: ===============
  411.  
  412. syslinux/chain.c32 : COM32R module (v4.xx)
  413. syslinux/gfxboot.c32 : COM32R module (v4.xx)
  414. syslinux/vesamenu.c32 : COM32R module (v4.xx)
  415.  
  416. =============================== StdErr Messages: ===============================
  417.  
  418. cat: /tmp/BootInfo-OASI9s7E/Tmp_Log: No such file or directory
  419. ./bootinfoscript: line 1646: [: 2.73495e+09: integer expression expected
  420. cat: /tmp/BootInfo-OASI9s7E/Tmp_Log: No such file or directory
  421. cat: /tmp/BootInfo-OASI9s7E/Tmp_Log: No such file or directory
  422. No volume groups found
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement