Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.69 KB | None | 0 0
  1. Boot Info Script 0.55 dated February 15th, 2010
  2.  
  3. ============================= Boot Info Summary: ==============================
  4.  
  5. => Grub 2 is installed in the MBR of /dev/sda and looks on the same drive in
  6. partition #1 for /boot/grub.
  7. => Syslinux is installed in the MBR of /dev/sdb
  8.  
  9. sda1: _________________________________________________________________________
  10.  
  11. File system: ext4
  12. Boot sector type: -
  13. Boot sector info:
  14. Operating System: Ubuntu 10.04.1 LTS
  15. Boot files/dirs: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
  16.  
  17. sda2: _________________________________________________________________________
  18.  
  19. File system: Extended Partition
  20. Boot sector type: Unknown
  21. Boot sector info:
  22.  
  23. sda5: _________________________________________________________________________
  24.  
  25. File system: swap
  26. Boot sector type: -
  27. Boot sector info:
  28.  
  29. sdb1: _________________________________________________________________________
  30.  
  31. File system: vfat
  32. Boot sector type: Fat32
  33. Boot sector info: According to the info in the boot sector, sdb1 starts
  34. at sector 0. But according to the info from fdisk,
  35. sdb1 starts at sector 32.
  36. Operating System:
  37. Boot files/dirs:
  38.  
  39. =========================== Drive/Partition Info: =============================
  40.  
  41. Drive: sda ___________________ _____________________________________________________
  42.  
  43. Disk /dev/sda: 80.0 GB, 80026361856 bytes
  44. 255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors
  45. Units = sectors of 1 * 512 = 512 bytes
  46. Sector size (logical/physical): 512 bytes / 512 bytes
  47.  
  48. Partition Boot Start End Size Id System
  49.  
  50. /dev/sda1 * 2,048 149,843,967 149,841,920 83 Linux
  51. /dev/sda2 149,846,014 156,301,311 6,455,298 5 Extended
  52. /dev/sda5 149,846,016 156,301,311 6,455,296 82 Linux swap / Solaris
  53.  
  54.  
  55. Drive: sdb ___________________ _____________________________________________________
  56.  
  57. Disk /dev/sdb: 16.0 GB, 16026435072 bytes
  58. 64 heads, 32 sectors/track, 15283 cylinders, total 31301631 sectors
  59. Units = sectors of 1 * 512 = 512 bytes
  60. Sector size (logical/physical): 512 bytes / 512 bytes
  61.  
  62. Partition Boot Start End Size Id System
  63.  
  64. /dev/sdb1 * 32 31,299,583 31,299,552 c W95 FAT32 (LBA)
  65.  
  66.  
  67. blkid -c /dev/null: ____________________________________________________________
  68.  
  69. Device UUID TYPE LABEL
  70.  
  71. /dev/loop0 squashfs
  72. /dev/sda1 7be8f245-a337-43a4-a34c-c8af22739019 ext4
  73. /dev/sda2: PTTYPE="dos"
  74. /dev/sda5 27dcdfe8-67e8-4243-b134-3814942e34a0 swap
  75. /dev/sda: PTTYPE="dos"
  76. /dev/sdb1 2A86-D17D vfat Ò +ř®>éZ
  77. /dev/sdb: PTTYPE="dos"
  78.  
  79. ============================ "mount | grep ^/dev output: ===========================
  80.  
  81. Device Mount_Point Type Options
  82.  
  83. aufs / aufs (rw)
  84. /dev/sdb1 /cdrom vfat (ro,noatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  85. /dev/loop0 /rofs squashfs (ro,noatime)
  86.  
  87.  
  88. =========================== sda1/boot/grub/grub.cfg: ===========================
  89.  
  90. #
  91. # DO NOT EDIT THIS FILE
  92. #
  93. # It is automatically generated by /usr/sbin/grub-mkconfig using templates
  94. # from /etc/grub.d and settings from /etc/default/grub
  95. #
  96.  
  97. ### BEGIN /etc/grub.d/00_header ###
  98. if [ -s $prefix/grubenv ]; then
  99. load_env
  100. fi
  101. set default="0"
  102. if [ ${prev_saved_entry} ]; then
  103. set saved_entry=${prev_saved_entry}
  104. save_env saved_entry
  105. set prev_saved_entry=
  106. save_env prev_saved_entry
  107. set boot_once=true
  108. fi
  109.  
  110. function savedefault {
  111. if [ -z ${boot_once} ]; then
  112. saved_entry=${chosen}
  113. save_env saved_entry
  114. fi
  115. }
  116.  
  117. function recordfail {
  118. set recordfail=1
  119. if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env recordfail; fi; fi
  120. }
  121. insmod ext2
  122. set root='(hd0,1)'
  123. search --no-floppy --fs-uuid --set 7be8f245-a337-43a4-a34c-c8af22739019
  124. if loadfont /usr/share/grub/unicode.pf2 ; then
  125. set gfxmode=640x480
  126. insmod gfxterm
  127. insmod vbe
  128. if terminal_output gfxterm ; then true ; else
  129. # For backward compatibility with versions of terminal.mod that don't
  130. # understand terminal_output
  131. terminal gfxterm
  132. fi
  133. fi
  134. insmod ext2
  135. set root='(hd0,1)'
  136. search --no-floppy --fs-uuid --set 7be8f245-a337-43a4-a34c-c8af22739019
  137. set locale_dir=($root)/boot/grub/locale
  138. set lang=en
  139. insmod gettext
  140. if [ ${recordfail} = 1 ]; then
  141. set timeout=-1
  142. else
  143. set timeout=10
  144. fi
  145. ### END /etc/grub.d/00_header ###
  146.  
  147. ### BEGIN /etc/grub.d/05_debian_theme ###
  148. set menu_color_normal=white/black
  149. set menu_color_highlight=black/light-gray
  150. ### END /etc/grub.d/05_debian_theme ###
  151.  
  152. ### BEGIN /etc/grub.d/10_linux ###
  153. ### END /etc/grub.d/10_linux ###
  154.  
  155. ### BEGIN /etc/grub.d/20_memtest86+ ###
  156. menuentry "Memory test (memtest86+)" {
  157. insmod ext2
  158. set root='(hd0,1)'
  159. search --no-floppy --fs-uuid --set 7be8f245-a337-43a4-a34c-c8af22739019
  160. linux16 /boot/memtest86+.bin
  161. }
  162. menuentry "Memory test (memtest86+, serial console 115200)" {
  163. insmod ext2
  164. set root='(hd0,1)'
  165. search --no-floppy --fs-uuid --set 7be8f245-a337-43a4-a34c-c8af22739019
  166. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  167. }
  168. ### END /etc/grub.d/20_memtest86+ ###
  169.  
  170. ### BEGIN /etc/grub.d/30_os-prober ###
  171. if [ ${timeout} != -1 ]; then
  172. if keystatus; then
  173. if keystatus --shift; then
  174. set timeout=-1
  175. else
  176. set timeout=0
  177. fi
  178. else
  179. if sleep --interruptible 3 ; then
  180. set timeout=0
  181. fi
  182. fi
  183. fi
  184. ### END /etc/grub.d/30_os-prober ###
  185.  
  186. ### BEGIN /etc/grub.d/40_custom ###
  187. # This file provides an easy way to add custom menu entries. Simply type the
  188. # menu entries you want to add after this comment. Be careful not to change
  189. # the 'exec tail' line above.
  190. ### END /etc/grub.d/40_custom ###
  191.  
  192. =============================== sda1/etc/fstab: ===============================
  193.  
  194. # /etc/fstab: static file system information.
  195. #
  196. # Use 'blkid -o value -s UUID' to print the universally unique identifier
  197. # for a device; this may be used with UUID= as a more robust way to name
  198. # devices that works even if disks are added and removed. See fstab(5).
  199. #
  200. # <file system> <mount point> <type> <options> <dump> <pass>
  201. proc /proc proc nodev,noexec,nosuid 0 0
  202. # / was on /dev/sda1 during installation
  203. UUID=7be8f245-a337-43a4-a34c-c8af22739019 / ext4 errors=remount-ro 0 1
  204. # swap was on /dev/sda5 during installation
  205. UUID=27dcdfe8-67e8-4243-b134-3814942e34a0 none swap sw 0 0
  206.  
  207. =================== sda1: Location of files loaded by Grub: ===================
  208.  
  209.  
  210. 30.2GB: boot/grub/core.img
  211. 26.2GB: boot/grub/grub.cfg
  212. =========================== Unknown MBRs/Boot Sectors/etc =======================
  213.  
  214. Unknown BootLoader on sda2
  215.  
  216. 00000000 02 09 ec e5 a3 90 a0 ab 01 d4 af 68 0c 89 52 45 |...........h..RE|
  217. 00000010 b8 a5 32 1f fc 71 fa 02 70 07 0b a4 4f 83 2d 73 |..2..q..p...O.-s|
  218. 00000020 d2 62 18 8a 37 7f 44 cf 06 3a 14 2a ce 21 3f 40 |.b..7.D..:.*.!?@|
  219. 00000030 a7 5a 36 2a 20 4c e6 26 f9 75 28 a6 5f 7d 32 71 |.Z6* L.&.u(._}2q|
  220. 00000040 dc 75 b8 a3 34 8c 95 62 ea 9c 02 26 d5 77 29 44 |.u..4..b...&.w)D|
  221. 00000050 32 a4 a5 b2 76 c4 b0 d0 dd 40 ab 6c 79 87 d5 5a |2...v....@.ly..Z|
  222. 00000060 a9 ef 64 d8 49 37 a4 93 d7 f7 50 bf 65 ce 36 39 |..d.I7....P.e.69|
  223. 00000070 53 92 f4 2f a0 2f 76 5e 52 7c 6e 48 df 9e 2b 6b |S.././v^R|nH..+k|
  224. 00000080 40 ea 83 55 54 b4 61 f8 3a bb 40 54 29 63 af 66 |@..UT.a.:.@T)c.f|
  225. 00000090 12 a3 e5 49 fc 3d 89 7a 3e 6a 70 64 36 10 77 4f |...I.=.z>jpd6.wO|
  226. 000000a0 5a f1 8e 43 da 5e 02 57 1d 6a e3 91 6c a0 89 90 |Z..C.^.W.j..l...|
  227. 000000b0 33 15 6b a3 45 24 9f 7d 8d 63 b7 d9 ce 89 cc 1a |3.k.E$.}.c......|
  228. 000000c0 3d 83 9c dc 0a 13 98 9b 4f 8d 6e 80 12 e2 67 8b |=.......O.n...g.|
  229. 000000d0 2e 0b 4d 80 9f 07 d3 89 d2 08 07 89 29 9e da 40 |..M.........)..@|
  230. 000000e0 a5 fc 72 cd 24 be a3 3f 43 93 b8 af 00 67 38 18 |..r.$..?C....g8.|
  231. 000000f0 61 32 f8 a2 ff 18 d0 2f eb 3e 29 24 b0 bd 1b 56 |a2...../.>)$...V|
  232. 00000100 44 fd 66 42 65 30 66 c7 7d 8c b8 ca 60 7c c3 2c |D.fBe0f.}...`|.,|
  233. 00000110 94 65 c7 62 df ae 9c 67 0d 9f 96 96 f4 23 74 2b |.e.b...g.....#t+|
  234. 00000120 f3 24 db 43 4a ff 61 8b 5b 92 0c 1b 44 87 2e 71 |.$.CJ.a.[...D..q|
  235. 00000130 65 1a 07 4d 02 af 90 3f 80 4f 04 59 79 eb b9 ac |e..M...?.O.Yy...|
  236. 00000140 dd 21 76 fc d1 26 1b e5 67 7f 5d b5 fb d9 de 12 |.!v..&..g.].....|
  237. 00000150 87 16 9b ab c8 86 36 e8 f0 16 3a 73 8c 86 74 d5 |......6...:s..t.|
  238. 00000160 b7 58 19 50 56 80 c0 b7 f6 5e 38 11 6c 19 d1 a4 |.X.PV....^8.l...|
  239. 00000170 81 3d fb 6d bb 51 02 1d 06 70 a2 51 08 d2 14 c7 |.=.m.Q...p.Q....|
  240. 00000180 15 18 5b f2 e6 2f 19 22 54 81 6b 16 36 57 b2 31 |..[../."T.k.6W.1|
  241. 00000190 b8 e7 54 65 19 5e eb 0c 18 78 a0 ed a1 e4 9c b6 |..Te.^...x......|
  242. 000001a0 d2 7f 79 51 90 3c a4 b6 bf 52 44 2e 19 cb 90 66 |..yQ.<...RD....f|
  243. 000001b0 fd 41 13 17 14 cb 5c 58 95 65 d6 44 a6 07 00 fe |.A....\X.e.D....|
  244. 000001c0 ff ff 82 fe ff ff 02 00 00 00 00 80 62 00 00 00 |............b...|
  245. 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  246. *
  247. 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
  248. 00000200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement