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: Unknown
  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: 232.9 GiB, 250059350016 bytes, 488397168 sectors
  28. Units: sectors of 1 * 512 = 512 bytes
  29. Sector size (logical/physical): 512 bytes / 512 bytes
  30. I/O size (minimum/optimal): 512 bytes / 512 bytes
  31. Disklabel type: dos
  32. Partition Boot Start Sector End Sector # of Sectors Id System
  33. /dev/sda1 * 2,048 473,274,367 473,272,320 83 Linux
  34. /dev/sda2 473,276,414 488,396,799 15,120,386 5 Extended
  35. /dev/sda5 473,276,416 488,396,799 15,120,384 82 Linux swap / Solaris
  36. "blkid" output: ________________________________________________________________
  37. Device UUID TYPE LABEL
  38. /dev/sda1 2c549291-cedb-4e7e-a226-38b5b927b147 ext4
  39. /dev/sda5 b49e233a-4ce2-4236-9fa3-094f2de16ea4 swap
  40. ========================= "ls -l /dev/disk/by-id" output: ======================
  41. total 0
  42. lrwxrwxrwx 1 root root 9 Aug 4 15:21 ata-Samsung_SSD_850_EVO_250GB_S21PNXAG470477L -> ../../sda
  43. lrwxrwxrwx 1 root root 10 Aug 4 15:21 ata-Samsung_SSD_850_EVO_250GB_S21PNXAG470477L-part1 -> ../../sda1
  44. lrwxrwxrwx 1 root root 10 Aug 4 15:21 ata-Samsung_SSD_850_EVO_250GB_S21PNXAG470477L-part2 -> ../../sda2
  45. lrwxrwxrwx 1 root root 10 Aug 4 15:21 ata-Samsung_SSD_850_EVO_250GB_S21PNXAG470477L-part5 -> ../../sda5
  46. lrwxrwxrwx 1 root root 9 Aug 4 15:21 wwn-0x5002538d40073c95 -> ../../sda
  47. lrwxrwxrwx 1 root root 10 Aug 4 15:21 wwn-0x5002538d40073c95-part1 -> ../../sda1
  48. lrwxrwxrwx 1 root root 10 Aug 4 15:21 wwn-0x5002538d40073c95-part2 -> ../../sda2
  49. lrwxrwxrwx 1 root root 10 Aug 4 15:21 wwn-0x5002538d40073c95-part5 -> ../../sda5
  50. ================================ Mount points: =================================
  51. Device Mount_Point Type Options
  52. /dev/sda1 / ext4 (rw,relatime,errors=remount-ro,data=ordered)
  53. =========================== sda1/boot/grub/grub.cfg: ===========================
  54. --------------------------------------------------------------------------------
  55. #
  56. # DO NOT EDIT THIS FILE
  57. #
  58. # It is automatically generated by grub-mkconfig using templates
  59. # from /etc/grub.d and settings from /etc/default/grub
  60. #
  61. ### BEGIN /etc/grub.d/00_header ###
  62. if [ -s $prefix/grubenv ]; then
  63. set have_grubenv=true
  64. load_env
  65. fi
  66. if [ "${next_entry}" ] ; then
  67. set default="${next_entry}"
  68. set next_entry=
  69. save_env next_entry
  70. set boot_once=true
  71. else
  72. set default="0"
  73. fi
  74. if [ x"${feature_menuentry_id}" = xy ]; then
  75. menuentry_id_option="--id"
  76. else
  77. menuentry_id_option=""
  78. fi
  79. export menuentry_id_option
  80. if [ "${prev_saved_entry}" ]; then
  81. set saved_entry="${prev_saved_entry}"
  82. save_env saved_entry
  83. set prev_saved_entry=
  84. save_env prev_saved_entry
  85. set boot_once=true
  86. fi
  87. function savedefault {
  88. if [ -z "${boot_once}" ]; then
  89. saved_entry="${chosen}"
  90. save_env saved_entry
  91. fi
  92. }
  93. function recordfail {
  94. set recordfail=1
  95. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  96. }
  97. function load_video {
  98. if [ x$feature_all_video_module = xy ]; then
  99. insmod all_video
  100. else
  101. insmod efi_gop
  102. insmod efi_uga
  103. insmod ieee1275_fb
  104. insmod vbe
  105. insmod vga
  106. insmod video_bochs
  107. insmod video_cirrus
  108. fi
  109. }
  110. if [ x$feature_default_font_path = xy ] ; then
  111. font=unicode
  112. else
  113. insmod part_msdos
  114. insmod ext2
  115. set root='hd0,msdos1'
  116. if [ x$feature_platform_search_hint = xy ]; then
  117. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 2c549291-cedb-4e7e-a226-38b5b927b147
  118. else
  119. search --no-floppy --fs-uuid --set=root 2c549291-cedb-4e7e-a226-38b5b927b147
  120. fi
  121. font="/usr/share/grub/unicode.pf2"
  122. fi
  123. if loadfont $font ; then
  124. set gfxmode=auto
  125. load_video
  126. insmod gfxterm
  127. set locale_dir=$prefix/locale
  128. set lang=fr_FR
  129. insmod gettext
  130. fi
  131. terminal_output gfxterm
  132. if [ "${recordfail}" = 1 ] ; then
  133. set timeout=10
  134. else
  135. if [ x$feature_timeout_style = xy ] ; then
  136. set timeout_style=menu
  137. set timeout=10
  138. # Fallback normal timeout code in case the timeout_style feature is
  139. # unavailable.
  140. else
  141. set timeout=10
  142. fi
  143. fi
  144. ### END /etc/grub.d/00_header ###
  145. ### BEGIN /etc/grub.d/05_debian_theme ###
  146. set menu_color_normal=white/black
  147. set menu_color_highlight=black/light-gray
  148. if background_color 44,0,30,0; then
  149. clear
  150. fi
  151. ### END /etc/grub.d/05_debian_theme ###
  152. ### BEGIN /etc/grub.d/10_linux ###
  153. function gfxmode {
  154. set gfxpayload="${1}"
  155. if [ "${1}" = "keep" ]; then
  156. set vt_handoff=vt.handoff=7
  157. else
  158. set vt_handoff=
  159. fi
  160. }
  161. if [ "${recordfail}" != 1 ]; then
  162. if [ -e ${prefix}/gfxblacklist.txt ]; then
  163. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  164. if [ ${match} = 0 ]; then
  165. set linux_gfx_mode=keep
  166. else
  167. set linux_gfx_mode=text
  168. fi
  169. else
  170. set linux_gfx_mode=text
  171. fi
  172. else
  173. set linux_gfx_mode=keep
  174. fi
  175. else
  176. set linux_gfx_mode=text
  177. fi
  178. export linux_gfx_mode
  179. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-2c549291-cedb-4e7e-a226-38b5b927b147' {
  180. recordfail
  181. load_video
  182. gfxmode $linux_gfx_mode
  183. insmod gzio
  184. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  185. insmod part_msdos
  186. insmod ext2
  187. set root='hd0,msdos1'
  188. if [ x$feature_platform_search_hint = xy ]; then
  189. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 2c549291-cedb-4e7e-a226-38b5b927b147
  190. else
  191. search --no-floppy --fs-uuid --set=root 2c549291-cedb-4e7e-a226-38b5b927b147
  192. fi
  193. linux /boot/vmlinuz-4.4.0-31-generic root=UUID=2c549291-cedb-4e7e-a226-38b5b927b147 ro quiet splash $vt_handoff
  194. initrd /boot/initrd.img-4.4.0-31-generic
  195. }
  196. submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-2c549291-cedb-4e7e-a226-38b5b927b147' {
  197. menuentry 'Ubuntu, with Linux 4.4.0-31-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-advanced-2c549291-cedb-4e7e-a226-38b5b927b147' {
  198. recordfail
  199. load_video
  200. gfxmode $linux_gfx_mode
  201. insmod gzio
  202. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  203. insmod part_msdos
  204. insmod ext2
  205. set root='hd0,msdos1'
  206. if [ x$feature_platform_search_hint = xy ]; then
  207. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 2c549291-cedb-4e7e-a226-38b5b927b147
  208. else
  209. search --no-floppy --fs-uuid --set=root 2c549291-cedb-4e7e-a226-38b5b927b147
  210. fi
  211. echo 'Loading Linux 4.4.0-31-generic ...'
  212. linux /boot/vmlinuz-4.4.0-31-generic root=UUID=2c549291-cedb-4e7e-a226-38b5b927b147 ro quiet splash $vt_handoff
  213. echo 'Loading initial ramdisk ...'
  214. initrd /boot/initrd.img-4.4.0-31-generic
  215. }
  216. menuentry 'Ubuntu, with Linux 4.4.0-31-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-init-upstart-2c549291-cedb-4e7e-a226-38b5b927b147' {
  217. recordfail
  218. load_video
  219. gfxmode $linux_gfx_mode
  220. insmod gzio
  221. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  222. insmod part_msdos
  223. insmod ext2
  224. set root='hd0,msdos1'
  225. if [ x$feature_platform_search_hint = xy ]; then
  226. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 2c549291-cedb-4e7e-a226-38b5b927b147
  227. else
  228. search --no-floppy --fs-uuid --set=root 2c549291-cedb-4e7e-a226-38b5b927b147
  229. fi
  230. echo 'Loading Linux 4.4.0-31-generic ...'
  231. linux /boot/vmlinuz-4.4.0-31-generic root=UUID=2c549291-cedb-4e7e-a226-38b5b927b147 ro quiet splash $vt_handoff init=/sbin/upstart
  232. echo 'Loading initial ramdisk ...'
  233. initrd /boot/initrd.img-4.4.0-31-generic
  234. }
  235. menuentry 'Ubuntu, with Linux 4.4.0-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-recovery-2c549291-cedb-4e7e-a226-38b5b927b147' {
  236. recordfail
  237. load_video
  238. insmod gzio
  239. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  240. insmod part_msdos
  241. insmod ext2
  242. set root='hd0,msdos1'
  243. if [ x$feature_platform_search_hint = xy ]; then
  244. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 2c549291-cedb-4e7e-a226-38b5b927b147
  245. else
  246. search --no-floppy --fs-uuid --set=root 2c549291-cedb-4e7e-a226-38b5b927b147
  247. fi
  248. echo 'Loading Linux 4.4.0-31-generic ...'
  249. linux /boot/vmlinuz-4.4.0-31-generic root=UUID=2c549291-cedb-4e7e-a226-38b5b927b147 ro recovery nomodeset
  250. echo 'Loading initial ramdisk ...'
  251. initrd /boot/initrd.img-4.4.0-31-generic
  252. }
  253. }
  254. ### END /etc/grub.d/10_linux ###
  255. ### BEGIN /etc/grub.d/20_linux_xen ###
  256. ### END /etc/grub.d/20_linux_xen ###
  257. ### BEGIN /etc/grub.d/30_os-prober ###
  258. ### END /etc/grub.d/30_os-prober ###
  259. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  260. ### END /etc/grub.d/30_uefi-firmware ###
  261. ### BEGIN /etc/grub.d/40_custom ###
  262. # This file provides an easy way to add custom menu entries. Simply type the
  263. # menu entries you want to add after this comment. Be careful not to change
  264. # the 'exec tail' line above.
  265. ### END /etc/grub.d/40_custom ###
  266. ### BEGIN /etc/grub.d/41_custom ###
  267. if [ -f ${config_directory}/custom.cfg ]; then
  268. source ${config_directory}/custom.cfg
  269. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  270. source $prefix/custom.cfg;
  271. fi
  272. ### END /etc/grub.d/41_custom ###
  273. --------------------------------------------------------------------------------
  274. =============================== sda1/etc/fstab: ================================
  275. --------------------------------------------------------------------------------
  276. # /etc/fstab: static file system information.
  277. #
  278. # Use 'blkid' to print the universally unique identifier for a
  279. # device; this may be used with UUID= as a more robust way to name devices
  280. # that works even if disks are added and removed. See fstab(5).
  281. #
  282. # <file system> <mount point> <type> <options> <dump> <pass>
  283. # / was on /dev/sdb1 during installation
  284. UUID=2c549291-cedb-4e7e-a226-38b5b927b147 / ext4 errors=remount-ro 0 1
  285. # swap was on /dev/sdb5 during installation
  286. UUID=b49e233a-4ce2-4236-9fa3-094f2de16ea4 none swap sw 0 0
  287. --------------------------------------------------------------------------------
  288. =================== sda1: Location of files loaded by Grub: ====================
  289. GiB - GB File Fragment(s)
  290. 222.160762787 = 238.543302656 boot/grub/grub.cfg 1
  291. 132.126319885 = 141.869555712 boot/grub/i386-pc/core.img 1
  292. 0.636447906 = 0.683380736 boot/vmlinuz-4.4.0-31-generic 1
  293. 0.636447906 = 0.683380736 vmlinuz 1
  294. 4.214092255 = 4.524847104 boot/initrd.img-4.4.0-31-generic 1
  295. 4.214092255 = 4.524847104 initrd.img 1
  296. ======================== Unknown MBRs/Boot Sectors/etc: ========================
  297. Unknown BootLoader on sda2
  298. =============================== StdErr Messages: ===============================
  299. cat: write error: Broken pipe
  300. hexdump: /dev/sda2: No such device or address
  301. hexdump: /dev/sda2: No such device or address
  302. ADDITIONAL INFORMATION :
  303. =================== log of boot-repair 2016-08-04__15h18 ===================
  304. boot-repair version : 4ppa38
  305. boot-sav version : 4ppa38
  306. glade2script version : 3.2.3~ppa1
  307. boot-sav-extra version : 4ppa38
  308. boot-repair is executed in installed-session (Ubuntu 16.04.1 LTS, xenial, Ubuntu, x86_64)
  309. CPU op-mode(s): 32-bit, 64-bit
  310. BOOT_IMAGE=/boot/vmlinuz-4.4.0-31-generic root=UUID=2c549291-cedb-4e7e-a226-38b5b927b147 ro recovery nomodeset
  311. =================== os-prober:
  312. /dev/sda1:L'OS actuellement utilisé - Ubuntu 16.04.1 LTS CurrentSession:linux
  313. =================== blkid:
  314. /dev/sda1: UUID="2c549291-cedb-4e7e-a226-38b5b927b147" TYPE="ext4" PARTUUID="1bc59a40-01"
  315. /dev/sda5: UUID="b49e233a-4ce2-4236-9fa3-094f2de16ea4" TYPE="swap" PARTUUID="1bc59a40-05"
  316. 1 disks with OS, 1 OS : 1 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
  317. =================== /etc/grub.d/ :
  318. drwxr-xr-x 2 root root 4096 août 4 14:21 grub.d
  319. total 76
  320. -rwxr-xr-x 1 root root 9791 juin 17 11:10 00_header
  321. -rwxr-xr-x 1 root root 6258 mars 15 19:08 05_debian_theme
  322. -rwxr-xr-x 1 root root 12261 juin 17 11:10 10_linux
  323. -rwxr-xr-x 1 root root 11082 juin 17 11:10 20_linux_xen
  324. -rwxr-xr-x 1 root root 1992 janv. 28 2016 20_memtest86+
  325. -rwxr-xr-x 1 root root 11692 juin 17 11:10 30_os-prober
  326. -rwxr-xr-x 1 root root 1418 juin 17 11:10 30_uefi-firmware
  327. -rwxr-xr-x 1 root root 214 juin 17 11:10 40_custom
  328. -rwxr-xr-x 1 root root 216 juin 17 11:10 41_custom
  329. -rw-r--r-- 1 root root 483 juin 17 11:10 README
  330. =================== /etc/default/grub :
  331. # If you change this file, run 'update-grub' afterwards to update
  332. # /boot/grub/grub.cfg.
  333. # For full documentation of the options in this file, see:
  334. # info -f grub -n 'Simple configuration'
  335. GRUB_DEFAULT=0
  336. GRUB_HIDDEN_TIMEOUT=0
  337. GRUB_HIDDEN_TIMEOUT_QUIET=true
  338. GRUB_TIMEOUT=10
  339. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  340. GRUB_CMDLINE_LINUX_DEFAULT="splash quiet"
  341. GRUB_CMDLINE_LINUX=""
  342. # Uncomment to enable BadRAM filtering, modify to suit your needs
  343. # This works with Linux (no patch required) and with any kernel that obtains
  344. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  345. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  346. # Uncomment to disable graphical terminal (grub-pc only)
  347. #GRUB_TERMINAL=console
  348. # The resolution used on graphical terminal
  349. # note that you can use only modes which your graphic card supports via VBE
  350. # you can see them in real GRUB with the command `vbeinfo'
  351. #GRUB_GFXMODE=640x480
  352. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  353. #GRUB_DISABLE_LINUX_UUID=true
  354. # Uncomment to disable generation of recovery mode menu entries
  355. #GRUB_DISABLE_RECOVERY="true"
  356. # Uncomment to get a beep at grub start
  357. #GRUB_INIT_TUNE="480 440 1"
  358. =================== UEFI/Legacy mode:
  359. This installed-session is not in EFI-mode.
  360. EFI in dmesg.
  361. [ 0.000000] ACPI: UEFI 0x000000008E599E40 000042 (v01 ALASKA A M I 01072009 00000000)
  362. SecureBoot disabled.
  363. =================== PARTITIONS & DISKS:
  364. 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, farbios, .
  365. sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
  366. =================== parted -l:
  367. Model: ATA Samsung SSD 850 (scsi)
  368. Disk /dev/sda: 250GB
  369. Sector size (logical/physical): 512B/512B
  370. Partition Table: msdos
  371. Disk Flags:
  372. Number Start End Size Type File system Flags
  373. 1 1049kB 242GB 242GB primary ext4 boot
  374. 2 242GB 250GB 7742MB extended
  375. 5 242GB 250GB 7742MB logical linux-swap(v1)
  376. =================== parted -lm:
  377. BYT;
  378. /dev/sda:250GB:scsi:512:512:msdos:ATA Samsung SSD 850:;
  379. 1:1049kB:242GB:242GB:ext4::boot;
  380. 2:242GB:250GB:7742MB:::;
  381. 5:242GB:250GB:7742MB:linux-swap(v1)::;
  382. =================== lsblk:
  383. KNAME TYPE FSTYPE SIZE LABEL
  384. sda disk 232,9G
  385. sda1 part ext4 225,7G
  386. sda5 part swap 7,2G
  387. KNAME ROTA RO RM STATE MOUNTPOINT
  388. sda 0 0 0 running
  389. sda1 0 0 0 /
  390. sda5 0 0 0 [SWAP]
  391. =================== mount:
  392. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  393. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  394. udev on /dev type devtmpfs (rw,nosuid,relatime,size=3661476k,nr_inodes=915369,mode=755)
  395. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  396. tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=742744k,mode=755)
  397. /dev/sda1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
  398. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  399. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  400. tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
  401. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  402. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
  403. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  404. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  405. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  406. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  407. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  408. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
  409. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
  410. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
  411. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  412. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  413. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
  414. mqueue on /dev/mqueue type mqueue (rw,relatime)
  415. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=30,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
  416. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  417. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  418. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  419. tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=742744k,mode=700,uid=1000,gid=1000)
  420. tmpfs on /run/user/108 type tmpfs (rw,nosuid,nodev,relatime,size=742744k,mode=700,uid=108,gid=114)
  421. gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
  422. =================== ls:
  423. /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
  424. /dev (filtered): autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk ecryptfs fd full fuse hidraw0 hidraw1 hidraw2 hpet hugepages hwrng i2c-0 i2c-1 initctl input kmsg kvm 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 sda2 sda5 sg0 shm snapshot snd stderr stdin stdout uhid uinput urandom userio vfio vga_arbiter vhci vhost-net zero
  425. ls /dev/mapper: control
  426. ls: impossible d'accéder à '': Aucun fichier ou dossier de ce type
  427. =================== df -Th:
  428. Filesystem Type Size Used Avail Use% Mounted on
  429. udev devtmpfs 3.5G 0 3.5G 0% /dev
  430. tmpfs tmpfs 726M 9.4M 716M 2% /run
  431. /dev/sda1 ext4 223G 4.7G 207G 3% /
  432. tmpfs tmpfs 3.6G 636K 3.6G 1% /dev/shm
  433. tmpfs tmpfs 5.0M 4.0K 5.0M 1% /run/lock
  434. tmpfs tmpfs 3.6G 0 3.6G 0% /sys/fs/cgroup
  435. tmpfs tmpfs 726M 84K 726M 1% /run/user/1000
  436. tmpfs tmpfs 726M 4.0K 726M 1% /run/user/108
  437. =================== fdisk -l:
  438. Disk /dev/ram0: 64 MiB, 67108864 bytes, 131072 sectors
  439. Units: sectors of 1 * 512 = 512 bytes
  440. Sector size (logical/physical): 512 bytes / 4096 bytes
  441. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  442. Disk /dev/ram1: 64 MiB, 67108864 bytes, 131072 sectors
  443. Units: sectors of 1 * 512 = 512 bytes
  444. Sector size (logical/physical): 512 bytes / 4096 bytes
  445. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  446. Disk /dev/ram2: 64 MiB, 67108864 bytes, 131072 sectors
  447. Units: sectors of 1 * 512 = 512 bytes
  448. Sector size (logical/physical): 512 bytes / 4096 bytes
  449. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  450. Disk /dev/ram3: 64 MiB, 67108864 bytes, 131072 sectors
  451. Units: sectors of 1 * 512 = 512 bytes
  452. Sector size (logical/physical): 512 bytes / 4096 bytes
  453. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  454. Disk /dev/ram4: 64 MiB, 67108864 bytes, 131072 sectors
  455. Units: sectors of 1 * 512 = 512 bytes
  456. Sector size (logical/physical): 512 bytes / 4096 bytes
  457. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  458. Disk /dev/ram5: 64 MiB, 67108864 bytes, 131072 sectors
  459. Units: sectors of 1 * 512 = 512 bytes
  460. Sector size (logical/physical): 512 bytes / 4096 bytes
  461. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  462. Disk /dev/ram6: 64 MiB, 67108864 bytes, 131072 sectors
  463. Units: sectors of 1 * 512 = 512 bytes
  464. Sector size (logical/physical): 512 bytes / 4096 bytes
  465. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  466. Disk /dev/ram7: 64 MiB, 67108864 bytes, 131072 sectors
  467. Units: sectors of 1 * 512 = 512 bytes
  468. Sector size (logical/physical): 512 bytes / 4096 bytes
  469. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  470. Disk /dev/ram8: 64 MiB, 67108864 bytes, 131072 sectors
  471. Units: sectors of 1 * 512 = 512 bytes
  472. Sector size (logical/physical): 512 bytes / 4096 bytes
  473. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  474. Disk /dev/ram9: 64 MiB, 67108864 bytes, 131072 sectors
  475. Units: sectors of 1 * 512 = 512 bytes
  476. Sector size (logical/physical): 512 bytes / 4096 bytes
  477. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  478. Disk /dev/ram10: 64 MiB, 67108864 bytes, 131072 sectors
  479. Units: sectors of 1 * 512 = 512 bytes
  480. Sector size (logical/physical): 512 bytes / 4096 bytes
  481. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  482. Disk /dev/ram11: 64 MiB, 67108864 bytes, 131072 sectors
  483. Units: sectors of 1 * 512 = 512 bytes
  484. Sector size (logical/physical): 512 bytes / 4096 bytes
  485. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  486. Disk /dev/ram12: 64 MiB, 67108864 bytes, 131072 sectors
  487. Units: sectors of 1 * 512 = 512 bytes
  488. Sector size (logical/physical): 512 bytes / 4096 bytes
  489. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  490. Disk /dev/ram13: 64 MiB, 67108864 bytes, 131072 sectors
  491. Units: sectors of 1 * 512 = 512 bytes
  492. Sector size (logical/physical): 512 bytes / 4096 bytes
  493. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  494. Disk /dev/ram14: 64 MiB, 67108864 bytes, 131072 sectors
  495. Units: sectors of 1 * 512 = 512 bytes
  496. Sector size (logical/physical): 512 bytes / 4096 bytes
  497. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  498. Disk /dev/ram15: 64 MiB, 67108864 bytes, 131072 sectors
  499. Units: sectors of 1 * 512 = 512 bytes
  500. Sector size (logical/physical): 512 bytes / 4096 bytes
  501. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  502. Disk /dev/sda: 232.9 GiB, 250059350016 bytes, 488397168 sectors
  503. Units: sectors of 1 * 512 = 512 bytes
  504. Sector size (logical/physical): 512 bytes / 512 bytes
  505. I/O size (minimum/optimal): 512 bytes / 512 bytes
  506. Disklabel type: dos
  507. Disk identifier: 0x1bc59a40
  508. Device Boot Start End Sectors Size Id Type
  509. /dev/sda1 * 2048 473274367 473272320 225.7G 83 Linux
  510. /dev/sda2 473276414 488396799 15120386 7.2G 5 Extended
  511. /dev/sda5 473276416 488396799 15120384 7.2G 82 Linux swap / Solaris
  512. =================== Recommended repair
  513. The default repair of the Boot-Repair utility will purge (in order to) and reinstall the grub2 of sda1 into the MBR of sda.
  514. Additional repair will be performed: unhide-bootmenu-10s
  515. apt-get -y --force-yes update
  516. Purge the GRUB of sda1
  517. grub-pc available
  518. Lecture des listes de paquets…
  519. Construction de l'arbre des dépendances…SET@_progressbar1.pulse()
  520. Lecture des informations d'état…
  521. 0 mis à jour, 0 nouvellement installés, 1 réinstallés, 0 à enlever et 0 non mis à jour.
  522. Il est nécessaire de prendre 197 ko dans les archives.
  523. Après cette opération, 0 o d'espace disque supplémentaires seront utilisés.
  524. Réception de:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 grub-pc amd64 2.02~beta2-36ubuntu3.1 [197 kB]
  525. 197 ko réceptionnés en 0s (1 308 ko/s)
  526. Téléchargement achevé et dans le mode téléchargement uniquement
  527. W: --force-yes is deprecated, use one of the options starting with --allow instead.
  528. DEBCHECK debOK, grub-pc
  529. DEBCHECK debOK
  530. shim-signed available
  531. linux-signed-generic available
  532. Please type: sudo dpkg --configure -ansudo apt-get install -fynsudo apt-get purge -y --force-yes grub*-common grub-common:i386 shim-signed linux-signed*
  533. =================== /etc/grub.d/ :
  534. drwxr-xr-x 2 root root 4096 août 4 15:20 grub.d
  535. total 4
  536. -rwxr-xr-x 1 root root 1992 janv. 28 2016 20_memtest86+
  537. Then type: sudo apt-get install -y --force-yes grub-pc linux-generic
  538. =================== /etc/grub.d/ :
  539. drwxr-xr-x 2 root root 4096 août 4 15:20 grub.d
  540. drwxr-xr-x 2 root root 4096 août 4 15:20 grub.d.bak
  541. total 72
  542. -rwxr-xr-x 1 root root 9791 juin 17 11:10 00_header
  543. -rwxr-xr-x 1 root root 6258 mars 15 19:08 05_debian_theme
  544. -rwxr-xr-x 1 root root 12261 juin 17 11:10 10_linux
  545. -rwxr-xr-x 1 root root 11082 juin 17 11:10 20_linux_xen
  546. -rwxr-xr-x 1 root root 11692 juin 17 11:10 30_os-prober
  547. -rwxr-xr-x 1 root root 1418 juin 17 11:10 30_uefi-firmware
  548. -rwxr-xr-x 1 root root 214 juin 17 11:10 40_custom
  549. -rwxr-xr-x 1 root root 216 juin 17 11:10 41_custom
  550. -rw-r--r-- 1 root root 483 juin 17 11:10 README
  551. =================== /etc/default/grub :
  552. # If you change this file, run 'update-grub' afterwards to update
  553. # /boot/grub/grub.cfg.
  554. # For full documentation of the options in this file, see:
  555. # info -f grub -n 'Simple configuration'
  556. GRUB_DEFAULT=0
  557. GRUB_HIDDEN_TIMEOUT=0
  558. GRUB_HIDDEN_TIMEOUT_QUIET=true
  559. GRUB_TIMEOUT=10
  560. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  561. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  562. GRUB_CMDLINE_LINUX=""
  563. # Uncomment to enable BadRAM filtering, modify to suit your needs
  564. # This works with Linux (no patch required) and with any kernel that obtains
  565. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  566. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  567. # Uncomment to disable graphical terminal (grub-pc only)
  568. #GRUB_TERMINAL=console
  569. # The resolution used on graphical terminal
  570. # note that you can use only modes which your graphic card supports via VBE
  571. # you can see them in real GRUB with the command `vbeinfo'
  572. #GRUB_GFXMODE=640x480
  573. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  574. #GRUB_DISABLE_LINUX_UUID=true
  575. # Uncomment to disable generation of recovery mode menu entries
  576. #GRUB_DISABLE_RECOVERY="true"
  577. # Uncomment to get a beep at grub start
  578. #GRUB_INIT_TUNE="480 440 1"
  579. Unhide GRUB boot menu in sda1/etc/default/grub
  580. =================== /etc/grub.d/ :
  581. drwxr-xr-x 2 root root 4096 août 4 15:20 grub.d
  582. drwxr-xr-x 2 root root 4096 août 4 15:20 grub.d.bak
  583. total 72
  584. -rwxr-xr-x 1 root root 9791 juin 17 11:10 00_header
  585. -rwxr-xr-x 1 root root 6258 mars 15 19:08 05_debian_theme
  586. -rwxr-xr-x 1 root root 12261 juin 17 11:10 10_linux
  587. -rwxr-xr-x 1 root root 11082 juin 17 11:10 20_linux_xen
  588. -rwxr-xr-x 1 root root 11692 juin 17 11:10 30_os-prober
  589. -rwxr-xr-x 1 root root 1418 juin 17 11:10 30_uefi-firmware
  590. -rwxr-xr-x 1 root root 214 juin 17 11:10 40_custom
  591. -rwxr-xr-x 1 root root 216 juin 17 11:10 41_custom
  592. -rw-r--r-- 1 root root 483 juin 17 11:10 README
  593. =================== /etc/default/grub :
  594. # If you change this file, run 'update-grub' afterwards to update
  595. # /boot/grub/grub.cfg.
  596. # For full documentation of the options in this file, see:
  597. # info -f grub -n 'Simple configuration'
  598. GRUB_DEFAULT=0
  599. #GRUB_HIDDEN_TIMEOUT=0
  600. GRUB_HIDDEN_TIMEOUT_QUIET=true
  601. GRUB_TIMEOUT=10
  602. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  603. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  604. GRUB_CMDLINE_LINUX=""
  605. # Uncomment to enable BadRAM filtering, modify to suit your needs
  606. # This works with Linux (no patch required) and with any kernel that obtains
  607. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  608. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  609. # Uncomment to disable graphical terminal (grub-pc only)
  610. #GRUB_TERMINAL=console
  611. # The resolution used on graphical terminal
  612. # note that you can use only modes which your graphic card supports via VBE
  613. # you can see them in real GRUB with the command `vbeinfo'
  614. #GRUB_GFXMODE=640x480
  615. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  616. #GRUB_DISABLE_LINUX_UUID=true
  617. # Uncomment to disable generation of recovery mode menu entries
  618. #GRUB_DISABLE_RECOVERY="true"
  619. # Uncomment to get a beep at grub start
  620. #GRUB_INIT_TUNE="480 440 1"
  621. *******lspci -nnk | grep -iA3 vga
  622. 00:01.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7480D] [1002:9993]
  623. Subsystem: Micro-Star International Co., Ltd. [MSI] Trinity [Radeon HD 7480D] [1462:7721]
  624. Kernel modules: radeon
  625. 00:01.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Trinity HDMI Audio Controller [1002:9902]
  626. *******
  627. grub-install --version
  628. grub-install (GRUB) 2.02~beta2-36ubuntu3.1,grub-install (GRUB) 2.
  629. Reinstall the GRUB of sda1 into the MBR of sda
  630. Installing for i386-pc platform.
  631. Installation finished. No error reported.
  632. grub-install /dev/sda: exit code of grub-install /dev/sda:0
  633. update-grub
  634. Generating grub configuration file ...
  635. Found linux image: /boot/vmlinuz-4.4.0-31-generic
  636. Found initrd image: /boot/initrd.img-4.4.0-31-generic
  637. Unhide GRUB boot menu in sda1/boot/grub/grub.cfg
  638. Le démarrage de l'ordinateur a été correctement réparé.
  639. Vous pouvez maintenant redémarrer votre ordinateur.
  640. 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 [Réparateur de démarrage]. (http://doc.ubuntu-fr.org/tutoriel/partition_boot)
  641. paste.ubuntu.com ko (), using paste.debian
  642. paste.debian.net ko (), using paste2