Guest User

Untitled

a guest
Oct 31st, 2017
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.30 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.  
  10. sda1: __________________________________________________________________________
  11.  
  12. File system: ext4
  13. Boot sector type: -
  14. Boot sector info:
  15. Operating System:
  16. Boot files: /boot/grub/grub.cfg /etc/fstab
  17.  
  18. sda2: __________________________________________________________________________
  19.  
  20. File system: ext4
  21. Boot sector type: Unknown
  22. Boot sector info:
  23. Mounting failed: mount: mount /dev/sda2 on /tmp/BootInfo-AqFrosid/sda2 failed: Stale file handle
  24.  
  25. sda3: __________________________________________________________________________
  26.  
  27. File system: swap
  28. Boot sector type: -
  29. Boot sector info:
  30.  
  31. ============================ Drive/Partition Info: =============================
  32.  
  33. Drive: sda _____________________________________________________________________
  34.  
  35. Disk /dev/sda: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
  36. Units: sectors of 1 * 512 = 512 bytes
  37. Sector size (logical/physical): 512 bytes / 512 bytes
  38. I/O size (minimum/optimal): 512 bytes / 512 bytes
  39.  
  40. Partition Boot Start Sector End Sector # of Sectors Id System
  41.  
  42. /dev/sda1 * 4,096 2,048,002,047 2,047,997,952 83 Linux
  43. /dev/sda2 2,048,002,048 3,905,974,271 1,857,972,224 83 Linux
  44. /dev/sda3 3,905,974,272 3,907,020,799 1,046,528 82 Linux swap / Solaris
  45.  
  46.  
  47. "blkid" output: ________________________________________________________________
  48.  
  49. Device UUID TYPE LABEL
  50.  
  51. /dev/sda1 c2167a96-bcae-4942-b79f-4a5191aeacd9 ext4 /
  52. /dev/sda2 c7c2d9de-bb1c-4acb-a694-999607f12283 ext4 /rdp
  53. /dev/sda3 4f789ede-bf87-45a0-a8e0-ca60d3ed2019 swap swap-sda3
  54.  
  55. ================================ Mount points: =================================
  56.  
  57. Device Mount_Point Type Options
  58.  
  59.  
  60.  
  61. =========================== sda1/boot/grub/grub.cfg: ===========================
  62.  
  63. --------------------------------------------------------------------------------
  64. #
  65. # DO NOT EDIT THIS FILE
  66. #
  67. # It is automatically generated by grub-mkconfig using templates
  68. # from /etc/grub.d and settings from /etc/default/grub
  69. #
  70.  
  71. ### BEGIN /etc/grub.d/00_header ###
  72. if [ -s $prefix/grubenv ]; then
  73. set have_grubenv=true
  74. load_env
  75. fi
  76. if [ "${next_entry}" ] ; then
  77. set default="${next_entry}"
  78. set next_entry=
  79. save_env next_entry
  80. set boot_once=true
  81. else
  82. set default="0"
  83. fi
  84.  
  85. if [ x"${feature_menuentry_id}" = xy ]; then
  86. menuentry_id_option="--id"
  87. else
  88. menuentry_id_option=""
  89. fi
  90.  
  91. export menuentry_id_option
  92.  
  93. if [ "${prev_saved_entry}" ]; then
  94. set saved_entry="${prev_saved_entry}"
  95. save_env saved_entry
  96. set prev_saved_entry=
  97. save_env prev_saved_entry
  98. set boot_once=true
  99. fi
  100.  
  101. function savedefault {
  102. if [ -z "${boot_once}" ]; then
  103. saved_entry="${chosen}"
  104. save_env saved_entry
  105. fi
  106. }
  107. function recordfail {
  108. set recordfail=1
  109. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  110. }
  111. function load_video {
  112. if [ x$feature_all_video_module = xy ]; then
  113. insmod all_video
  114. else
  115. insmod efi_gop
  116. insmod efi_uga
  117. insmod ieee1275_fb
  118. insmod vbe
  119. insmod vga
  120. insmod video_bochs
  121. insmod video_cirrus
  122. fi
  123. }
  124.  
  125. if [ x$feature_default_font_path = xy ] ; then
  126. font=unicode
  127. else
  128. insmod part_msdos
  129. insmod ext2
  130. set root='hd0,msdos1'
  131. if [ x$feature_platform_search_hint = xy ]; then
  132. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 c2167a96-bcae-4942-b79f-4a5191aeacd9
  133. else
  134. search --no-floppy --fs-uuid --set=root c2167a96-bcae-4942-b79f-4a5191aeacd9
  135. fi
  136. font="/usr/share/grub/unicode.pf2"
  137. fi
  138.  
  139. if loadfont $font ; then
  140. set gfxmode=auto
  141. load_video
  142. insmod gfxterm
  143. set locale_dir=$prefix/locale
  144. set lang=en_US
  145. insmod gettext
  146. fi
  147. terminal_output gfxterm
  148. if [ "${recordfail}" = 1 ] ; then
  149. set timeout=30
  150. else
  151. if [ x$feature_timeout_style = xy ] ; then
  152. set timeout_style=menu
  153. set timeout=2
  154. # Fallback normal timeout code in case the timeout_style feature is
  155. # unavailable.
  156. else
  157. set timeout=2
  158. fi
  159. fi
  160. ### END /etc/grub.d/00_header ###
  161.  
  162. ### BEGIN /etc/grub.d/05_debian_theme ###
  163. set menu_color_normal=white/black
  164. set menu_color_highlight=black/light-gray
  165. ### END /etc/grub.d/05_debian_theme ###
  166.  
  167. ### BEGIN /etc/grub.d/06_OVHkernel ###
  168. menuentry "GNU/Linux with OVH Kernel, OVH kernel 3.14.32-xxxx-grs-ipv6-64" {
  169. insmod part_msdos
  170. insmod ext2
  171. set root='hd0,msdos1'
  172. if [ x$feature_platform_search_hint = xy ]; then
  173. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 c2167a96-bcae-4942-b79f-4a5191aeacd9
  174. else
  175. search --no-floppy --fs-uuid --set=root c2167a96-bcae-4942-b79f-4a5191aeacd9
  176. fi
  177. linux /boot/bzImage-3.14.32-xxxx-grs-ipv6-64 root=/dev/sda1 ro nomdmonddf nomdmonisw nomdmonddf nomdmonisw
  178. }
  179. ### END /etc/grub.d/06_OVHkernel ###
  180.  
  181. ### BEGIN /etc/grub.d/10_linux ###
  182. function gfxmode {
  183. set gfxpayload="${1}"
  184. if [ "${1}" = "keep" ]; then
  185. set vt_handoff=vt.handoff=7
  186. else
  187. set vt_handoff=
  188. fi
  189. }
  190. if [ "${recordfail}" != 1 ]; then
  191. if [ -e ${prefix}/gfxblacklist.txt ]; then
  192. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  193. if [ ${match} = 0 ]; then
  194. set linux_gfx_mode=keep
  195. else
  196. set linux_gfx_mode=text
  197. fi
  198. else
  199. set linux_gfx_mode=text
  200. fi
  201. else
  202. set linux_gfx_mode=keep
  203. fi
  204. else
  205. set linux_gfx_mode=text
  206. fi
  207. export linux_gfx_mode
  208.  
  209. ### END /etc/grub.d/10_linux ###
  210.  
  211. ### BEGIN /etc/grub.d/20_linux_xen ###
  212. ### END /etc/grub.d/20_linux_xen ###
  213.  
  214. ### BEGIN /etc/grub.d/30_os-prober ###
  215. ### END /etc/grub.d/30_os-prober ###
  216.  
  217. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  218. ### END /etc/grub.d/30_uefi-firmware ###
  219.  
  220. ### BEGIN /etc/grub.d/40_custom ###
  221. # This file provides an easy way to add custom menu entries. Simply type the
  222. # menu entries you want to add after this comment. Be careful not to change
  223. # the 'exec tail' line above.
  224. ### END /etc/grub.d/40_custom ###
  225.  
  226. ### BEGIN /etc/grub.d/41_custom ###
  227. if [ -f ${config_directory}/custom.cfg ]; then
  228. source ${config_directory}/custom.cfg
  229. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  230. source $prefix/custom.cfg;
  231. fi
  232. ### END /etc/grub.d/41_custom ###
  233. --------------------------------------------------------------------------------
  234.  
  235. =============================== sda1/etc/fstab: ================================
  236.  
  237. --------------------------------------------------------------------------------
  238. # <file system> <mount point> <type> <options> <dump> <pass>
  239. /dev/sda1 / ext4 errors=remount-ro,relatime 0 1
  240. /dev/sda2 /rdp ext4 defaults,relatime 1 2
  241. /dev/sda3 swap swap defaults 0 0
  242. proc /proc proc defaults 0 0
  243. sysfs /sys sysfs defaults 0 0
  244. devtmpfs /dev devtmpfs rw 0 0
  245. --------------------------------------------------------------------------------
  246.  
  247. =================== sda1: Location of files loaded by Grub: ====================
  248.  
  249. GiB - GB File Fragment(s)
  250.  
  251.  
  252. ======================== Unknown MBRs/Boot Sectors/etc: ========================
  253.  
  254. Unknown BootLoader on sda2
  255.  
  256. 00000000 33 c0 8e d0 bc 00 7c 8e c0 8e d8 be 00 7c bf 00 |3.....|......|..|
  257. 00000010 06 b9 00 02 fc f3 a4 50 68 1c 06 cb fb b9 04 00 |.......Ph.......|
  258. 00000020 bd be 07 80 7e 00 00 7c 0b 0f 85 0e 01 83 c5 10 |....~..|........|
  259. 00000030 e2 f1 cd 18 88 56 00 55 c6 46 11 05 c6 46 10 00 |.....V.U.F...F..|
  260. 00000040 b4 41 bb aa 55 cd 13 5d 72 0f 81 fb 55 aa 75 09 |.A..U..]r...U.u.|
  261. 00000050 f7 c1 01 00 74 03 fe 46 10 66 60 80 7e 10 00 74 |....t..F.f`.~..t|
  262. 00000060 26 66 68 00 00 00 00 66 ff 76 08 68 00 00 68 00 |&fh....f.v.h..h.|
  263. 00000070 7c 68 01 00 68 10 00 b4 42 8a 56 00 8b f4 cd 13 ||h..h...B.V.....|
  264. 00000080 9f 83 c4 10 9e eb 14 b8 01 02 bb 00 7c 8a 56 00 |............|.V.|
  265. 00000090 8a 76 01 8a 4e 02 8a 6e 03 cd 13 66 61 73 1c fe |.v..N..n...fas..|
  266. 000000a0 4e 11 75 0c 80 7e 00 80 0f 84 8a 00 b2 80 eb 84 |N.u..~..........|
  267. 000000b0 55 32 e4 8a 56 00 cd 13 5d eb 9e 81 3e fe 7d 55 |U2..V...]...>.}U|
  268. 000000c0 aa 75 6e ff 76 00 e8 8d 00 75 17 fa b0 d1 e6 64 |.un.v....u.....d|
  269. 000000d0 e8 83 00 b0 df e6 60 e8 7c 00 b0 ff e6 64 e8 75 |......`.|....d.u|
  270. 000000e0 00 fb b8 00 bb cd 1a 66 23 c0 75 3b 66 81 fb 54 |.......f#.u;f..T|
  271. 000000f0 43 50 41 75 32 81 f9 02 01 72 2c 66 68 07 bb 00 |CPAu2....r,fh...|
  272. 00000100 00 66 68 00 02 00 00 66 68 08 00 00 00 66 53 66 |.fh....fh....fSf|
  273. 00000110 53 66 55 66 68 00 00 00 00 66 68 00 7c 00 00 66 |SfUfh....fh.|..f|
  274. 00000120 61 68 00 00 07 cd 1a 5a 32 f6 ea 00 7c 00 00 cd |ah.....Z2...|...|
  275. 00000130 18 a0 b7 07 eb 08 a0 b6 07 eb 03 a0 b5 07 32 e4 |..............2.|
  276. 00000140 05 00 07 8b f0 ac 3c 00 74 09 bb 07 00 b4 0e cd |......<.t.......|
  277. 00000150 10 eb f2 f4 eb fd 2b c9 e4 64 eb 00 24 02 e0 f8 |......+..d..$...|
  278. 00000160 24 02 c3 49 6e 76 61 6c 69 64 20 70 61 72 74 69 |$..Invalid parti|
  279. 00000170 74 69 6f 6e 20 74 61 62 6c 65 00 45 72 72 6f 72 |tion table.Error|
  280. 00000180 20 6c 6f 61 64 69 6e 67 20 6f 70 65 72 61 74 69 | loading operati|
  281. 00000190 6e 67 20 73 79 73 74 65 6d 00 4d 69 73 73 69 6e |ng system.Missin|
  282. 000001a0 67 20 6f 70 65 72 61 74 69 6e 67 20 73 79 73 74 |g operating syst|
  283. 000001b0 65 6d 00 00 00 63 7b 9a 6e d8 ca ed 00 00 80 20 |em...c{.n...... |
  284. 000001c0 21 00 07 dd 1e 3f 00 08 00 00 00 a0 0f 00 00 dd |!....?..........|
  285. 000001d0 1f 3f 07 fe ff ff 00 a8 0f 00 00 b8 ae 6e 00 00 |.?...........n..|
  286. 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  287. 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
  288. 00000200
  289.  
  290.  
  291. =============================== StdErr Messages: ===============================
  292.  
  293. cat: /tmp/BootInfo-AqFrosid/Tmp_Log: No such file or directory
  294. No volume groups found
  295. mdadm: No arrays found in config file or automatically
Advertisement
Add Comment
Please, Sign In to add comment