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 16.04.1 LTS
  15. Boot files: /boot/grub/grub.cfg /etc/fstab
  16. /boot/grub/i386-pc/core.img
  17. sda2: __________________________________________________________________________
  18. File system: Extended Partition
  19. Boot sector type: -
  20. Boot sector info:
  21. sda5: __________________________________________________________________________
  22. File system: swap
  23. Boot sector type: -
  24. Boot sector info:
  25. ============================ Drive/Partition Info: =============================
  26. Drive: sda _____________________________________________________________________
  27. Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
  28. Units: sectors of 1 * 512 = 512 bytes
  29. Sector size (logical/physical): 512 bytes / 4096 bytes
  30. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  31. Disklabel type: dos
  32. Partition Boot Start Sector End Sector # of Sectors Id System
  33. /dev/sda1 * 2,048 483,616,767 483,614,720 83 Linux
  34. /dev/sda2 483,618,814 500,117,503 16,498,690 5 Extended
  35. /dev/sda5 483,618,816 500,117,503 16,498,688 82 Linux swap / Solaris
  36. "blkid" output: ________________________________________________________________
  37. Device UUID TYPE LABEL
  38. /dev/sda1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ext4
  39. /dev/sda5 59fe6e06-fcb0-4394-9279-ce2f214ef91c swap
  40. ========================= "ls -l /dev/disk/by-id" output: ======================
  41. total 0
  42. lrwxrwxrwx 1 root root 9 Dec 18 07:43 ata-HFS256G39TND-N210A_FI68N005710508J0P -> ../../sda
  43. lrwxrwxrwx 1 root root 10 Dec 18 07:43 ata-HFS256G39TND-N210A_FI68N005710508J0P-part1 -> ../../sda1
  44. lrwxrwxrwx 1 root root 10 Dec 18 07:43 ata-HFS256G39TND-N210A_FI68N005710508J0P-part2 -> ../../sda2
  45. lrwxrwxrwx 1 root root 10 Dec 18 07:43 ata-HFS256G39TND-N210A_FI68N005710508J0P-part5 -> ../../sda5
  46. ================================ Mount points: =================================
  47. Device Mount_Point Type Options
  48. /dev/sda1 / ext4 (rw,relatime,errors=remount-ro,data=ordered)
  49. =========================== sda1/boot/grub/grub.cfg: ===========================
  50. --------------------------------------------------------------------------------
  51. #
  52. # DO NOT EDIT THIS FILE
  53. #
  54. # It is automatically generated by grub-mkconfig using templates
  55. # from /etc/grub.d and settings from /etc/default/grub
  56. #
  57. ### BEGIN /etc/grub.d/00_header ###
  58. if [ -s $prefix/grubenv ]; then
  59. set have_grubenv=true
  60. load_env
  61. fi
  62. if [ "${next_entry}" ] ; then
  63. set default="${next_entry}"
  64. set next_entry=
  65. save_env next_entry
  66. set boot_once=true
  67. else
  68. set default="0"
  69. fi
  70. if [ x"${feature_menuentry_id}" = xy ]; then
  71. menuentry_id_option="--id"
  72. else
  73. menuentry_id_option=""
  74. fi
  75. export menuentry_id_option
  76. if [ "${prev_saved_entry}" ]; then
  77. set saved_entry="${prev_saved_entry}"
  78. save_env saved_entry
  79. set prev_saved_entry=
  80. save_env prev_saved_entry
  81. set boot_once=true
  82. fi
  83. function savedefault {
  84. if [ -z "${boot_once}" ]; then
  85. saved_entry="${chosen}"
  86. save_env saved_entry
  87. fi
  88. }
  89. function recordfail {
  90. set recordfail=1
  91. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  92. }
  93. function load_video {
  94. if [ x$feature_all_video_module = xy ]; then
  95. insmod all_video
  96. else
  97. insmod efi_gop
  98. insmod efi_uga
  99. insmod ieee1275_fb
  100. insmod vbe
  101. insmod vga
  102. insmod video_bochs
  103. insmod video_cirrus
  104. fi
  105. }
  106. if [ x$feature_default_font_path = xy ] ; then
  107. font=unicode
  108. else
  109. insmod part_msdos
  110. insmod ext2
  111. set root='hd0,msdos1'
  112. if [ x$feature_platform_search_hint = xy ]; then
  113. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  114. else
  115. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  116. fi
  117. font="/usr/share/grub/unicode.pf2"
  118. fi
  119. if loadfont $font ; then
  120. set gfxmode=auto
  121. load_video
  122. insmod gfxterm
  123. set locale_dir=$prefix/locale
  124. set lang=fr_FR
  125. insmod gettext
  126. fi
  127. terminal_output gfxterm
  128. if [ "${recordfail}" = 1 ] ; then
  129. set timeout=30
  130. else
  131. if [ x$feature_timeout_style = xy ] ; then
  132. set timeout_style=hidden
  133. set timeout=0
  134. # Fallback hidden-timeout code in case the timeout_style feature is
  135. # unavailable.
  136. elif sleep --interruptible 0 ; then
  137. set timeout=0
  138. fi
  139. fi
  140. ### END /etc/grub.d/00_header ###
  141. ### BEGIN /etc/grub.d/05_debian_theme ###
  142. set menu_color_normal=white/black
  143. set menu_color_highlight=black/light-gray
  144. if background_color 44,0,30,0; then
  145. clear
  146. fi
  147. ### END /etc/grub.d/05_debian_theme ###
  148. ### BEGIN /etc/grub.d/10_linux ###
  149. function gfxmode {
  150. set gfxpayload="${1}"
  151. if [ "${1}" = "keep" ]; then
  152. set vt_handoff=vt.handoff=7
  153. else
  154. set vt_handoff=
  155. fi
  156. }
  157. if [ "${recordfail}" != 1 ]; then
  158. if [ -e ${prefix}/gfxblacklist.txt ]; then
  159. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  160. if [ ${match} = 0 ]; then
  161. set linux_gfx_mode=keep
  162. else
  163. set linux_gfx_mode=text
  164. fi
  165. else
  166. set linux_gfx_mode=text
  167. fi
  168. else
  169. set linux_gfx_mode=keep
  170. fi
  171. else
  172. set linux_gfx_mode=text
  173. fi
  174. export linux_gfx_mode
  175. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  176. recordfail
  177. load_video
  178. gfxmode $linux_gfx_mode
  179. insmod gzio
  180. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  181. insmod part_msdos
  182. insmod ext2
  183. set root='hd0,msdos1'
  184. if [ x$feature_platform_search_hint = xy ]; then
  185. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  186. else
  187. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  188. fi
  189. linux /boot/vmlinuz-4.4.0-57-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash $vt_handoff
  190. initrd /boot/initrd.img-4.4.0-57-generic
  191. }
  192. submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  193. menuentry 'Ubuntu, avec Linux 4.4.0-57-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-57-generic-advanced-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  194. recordfail
  195. load_video
  196. gfxmode $linux_gfx_mode
  197. insmod gzio
  198. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  199. insmod part_msdos
  200. insmod ext2
  201. set root='hd0,msdos1'
  202. if [ x$feature_platform_search_hint = xy ]; then
  203. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  204. else
  205. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  206. fi
  207. echo 'Chargement de Linux 4.4.0-57-generic…'
  208. linux /boot/vmlinuz-4.4.0-57-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash $vt_handoff
  209. echo 'Chargement du disque mémoire initial…'
  210. initrd /boot/initrd.img-4.4.0-57-generic
  211. }
  212. menuentry 'Ubuntu, with Linux 4.4.0-57-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-57-generic-init-upstart-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  213. recordfail
  214. load_video
  215. gfxmode $linux_gfx_mode
  216. insmod gzio
  217. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  218. insmod part_msdos
  219. insmod ext2
  220. set root='hd0,msdos1'
  221. if [ x$feature_platform_search_hint = xy ]; then
  222. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  223. else
  224. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  225. fi
  226. echo 'Chargement de Linux 4.4.0-57-generic…'
  227. linux /boot/vmlinuz-4.4.0-57-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash $vt_handoff init=/sbin/upstart
  228. echo 'Chargement du disque mémoire initial…'
  229. initrd /boot/initrd.img-4.4.0-57-generic
  230. }
  231. menuentry 'Ubuntu, with Linux 4.4.0-57-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-57-generic-recovery-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  232. recordfail
  233. load_video
  234. insmod gzio
  235. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  236. insmod part_msdos
  237. insmod ext2
  238. set root='hd0,msdos1'
  239. if [ x$feature_platform_search_hint = xy ]; then
  240. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  241. else
  242. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  243. fi
  244. echo 'Chargement de Linux 4.4.0-57-generic…'
  245. linux /boot/vmlinuz-4.4.0-57-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro recovery nomodeset
  246. echo 'Chargement du disque mémoire initial…'
  247. initrd /boot/initrd.img-4.4.0-57-generic
  248. }
  249. menuentry 'Ubuntu, avec Linux 4.4.0-53-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-53-generic-advanced-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  250. recordfail
  251. load_video
  252. gfxmode $linux_gfx_mode
  253. insmod gzio
  254. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  255. insmod part_msdos
  256. insmod ext2
  257. set root='hd0,msdos1'
  258. if [ x$feature_platform_search_hint = xy ]; then
  259. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  260. else
  261. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  262. fi
  263. echo 'Chargement de Linux 4.4.0-53-generic…'
  264. linux /boot/vmlinuz-4.4.0-53-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash $vt_handoff
  265. echo 'Chargement du disque mémoire initial…'
  266. initrd /boot/initrd.img-4.4.0-53-generic
  267. }
  268. menuentry 'Ubuntu, with Linux 4.4.0-53-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-53-generic-init-upstart-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  269. recordfail
  270. load_video
  271. gfxmode $linux_gfx_mode
  272. insmod gzio
  273. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  274. insmod part_msdos
  275. insmod ext2
  276. set root='hd0,msdos1'
  277. if [ x$feature_platform_search_hint = xy ]; then
  278. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  279. else
  280. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  281. fi
  282. echo 'Chargement de Linux 4.4.0-53-generic…'
  283. linux /boot/vmlinuz-4.4.0-53-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash $vt_handoff init=/sbin/upstart
  284. echo 'Chargement du disque mémoire initial…'
  285. initrd /boot/initrd.img-4.4.0-53-generic
  286. }
  287. menuentry 'Ubuntu, with Linux 4.4.0-53-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-53-generic-recovery-a5ee7fd8-ccff-4c7f-a880-7416e25674a5' {
  288. recordfail
  289. load_video
  290. insmod gzio
  291. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  292. insmod part_msdos
  293. insmod ext2
  294. set root='hd0,msdos1'
  295. if [ x$feature_platform_search_hint = xy ]; then
  296. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  297. else
  298. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  299. fi
  300. echo 'Chargement de Linux 4.4.0-53-generic…'
  301. linux /boot/vmlinuz-4.4.0-53-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro recovery nomodeset
  302. echo 'Chargement du disque mémoire initial…'
  303. initrd /boot/initrd.img-4.4.0-53-generic
  304. }
  305. }
  306. ### END /etc/grub.d/10_linux ###
  307. ### BEGIN /etc/grub.d/20_linux_xen ###
  308. ### END /etc/grub.d/20_linux_xen ###
  309. ### BEGIN /etc/grub.d/20_memtest86+ ###
  310. menuentry 'Memory test (memtest86+)' {
  311. insmod part_msdos
  312. insmod ext2
  313. set root='hd0,msdos1'
  314. if [ x$feature_platform_search_hint = xy ]; then
  315. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  316. else
  317. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  318. fi
  319. knetbsd /boot/memtest86+.elf
  320. }
  321. menuentry 'Memory test (memtest86+, serial console 115200)' {
  322. insmod part_msdos
  323. insmod ext2
  324. set root='hd0,msdos1'
  325. if [ x$feature_platform_search_hint = xy ]; then
  326. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  327. else
  328. search --no-floppy --fs-uuid --set=root a5ee7fd8-ccff-4c7f-a880-7416e25674a5
  329. fi
  330. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  331. }
  332. ### END /etc/grub.d/20_memtest86+ ###
  333. ### BEGIN /etc/grub.d/30_os-prober ###
  334. ### END /etc/grub.d/30_os-prober ###
  335. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  336. ### END /etc/grub.d/30_uefi-firmware ###
  337. ### BEGIN /etc/grub.d/40_custom ###
  338. # This file provides an easy way to add custom menu entries. Simply type the
  339. # menu entries you want to add after this comment. Be careful not to change
  340. # the 'exec tail' line above.
  341. ### END /etc/grub.d/40_custom ###
  342. ### BEGIN /etc/grub.d/41_custom ###
  343. if [ -f ${config_directory}/custom.cfg ]; then
  344. source ${config_directory}/custom.cfg
  345. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  346. source $prefix/custom.cfg;
  347. fi
  348. ### END /etc/grub.d/41_custom ###
  349. --------------------------------------------------------------------------------
  350. =============================== sda1/etc/fstab: ================================
  351. --------------------------------------------------------------------------------
  352. # /etc/fstab: static file system information.
  353. #
  354. # Use 'blkid' to print the universally unique identifier for a
  355. # device; this may be used with UUID= as a more robust way to name devices
  356. # that works even if disks are added and removed. See fstab(5).
  357. #
  358. # <file system> <mount point> <type> <options> <dump> <pass>
  359. # / was on /dev/sda1 during installation
  360. UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 / ext4 errors=remount-ro 0 1
  361. # swap was on /dev/sda5 during installation
  362. UUID=59fe6e06-fcb0-4394-9279-ce2f214ef91c none swap sw 0 0
  363. --------------------------------------------------------------------------------
  364. =================== sda1: Location of files loaded by Grub: ====================
  365. GiB - GB File Fragment(s)
  366. 188.427165985 = 202.322128896 boot/grub/grub.cfg 1
  367. 100.184852600 = 107.572666368 boot/grub/i386-pc/core.img 1
  368. 189.146469116 = 203.094474752 boot/vmlinuz-4.4.0-53-generic 1
  369. 15.268413544 = 16.394334208 boot/vmlinuz-4.4.0-57-generic 1
  370. 15.268413544 = 16.394334208 vmlinuz 1
  371. 189.146469116 = 203.094474752 vmlinuz.old 1
  372. 14.465145111 = 15.531831296 boot/initrd.img-4.4.0-53-generic 1
  373. 15.800197601 = 16.965332992 boot/initrd.img-4.4.0-57-generic 2
  374. 15.800197601 = 16.965332992 initrd.img 2
  375. 14.465145111 = 15.531831296 initrd.img.old 1
  376. ADDITIONAL INFORMATION :
  377. =================== log of boot-info 2016-12-18__07h43 ===================
  378. boot-info version : 4ppa40
  379. boot-sav version : 4ppa40
  380. glade2script version : 3.2.3~ppa1
  381. boot-sav-extra version : 4ppa40
  382. boot-info is executed in installed-session (Ubuntu 16.04.1 LTS, xenial, Ubuntu, i686)
  383. CPU op-mode(s): 32-bit, 64-bit
  384. BOOT_IMAGE=/boot/vmlinuz-4.4.0-57-generic root=UUID=a5ee7fd8-ccff-4c7f-a880-7416e25674a5 ro quiet splash vt.handoff=7
  385. Partition 2 does not start on physical sector boundary.
  386. =================== os-prober:
  387. /dev/sda1:L'OS actuellement utilisé - Ubuntu 16.04.1 LTS CurrentSession:linux
  388. =================== blkid:
  389. /dev/sda1: UUID="a5ee7fd8-ccff-4c7f-a880-7416e25674a5" TYPE="ext4" PARTUUID="4178b3da-01"
  390. /dev/sda5: UUID="59fe6e06-fcb0-4394-9279-ce2f214ef91c" TYPE="swap" PARTUUID="4178b3da-05"
  391. 1 disks with OS, 1 OS : 1 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
  392. Partition 2 does not start on physical sector boundary.
  393. Partition 2 does not start on physical sector boundary.
  394. =================== /etc/grub.d/ :
  395. drwxr-xr-x 2 root root 4096 déc. 4 04:43 grub.d
  396. total 76
  397. -rwxr-xr-x 1 root root 9791 juin 17 2016 00_header
  398. -rwxr-xr-x 1 root root 6258 mars 15 2016 05_debian_theme
  399. -rwxr-xr-x 1 root root 12261 juin 17 2016 10_linux
  400. -rwxr-xr-x 1 root root 11082 juin 17 2016 20_linux_xen
  401. -rwxr-xr-x 1 root root 1992 janv. 28 2016 20_memtest86+
  402. -rwxr-xr-x 1 root root 11692 juin 17 2016 30_os-prober
  403. -rwxr-xr-x 1 root root 1418 juin 17 2016 30_uefi-firmware
  404. -rwxr-xr-x 1 root root 214 juin 17 2016 40_custom
  405. -rwxr-xr-x 1 root root 216 juin 17 2016 41_custom
  406. -rw-r--r-- 1 root root 483 juin 17 2016 README
  407. =================== /etc/default/grub :
  408. # If you change this file, run 'update-grub' afterwards to update
  409. # /boot/grub/grub.cfg.
  410. # For full documentation of the options in this file, see:
  411. # info -f grub -n 'Simple configuration'
  412. GRUB_DEFAULT=0
  413. GRUB_HIDDEN_TIMEOUT=0
  414. GRUB_HIDDEN_TIMEOUT_QUIET=true
  415. GRUB_TIMEOUT=10
  416. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  417. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  418. GRUB_CMDLINE_LINUX=""
  419. # Uncomment to enable BadRAM filtering, modify to suit your needs
  420. # This works with Linux (no patch required) and with any kernel that obtains
  421. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  422. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  423. # Uncomment to disable graphical terminal (grub-pc only)
  424. #GRUB_TERMINAL=console
  425. # The resolution used on graphical terminal
  426. # note that you can use only modes which your graphic card supports via VBE
  427. # you can see them in real GRUB with the command `vbeinfo'
  428. #GRUB_GFXMODE=640x480
  429. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  430. #GRUB_DISABLE_LINUX_UUID=true
  431. # Uncomment to disable generation of recovery mode menu entries
  432. #GRUB_DISABLE_RECOVERY="true"
  433. # Uncomment to get a beep at grub start
  434. #GRUB_INIT_TUNE="480 440 1"
  435. =================== UEFI/Legacy mode:
  436. This installed-session is not EFI-compatible.
  437. EFI in dmesg.
  438. [ 0.000000] ACPI: UEFI 0x000000008AEFA000 000042 (v01 ACRSYS ACRPRDCT 00000002 1025 00040000)
  439. [ 0.000000] ACPI: UEFI 0x000000008AEFB000 000236 (v01 ACRSYS ACRPRDCT 00000001 1025 00040000)
  440. SecureBoot disabled.
  441. =================== PARTITIONS & DISKS:
  442. sda1 : sda, not-sepboot, grubenv-ok grub2, signed grub-pc , update-grub, 32, 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, farbios, .
  443. sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
  444. =================== parted -l:
  445. Model: ATA HFS256G39TND-N21 (scsi)
  446. Disk /dev/sda: 256GB
  447. Sector size (logical/physical): 512B/4096B
  448. Partition Table: msdos
  449. Disk Flags:
  450. Number Start End Size Type File system Flags
  451. 1 1049kB 248GB 248GB primary ext4 boot
  452. 2 248GB 256GB 8447MB extended
  453. 5 248GB 256GB 8447MB logical linux-swap(v1)
  454. =================== parted -lm:
  455. BYT;
  456. /dev/sda:256GB:scsi:512:4096:msdos:ATA HFS256G39TND-N21:;
  457. 1:1049kB:248GB:248GB:ext4::boot;
  458. 2:248GB:256GB:8447MB:::;
  459. 5:248GB:256GB:8447MB:linux-swap(v1)::;
  460. =================== lsblk:
  461. KNAME TYPE FSTYPE SIZE LABEL
  462. sda disk 238,5G
  463. sda1 part ext4 230,6G
  464. sda2 part 1K
  465. sda5 part swap 7,9G
  466. KNAME ROTA RO RM STATE MOUNTPOINT
  467. sda 0 0 0 running
  468. sda1 0 0 0 /
  469. sda2 0 0 0
  470. sda5 0 0 0 [SWAP]
  471. =================== mount:
  472. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  473. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  474. udev on /dev type devtmpfs (rw,nosuid,relatime,size=4055936k,nr_inodes=193625,mode=755)
  475. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  476. tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=814900k,mode=755)
  477. /dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
  478. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  479. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  480. tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
  481. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  482. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
  483. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  484. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  485. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
  486. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  487. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
  488. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
  489. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
  490. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  491. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  492. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  493. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  494. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
  495. mqueue on /dev/mqueue type mqueue (rw,relatime)
  496. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  497. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  498. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  499. binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
  500. tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=814900k,mode=700,uid=1000,gid=1000)
  501. gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
  502. =================== ls:
  503. /sys/block/sda (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 sda2 sda5 size slaves stat subsystem trace uevent
  504. /dev (filtered): autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk dri drm_dp_aux0 drm_dp_aux1 ecryptfs fb0 fd full fuse hidraw0 hidraw1 hpet hugepages hwrng i2c-0 i2c-1 i2c-2 i2c-3 i2c-4 i2c-5 i2c-6 initctl input kmsg kvm lightnvm log mapper mcelog media0 mei0 mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda5 sg0 shm snapshot snd stderr stdin stdout uhid uinput urandom userio v4l vfio vga_arbiter vhci vhost-net video0 watchdog watchdog0 zero
  505. ls /dev/mapper: control
  506. ls: impossible d'accéder à '': Aucun fichier ou dossier de ce type
  507. Partition 2 does not start on physical sector boundary.
  508. =================== df -Th:
  509. Filesystem Type Size Used Avail Use% Mounted on
  510. udev devtmpfs 3.9G 0 3.9G 0% /dev
  511. tmpfs tmpfs 796M 9.6M 787M 2% /run
  512. /dev/sda1 ext4 227G 20G 197G 9% /
  513. tmpfs tmpfs 3.9G 1.1M 3.9G 1% /dev/shm
  514. tmpfs tmpfs 5.0M 4.0K 5.0M 1% /run/lock
  515. tmpfs tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
  516. tmpfs tmpfs 796M 96K 796M 1% /run/user/1000
  517. =================== fdisk -l:
  518. Disk /dev/ram0: 64 MiB, 67108864 bytes, 131072 sectors
  519. Units: sectors of 1 * 512 = 512 bytes
  520. Sector size (logical/physical): 512 bytes / 4096 bytes
  521. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  522. Disk /dev/ram1: 64 MiB, 67108864 bytes, 131072 sectors
  523. Units: sectors of 1 * 512 = 512 bytes
  524. Sector size (logical/physical): 512 bytes / 4096 bytes
  525. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  526. Disk /dev/ram2: 64 MiB, 67108864 bytes, 131072 sectors
  527. Units: sectors of 1 * 512 = 512 bytes
  528. Sector size (logical/physical): 512 bytes / 4096 bytes
  529. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  530. Disk /dev/ram3: 64 MiB, 67108864 bytes, 131072 sectors
  531. Units: sectors of 1 * 512 = 512 bytes
  532. Sector size (logical/physical): 512 bytes / 4096 bytes
  533. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  534. Disk /dev/ram4: 64 MiB, 67108864 bytes, 131072 sectors
  535. Units: sectors of 1 * 512 = 512 bytes
  536. Sector size (logical/physical): 512 bytes / 4096 bytes
  537. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  538. Disk /dev/ram5: 64 MiB, 67108864 bytes, 131072 sectors
  539. Units: sectors of 1 * 512 = 512 bytes
  540. Sector size (logical/physical): 512 bytes / 4096 bytes
  541. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  542. Disk /dev/ram6: 64 MiB, 67108864 bytes, 131072 sectors
  543. Units: sectors of 1 * 512 = 512 bytes
  544. Sector size (logical/physical): 512 bytes / 4096 bytes
  545. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  546. Disk /dev/ram7: 64 MiB, 67108864 bytes, 131072 sectors
  547. Units: sectors of 1 * 512 = 512 bytes
  548. Sector size (logical/physical): 512 bytes / 4096 bytes
  549. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  550. Disk /dev/ram8: 64 MiB, 67108864 bytes, 131072 sectors
  551. Units: sectors of 1 * 512 = 512 bytes
  552. Sector size (logical/physical): 512 bytes / 4096 bytes
  553. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  554. Disk /dev/ram9: 64 MiB, 67108864 bytes, 131072 sectors
  555. Units: sectors of 1 * 512 = 512 bytes
  556. Sector size (logical/physical): 512 bytes / 4096 bytes
  557. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  558. Disk /dev/ram10: 64 MiB, 67108864 bytes, 131072 sectors
  559. Units: sectors of 1 * 512 = 512 bytes
  560. Sector size (logical/physical): 512 bytes / 4096 bytes
  561. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  562. Disk /dev/ram11: 64 MiB, 67108864 bytes, 131072 sectors
  563. Units: sectors of 1 * 512 = 512 bytes
  564. Sector size (logical/physical): 512 bytes / 4096 bytes
  565. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  566. Disk /dev/ram12: 64 MiB, 67108864 bytes, 131072 sectors
  567. Units: sectors of 1 * 512 = 512 bytes
  568. Sector size (logical/physical): 512 bytes / 4096 bytes
  569. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  570. Disk /dev/ram13: 64 MiB, 67108864 bytes, 131072 sectors
  571. Units: sectors of 1 * 512 = 512 bytes
  572. Sector size (logical/physical): 512 bytes / 4096 bytes
  573. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  574. Disk /dev/ram14: 64 MiB, 67108864 bytes, 131072 sectors
  575. Units: sectors of 1 * 512 = 512 bytes
  576. Sector size (logical/physical): 512 bytes / 4096 bytes
  577. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  578. Disk /dev/ram15: 64 MiB, 67108864 bytes, 131072 sectors
  579. Units: sectors of 1 * 512 = 512 bytes
  580. Sector size (logical/physical): 512 bytes / 4096 bytes
  581. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  582. Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
  583. Units: sectors of 1 * 512 = 512 bytes
  584. Sector size (logical/physical): 512 bytes / 4096 bytes
  585. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  586. Disklabel type: dos
  587. Disk identifier: 0x4178b3da
  588. Device Boot Start End Sectors Size Id Type
  589. /dev/sda1 * 2048 483616767 483614720 230.6G 83 Linux
  590. /dev/sda2 483618814 500117503 16498690 7.9G 5 Extended
  591. /dev/sda5 483618816 500117503 16498688 7.9G 82 Linux swap / Solaris
  592. =================== Suggested repair
  593. The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda1 into the MBR of sda.
  594. Additional repair would be performed: unhide-bootmenu-10s
  595. =================== Final advice in case of suggested repair
  596. Les fichiers de démarrage de [L'OS actuellement utilisé - Ubuntu 16.04.1 LTS] sont loin du début du disque. Votre BIOS pourrait ne pas les détecter. Vous voudrez peut-être re-essayer après avoir créé une partition /boot (EXT4, >200MB, en début de disque). Cela peut être réalisé via des outils tels que gParted. Puis sélectionnez cette partition via l'option [Partition /boot séparée :] de [Boot-Repair]. (http://doc.ubuntu-fr.org/tutoriel/partition_boot)
  597. =================== User settings
  598. The settings chosen by the user will not act on the boot.
  599. paste.ubuntu.com ko (), using paste.debian
  600. paste.debian.net ko (), using paste2