1. Boot Info Script cfd9efe + Boot-Repair extra info [Boot-Info 26Apr2016]
  2. ============================= Boot Info Summary: ===============================
  3. => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of
  4. the same hard drive for core.img. core.img is at this location and looks
  5. for (,msdos1)/boot/grub. It also embeds following components:
  6. modules
  7. ---------------------------------------------------------------------------
  8. fshelp ext2 part_msdos biosdisk
  9. ---------------------------------------------------------------------------
  10. sda1: __________________________________________________________________________
  11. File system: ext4
  12. Boot sector type: -
  13. Boot sector info:
  14. Operating System: Ubuntu 17.04
  15. Boot files: /boot/grub/grub.cfg /etc/fstab
  16. /boot/grub/i386-pc/core.img
  17. ============================ Drive/Partition Info: =============================
  18. Drive: sda _____________________________________________________________________
  19. Disk /dev/sda: 16 GiB, 17179869184 bytes, 33554432 sectors
  20. Units: sectors of 1 * 512 = 512 bytes
  21. Sector size (logical/physical): 512 bytes / 512 bytes
  22. I/O size (minimum/optimal): 512 bytes / 512 bytes
  23. Disklabel type: dos
  24. Partition Boot Start Sector End Sector # of Sectors Id System
  25. /dev/sda1 * 2,048 33,552,383 33,550,336 83 Linux
  26. "blkid" output: ________________________________________________________________
  27. Device UUID TYPE LABEL
  28. /dev/sda1 db309f02-8031-4399-bfa5-ea47608c4fb8 ext4
  29. ========================= "ls -l /dev/disk/by-id" output: ======================
  30. total 0
  31. lrwxrwxrwx 1 root root 9 Apr 15 15:29 ata-VBOX_CD-ROM_VB2-01700376 -> ../../sr0
  32. lrwxrwxrwx 1 root root 9 Apr 15 15:36 ata-VBOX_HARDDISK_VB7b083b6c-4198cfbb -> ../../sda
  33. lrwxrwxrwx 1 root root 10 Apr 15 15:36 ata-VBOX_HARDDISK_VB7b083b6c-4198cfbb-part1 -> ../../sda1
  34. ================================ Mount points: =================================
  35. Device Mount_Point Type Options
  36. /dev/sda1 / ext4 (rw,relatime,errors=remount-ro,data=ordered)
  37. =========================== sda1/boot/grub/grub.cfg: ===========================
  38. --------------------------------------------------------------------------------
  39. #
  40. # DO NOT EDIT THIS FILE
  41. #
  42. # It is automatically generated by grub-mkconfig using templates
  43. # from /etc/grub.d and settings from /etc/default/grub
  44. #
  45. ### BEGIN /etc/grub.d/00_header ###
  46. if [ -s $prefix/grubenv ]; then
  47. set have_grubenv=true
  48. load_env
  49. fi
  50. if [ "${next_entry}" ] ; then
  51. set default="${next_entry}"
  52. set next_entry=
  53. save_env next_entry
  54. set boot_once=true
  55. else
  56. set default="0"
  57. fi
  58. if [ x"${feature_menuentry_id}" = xy ]; then
  59. menuentry_id_option="--id"
  60. else
  61. menuentry_id_option=""
  62. fi
  63. export menuentry_id_option
  64. if [ "${prev_saved_entry}" ]; then
  65. set saved_entry="${prev_saved_entry}"
  66. save_env saved_entry
  67. set prev_saved_entry=
  68. save_env prev_saved_entry
  69. set boot_once=true
  70. fi
  71. function savedefault {
  72. if [ -z "${boot_once}" ]; then
  73. saved_entry="${chosen}"
  74. save_env saved_entry
  75. fi
  76. }
  77. function recordfail {
  78. set recordfail=1
  79. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  80. }
  81. function load_video {
  82. if [ x$feature_all_video_module = xy ]; then
  83. insmod all_video
  84. else
  85. insmod efi_gop
  86. insmod efi_uga
  87. insmod ieee1275_fb
  88. insmod vbe
  89. insmod vga
  90. insmod video_bochs
  91. insmod video_cirrus
  92. fi
  93. }
  94. if [ x$feature_default_font_path = xy ] ; then
  95. font=unicode
  96. else
  97. insmod part_msdos
  98. insmod ext2
  99. set root='hd0,msdos1'
  100. if [ x$feature_platform_search_hint = xy ]; then
  101. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  102. else
  103. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  104. fi
  105. font="/usr/share/grub/unicode.pf2"
  106. fi
  107. if loadfont $font ; then
  108. set gfxmode=auto
  109. load_video
  110. insmod gfxterm
  111. set locale_dir=$prefix/locale
  112. set lang=en_CA
  113. insmod gettext
  114. fi
  115. terminal_output gfxterm
  116. if [ "${recordfail}" = 1 ] ; then
  117. set timeout=30
  118. else
  119. if [ x$feature_timeout_style = xy ] ; then
  120. set timeout_style=hidden
  121. set timeout=0
  122. # Fallback hidden-timeout code in case the timeout_style feature is
  123. # unavailable.
  124. elif sleep --interruptible 0 ; then
  125. set timeout=0
  126. fi
  127. fi
  128. ### END /etc/grub.d/00_header ###
  129. ### BEGIN /etc/grub.d/05_debian_theme ###
  130. set menu_color_normal=white/black
  131. set menu_color_highlight=black/light-gray
  132. if background_color 44,0,30,0; then
  133. clear
  134. fi
  135. ### END /etc/grub.d/05_debian_theme ###
  136. ### BEGIN /etc/grub.d/10_linux ###
  137. function gfxmode {
  138. set gfxpayload="${1}"
  139. if [ "${1}" = "keep" ]; then
  140. set vt_handoff=vt.handoff=7
  141. else
  142. set vt_handoff=
  143. fi
  144. }
  145. if [ "${recordfail}" != 1 ]; then
  146. if [ -e ${prefix}/gfxblacklist.txt ]; then
  147. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  148. if [ ${match} = 0 ]; then
  149. set linux_gfx_mode=keep
  150. else
  151. set linux_gfx_mode=text
  152. fi
  153. else
  154. set linux_gfx_mode=text
  155. fi
  156. else
  157. set linux_gfx_mode=keep
  158. fi
  159. else
  160. set linux_gfx_mode=text
  161. fi
  162. export linux_gfx_mode
  163. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  164. recordfail
  165. load_video
  166. gfxmode $linux_gfx_mode
  167. insmod gzio
  168. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  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 db309f02-8031-4399-bfa5-ea47608c4fb8
  174. else
  175. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  176. fi
  177. linux /boot/vmlinuz-4.10.0-19-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff
  178. initrd /boot/initrd.img-4.10.0-19-generic
  179. }
  180. submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  181. menuentry 'Ubuntu, with Linux 4.10.0-19-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-advanced-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  182. recordfail
  183. load_video
  184. gfxmode $linux_gfx_mode
  185. insmod gzio
  186. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  187. insmod part_msdos
  188. insmod ext2
  189. set root='hd0,msdos1'
  190. if [ x$feature_platform_search_hint = xy ]; then
  191. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  192. else
  193. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  194. fi
  195. echo 'Loading Linux 4.10.0-19-generic ...'
  196. linux /boot/vmlinuz-4.10.0-19-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff
  197. echo 'Loading initial ramdisk ...'
  198. initrd /boot/initrd.img-4.10.0-19-generic
  199. }
  200. menuentry 'Ubuntu, with Linux 4.10.0-19-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-init-upstart-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  201. recordfail
  202. load_video
  203. gfxmode $linux_gfx_mode
  204. insmod gzio
  205. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  206. insmod part_msdos
  207. insmod ext2
  208. set root='hd0,msdos1'
  209. if [ x$feature_platform_search_hint = xy ]; then
  210. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  211. else
  212. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  213. fi
  214. echo 'Loading Linux 4.10.0-19-generic ...'
  215. linux /boot/vmlinuz-4.10.0-19-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff init=/sbin/upstart
  216. echo 'Loading initial ramdisk ...'
  217. initrd /boot/initrd.img-4.10.0-19-generic
  218. }
  219. menuentry 'Ubuntu, with Linux 4.10.0-19-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-19-generic-recovery-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  220. recordfail
  221. load_video
  222. insmod gzio
  223. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  224. insmod part_msdos
  225. insmod ext2
  226. set root='hd0,msdos1'
  227. if [ x$feature_platform_search_hint = xy ]; then
  228. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  229. else
  230. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  231. fi
  232. echo 'Loading Linux 4.10.0-19-generic ...'
  233. linux /boot/vmlinuz-4.10.0-19-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro recovery nomodeset
  234. echo 'Loading initial ramdisk ...'
  235. initrd /boot/initrd.img-4.10.0-19-generic
  236. }
  237. menuentry 'Ubuntu, with Linux 4.10.0-15-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-15-generic-advanced-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  238. recordfail
  239. load_video
  240. gfxmode $linux_gfx_mode
  241. insmod gzio
  242. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  243. insmod part_msdos
  244. insmod ext2
  245. set root='hd0,msdos1'
  246. if [ x$feature_platform_search_hint = xy ]; then
  247. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  248. else
  249. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  250. fi
  251. echo 'Loading Linux 4.10.0-15-generic ...'
  252. linux /boot/vmlinuz-4.10.0-15-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff
  253. echo 'Loading initial ramdisk ...'
  254. initrd /boot/initrd.img-4.10.0-15-generic
  255. }
  256. menuentry 'Ubuntu, with Linux 4.10.0-15-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-15-generic-init-upstart-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  257. recordfail
  258. load_video
  259. gfxmode $linux_gfx_mode
  260. insmod gzio
  261. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  262. insmod part_msdos
  263. insmod ext2
  264. set root='hd0,msdos1'
  265. if [ x$feature_platform_search_hint = xy ]; then
  266. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  267. else
  268. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  269. fi
  270. echo 'Loading Linux 4.10.0-15-generic ...'
  271. linux /boot/vmlinuz-4.10.0-15-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff init=/sbin/upstart
  272. echo 'Loading initial ramdisk ...'
  273. initrd /boot/initrd.img-4.10.0-15-generic
  274. }
  275. menuentry 'Ubuntu, with Linux 4.10.0-15-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-15-generic-recovery-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  276. recordfail
  277. load_video
  278. insmod gzio
  279. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  280. insmod part_msdos
  281. insmod ext2
  282. set root='hd0,msdos1'
  283. if [ x$feature_platform_search_hint = xy ]; then
  284. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  285. else
  286. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  287. fi
  288. echo 'Loading Linux 4.10.0-15-generic ...'
  289. linux /boot/vmlinuz-4.10.0-15-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro recovery nomodeset
  290. echo 'Loading initial ramdisk ...'
  291. initrd /boot/initrd.img-4.10.0-15-generic
  292. }
  293. menuentry 'Ubuntu, with Linux 4.10.0-13-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-13-generic-advanced-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  294. recordfail
  295. load_video
  296. gfxmode $linux_gfx_mode
  297. insmod gzio
  298. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  299. insmod part_msdos
  300. insmod ext2
  301. set root='hd0,msdos1'
  302. if [ x$feature_platform_search_hint = xy ]; then
  303. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  304. else
  305. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  306. fi
  307. echo 'Loading Linux 4.10.0-13-generic ...'
  308. linux /boot/vmlinuz-4.10.0-13-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff
  309. echo 'Loading initial ramdisk ...'
  310. initrd /boot/initrd.img-4.10.0-13-generic
  311. }
  312. menuentry 'Ubuntu, with Linux 4.10.0-13-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-13-generic-init-upstart-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  313. recordfail
  314. load_video
  315. gfxmode $linux_gfx_mode
  316. insmod gzio
  317. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  318. insmod part_msdos
  319. insmod ext2
  320. set root='hd0,msdos1'
  321. if [ x$feature_platform_search_hint = xy ]; then
  322. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  323. else
  324. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  325. fi
  326. echo 'Loading Linux 4.10.0-13-generic ...'
  327. linux /boot/vmlinuz-4.10.0-13-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash $vt_handoff init=/sbin/upstart
  328. echo 'Loading initial ramdisk ...'
  329. initrd /boot/initrd.img-4.10.0-13-generic
  330. }
  331. menuentry 'Ubuntu, with Linux 4.10.0-13-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.10.0-13-generic-recovery-db309f02-8031-4399-bfa5-ea47608c4fb8' {
  332. recordfail
  333. load_video
  334. insmod gzio
  335. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  336. insmod part_msdos
  337. insmod ext2
  338. set root='hd0,msdos1'
  339. if [ x$feature_platform_search_hint = xy ]; then
  340. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  341. else
  342. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  343. fi
  344. echo 'Loading Linux 4.10.0-13-generic ...'
  345. linux /boot/vmlinuz-4.10.0-13-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro recovery nomodeset
  346. echo 'Loading initial ramdisk ...'
  347. initrd /boot/initrd.img-4.10.0-13-generic
  348. }
  349. }
  350. ### END /etc/grub.d/10_linux ###
  351. ### BEGIN /etc/grub.d/20_linux_xen ###
  352. ### END /etc/grub.d/20_linux_xen ###
  353. ### BEGIN /etc/grub.d/20_memtest86+ ###
  354. menuentry 'Memory test (memtest86+)' {
  355. insmod part_msdos
  356. insmod ext2
  357. set root='hd0,msdos1'
  358. if [ x$feature_platform_search_hint = xy ]; then
  359. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  360. else
  361. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  362. fi
  363. knetbsd /boot/memtest86+.elf
  364. }
  365. menuentry 'Memory test (memtest86+, serial console 115200)' {
  366. insmod part_msdos
  367. insmod ext2
  368. set root='hd0,msdos1'
  369. if [ x$feature_platform_search_hint = xy ]; then
  370. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 db309f02-8031-4399-bfa5-ea47608c4fb8
  371. else
  372. search --no-floppy --fs-uuid --set=root db309f02-8031-4399-bfa5-ea47608c4fb8
  373. fi
  374. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  375. }
  376. ### END /etc/grub.d/20_memtest86+ ###
  377. ### BEGIN /etc/grub.d/30_os-prober ###
  378. ### END /etc/grub.d/30_os-prober ###
  379. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  380. ### END /etc/grub.d/30_uefi-firmware ###
  381. ### BEGIN /etc/grub.d/40_custom ###
  382. # This file provides an easy way to add custom menu entries. Simply type the
  383. # menu entries you want to add after this comment. Be careful not to change
  384. # the 'exec tail' line above.
  385. ### END /etc/grub.d/40_custom ###
  386. ### BEGIN /etc/grub.d/41_custom ###
  387. if [ -f ${config_directory}/custom.cfg ]; then
  388. source ${config_directory}/custom.cfg
  389. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  390. source $prefix/custom.cfg;
  391. fi
  392. ### END /etc/grub.d/41_custom ###
  393. --------------------------------------------------------------------------------
  394. =============================== sda1/etc/fstab: ================================
  395. --------------------------------------------------------------------------------
  396. # /etc/fstab: static file system information.
  397. #
  398. # Use 'blkid' to print the universally unique identifier for a
  399. # device; this may be used with UUID= as a more robust way to name devices
  400. # that works even if disks are added and removed. See fstab(5).
  401. #
  402. # <file system> <mount point> <type> <options> <dump> <pass>
  403. # / was on /dev/sda1 during installation
  404. UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 / ext4 errors=remount-ro 0 1
  405. /swapfile none swap sw 0 0
  406. --------------------------------------------------------------------------------
  407. =================== sda1: Location of files loaded by Grub: ====================
  408. GiB - GB File Fragment(s)
  409. 10.347019196 = 11.110027264 boot/grub/grub.cfg 1
  410. 10.346931458 = 11.109933056 boot/grub/i386-pc/core.img 1
  411. 3.156452179 = 3.389214720 boot/vmlinuz-4.10.0-13-generic 1
  412. 7.084163666 = 7.606562816 boot/vmlinuz-4.10.0-15-generic 1
  413. 8.920471191 = 9.578283008 boot/vmlinuz-4.10.0-19-generic 1
  414. 8.920471191 = 9.578283008 vmlinuz 1
  415. 7.084163666 = 7.606562816 vmlinuz.old 1
  416. 6.649631500 = 7.139987456 boot/initrd.img-4.10.0-13-generic 2
  417. 7.790966034 = 8.365486080 boot/initrd.img-4.10.0-15-generic 2
  418. 12.624004364 = 13.554921472 boot/initrd.img-4.10.0-19-generic 4
  419. 12.624004364 = 13.554921472 initrd.img 4
  420. 7.790966034 = 8.365486080 initrd.img.old 2
  421. ADDITIONAL INFORMATION :
  422. =================== log of boot-repair 2017-04-15__15h36 ===================
  423. boot-repair version : 4ppa40
  424. boot-sav version : 4ppa40
  425. glade2script version : 3.2.3~ppa1
  426. boot-sav-extra version : 4ppa40
  427. boot-repair is executed in installed-session (Ubuntu 17.04, zesty, Ubuntu, x86_64)
  428. CPU op-mode(s): 32-bit, 64-bit
  429. BOOT_IMAGE=/boot/vmlinuz-4.10.0-19-generic root=UUID=db309f02-8031-4399-bfa5-ea47608c4fb8 ro quiet splash
  430. =================== os-prober:
  431. /dev/sda1:The OS now in use - Ubuntu 17.04 CurrentSession:linux
  432. =================== blkid:
  433. /dev/sda1: UUID="db309f02-8031-4399-bfa5-ea47608c4fb8" TYPE="ext4" PARTUUID="4d494100-01"
  434. 1 disks with OS, 1 OS : 1 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
  435. =================== /etc/grub.d/ :
  436. drwxr-xr-x 2 root root 4096 Apr 9 14:32 grub.d
  437. total 80
  438. -rwxr-xr-x 1 root root 9783 Feb 9 12:06 00_header
  439. -rwxr-xr-x 1 root root 6258 Nov 1 07:05 05_debian_theme
  440. -rwxr-xr-x 1 root root 12676 Feb 9 12:06 10_linux
  441. -rwxr-xr-x 1 root root 11281 Feb 9 12:06 20_linux_xen
  442. -rwxr-xr-x 1 root root 1992 Jan 28 2016 20_memtest86+
  443. -rwxr-xr-x 1 root root 12059 Feb 9 12:06 30_os-prober
  444. -rwxr-xr-x 1 root root 1418 Feb 9 12:06 30_uefi-firmware
  445. -rwxr-xr-x 1 root root 214 Feb 9 12:06 40_custom
  446. -rwxr-xr-x 1 root root 216 Feb 9 12:06 41_custom
  447. -rw-r--r-- 1 root root 483 Feb 9 12:06 README
  448. =================== /etc/default/grub :
  449. # If you change this file, run 'update-grub' afterwards to update
  450. # /boot/grub/grub.cfg.
  451. # For full documentation of the options in this file, see:
  452. # info -f grub -n 'Simple configuration'
  453. GRUB_DEFAULT=0
  454. GRUB_HIDDEN_TIMEOUT=0
  455. GRUB_HIDDEN_TIMEOUT_QUIET=true
  456. GRUB_TIMEOUT=10
  457. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  458. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  459. GRUB_CMDLINE_LINUX=""
  460. # Uncomment to enable BadRAM filtering, modify to suit your needs
  461. # This works with Linux (no patch required) and with any kernel that obtains
  462. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  463. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  464. # Uncomment to disable graphical terminal (grub-pc only)
  465. #GRUB_TERMINAL=console
  466. # The resolution used on graphical terminal
  467. # note that you can use only modes which your graphic card supports via VBE
  468. # you can see them in real GRUB with the command `vbeinfo'
  469. #GRUB_GFXMODE=640x480
  470. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  471. #GRUB_DISABLE_LINUX_UUID=true
  472. # Uncomment to disable generation of recovery mode menu entries
  473. #GRUB_DISABLE_RECOVERY="true"
  474. # Uncomment to get a beep at grub start
  475. #GRUB_INIT_TUNE="480 440 1"
  476. =================== UEFI/Legacy mode:
  477. This installed-session is not in EFI-mode.
  478. SecureBoot disabled.
  479. =================== PARTITIONS & DISKS:
  480. sda1 : sda, not-sepboot, grubenv-ok grub2, signed grub-pc , update-grub, 64, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-without-efi, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, apt-get, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, not-far, .
  481. sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
  482. =================== parted -l:
  483. Model: ATA VBOX HARDDISK (scsi)
  484. Disk /dev/sda: 17.2GB
  485. Sector size (logical/physical): 512B/512B
  486. Partition Table: msdos
  487. Disk Flags:
  488. Number Start End Size Type File system Flags
  489. 1 1049kB 17.2GB 17.2GB primary ext4 boot
  490. =================== parted -lm:
  491. BYT;
  492. /dev/sda:17.2GB:scsi:512:512:msdos:ATA VBOX HARDDISK:;
  493. 1:1049kB:17.2GB:17.2GB:ext4::boot;
  494. =================== lsblk:
  495. KNAME TYPE FSTYPE SIZE LABEL
  496. sda disk 16G
  497. sda1 part ext4 16G
  498. sr0 rom 1024M
  499. KNAME ROTA RO RM STATE MOUNTPOINT
  500. sda 1 0 0 running
  501. sda1 1 0 0 /
  502. sr0 1 0 1 running
  503. =================== mount:
  504. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  505. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  506. udev on /dev type devtmpfs (rw,nosuid,relatime,size=1000096k,nr_inodes=250024,mode=755)
  507. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  508. tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=204584k,mode=755)
  509. /dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
  510. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  511. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  512. tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
  513. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  514. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
  515. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  516. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
  517. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  518. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
  519. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  520. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
  521. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  522. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  523. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  524. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
  525. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  526. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=28,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1896)
  527. mqueue on /dev/mqueue type mqueue (rw,relatime)
  528. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  529. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  530. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  531. lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
  532. tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=204580k,mode=700,uid=1000,gid=1000)
  533. gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
  534. =================== ls:
  535. /sys/block/sda (filtered): alignment_offset badblocks bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 size slaves stat subsystem trace uevent
  536. /sys/block/sr0 (filtered): alignment_offset badblocks bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro size slaves stat subsystem trace uevent
  537. /dev (filtered): autofs block bsg btrfs-control bus cdrom char console core cpu_dma_latency cuse disk dri dvd ecryptfs fb0 fd full fuse hidraw0 hpet hugepages hwrng i2c-0 initctl input kmsg lightnvm log mapper mcelog mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sg0 sg1 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom userio vboxguest vboxuser vfio vga_arbiter vhci vhost-net zero
  538. ls /dev/mapper: control
  539. ls: cannot access '': No such file or directory
  540. =================== df -Th:
  541. Filesystem Type Size Used Avail Use% Mounted on
  542. udev devtmpfs 977M 0 977M 0% /dev
  543. tmpfs tmpfs 200M 6.4M 194M 4% /run
  544. /dev/sda1 ext4 16G 7.3G 7.7G 49% /
  545. tmpfs tmpfs 999M 12K 999M 1% /dev/shm
  546. tmpfs tmpfs 5.0M 4.0K 5.0M 1% /run/lock
  547. tmpfs tmpfs 999M 0 999M 0% /sys/fs/cgroup
  548. tmpfs tmpfs 200M 164K 200M 1% /run/user/1000
  549. =================== fdisk -l:
  550. Disk /dev/sda: 16 GiB, 17179869184 bytes, 33554432 sectors
  551. Units: sectors of 1 * 512 = 512 bytes
  552. Sector size (logical/physical): 512 bytes / 512 bytes
  553. I/O size (minimum/optimal): 512 bytes / 512 bytes
  554. Disklabel type: dos
  555. Disk identifier: 0x4d494100
  556. Device Boot Start End Sectors Size Id Type
  557. /dev/sda1 * 2048 33552383 33550336 16G 83 Linux
  558. =================== Suggested repair
  559. The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda1 into the MBR of sda.
  560. Additional repair would be performed: unhide-bootmenu-10s
  561. =================== User settings
  562. The settings chosen by the user will not act on the boot.
  563. paste.ubuntu.com ko (), using paste.debian
  564. paste.debian.net ko (), using paste2