Advertisement
Guest User

Untitled

a guest
Sep 8th, 2011
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.21 KB | None | 0 0
  1. Boot Info Script 0.60 from 17 May 2011
  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. for (,msdos1)/boot/grub on this drive.
  9. => No known boot loader is installed in the MBR of /dev/sdf.
  10.  
  11. sda1: __________________________________________________________________________
  12.  
  13. File system: ext4
  14. Boot sector type: -
  15. Boot sector info:
  16. Operating System: Ubuntu 11.04
  17. Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
  18.  
  19. sda2: __________________________________________________________________________
  20.  
  21. File system: Extended Partition
  22. Boot sector type: Unknown
  23. Boot sector info:
  24.  
  25. sda5: __________________________________________________________________________
  26.  
  27. File system: swap
  28. Boot sector type: -
  29. Boot sector info:
  30.  
  31. sdf1: __________________________________________________________________________
  32.  
  33. File system: ext3
  34. Boot sector type: -
  35. Boot sector info:
  36. Operating System:
  37. Boot files:
  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 Sector End Sector # of Sectors Id System
  49.  
  50. /dev/sda1 * 2,048 150,013,951 150,011,904 83 Linux
  51. /dev/sda2 150,015,998 156,301,311 6,285,314 5 Extended
  52. /dev/sda5 150,016,000 156,301,311 6,285,312 82 Linux swap / Solaris
  53.  
  54.  
  55. Drive: sdf _____________________________________________________________________
  56.  
  57. Disk /dev/sdf: 1000.2 GB, 1000175828992 bytes
  58. 255 heads, 63 sectors/track, 121597 cylinders, total 1953468416 sectors
  59. Units = sectors of 1 * 512 = 512 bytes
  60. Sector size (logical/physical): 512 bytes / 512 bytes
  61.  
  62. Partition Boot Start Sector End Sector # of Sectors Id System
  63.  
  64. /dev/sdf1 * 63 1,953,455,804 1,953,455,742 83 Linux
  65.  
  66.  
  67. "blkid" output: ________________________________________________________________
  68.  
  69. Device UUID TYPE LABEL
  70.  
  71. /dev/sda1 cc50fbef-2fde-45ec-9a16-4d839baa1b2b ext4
  72. /dev/sda5 ba8a4139-bd13-41d5-9b0f-5efdba2a9450 swap
  73. /dev/sdf1 1d112679-6e31-481f-86eb-f7ec25756183 ext3 Server2
  74.  
  75. ================================ Mount points: =================================
  76.  
  77. Device Mount_Point Type Options
  78.  
  79. /dev/sda1 / ext4 (rw,errors=remount-ro,commit=0)
  80. /dev/sdf1 /media/Server2 ext3 (rw,noexec,nosuid,nodev,user=acidrain)
  81.  
  82.  
  83. =========================== sda1/boot/grub/grub.cfg: ===========================
  84.  
  85. --------------------------------------------------------------------------------
  86. #
  87. # DO NOT EDIT THIS FILE
  88. #
  89. # It is automatically generated by grub-mkconfig using templates
  90. # from /etc/grub.d and settings from /etc/default/grub
  91. #
  92.  
  93. ### BEGIN /etc/grub.d/00_header ###
  94. if [ -s $prefix/grubenv ]; then
  95. set have_grubenv=true
  96. load_env
  97. fi
  98. set default="0"
  99. if [ "${prev_saved_entry}" ]; then
  100. set saved_entry="${prev_saved_entry}"
  101. save_env saved_entry
  102. set prev_saved_entry=
  103. save_env prev_saved_entry
  104. set boot_once=true
  105. fi
  106.  
  107. function savedefault {
  108. if [ -z "${boot_once}" ]; then
  109. saved_entry="${chosen}"
  110. save_env saved_entry
  111. fi
  112. }
  113.  
  114. function recordfail {
  115. set recordfail=1
  116. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  117. }
  118.  
  119. function load_video {
  120. insmod vbe
  121. insmod vga
  122. insmod video_bochs
  123. insmod video_cirrus
  124. }
  125.  
  126. insmod part_msdos
  127. insmod ext2
  128. set root='(/dev/sda,msdos1)'
  129. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  130. if loadfont /usr/share/grub/unicode.pf2 ; then
  131. set gfxmode=auto
  132. load_video
  133. insmod gfxterm
  134. fi
  135. terminal_output gfxterm
  136. insmod part_msdos
  137. insmod ext2
  138. set root='(/dev/sda,msdos1)'
  139. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  140. set locale_dir=($root)/boot/grub/locale
  141. set lang=en_US
  142. insmod gettext
  143. if [ "${recordfail}" = 1 ]; then
  144. set timeout=-1
  145. else
  146. set timeout=10
  147. fi
  148. ### END /etc/grub.d/00_header ###
  149.  
  150. ### BEGIN /etc/grub.d/05_debian_theme ###
  151. set menu_color_normal=white/black
  152. set menu_color_highlight=black/light-gray
  153. if background_color 44,0,30; then
  154. clear
  155. fi
  156. ### END /etc/grub.d/05_debian_theme ###
  157.  
  158. ### BEGIN /etc/grub.d/10_linux ###
  159. if [ ${recordfail} != 1 ]; then
  160. if [ -e ${prefix}/gfxblacklist.txt ]; then
  161. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  162. if [ ${match} = 0 ]; then
  163. set linux_gfx_mode=keep
  164. else
  165. set linux_gfx_mode=text
  166. fi
  167. else
  168. set linux_gfx_mode=text
  169. fi
  170. else
  171. set linux_gfx_mode=keep
  172. fi
  173. else
  174. set linux_gfx_mode=text
  175. fi
  176. export linux_gfx_mode
  177. if [ "$linux_gfx_mode" != "text" ]; then load_video; fi
  178. menuentry 'Ubuntu, with Linux 2.6.38-11-generic' --class ubuntu --class gnu-linux --class gnu --class os {
  179. recordfail
  180. set gfxpayload=$linux_gfx_mode
  181. insmod part_msdos
  182. insmod ext2
  183. set root='(/dev/sda,msdos1)'
  184. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  185. linux /boot/vmlinuz-2.6.38-11-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro quiet splash vt.handoff=7
  186. initrd /boot/initrd.img-2.6.38-11-generic
  187. }
  188. menuentry 'Ubuntu, with Linux 2.6.38-11-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
  189. recordfail
  190. set gfxpayload=$linux_gfx_mode
  191. insmod part_msdos
  192. insmod ext2
  193. set root='(/dev/sda,msdos1)'
  194. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  195. echo 'Loading Linux 2.6.38-11-generic ...'
  196. linux /boot/vmlinuz-2.6.38-11-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro single
  197. echo 'Loading initial ramdisk ...'
  198. initrd /boot/initrd.img-2.6.38-11-generic
  199. }
  200. submenu "Previous Linux versions" {
  201. menuentry 'Ubuntu, with Linux 2.6.38-10-generic' --class ubuntu --class gnu-linux --class gnu --class os {
  202. recordfail
  203. set gfxpayload=$linux_gfx_mode
  204. insmod part_msdos
  205. insmod ext2
  206. set root='(/dev/sda,msdos1)'
  207. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  208. linux /boot/vmlinuz-2.6.38-10-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro quiet splash vt.handoff=7
  209. initrd /boot/initrd.img-2.6.38-10-generic
  210. }
  211. menuentry 'Ubuntu, with Linux 2.6.38-10-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
  212. recordfail
  213. set gfxpayload=$linux_gfx_mode
  214. insmod part_msdos
  215. insmod ext2
  216. set root='(/dev/sda,msdos1)'
  217. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  218. echo 'Loading Linux 2.6.38-10-generic ...'
  219. linux /boot/vmlinuz-2.6.38-10-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro single
  220. echo 'Loading initial ramdisk ...'
  221. initrd /boot/initrd.img-2.6.38-10-generic
  222. }
  223. menuentry 'Ubuntu, with Linux 2.6.38-8-generic' --class ubuntu --class gnu-linux --class gnu --class os {
  224. recordfail
  225. set gfxpayload=$linux_gfx_mode
  226. insmod part_msdos
  227. insmod ext2
  228. set root='(/dev/sda,msdos1)'
  229. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  230. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro quiet splash vt.handoff=7
  231. initrd /boot/initrd.img-2.6.38-8-generic
  232. }
  233. menuentry 'Ubuntu, with Linux 2.6.38-8-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
  234. recordfail
  235. set gfxpayload=$linux_gfx_mode
  236. insmod part_msdos
  237. insmod ext2
  238. set root='(/dev/sda,msdos1)'
  239. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  240. echo 'Loading Linux 2.6.38-8-generic ...'
  241. linux /boot/vmlinuz-2.6.38-8-generic root=UUID=cc50fbef-2fde-45ec-9a16-4d839baa1b2b ro single
  242. echo 'Loading initial ramdisk ...'
  243. initrd /boot/initrd.img-2.6.38-8-generic
  244. }
  245. }
  246. ### END /etc/grub.d/10_linux ###
  247.  
  248. ### BEGIN /etc/grub.d/20_linux_xen ###
  249. ### END /etc/grub.d/20_linux_xen ###
  250.  
  251. ### BEGIN /etc/grub.d/20_memtest86+ ###
  252. menuentry "Memory test (memtest86+)" {
  253. insmod part_msdos
  254. insmod ext2
  255. set root='(/dev/sda,msdos1)'
  256. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  257. linux16 /boot/memtest86+.bin
  258. }
  259. menuentry "Memory test (memtest86+, serial console 115200)" {
  260. insmod part_msdos
  261. insmod ext2
  262. set root='(/dev/sda,msdos1)'
  263. search --no-floppy --fs-uuid --set=root cc50fbef-2fde-45ec-9a16-4d839baa1b2b
  264. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  265. }
  266. ### END /etc/grub.d/20_memtest86+ ###
  267.  
  268. ### BEGIN /etc/grub.d/30_os-prober ###
  269. if [ "x${timeout}" != "x-1" ]; then
  270. if keystatus; then
  271. if keystatus --shift; then
  272. set timeout=-1
  273. else
  274. set timeout=0
  275. fi
  276. else
  277. if sleep --interruptible 3 ; then
  278. set timeout=0
  279. fi
  280. fi
  281. fi
  282. ### END /etc/grub.d/30_os-prober ###
  283.  
  284. ### BEGIN /etc/grub.d/40_custom ###
  285. # This file provides an easy way to add custom menu entries. Simply type the
  286. # menu entries you want to add after this comment. Be careful not to change
  287. # the 'exec tail' line above.
  288. ### END /etc/grub.d/40_custom ###
  289.  
  290. ### BEGIN /etc/grub.d/41_custom ###
  291. if [ -f $prefix/custom.cfg ]; then
  292. source $prefix/custom.cfg;
  293. fi
  294. ### END /etc/grub.d/41_custom ###
  295. --------------------------------------------------------------------------------
  296.  
  297. =============================== sda1/etc/fstab: ================================
  298.  
  299. --------------------------------------------------------------------------------
  300. # /etc/fstab: static file system information.
  301. #
  302. # Use 'blkid -o value -s UUID' to print the universally unique identifier
  303. # for a device; this may be used with UUID= as a more robust way to name
  304. # devices that works even if disks are added and removed. See fstab(5).
  305. #
  306. # <file system> <mount point> <type> <options> <dump> <pass>
  307. proc /proc proc nodev,noexec,nosuid 0 0
  308. /dev/sda1 / ext4 errors=remount-ro 0 1
  309. UUID=1d112679-6e31-481f-86eb-f7ec25756183 /media/Server2 ext3 user,defaults 0 0
  310. UUID=011e9f71-c1ce-4524-a93d-6f033a956612 /media/Server ext3 user,defaults 0 0
  311. # swap was on /dev/sda5 during installation
  312. UUID=ba8a4139-bd13-41d5-9b0f-5efdba2a9450 none swap sw 0 0
  313. /dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
  314. --------------------------------------------------------------------------------
  315.  
  316. =================== sda1: Location of files loaded by Grub: ====================
  317.  
  318. GiB - GB File Fragment(s)
  319.  
  320. 62.135009766 = 66.716958720 boot/grub/core.img 1
  321. 54.205867767 = 58.203107328 boot/grub/grub.cfg 2
  322. 3.334964752 = 3.580891136 boot/initrd.img-2.6.38-10-generic 2
  323. 33.961532593 = 36.465917952 boot/initrd.img-2.6.38-11-generic 2
  324. 2.381835938 = 2.557476864 boot/initrd.img-2.6.38-8-generic 2
  325. 3.684879303 = 3.956609024 boot/vmlinuz-2.6.38-10-generic 2
  326. 7.587223053 = 8.146718720 boot/vmlinuz-2.6.38-11-generic 2
  327. 62.133281708 = 66.715103232 boot/vmlinuz-2.6.38-8-generic 1
  328. 33.961532593 = 36.465917952 initrd.img 2
  329. 3.334964752 = 3.580891136 initrd.img.old 2
  330. 7.587223053 = 8.146718720 vmlinuz 2
  331. 3.684879303 = 3.956609024 vmlinuz.old 2
  332.  
  333. ======================== Unknown MBRs/Boot Sectors/etc: ========================
  334.  
  335. Unknown MBR on /dev/sdf
  336.  
  337. 00000000 eb 58 90 6d 6b 64 6f 73 66 73 00 00 02 20 20 00 |.X.mkdosfs... .|
  338. 00000010 02 00 00 00 00 f8 00 00 3f 00 ff 00 00 00 00 00 |........?.......|
  339. 00000020 00 90 6f 74 11 46 07 00 00 00 00 00 02 00 00 00 |..ot.F..........|
  340. 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  341. 00000040 00 00 29 0c 7f dc 8d 53 65 72 76 65 72 32 20 20 |..)....Server2 |
  342. 00000050 20 20 46 41 54 33 32 20 20 20 0e 1f be 77 7c ac | FAT32 ...w|.|
  343. 00000060 22 c0 74 0b 56 b4 0e bb 07 00 cd 10 5e eb f0 32 |".t.V.......^..2|
  344. 00000070 e4 cd 16 cd 19 eb fe 54 68 69 73 20 69 73 20 6e |.......This is n|
  345. 00000080 6f 74 20 61 20 62 6f 6f 74 61 62 6c 65 20 64 69 |ot a bootable di|
  346. 00000090 73 6b 2e 20 20 50 6c 65 61 73 65 20 69 6e 73 65 |sk. Please inse|
  347. 000000a0 72 74 20 61 20 62 6f 6f 74 61 62 6c 65 20 66 6c |rt a bootable fl|
  348. 000000b0 6f 70 70 79 20 61 6e 64 0d 0a 70 72 65 73 73 20 |oppy and..press |
  349. 000000c0 61 6e 79 20 6b 65 79 20 74 6f 20 74 72 79 20 61 |any key to try a|
  350. 000000d0 67 61 69 6e 20 2e 2e 2e 20 0d 0a 00 00 00 00 00 |gain ... .......|
  351. 000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  352. 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  353. 00000100 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  354. 00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  355. 00000120 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  356. 00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  357. 00000140 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  358. 00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  359. 00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  360. 00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  361. 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  362. 00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  363. 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  364. 000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 01 |................|
  365. 000001c0 01 00 83 fe ff ff 3f 00 00 00 7e 5e 6f 74 00 00 |......?...~^ot..|
  366. 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  367. 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  368. 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
  369. 00000200
  370.  
  371. Unknown BootLoader on sda2
  372.  
  373. 00000000 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 |EFGHIJKLMNOPQRST|
  374. 00000010 55 56 57 58 59 5a 61 62 63 64 65 66 67 68 69 6a |UVWXYZabcdefghij|
  375. 00000020 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a |klmnopqrstuvwxyz|
  376. 00000030 30 31 32 33 34 35 36 37 38 39 2b 2f 3d 00 00 00 |0123456789+/=...|
  377. 00000040 04 b2 ff ff d4 b0 ff ff fc b1 ff ff f4 b1 ff ff |................|
  378. 00000050 ec b1 ff ff e4 b1 ff ff dc b1 ff ff d4 b1 ff ff |................|
  379. 00000060 cc b1 ff ff c4 b1 ff ff bc b1 ff ff b4 b1 ff ff |................|
  380. 00000070 ac b1 ff ff a4 b1 ff ff 9c b1 ff ff 94 b1 ff ff |................|
  381. 00000080 8c b1 ff ff 84 b1 ff ff 7c b1 ff ff 74 b1 ff ff |........|...t...|
  382. 00000090 6c b1 ff ff 64 b1 ff ff 5c b1 ff ff 54 b1 ff ff |l...d...\...T...|
  383. 000000a0 4c b1 ff ff 44 b1 ff ff 3c b1 ff ff 34 b1 ff ff |L...D...<...4...|
  384. 000000b0 2c b1 ff ff 24 b1 ff ff 1c b1 ff ff 14 b1 ff ff |,...$...........|
  385. 000000c0 0c b1 ff ff 04 b1 ff ff fc b0 ff ff f4 b0 ff ff |................|
  386. 000000d0 ec b0 ff ff e4 b0 ff ff 07 0c 11 16 05 09 0e 14 |................|
  387. 000000e0 04 0b 10 17 06 0a 0f 15 00 00 00 00 00 00 00 00 |................|
  388. 000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  389. 00000100 78 a4 6a d7 56 b7 c7 e8 db 70 20 24 ee ce bd c1 |x.j.V....p $....|
  390. 00000110 af 0f 7c f5 2a c6 87 47 13 46 30 a8 01 95 46 fd |..|.*..G.F0...F.|
  391. 00000120 d8 98 80 69 af f7 44 8b b1 5b ff ff be d7 5c 89 |...i..D..[....\.|
  392. 00000130 22 11 90 6b 93 71 98 fd 8e 43 79 a6 21 08 b4 49 |"..k.q...Cy.!..I|
  393. 00000140 62 25 1e f6 40 b3 40 c0 51 5a 5e 26 aa c7 b6 e9 |b%..@.@.QZ^&....|
  394. 00000150 5d 10 2f d6 53 14 44 02 81 e6 a1 d8 c8 fb d3 e7 |]./.S.D.........|
  395. 00000160 e6 cd e1 21 d6 07 37 c3 87 0d d5 f4 ed 14 5a 45 |...!..7.......ZE|
  396. 00000170 05 e9 e3 a9 f8 a3 ef fc d9 02 6f 67 8a 4c 2a 8d |..........og.L*.|
  397. 00000180 42 39 fa ff 81 f6 71 87 22 61 9d 6d 0c 38 e5 fd |B9....q."a.m.8..|
  398. 00000190 44 ea be a4 a9 cf de 4b 60 4b bb f6 70 bc bf be |D......K`K..p...|
  399. 000001a0 c6 7e 9b 28 fa 27 a1 ea 85 30 ef d4 05 1d 88 04 |.~.(.'...0......|
  400. 000001b0 39 d0 d4 d9 e5 99 db e6 f8 7c a2 1f 65 56 00 fe |9........|..eV..|
  401. 000001c0 ff ff 82 fe ff ff 02 00 00 00 00 e8 5f 00 00 00 |............_...|
  402. 000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  403. *
  404. 000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
  405. 00000200
  406.  
  407.  
  408. ========= Devices which don't seem to have a corresponding hard drive: =========
  409.  
  410. sdb sdc sdd sde
  411.  
  412. =============================== StdErr Messages: ===============================
  413.  
  414. unlzma: Decoder error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement