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 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: 149 GiB, 160000000000 bytes, 312500000 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 308,445,183 308,443,136 83 Linux
  34. /dev/sda2 308,447,230 312,498,175 4,050,946 5 Extended
  35. /dev/sda5 308,447,232 312,498,175 4,050,944 82 Linux swap / Solaris
  36. "blkid" output: ________________________________________________________________
  37. Device UUID TYPE LABEL
  38. /dev/loop0 squashfs
  39. /dev/sda1 42bbd784-c78d-42d6-a509-e44c3351c7bc ext4
  40. /dev/sda5 428e0d88-92e8-4178-99e6-a0a462c0a261 swap
  41. /dev/sr0 2016-04-20-22-32-21-00 iso9660 Ubuntu 16.04 LTS i386
  42. ========================= "ls -l /dev/disk/by-id" output: ======================
  43. total 0
  44. lrwxrwxrwx 1 root root 9 Jul 20 13:40 ata-ST3160812AS_5LSFSQS8 -> ../../sda
  45. lrwxrwxrwx 1 root root 10 Jul 20 13:40 ata-ST3160812AS_5LSFSQS8-part1 -> ../../sda1
  46. lrwxrwxrwx 1 root root 10 Jul 20 13:40 ata-ST3160812AS_5LSFSQS8-part2 -> ../../sda2
  47. lrwxrwxrwx 1 root root 10 Jul 20 13:40 ata-ST3160812AS_5LSFSQS8-part5 -> ../../sda5
  48. lrwxrwxrwx 1 root root 9 Jul 20 13:33 ata-TSSTcorpDVD-ROM_TS-L333A -> ../../sr0
  49. lrwxrwxrwx 1 root root 9 Jul 20 13:33 usb-HUAWEI_Mass_Storage-0:0 -> ../../sr1
  50. ================================ Mount points: =================================
  51. Device Mount_Point Type Options
  52. /dev/loop0 /rofs squashfs (ro,noatime)
  53. /dev/sr0 /cdrom iso9660 (ro,noatime)
  54. =========================== sda1/boot/grub/grub.cfg: ===========================
  55. --------------------------------------------------------------------------------
  56. #
  57. # DO NOT EDIT THIS FILE
  58. #
  59. # It is automatically generated by grub-mkconfig using templates
  60. # from /etc/grub.d and settings from /etc/default/grub
  61. #
  62. ### BEGIN /etc/grub.d/00_header ###
  63. if [ -s $prefix/grubenv ]; then
  64. set have_grubenv=true
  65. load_env
  66. fi
  67. if [ "${next_entry}" ] ; then
  68. set default="${next_entry}"
  69. set next_entry=
  70. save_env next_entry
  71. set boot_once=true
  72. else
  73. set default="0"
  74. fi
  75. if [ x"${feature_menuentry_id}" = xy ]; then
  76. menuentry_id_option="--id"
  77. else
  78. menuentry_id_option=""
  79. fi
  80. export menuentry_id_option
  81. if [ "${prev_saved_entry}" ]; then
  82. set saved_entry="${prev_saved_entry}"
  83. save_env saved_entry
  84. set prev_saved_entry=
  85. save_env prev_saved_entry
  86. set boot_once=true
  87. fi
  88. function savedefault {
  89. if [ -z "${boot_once}" ]; then
  90. saved_entry="${chosen}"
  91. save_env saved_entry
  92. fi
  93. }
  94. function recordfail {
  95. set recordfail=1
  96. if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
  97. }
  98. function load_video {
  99. if [ x$feature_all_video_module = xy ]; then
  100. insmod all_video
  101. else
  102. insmod efi_gop
  103. insmod efi_uga
  104. insmod ieee1275_fb
  105. insmod vbe
  106. insmod vga
  107. insmod video_bochs
  108. insmod video_cirrus
  109. fi
  110. }
  111. if [ x$feature_default_font_path = xy ] ; then
  112. font=unicode
  113. else
  114. insmod part_msdos
  115. insmod ext2
  116. set root='hd0,msdos1'
  117. if [ x$feature_platform_search_hint = xy ]; then
  118. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  119. else
  120. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  121. fi
  122. font="/usr/share/grub/unicode.pf2"
  123. fi
  124. if loadfont $font ; then
  125. set gfxmode=auto
  126. load_video
  127. insmod gfxterm
  128. set locale_dir=$prefix/locale
  129. set lang=fr_FR
  130. insmod gettext
  131. fi
  132. terminal_output gfxterm
  133. if [ "${recordfail}" = 1 ] ; then
  134. set timeout=30
  135. else
  136. if [ x$feature_timeout_style = xy ] ; then
  137. set timeout_style=hidden
  138. set timeout=0
  139. # Fallback hidden-timeout code in case the timeout_style feature is
  140. # unavailable.
  141. elif sleep --interruptible 0 ; then
  142. set timeout=0
  143. fi
  144. fi
  145. ### END /etc/grub.d/00_header ###
  146. ### BEGIN /etc/grub.d/05_debian_theme ###
  147. set menu_color_normal=white/black
  148. set menu_color_highlight=black/light-gray
  149. if background_color 44,0,30,0; then
  150. clear
  151. fi
  152. ### END /etc/grub.d/05_debian_theme ###
  153. ### BEGIN /etc/grub.d/10_linux ###
  154. function gfxmode {
  155. set gfxpayload="${1}"
  156. if [ "${1}" = "keep" ]; then
  157. set vt_handoff=vt.handoff=7
  158. else
  159. set vt_handoff=
  160. fi
  161. }
  162. if [ "${recordfail}" != 1 ]; then
  163. if [ -e ${prefix}/gfxblacklist.txt ]; then
  164. if hwmatch ${prefix}/gfxblacklist.txt 3; then
  165. if [ ${match} = 0 ]; then
  166. set linux_gfx_mode=keep
  167. else
  168. set linux_gfx_mode=text
  169. fi
  170. else
  171. set linux_gfx_mode=text
  172. fi
  173. else
  174. set linux_gfx_mode=keep
  175. fi
  176. else
  177. set linux_gfx_mode=text
  178. fi
  179. export linux_gfx_mode
  180. menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-42bbd784-c78d-42d6-a509-e44c3351c7bc' {
  181. recordfail
  182. load_video
  183. gfxmode $linux_gfx_mode
  184. insmod gzio
  185. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  186. insmod part_msdos
  187. insmod ext2
  188. set root='hd0,msdos1'
  189. if [ x$feature_platform_search_hint = xy ]; then
  190. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  191. else
  192. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  193. fi
  194. linux /boot/vmlinuz-4.4.0-21-generic root=UUID=42bbd784-c78d-42d6-a509-e44c3351c7bc ro quiet splash $vt_handoff
  195. initrd /boot/initrd.img-4.4.0-21-generic
  196. }
  197. submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-42bbd784-c78d-42d6-a509-e44c3351c7bc' {
  198. menuentry 'Ubuntu, avec Linux 4.4.0-21-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-advanced-42bbd784-c78d-42d6-a509-e44c3351c7bc' {
  199. recordfail
  200. load_video
  201. gfxmode $linux_gfx_mode
  202. insmod gzio
  203. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  204. insmod part_msdos
  205. insmod ext2
  206. set root='hd0,msdos1'
  207. if [ x$feature_platform_search_hint = xy ]; then
  208. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  209. else
  210. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  211. fi
  212. echo 'Chargement de Linux 4.4.0-21-generic…'
  213. linux /boot/vmlinuz-4.4.0-21-generic root=UUID=42bbd784-c78d-42d6-a509-e44c3351c7bc ro quiet splash $vt_handoff
  214. echo 'Chargement du disque mémoire initial…'
  215. initrd /boot/initrd.img-4.4.0-21-generic
  216. }
  217. menuentry 'Ubuntu, with Linux 4.4.0-21-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-init-upstart-42bbd784-c78d-42d6-a509-e44c3351c7bc' {
  218. recordfail
  219. load_video
  220. gfxmode $linux_gfx_mode
  221. insmod gzio
  222. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  223. insmod part_msdos
  224. insmod ext2
  225. set root='hd0,msdos1'
  226. if [ x$feature_platform_search_hint = xy ]; then
  227. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  228. else
  229. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  230. fi
  231. echo 'Chargement de Linux 4.4.0-21-generic…'
  232. linux /boot/vmlinuz-4.4.0-21-generic root=UUID=42bbd784-c78d-42d6-a509-e44c3351c7bc ro quiet splash $vt_handoff init=/sbin/upstart
  233. echo 'Chargement du disque mémoire initial…'
  234. initrd /boot/initrd.img-4.4.0-21-generic
  235. }
  236. menuentry 'Ubuntu, with Linux 4.4.0-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-recovery-42bbd784-c78d-42d6-a509-e44c3351c7bc' {
  237. recordfail
  238. load_video
  239. insmod gzio
  240. if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
  241. insmod part_msdos
  242. insmod ext2
  243. set root='hd0,msdos1'
  244. if [ x$feature_platform_search_hint = xy ]; then
  245. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  246. else
  247. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  248. fi
  249. echo 'Chargement de Linux 4.4.0-21-generic…'
  250. linux /boot/vmlinuz-4.4.0-21-generic root=UUID=42bbd784-c78d-42d6-a509-e44c3351c7bc ro recovery nomodeset
  251. echo 'Chargement du disque mémoire initial…'
  252. initrd /boot/initrd.img-4.4.0-21-generic
  253. }
  254. }
  255. ### END /etc/grub.d/10_linux ###
  256. ### BEGIN /etc/grub.d/20_linux_xen ###
  257. ### END /etc/grub.d/20_linux_xen ###
  258. ### BEGIN /etc/grub.d/20_memtest86+ ###
  259. menuentry 'Memory test (memtest86+)' {
  260. insmod part_msdos
  261. insmod ext2
  262. set root='hd0,msdos1'
  263. if [ x$feature_platform_search_hint = xy ]; then
  264. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  265. else
  266. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  267. fi
  268. knetbsd /boot/memtest86+.elf
  269. }
  270. menuentry 'Memory test (memtest86+, serial console 115200)' {
  271. insmod part_msdos
  272. insmod ext2
  273. set root='hd0,msdos1'
  274. if [ x$feature_platform_search_hint = xy ]; then
  275. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 42bbd784-c78d-42d6-a509-e44c3351c7bc
  276. else
  277. search --no-floppy --fs-uuid --set=root 42bbd784-c78d-42d6-a509-e44c3351c7bc
  278. fi
  279. linux16 /boot/memtest86+.bin console=ttyS0,115200n8
  280. }
  281. ### END /etc/grub.d/20_memtest86+ ###
  282. ### BEGIN /etc/grub.d/30_os-prober ###
  283. ### END /etc/grub.d/30_os-prober ###
  284. ### BEGIN /etc/grub.d/30_uefi-firmware ###
  285. ### END /etc/grub.d/30_uefi-firmware ###
  286. ### BEGIN /etc/grub.d/40_custom ###
  287. # This file provides an easy way to add custom menu entries. Simply type the
  288. # menu entries you want to add after this comment. Be careful not to change
  289. # the 'exec tail' line above.
  290. ### END /etc/grub.d/40_custom ###
  291. ### BEGIN /etc/grub.d/41_custom ###
  292. if [ -f ${config_directory}/custom.cfg ]; then
  293. source ${config_directory}/custom.cfg
  294. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  295. source $prefix/custom.cfg;
  296. fi
  297. ### END /etc/grub.d/41_custom ###
  298. --------------------------------------------------------------------------------
  299. =============================== sda1/etc/fstab: ================================
  300. --------------------------------------------------------------------------------
  301. # /etc/fstab: static file system information.
  302. #
  303. # Use 'blkid' to print the universally unique identifier for a
  304. # device; this may be used with UUID= as a more robust way to name devices
  305. # that works even if disks are added and removed. See fstab(5).
  306. #
  307. # <file system> <mount point> <type> <options> <dump> <pass>
  308. # / was on /dev/sda1 during installation
  309. UUID=42bbd784-c78d-42d6-a509-e44c3351c7bc / ext4 errors=remount-ro 0 1
  310. # swap was on /dev/sda5 during installation
  311. UUID=428e0d88-92e8-4178-99e6-a0a462c0a261 none swap sw 0 0
  312. --------------------------------------------------------------------------------
  313. =================== sda1: Location of files loaded by Grub: ====================
  314. GiB - GB File Fragment(s)
  315. 2.185218811 = 2.346360832 boot/grub/grub.cfg 1
  316. 2.184803009 = 2.345914368 boot/grub/i386-pc/core.img 1
  317. 2.183246613 = 2.344243200 boot/vmlinuz-4.4.0-21-generic 1
  318. 2.183246613 = 2.344243200 vmlinuz 1
  319. 48.272014618 = 51.831681024 boot/initrd.img-4.4.0-21-generic 2
  320. 48.272014618 = 51.831681024 initrd.img 2
  321. =============================== StdErr Messages: ===============================
  322. File descriptor 9 (/proc/7229/mounts) leaked on lvs invocation. Parent PID 13291: bash
  323. File descriptor 63 (pipe:[59273]) leaked on lvs invocation. Parent PID 13291: bash
  324. ADDITIONAL INFORMATION :
  325. =================== log of boot-info 2016-07-20__13h40 ===================
  326. boot-info version : 4ppa38
  327. boot-sav version : 4ppa38
  328. glade2script version : 3.2.3~ppa1
  329. boot-sav-extra version : 4ppa38
  330. Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.
  331. Error: Can't have a partition outside the disk!
  332. Warning: Unable to open /dev/sr1 read-write (Read-only file system). /dev/sr1 has been opened read-only.
  333. Warning: The driver descriptor says the physical block size is 512 bytes, but Linux says it is 2048 bytes.
  334. Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.
  335. Error: Can't have a partition outside the disk!
  336. Warning: Unable to open /dev/sr1 read-write (Read-only file system). /dev/sr1 has been opened read-only.
  337. Warning: The driver descriptor says the physical block size is 512 bytes, but Linux says it is 2048 bytes.
  338. boot-info is executed in live-session (Ubuntu 16.04 LTS, xenial, Ubuntu, i686)
  339. CPU op-mode(s): 32-bit, 64-bit
  340. file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash --- maybe-ubiquity
  341. ls: impossible d'accéder à '/home/usr/.config': Aucun fichier ou dossier de ce type
  342. =================== os-prober:
  343. /dev/sda1:Ubuntu 16.04 LTS (16.04):Ubuntu:linux
  344. =================== blkid:
  345. /dev/sda1: UUID="42bbd784-c78d-42d6-a509-e44c3351c7bc" TYPE="ext4" PARTUUID="8164e76f-01"
  346. /dev/sr0: UUID="2016-04-20-22-32-21-00" LABEL="Ubuntu 16.04 LTS i386" TYPE="iso9660" PTUUID="01a8fd35" PTTYPE="dos"
  347. /dev/loop0: TYPE="squashfs"
  348. /dev/sda5: UUID="428e0d88-92e8-4178-99e6-a0a462c0a261" TYPE="swap" PARTUUID="8164e76f-05"
  349. 1 disks with OS, 1 OS : 1 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
  350. =================== sda1/etc/grub.d/ :
  351. drwxr-xr-x 2 root root 4096 avril 20 22:14 grub.d
  352. total 76
  353. -rwxr-xr-x 1 root root 9791 avril 15 22:02 00_header
  354. -rwxr-xr-x 1 root root 6258 mars 15 18:08 05_debian_theme
  355. -rwxr-xr-x 1 root root 12261 avril 15 22:02 10_linux
  356. -rwxr-xr-x 1 root root 11082 avril 15 22:02 20_linux_xen
  357. -rwxr-xr-x 1 root root 1992 janv. 28 12:44 20_memtest86+
  358. -rwxr-xr-x 1 root root 11692 avril 15 22:02 30_os-prober
  359. -rwxr-xr-x 1 root root 1418 avril 15 22:02 30_uefi-firmware
  360. -rwxr-xr-x 1 root root 214 avril 15 22:02 40_custom
  361. -rwxr-xr-x 1 root root 216 avril 15 22:02 41_custom
  362. -rw-r--r-- 1 root root 483 avril 15 22:02 README
  363. =================== sda1/etc/default/grub :
  364. # If you change this file, run 'update-grub' afterwards to update
  365. # /boot/grub/grub.cfg.
  366. # For full documentation of the options in this file, see:
  367. # info -f grub -n 'Simple configuration'
  368. GRUB_DEFAULT=0
  369. GRUB_HIDDEN_TIMEOUT=0
  370. GRUB_HIDDEN_TIMEOUT_QUIET=true
  371. GRUB_TIMEOUT=10
  372. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  373. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  374. GRUB_CMDLINE_LINUX=""
  375. # Uncomment to enable BadRAM filtering, modify to suit your needs
  376. # This works with Linux (no patch required) and with any kernel that obtains
  377. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  378. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  379. # Uncomment to disable graphical terminal (grub-pc only)
  380. #GRUB_TERMINAL=console
  381. # The resolution used on graphical terminal
  382. # note that you can use only modes which your graphic card supports via VBE
  383. # you can see them in real GRUB with the command `vbeinfo'
  384. #GRUB_GFXMODE=640x480
  385. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  386. #GRUB_DISABLE_LINUX_UUID=true
  387. # Uncomment to disable generation of recovery mode menu entries
  388. #GRUB_DISABLE_RECOVERY="true"
  389. # Uncomment to get a beep at grub start
  390. #GRUB_INIT_TUNE="480 440 1"
  391. =================== UEFI/Legacy mode:
  392. This live-session is not EFI-compatible.
  393. SecureBoot maybe enabled.
  394. =================== PARTITIONS & DISKS:
  395. 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, /mnt/boot-sav/sda1.
  396. sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
  397. =================== parted -l:
  398. Model: ATA ST3160812AS (scsi)
  399. Disk /dev/sda: 160GB
  400. Sector size (logical/physical): 512B/512B
  401. Partition Table: msdos
  402. Disk Flags:
  403. Number Start End Size Type File system Flags
  404. 1 1049kB 158GB 158GB primary ext4 boot
  405. 2 158GB 160GB 2074MB extended
  406. 5 158GB 160GB 2074MB logical linux-swap(v1)
  407. Model: TSSTcorp DVD-ROM TS-L333A (scsi)
  408. Disk /dev/sr0: 1504MB
  409. Sector size (logical/physical): 2048B/2048B
  410. Partition Table: unknown
  411. Disk Flags:
  412. Model: Unknown (unknown)
  413. Disk /dev/sr1: 134MB
  414. Sector size (logical/physical): 2048B/2048B
  415. Partition Table: unknown
  416. Disk Flags:
  417. =================== parted -lm:
  418. BYT;
  419. /dev/sda:160GB:scsi:512:512:msdos:ATA ST3160812AS:;
  420. 1:1049kB:158GB:158GB:ext4::boot;
  421. 2:158GB:160GB:2074MB:::;
  422. 5:158GB:160GB:2074MB:linux-swap(v1)::;
  423. BYT;
  424. /dev/sr0:1504MB:scsi:2048:2048:unknown:TSSTcorp DVD-ROM TS-L333A:;
  425. BYT;
  426. /dev/sr1:134MB:unknown:2048:2048:unknown:Unknown:;
  427. =================== lsblk:
  428. KNAME TYPE FSTYPE SIZE LABEL
  429. sda disk 149G
  430. sda1 part ext4 147,1G
  431. sda2 part 1K
  432. sda5 part swap 2G
  433. sr0 rom iso9660 1,4G Ubuntu 16.04 LTS i386
  434. sr1 rom 128M
  435. loop0 loop squashfs 1,4G
  436. KNAME ROTA RO RM STATE MOUNTPOINT
  437. sda 1 0 0 running
  438. sda1 1 0 0 /mnt/boot-sav/sda1
  439. sda2 1 0 0
  440. sda5 1 0 0 [SWAP]
  441. sr0 1 0 1 running /cdrom
  442. sr1 1 0 1 running
  443. loop0 1 1 0 /rofs
  444. =================== mount:
  445. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  446. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  447. udev on /dev type devtmpfs (rw,nosuid,relatime,size=982976k,nr_inodes=212959,mode=755)
  448. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  449. tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=199240k,mode=755)
  450. /dev/sr0 on /cdrom type iso9660 (ro,noatime)
  451. /dev/loop0 on /rofs type squashfs (ro,noatime)
  452. /cow on / type overlay (rw,relatime,lowerdir=//filesystem.squashfs,upperdir=/cow/upper,workdir=/cow/work)
  453. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  454. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  455. tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
  456. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  457. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd,nsroot=/)
  458. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  459. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio,nsroot=/)
  460. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids,nsroot=/)
  461. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer,nsroot=/)
  462. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset,nsroot=/)
  463. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio,nsroot=/)
  464. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory,nsroot=/)
  465. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices,nsroot=/)
  466. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event,nsroot=/)
  467. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct,nsroot=/)
  468. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb,nsroot=/)
  469. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=21,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
  470. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  471. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  472. mqueue on /dev/mqueue type mqueue (rw,relatime)
  473. tracefs on /sys/kernel/debug/tracing type tracefs (rw,relatime)
  474. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  475. tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
  476. tmpfs on /run/user/999 type tmpfs (rw,nosuid,nodev,relatime,size=199240k,mode=700,uid=999,gid=999)
  477. gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=999,group_id=999)
  478. /dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw,relatime,data=ordered)
  479. =================== ls:
  480. /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
  481. /sys/block/sr0 (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 size slaves stat subsystem trace uevent
  482. /sys/block/sr1 (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 size slaves stat subsystem trace uevent
  483. /dev (filtered): agpgart autofs block bsg btrfs-control bus cdc-wdm0 cdrom char console core cpu cpu_dma_latency cuse disk dri dvd 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 lightnvm log lp0 mapper mcelog mei0 mem memory_bandwidth mqueue net network_latency network_throughput null parport0 port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda5 serial sg0 sg1 sg2 shm snapshot snd sr0 sr1 stderr stdin stdout uhid uinput urandom userio vfio vga_arbiter vhci vhost-net watchdog watchdog0 zero
  484. ls /dev/mapper: control
  485. =================== df -Th:
  486. Filesystem Type Size Used Avail Use% Mounted on
  487. udev devtmpfs 960M 0 960M 0% /dev
  488. tmpfs tmpfs 195M 6.3M 189M 4% /run
  489. /dev/sr0 iso9660 1.5G 1.5G 0 100% /cdrom
  490. /dev/loop0 squashfs 1.4G 1.4G 0 100% /rofs
  491. /cow overlay 973M 94M 879M 10% /
  492. tmpfs tmpfs 973M 340K 973M 1% /dev/shm
  493. tmpfs tmpfs 5.0M 8.0K 5.0M 1% /run/lock
  494. tmpfs tmpfs 973M 0 973M 0% /sys/fs/cgroup
  495. tmpfs tmpfs 973M 296K 973M 1% /tmp
  496. tmpfs tmpfs 195M 60K 195M 1% /run/user/999
  497. /dev/sda1 ext4 145G 3.9G 134G 3% /mnt/boot-sav/sda1
  498. =================== fdisk -l:
  499. Disk /dev/ram0: 64 MiB, 67108864 bytes, 131072 sectors
  500. Units: sectors of 1 * 512 = 512 bytes
  501. Sector size (logical/physical): 512 bytes / 4096 bytes
  502. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  503. Disk /dev/ram1: 64 MiB, 67108864 bytes, 131072 sectors
  504. Units: sectors of 1 * 512 = 512 bytes
  505. Sector size (logical/physical): 512 bytes / 4096 bytes
  506. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  507. Disk /dev/ram2: 64 MiB, 67108864 bytes, 131072 sectors
  508. Units: sectors of 1 * 512 = 512 bytes
  509. Sector size (logical/physical): 512 bytes / 4096 bytes
  510. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  511. Disk /dev/ram3: 64 MiB, 67108864 bytes, 131072 sectors
  512. Units: sectors of 1 * 512 = 512 bytes
  513. Sector size (logical/physical): 512 bytes / 4096 bytes
  514. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  515. Disk /dev/ram4: 64 MiB, 67108864 bytes, 131072 sectors
  516. Units: sectors of 1 * 512 = 512 bytes
  517. Sector size (logical/physical): 512 bytes / 4096 bytes
  518. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  519. Disk /dev/ram5: 64 MiB, 67108864 bytes, 131072 sectors
  520. Units: sectors of 1 * 512 = 512 bytes
  521. Sector size (logical/physical): 512 bytes / 4096 bytes
  522. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  523. Disk /dev/ram6: 64 MiB, 67108864 bytes, 131072 sectors
  524. Units: sectors of 1 * 512 = 512 bytes
  525. Sector size (logical/physical): 512 bytes / 4096 bytes
  526. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  527. Disk /dev/ram7: 64 MiB, 67108864 bytes, 131072 sectors
  528. Units: sectors of 1 * 512 = 512 bytes
  529. Sector size (logical/physical): 512 bytes / 4096 bytes
  530. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  531. Disk /dev/ram8: 64 MiB, 67108864 bytes, 131072 sectors
  532. Units: sectors of 1 * 512 = 512 bytes
  533. Sector size (logical/physical): 512 bytes / 4096 bytes
  534. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  535. Disk /dev/ram9: 64 MiB, 67108864 bytes, 131072 sectors
  536. Units: sectors of 1 * 512 = 512 bytes
  537. Sector size (logical/physical): 512 bytes / 4096 bytes
  538. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  539. Disk /dev/ram10: 64 MiB, 67108864 bytes, 131072 sectors
  540. Units: sectors of 1 * 512 = 512 bytes
  541. Sector size (logical/physical): 512 bytes / 4096 bytes
  542. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  543. Disk /dev/ram11: 64 MiB, 67108864 bytes, 131072 sectors
  544. Units: sectors of 1 * 512 = 512 bytes
  545. Sector size (logical/physical): 512 bytes / 4096 bytes
  546. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  547. Disk /dev/ram12: 64 MiB, 67108864 bytes, 131072 sectors
  548. Units: sectors of 1 * 512 = 512 bytes
  549. Sector size (logical/physical): 512 bytes / 4096 bytes
  550. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  551. Disk /dev/ram13: 64 MiB, 67108864 bytes, 131072 sectors
  552. Units: sectors of 1 * 512 = 512 bytes
  553. Sector size (logical/physical): 512 bytes / 4096 bytes
  554. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  555. Disk /dev/ram14: 64 MiB, 67108864 bytes, 131072 sectors
  556. Units: sectors of 1 * 512 = 512 bytes
  557. Sector size (logical/physical): 512 bytes / 4096 bytes
  558. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  559. Disk /dev/ram15: 64 MiB, 67108864 bytes, 131072 sectors
  560. Units: sectors of 1 * 512 = 512 bytes
  561. Sector size (logical/physical): 512 bytes / 4096 bytes
  562. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  563. Disk /dev/loop0: 1.4 GiB, 1460752384 bytes, 2853032 sectors
  564. Units: sectors of 1 * 512 = 512 bytes
  565. Sector size (logical/physical): 512 bytes / 512 bytes
  566. I/O size (minimum/optimal): 512 bytes / 512 bytes
  567. Disk /dev/sda: 149 GiB, 160000000000 bytes, 312500000 sectors
  568. Units: sectors of 1 * 512 = 512 bytes
  569. Sector size (logical/physical): 512 bytes / 512 bytes
  570. I/O size (minimum/optimal): 512 bytes / 512 bytes
  571. Disklabel type: dos
  572. Disk identifier: 0x8164e76f
  573. Device Boot Start End Sectors Size Id Type
  574. /dev/sda1 * 2048 308445183 308443136 147.1G 83 Linux
  575. /dev/sda2 308447230 312498175 4050946 2G 5 Extended
  576. /dev/sda5 308447232 312498175 4050944 2G 82 Linux swap / Solaris
  577. =================== Suggested repair
  578. The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda1 into the MBR of sda.
  579. Additional repair would be performed: unhide-bootmenu-10s
  580. =================== User settings
  581. The settings chosen by the user will not act on the boot.
  582. paste.ubuntu.com ko (), using paste.debian
  583. paste.debian.net ko (), using paste2