1. Boot Info Script cfd9efe + Boot-Repair extra info [Boot-Info 26Apr2016]
  2. ============================= Boot Info Summary: ===============================
  3. => Syslinux MBR (5.00 and higher) is installed in the MBR of /dev/sda.
  4. sda1: __________________________________________________________________________
  5. File system: vfat
  6. Boot sector type: SYSLINUX 6.03 20151222............................................@.....2....0............A20 gate n
  7. Boot sector info: Syslinux looks at sector 3590240 of /dev/sda1 for its
  8. second stage. SYSLINUX is installed in the directory.
  9. According to the info in the boot sector, sda1 starts
  10. at sector 0. But according to the info from fdisk,
  11. sda1 starts at sector 63.
  12. Operating System:
  13. Boot files: /boot/grub/grub.cfg /syslinux.cfg /casper/vmlinuz.efi
  14. /EFI/BOOT/grubx64.efi
  15. /OS/ubuntu-14.04.2-64bit/casper/vmlinuz.efi
  16. /OS/fedora-20-64bit/EFI/BOOT/BOOTX64.efi
  17. /OS/fedora-20-64bit/EFI/BOOT/grubx64.efi
  18. /OS/ubuntu-14.04.2-64bit/EFI/BOOT/grubx64.efi
  19. /ldlinux.sys
  20. ============================ Drive/Partition Info: =============================
  21. Drive: sda _____________________________________________________________________
  22. Disk /dev/sda: 15.8 GiB, 16988602368 bytes, 33180864 sectors
  23. Units: sectors of 1 * 512 = 512 bytes
  24. Sector size (logical/physical): 512 bytes / 512 bytes
  25. I/O size (minimum/optimal): 512 bytes / 512 bytes
  26. Disklabel type: dos
  27. Partition Boot Start Sector End Sector # of Sectors Id System
  28. /dev/sda1 * 63 33,180,863 33,180,801 6 FAT16
  29. "blkid" output: ________________________________________________________________
  30. Device UUID TYPE LABEL
  31. /dev/loop0 squashfs
  32. /dev/mmcblk0
  33. /dev/mmcblk0p1 F478-F298 vfat SYSTEM
  34. /dev/mmcblk0p2
  35. /dev/mmcblk0p3 60368017367FED02 ntfs OS
  36. /dev/mmcblk0p4 10C4D649C4D63128 ntfs RECOVERY
  37. /dev/mmcblk1
  38. /dev/mmcblk1p1 33e33f58-4922-4f08-a6b4-287ee4f292cc ext4
  39. /dev/sda1 6D83-AC27 vfat Linux
  40. ========================= "ls -l /dev/disk/by-id" output: ======================
  41. total 0
  42. lrwxrwxrwx 1 root root 13 Sep 4 18:47 mmc-DS2064_0x1d6c387a -> ../../mmcblk0
  43. lrwxrwxrwx 1 root root 15 Sep 4 18:47 mmc-DS2064_0x1d6c387a-part1 -> ../../mmcblk0p1
  44. lrwxrwxrwx 1 root root 15 Sep 4 18:47 mmc-DS2064_0x1d6c387a-part2 -> ../../mmcblk0p2
  45. lrwxrwxrwx 1 root root 15 Sep 4 18:47 mmc-DS2064_0x1d6c387a-part3 -> ../../mmcblk0p3
  46. lrwxrwxrwx 1 root root 15 Sep 4 18:47 mmc-DS2064_0x1d6c387a-part4 -> ../../mmcblk0p4
  47. lrwxrwxrwx 1 root root 13 Sep 4 18:47 mmc-SU16G_0x22dcfcf1 -> ../../mmcblk1
  48. lrwxrwxrwx 1 root root 15 Sep 4 18:47 mmc-SU16G_0x22dcfcf1-part1 -> ../../mmcblk1p1
  49. lrwxrwxrwx 1 root root 9 Sep 4 18:59 usb-USB2.0_DISK_120508102915-0:0 -> ../../sda
  50. lrwxrwxrwx 1 root root 10 Sep 4 18:59 usb-USB2.0_DISK_120508102915-0:0-part1 -> ../../sda1
  51. ================================ Mount points: =================================
  52. Device Mount_Point Type Options
  53. /dev/loop0 /rofs squashfs (ro,noatime)
  54. /dev/mmcblk1p1 /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
  55. /dev/sda1 /cdrom vfat (ro,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  56. =========================== sda1/boot/grub/grub.cfg: ===========================
  57. --------------------------------------------------------------------------------
  58. if loadfont /boot/grub/font.pf2 ; then
  59. set gfxmode=auto
  60. insmod efi_gop
  61. insmod efi_uga
  62. insmod gfxterm
  63. terminal_output gfxterm
  64. fi
  65. set menu_color_normal=white/black
  66. set menu_color_highlight=black/light-gray
  67. menuentry "Try Ubuntu without installing" {
  68. set gfxpayload=keep
  69. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---
  70. initrd /casper/initrd.lz
  71. }
  72. menuentry "Install Ubuntu" {
  73. set gfxpayload=keep
  74. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash ---
  75. initrd /casper/initrd.lz
  76. }
  77. menuentry "OEM install (for manufacturers)" {
  78. set gfxpayload=keep
  79. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true ---
  80. initrd /casper/initrd.lz
  81. }
  82. menuentry "Check disc for defects" {
  83. set gfxpayload=keep
  84. linux /casper/vmlinuz.efi boot=casper integrity-check quiet splash ---
  85. initrd /casper/initrd.lz
  86. }
  87. --------------------------------------------------------------------------------
  88. ============================== sda1/syslinux.cfg: ==============================
  89. --------------------------------------------------------------------------------
  90. default menu.c32
  91. prompt 0
  92. menu title UNetbootin
  93. timeout 100
  94. label unetbootindefault
  95. menu label Default
  96. kernel /ubnkern
  97. append initrd=/ubninit file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---
  98. label ubnentry0
  99. menu label ^Help
  100. kernel /ubnkern
  101. append initrd=/ubninit
  102. label ubnentry1
  103. menu label ^Try Ubuntu without installing
  104. kernel /casper/vmlinuz.efi
  105. append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---
  106. label ubnentry2
  107. menu label ^Install Ubuntu
  108. kernel /casper/vmlinuz.efi
  109. append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash ---
  110. label ubnentry3
  111. menu label ^Check disc for defects
  112. kernel /casper/vmlinuz.efi
  113. append initrd=/casper/initrd.lz boot=casper integrity-check quiet splash ---
  114. label ubnentry4
  115. menu label Test ^memory
  116. kernel /install/mt86plus
  117. append initrd=/ubninit
  118. label ubnentry5
  119. menu label ^Boot from first hard disk
  120. kernel /ubnkern
  121. append initrd=/ubninit
  122. label ubnentry6
  123. menu label Try Ubuntu without installing
  124. kernel /casper/vmlinuz.efi
  125. append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---
  126. label ubnentry7
  127. menu label Install Ubuntu
  128. kernel /casper/vmlinuz.efi
  129. append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash ---
  130. label ubnentry8
  131. menu label OEM install (for manufacturers)
  132. kernel /casper/vmlinuz.efi
  133. append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true ---
  134. label ubnentry9
  135. menu label Check disc for defects
  136. kernel /casper/vmlinuz.efi
  137. append initrd=/casper/initrd.lz boot=casper integrity-check quiet splash ---
  138. --------------------------------------------------------------------------------
  139. =================== sda1: Location of files loaded by Grub: ====================
  140. GiB - GB File Fragment(s)
  141. ?? = ?? boot/grub/grub.cfg 1
  142. ================= sda1: Location of files loaded by Syslinux: ==================
  143. GiB - GB File Fragment(s)
  144. ?? = ?? syslinux.cfg 1
  145. ?? = ?? ldlinux.sys 1
  146. ?? = ?? ldlinux.c32 1
  147. ?? = ?? libcom32.c32 1
  148. ?? = ?? libutil.c32 1
  149. ?? = ?? menu.c32 1
  150. ============== sda1: Version of COM32(R) files used by Syslinux: ===============
  151. ldlinux.c32 : not a COM32/COM32R module
  152. libcom32.c32 : not a COM32/COM32R module
  153. libutil.c32 : not a COM32/COM32R module
  154. menu.c32 : not a COM32/COM32R module
  155. =============================== StdErr Messages: ===============================
  156. File descriptor 9 (/proc/25745/mounts) leaked on lvs invocation. Parent PID 7092: bash
  157. File descriptor 63 (pipe:[76650]) leaked on lvs invocation. Parent PID 7092: bash
  158. ADDITIONAL INFORMATION :
  159. =================== log of boot-repair 2016-09-04__18h59 ===================
  160. boot-repair version : 4ppa38
  161. boot-sav version : 4ppa38
  162. glade2script version : 3.2.3~ppa1
  163. boot-sav-extra version : 4ppa38
  164. Error: /dev/mmcblk0rpmb: unrecognised disk label
  165. Warning: Error fsyncing/closing /dev/mmcblk0rpmb: Input/output error
  166. Error: /dev/mmcblk0boot0: unrecognised disk label
  167. Error: /dev/mmcblk0boot1: unrecognised disk label
  168. Error: /dev/mmcblk0rpmb: unrecognised disk label
  169. Warning: Error fsyncing/closing /dev/mmcblk0rpmb: Input/output error
  170. Error: /dev/mmcblk0boot0: unrecognised disk label
  171. Error: /dev/mmcblk0boot1: unrecognised disk label
  172. boot-repair is executed in live-session (Ubuntu 16.04.1 LTS, xenial, Ubuntu, x86_64)
  173. CPU op-mode(s): 32-bit, 64-bit
  174. BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash ---
  175. ls: cannot access '/home/usr/.config': No such file or directory
  176. mmcblk0 (sda) has unknown type. Please report this message to [email protected]
  177. mmcblk1 (sda) has unknown type. Please report this message to [email protected]
  178. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  179. mount /dev/mmcblk0 : Error code 32
  180. mount -r /dev/mmcblk0 /mnt/boot-sav/mmcblk0
  181. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  182. mount -r /dev/mmcblk0 : Error code 32
  183. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  184. mount /dev/mmcblk1 : Error code 32
  185. mount -r /dev/mmcblk1 /mnt/boot-sav/mmcblk1
  186. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  187. mount -r /dev/mmcblk1 : Error code 32
  188. cat: /sys/block/mmcblk0/mmcblk0boot0/start: No such file or directory
  189. cat: /sys/block/mmcblk0/mmcblk0boot1/start: No such file or directory
  190. cat: /sys/block/mmcblk0/mmcblk0rpmb/start: No such file or directory
  191. =================== os-prober:
  192. /dev/mmcblk0p1@/efi/Microsoft/Boot/bootmgfw.efi:Windows Boot Manager:Windows:efi
  193. /dev/mmcblk1p1:Ubuntu 16.04.1 LTS (16.04):Ubuntu:linux
  194. =================== blkid:
  195. /dev/mmcblk0p1: LABEL="SYSTEM" UUID="F478-F298" TYPE="vfat" PARTLABEL="EFI system partition" PARTUUID="ec1dde75-be7b-41e0-947b-93fc4bd0d96a"
  196. /dev/mmcblk0p3: LABEL="OS" UUID="60368017367FED02" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="83111429-d662-480f-a9cd-28a7baa4639b"
  197. /dev/mmcblk0p4: LABEL="RECOVERY" UUID="10C4D649C4D63128" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="3623c5d8-c96b-4d9a-b208-abfda71d1a93"
  198. /dev/mmcblk1p1: UUID="33e33f58-4922-4f08-a6b4-287ee4f292cc" TYPE="ext4" PARTUUID="4de78d10-01"
  199. /dev/sda1: LABEL="Linux" UUID="6D83-AC27" TYPE="vfat" PARTUUID="00005e85-01"
  200. /dev/loop0: TYPE="squashfs"
  201. /dev/mmcblk0: PTUUID="7e552fa3-c760-449a-9e5f-fa4781ef3b35" PTTYPE="gpt"
  202. /dev/mmcblk0p2: PARTLABEL="Microsoft reserved partition" PARTUUID="64df097f-c7e8-47c2-a4f3-9cba71433df8"
  203. /dev/mmcblk1: PTUUID="4de78d10" PTTYPE="dos"
  204. 2 disks with OS, 2 OS : 1 Linux, 0 MacOS, 1 Windows, 0 unknown type OS.
  205. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  206. mount /dev/mmcblk0 : Error code 32
  207. mount -r /dev/mmcblk0 /mnt/boot-sav/mmcblk0
  208. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  209. mount -r /dev/mmcblk0 : Error code 32
  210. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  211. mount /dev/mmcblk1 : Error code 32
  212. mount -r /dev/mmcblk1 /mnt/boot-sav/mmcblk1
  213. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  214. mount -r /dev/mmcblk1 : Error code 32
  215. Windows not detected by os-prober on mmcblk0p3.
  216. Presence of EFI/Microsoft file detected: /mnt/boot-sav/mmcblk0p1/EFI/Microsoft/Boot/bootmgfw.efi
  217. Presence of EFI/Boot file detected: /mnt/boot-sav/mmcblk0p1/EFI/Boot/bootx64.efi
  218. =================== /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/etc/grub.d/ :
  219. drwxr-xr-x 2 root root 4096 Jul 19 20:50 grub.d
  220. total 76
  221. -rwxr-xr-x 1 root root 9791 Jun 17 09:10 00_header
  222. -rwxr-xr-x 1 root root 6258 Mar 15 18:08 05_debian_theme
  223. -rwxr-xr-x 1 root root 12261 Jun 17 09:10 10_linux
  224. -rwxr-xr-x 1 root root 11082 Jun 17 09:10 20_linux_xen
  225. -rwxr-xr-x 1 root root 1992 Jan 28 2016 20_memtest86+
  226. -rwxr-xr-x 1 root root 11692 Jun 17 09:10 30_os-prober
  227. -rwxr-xr-x 1 root root 1418 Jun 17 09:10 30_uefi-firmware
  228. -rwxr-xr-x 1 root root 214 Jun 17 09:10 40_custom
  229. -rwxr-xr-x 1 root root 216 Jun 17 09:10 41_custom
  230. -rw-r--r-- 1 root root 483 Jun 17 09:10 README
  231. =================== /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/etc/default/grub :
  232. # If you change this file, run 'update-grub' afterwards to update
  233. # /boot/grub/grub.cfg.
  234. # For full documentation of the options in this file, see:
  235. # info -f grub -n 'Simple configuration'
  236. GRUB_DEFAULT=0
  237. #GRUB_HIDDEN_TIMEOUT=0
  238. GRUB_HIDDEN_TIMEOUT_QUIET=true
  239. GRUB_TIMEOUT=10
  240. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  241. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  242. GRUB_CMDLINE_LINUX=""
  243. # Uncomment to enable BadRAM filtering, modify to suit your needs
  244. # This works with Linux (no patch required) and with any kernel that obtains
  245. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  246. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  247. # Uncomment to disable graphical terminal (grub-pc only)
  248. #GRUB_TERMINAL=console
  249. # The resolution used on graphical terminal
  250. # note that you can use only modes which your graphic card supports via VBE
  251. # you can see them in real GRUB with the command `vbeinfo'
  252. #GRUB_GFXMODE=640x480
  253. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  254. #GRUB_DISABLE_LINUX_UUID=true
  255. # Uncomment to disable generation of recovery mode menu entries
  256. #GRUB_DISABLE_RECOVERY="true"
  257. # Uncomment to get a beep at grub start
  258. #GRUB_INIT_TUNE="480 440 1"
  259. /boot/efi detected in the fstab of mmcblk1p1: UUID=F478-F298 (mmcblk0p1)
  260. =================== efibootmgr -v
  261. BootCurrent: 0007
  262. Timeout: 2 seconds
  263. BootOrder: 0003,0002,0006,0007,0001,0000
  264. Boot0000* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  265. Boot0001* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  266. Boot0002* ubuntu HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIUBUNTUSHIMX64.EFI)
  267. Boot0003* Windows Boot Manager HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIMICROSOFTBOOTBOOTMGFW.EFI)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}...X................
  268. Boot0006* ubuntu HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIUBUNTUGRUBX64.EFI)..BO
  269. Boot0007* UEFI: USB2.0 DISK 1.00, Partition 1 PciRoot(0x0)/Pci(0x14,0x0)/USB(0,0)/HD(1,MBR,0x4294967173,0x3f,0x1fa4c81)..BO
  270. =================== UEFI/Legacy mode:
  271. BIOS is EFI-compatible, and is setup in EFI-mode for this live-session.
  272. SecureBoot disabled. (maybe sec-boot, Please report this message to [email protected])
  273. =================== PARTITIONS & DISKS:
  274. mmcblk0p1 : mmcblk0, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, is-os, is-correct-EFI, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/mmcblk0p1.
  275. mmcblk0p3 : mmcblk0, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, is-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, haswinload, no-recov-nor-hid, bootmgr, is-winboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /media/ubuntu/OS.
  276. mmcblk0p4 : mmcblk0, not-sepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, recovery-or-hidden, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/mmcblk0p4.
  277. mmcblk1p1 : mmcblk1, not-sepboot, grubenv-ok grub2, signed grub-efi , update-grub, 64, with-boot, is-os, not--efi--part, fstab-without-boot, fstab-has-goodEFI, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, apt-get, grub-install, with--usr, fstab-without-usr, not-sep-usr, standard, not-far, /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc.
  278. mmcblk0 : sda, maybesepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/mmcblk0.
  279. mmcblk1 : sda, maybesepboot, no-grubenv nogrub, no-docgrub, no-update-grub, 32, no-boot, no-os, not--efi--part, part-has-no-fstab, part-has-no-fstab, no-nt, no-winload, no-recov-nor-hid, no-bmgr, notwinboot, nopakmgr, nogrubinstall, no---usr, part-has-no-fstab, not-sep-usr, standard, not-far, /mnt/boot-sav/mmcblk1.
  280. mmcblk0 : GPT, no-BIOS_boot, has-correctEFI, not-usb, has-os, 1 sectors * 512 bytes
  281. mmcblk1 : not-GPT, BIOSboot-not-needed, has-no-EFIpart, not-usb, has-os, 2048 sectors * 512 bytes
  282. sda : not-GPT, BIOSboot-not-needed, has-no-EFIpart, usb-disk, no-os, 63 sectors * 512 bytes
  283. =================== parted -l:
  284. Model: USB2.0 DISK (scsi)
  285. Disk /dev/sda: 17.0GB
  286. Sector size (logical/physical): 512B/512B
  287. Partition Table: msdos
  288. Disk Flags:
  289. Number Start End Size Type File system Flags
  290. 1 32.3kB 17.0GB 17.0GB primary fat32 boot
  291. Model: Generic SD/MMC Storage Card (sd/mmc)
  292. Disk /dev/mmcblk0rpmb: 4194kB
  293. Sector size (logical/physical): 512B/512B
  294. Partition Table: unknown
  295. Disk Flags:
  296. Model: Generic SD/MMC Storage Card (sd/mmc)
  297. Disk /dev/mmcblk0boot0: 4194kB
  298. Sector size (logical/physical): 512B/512B
  299. Partition Table: unknown
  300. Disk Flags:
  301. Model: Generic SD/MMC Storage Card (sd/mmc)
  302. Disk /dev/mmcblk0boot1: 4194kB
  303. Sector size (logical/physical): 512B/512B
  304. Partition Table: unknown
  305. Disk Flags:
  306. Model: MMC DS2064 (sd/mmc)
  307. Disk /dev/mmcblk0: 62.5GB
  308. Sector size (logical/physical): 512B/512B
  309. Partition Table: gpt
  310. Disk Flags:
  311. Number Start End Size File system Name Flags
  312. 1 1049kB 274MB 273MB fat32 EFI system partition boot, esp
  313. 2 274MB 290MB 16.8MB Microsoft reserved partition msftres
  314. 3 290MB 62.0GB 61.7GB ntfs Basic data partition msftdata
  315. 4 62.0GB 62.5GB 523MB ntfs Basic data partition hidden, diag
  316. Model: SD SU16G (sd/mmc)
  317. Disk /dev/mmcblk1: 15.9GB
  318. Sector size (logical/physical): 512B/512B
  319. Partition Table: msdos
  320. Disk Flags:
  321. Number Start End Size Type File system Flags
  322. 1 4194kB 15.9GB 15.9GB primary ext4
  323. =================== parted -lm:
  324. BYT;
  325. /dev/sda:17.0GB:scsi:512:512:msdos:USB2.0 DISK:;
  326. 1:32.3kB:17.0GB:17.0GB:fat32::boot;
  327. BYT;
  328. /dev/mmcblk0rpmb:4194kB:sd/mmc:512:512:unknown:Generic SD/MMC Storage Card:;
  329. BYT;
  330. /dev/mmcblk0boot0:4194kB:sd/mmc:512:512:unknown:Generic SD/MMC Storage Card:;
  331. BYT;
  332. /dev/mmcblk0boot1:4194kB:sd/mmc:512:512:unknown:Generic SD/MMC Storage Card:;
  333. BYT;
  334. /dev/mmcblk0:62.5GB:sd/mmc:512:512:gpt:MMC DS2064:;
  335. 1:1049kB:274MB:273MB:fat32:EFI system partition:boot, esp;
  336. 2:274MB:290MB:16.8MB::Microsoft reserved partition:msftres;
  337. 3:290MB:62.0GB:61.7GB:ntfs:Basic data partition:msftdata;
  338. 4:62.0GB:62.5GB:523MB:ntfs:Basic data partition:hidden, diag;
  339. BYT;
  340. /dev/mmcblk1:15.9GB:sd/mmc:512:512:msdos:SD SU16G:;
  341. 1:4194kB:15.9GB:15.9GB:ext4::;
  342. =================== lsblk:
  343. KNAME TYPE FSTYPE SIZE LABEL
  344. sda disk 15.8G
  345. sda1 part vfat 15.8G Linux
  346. loop0 loop squashfs 1.4G
  347. mmcblk0rpmb disk 4M
  348. mmcblk0boot0 disk 4M
  349. mmcblk0boot1 disk 4M
  350. mmcblk0 disk 58.2G
  351. mmcblk0p1 part vfat 260M SYSTEM
  352. mmcblk0p2 part 16M
  353. mmcblk0p3 part ntfs 57.5G OS
  354. mmcblk0p4 part ntfs 499M RECOVERY
  355. mmcblk1 disk 14.9G
  356. mmcblk1p1 part ext4 14.9G
  357. KNAME ROTA RO RM STATE MOUNTPOINT
  358. sda 1 0 1 running
  359. sda1 1 0 1 /cdrom
  360. loop0 1 1 0 /rofs
  361. mmcblk0rpmb 0 0 0
  362. mmcblk0boot0 0 1 0
  363. mmcblk0boot1 0 1 0
  364. mmcblk0 0 0 0
  365. mmcblk0p1 0 0 0 /mnt/boot-sav/mmcblk0p1
  366. mmcblk0p2 0 0 0
  367. mmcblk0p3 0 0 0 /media/ubuntu/OS
  368. mmcblk0p4 0 0 0 /mnt/boot-sav/mmcblk0p4
  369. mmcblk1 0 0 0
  370. mmcblk1p1 0 0 0 /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc
  371. =================== mount:
  372. sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
  373. proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
  374. udev on /dev type devtmpfs (rw,nosuid,relatime,size=1960872k,nr_inodes=490218,mode=755)
  375. devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
  376. tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=395104k,mode=755)
  377. /dev/sda1 on /cdrom type vfat (ro,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  378. /dev/loop0 on /rofs type squashfs (ro,noatime)
  379. /cow on / type overlay (rw,relatime,lowerdir=//filesystem.squashfs,upperdir=/cow/upper,workdir=/cow/work)
  380. securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
  381. tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
  382. tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
  383. tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
  384. cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
  385. pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
  386. efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
  387. cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
  388. cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
  389. cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
  390. cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
  391. cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
  392. cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
  393. cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
  394. cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
  395. cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
  396. cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
  397. systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
  398. mqueue on /dev/mqueue type mqueue (rw,relatime)
  399. debugfs on /sys/kernel/debug type debugfs (rw,relatime)
  400. hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
  401. tracefs on /sys/kernel/debug/tracing type tracefs (rw,relatime)
  402. fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
  403. tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
  404. tmpfs on /run/user/999 type tmpfs (rw,nosuid,nodev,relatime,size=395104k,mode=700,uid=999,gid=999)
  405. gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=999,group_id=999)
  406. /dev/mmcblk1p1 on /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
  407. /dev/mmcblk0p3 on /media/ubuntu/OS type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2)
  408. /dev/mmcblk0p1 on /mnt/boot-sav/mmcblk0p1 type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  409. /dev/mmcblk0p4 on /mnt/boot-sav/mmcblk0p4 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
  410. =================== ls:
  411. /sys/block/mmcblk0 (filtered): alignment_offset bdi capability dev device discard_alignment ext_range force_ro holders inflight integrity mmcblk0boot0 mmcblk0boot1 mmcblk0p1 mmcblk0p2 mmcblk0p3 mmcblk0p4 mmcblk0rpmb power queue range removable ro size slaves stat subsystem trace uevent
  412. /sys/block/mmcblk0boot0 (filtered): alignment_offset bdi capability dev device discard_alignment ext_range force_ro holders inflight integrity power queue range removable ro ro_lock_until_next_power_on size slaves stat subsystem trace uevent
  413. /sys/block/mmcblk0boot1 (filtered): alignment_offset bdi capability dev device discard_alignment ext_range force_ro holders inflight integrity power queue range removable ro ro_lock_until_next_power_on size slaves stat subsystem trace uevent
  414. /sys/block/mmcblk0rpmb (filtered): alignment_offset bdi capability dev device discard_alignment ext_range force_ro holders inflight integrity power queue range removable ro size slaves stat subsystem trace uevent
  415. /sys/block/mmcblk1 (filtered): alignment_offset bdi capability dev device discard_alignment ext_range force_ro holders inflight integrity mmcblk1p1 power queue range removable ro size slaves stat subsystem trace uevent
  416. /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 size slaves stat subsystem trace uevent
  417. /dev (filtered): acpi_thermal_rel autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hpet hugepages hwrng i2c-0 i2c-1 i2c-10 i2c-11 i2c-12 i2c-13 i2c-14 i2c-2 i2c-3 i2c-4 i2c-5 i2c-6 i2c-7 i2c-8 i2c-9 iio:device0 initctl input kmsg kvm lightnvm log mapper mcelog media0 mei0 mem memory_bandwidth mmcblk0 mmcblk0boot0 mmcblk0boot1 mmcblk0p1 mmcblk0p2 mmcblk0p3 mmcblk0p4 mmcblk0rpmb mmcblk1 mmcblk1p1 mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sg0 shm snapshot snd stderr stdin stdout tpm0 uhid uinput urandom userio v4l vfio vga_arbiter vhci vhost-net video0 zero
  418. ls /dev/mapper: control
  419. =================== hexdump -n512 -C /dev/mmcblk0p1
  420. 00000000 eb 58 90 4d 53 44 4f 53 35 2e 30 00 02 08 fe 1b |.X.MSDOS5.0.....|
  421. 00000010 02 00 00 00 00 f8 00 00 3f 00 ff 00 00 08 00 00 |........?.......|
  422. 00000020 00 20 08 00 01 02 00 00 00 00 00 00 02 00 00 00 |. ..............|
  423. 00000030 01 00 06 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  424. 00000040 80 01 29 98 f2 78 f4 4e 4f 20 4e 41 4d 45 20 20 |..)..x.NO NAME |
  425. 00000050 20 20 46 41 54 33 32 20 20 20 33 c9 8e d1 bc f4 | FAT32 3.....|
  426. 00000060 7b 8e c1 8e d9 bd 00 7c 88 56 40 88 4e 02 8a 56 |{......|[email protected]|
  427. 00000070 40 b4 41 bb aa 55 cd 13 72 10 81 fb 55 aa 75 0a |@.A..U..r...U.u.|
  428. 00000080 f6 c1 01 74 05 fe 46 02 eb 2d 8a 56 40 b4 08 cd |...t..F..-.V@...|
  429. 00000090 13 73 05 b9 ff ff 8a f1 66 0f b6 c6 40 66 0f b6 |.s......f...@f..|
  430. 000000a0 d1 80 e2 3f f7 e2 86 cd c0 ed 06 41 66 0f b7 c9 |...?.......Af...|
  431. 000000b0 66 f7 e1 66 89 46 f8 83 7e 16 00 75 39 83 7e 2a |f..f.F..~..u9.~*|
  432. 000000c0 00 77 33 66 8b 46 1c 66 83 c0 0c bb 00 80 b9 01 |.w3f.F.f........|
  433. 000000d0 00 e8 2c 00 e9 a8 03 a1 f8 7d 80 c4 7c 8b f0 ac |..,......}..|...|
  434. 000000e0 84 c0 74 17 3c ff 74 09 b4 0e bb 07 00 cd 10 eb |..t.<.t.........|
  435. 000000f0 ee a1 fa 7d eb e4 a1 7d 80 eb df 98 cd 16 cd 19 |...}...}........|
  436. 00000100 66 60 80 7e 02 00 0f 84 20 00 66 6a 00 66 50 06 |f`.~.... .fj.fP.|
  437. 00000110 53 66 68 10 00 01 00 b4 42 8a 56 40 8b f4 cd 13 |Sfh.....B.V@....|
  438. 00000120 66 58 66 58 66 58 66 58 eb 33 66 3b 46 f8 72 03 |fXfXfXfX.3f;F.r.|
  439. 00000130 f9 eb 2a 66 33 d2 66 0f b7 4e 18 66 f7 f1 fe c2 |..*f3.f..N.f....|
  440. 00000140 8a ca 66 8b d0 66 c1 ea 10 f7 76 1a 86 d6 8a 56 |..f..f....v....V|
  441. 00000150 40 8a e8 c0 e4 06 0a cc b8 01 02 cd 13 66 61 0f |@............fa.|
  442. 00000160 82 74 ff 81 c3 00 02 66 40 49 75 94 c3 42 4f 4f |[email protected]|
  443. 00000170 54 4d 47 52 20 20 20 20 00 00 00 00 00 00 00 00 |TMGR ........|
  444. 00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  445. *
  446. 000001a0 00 00 00 00 00 00 00 00 00 00 00 00 0d 0a 44 69 |..............Di|
  447. 000001b0 73 6b 20 65 72 72 6f 72 ff 0d 0a 50 72 65 73 73 |sk error...Press|
  448. 000001c0 20 61 6e 79 20 6b 65 79 20 74 6f 20 72 65 73 74 | any key to rest|
  449. 000001d0 61 72 74 0d 0a 00 00 00 00 00 00 00 00 00 00 00 |art.............|
  450. 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  451. 000001f0 00 00 00 00 00 00 00 00 ac 01 b9 01 00 00 55 aa |..............U.|
  452. 00000200
  453. =================== hexdump -n512 -C /dev/mmcblk0p3
  454. 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....|
  455. 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 a8 08 00 |........?.......|
  456. 00000020 00 00 00 00 80 00 80 00 ff 77 2f 07 00 00 00 00 |.........w/.....|
  457. 00000030 00 00 0c 00 00 00 00 00 02 00 00 00 00 00 00 00 |................|
  458. 00000040 f6 00 00 00 01 00 00 00 02 ed 7f 36 17 80 36 60 |...........6..6`|
  459. 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..|
  460. 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N|
  461. 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...|
  462. 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......|
  463. 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........|
  464. 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..|
  465. 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.|
  466. 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............|
  467. 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-|
  468. 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..|
  469. 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf|
  470. 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..|
  471. 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.|
  472. 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...|
  473. 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...|
  474. 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.|
  475. 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........|
  476. 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......|
  477. 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.|
  478. 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di|
  479. 00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc|
  480. 000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR|
  481. 000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..|
  482. 000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+|
  483. 000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..|
  484. 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  485. 000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.|
  486. 00000200
  487. =================== hexdump -n512 -C /dev/mmcblk0p4
  488. 00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....|
  489. 00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 20 38 07 |........?.... 8.|
  490. 00000020 00 00 00 00 80 00 80 00 ff 97 0f 00 00 00 00 00 |................|
  491. 00000030 55 a6 00 00 00 00 00 00 02 00 00 00 00 00 00 00 |U...............|
  492. 00000040 f6 00 00 00 01 00 00 00 28 31 d6 c4 49 d6 c4 10 |........(1..I...|
  493. 00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..|
  494. 00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N|
  495. 00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...|
  496. 00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......|
  497. 00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........|
  498. 000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..|
  499. 000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.|
  500. 000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............|
  501. 000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-|
  502. 000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..|
  503. 000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf|
  504. 00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..|
  505. 00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.|
  506. 00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...|
  507. 00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...|
  508. 00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.|
  509. 00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........|
  510. 00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......|
  511. 00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.|
  512. 00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di|
  513. 00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc|
  514. 000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR|
  515. 000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..|
  516. 000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+|
  517. 000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..|
  518. 000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
  519. 000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.|
  520. 00000200
  521. =================== df -Th:
  522. Filesystem Type Size Used Avail Use% Mounted on
  523. udev devtmpfs 1.9G 0 1.9G 0% /dev
  524. tmpfs tmpfs 386M 12M 375M 3% /run
  525. /dev/sda1 vfat 16G 13G 3.8G 77% /cdrom
  526. /dev/loop0 squashfs 1.4G 1.4G 0 100% /rofs
  527. /cow overlay 1.9G 77M 1.9G 4% /
  528. tmpfs tmpfs 1.9G 176K 1.9G 1% /dev/shm
  529. tmpfs tmpfs 5.0M 4.0K 5.0M 1% /run/lock
  530. tmpfs tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
  531. tmpfs tmpfs 1.9G 256K 1.9G 1% /tmp
  532. tmpfs tmpfs 386M 84K 386M 1% /run/user/999
  533. /dev/mmcblk1p1 ext4 15G 3.4G 11G 25% /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc
  534. /dev/mmcblk0p3 fuseblk 58G 27G 32G 46% /media/ubuntu/OS
  535. /dev/mmcblk0p1 vfat 256M 34M 223M 14% /mnt/boot-sav/mmcblk0p1
  536. /dev/mmcblk0p4 fuseblk 499M 316M 184M 64% /mnt/boot-sav/mmcblk0p4
  537. =================== fdisk -l:
  538. Disk /dev/ram0: 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/ram1: 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/ram2: 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/ram3: 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/ram4: 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/ram5: 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/ram6: 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/ram7: 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/ram8: 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/ram9: 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/ram10: 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/ram11: 64 MiB, 67108864 bytes, 131072 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. Disk /dev/ram12: 64 MiB, 67108864 bytes, 131072 sectors
  587. Units: sectors of 1 * 512 = 512 bytes
  588. Sector size (logical/physical): 512 bytes / 4096 bytes
  589. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  590. Disk /dev/ram13: 64 MiB, 67108864 bytes, 131072 sectors
  591. Units: sectors of 1 * 512 = 512 bytes
  592. Sector size (logical/physical): 512 bytes / 4096 bytes
  593. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  594. Disk /dev/ram14: 64 MiB, 67108864 bytes, 131072 sectors
  595. Units: sectors of 1 * 512 = 512 bytes
  596. Sector size (logical/physical): 512 bytes / 4096 bytes
  597. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  598. Disk /dev/ram15: 64 MiB, 67108864 bytes, 131072 sectors
  599. Units: sectors of 1 * 512 = 512 bytes
  600. Sector size (logical/physical): 512 bytes / 4096 bytes
  601. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  602. Disk /dev/loop0: 1.4 GiB, 1459982336 bytes, 2851528 sectors
  603. Units: sectors of 1 * 512 = 512 bytes
  604. Sector size (logical/physical): 512 bytes / 512 bytes
  605. I/O size (minimum/optimal): 512 bytes / 512 bytes
  606. Disk /dev/mmcblk0: 58.2 GiB, 62537072640 bytes, 122142720 sectors
  607. Units: sectors of 1 * 512 = 512 bytes
  608. Sector size (logical/physical): 512 bytes / 512 bytes
  609. I/O size (minimum/optimal): 512 bytes / 512 bytes
  610. Disklabel type: gpt
  611. Disk identifier: 7E552FA3-C760-449A-9E5F-FA4781EF3B35
  612. Device Start End Sectors Size Type
  613. /dev/mmcblk0p1 2048 534527 532480 260M EFI System
  614. /dev/mmcblk0p2 534528 567295 32768 16M Microsoft reserved
  615. /dev/mmcblk0p3 567296 121118719 120551424 57.5G Microsoft basic data
  616. /dev/mmcblk0p4 121118720 122140671 1021952 499M Windows recovery environment
  617. Disk /dev/mmcblk0boot1: 4 MiB, 4194304 bytes, 8192 sectors
  618. Units: sectors of 1 * 512 = 512 bytes
  619. Sector size (logical/physical): 512 bytes / 512 bytes
  620. I/O size (minimum/optimal): 512 bytes / 512 bytes
  621. Disk /dev/mmcblk0boot0: 4 MiB, 4194304 bytes, 8192 sectors
  622. Units: sectors of 1 * 512 = 512 bytes
  623. Sector size (logical/physical): 512 bytes / 512 bytes
  624. I/O size (minimum/optimal): 512 bytes / 512 bytes
  625. Disk /dev/mmcblk1: 14.9 GiB, 15931539456 bytes, 31116288 sectors
  626. Units: sectors of 1 * 512 = 512 bytes
  627. Sector size (logical/physical): 512 bytes / 512 bytes
  628. I/O size (minimum/optimal): 512 bytes / 512 bytes
  629. Disklabel type: dos
  630. Disk identifier: 0x4de78d10
  631. Device Boot Start End Sectors Size Id Type
  632. /dev/mmcblk1p1 8192 31116287 31108096 14.9G 83 Linux
  633. Disk /dev/sda: 15.8 GiB, 16988602368 bytes, 33180864 sectors
  634. Units: sectors of 1 * 512 = 512 bytes
  635. Sector size (logical/physical): 512 bytes / 512 bytes
  636. I/O size (minimum/optimal): 512 bytes / 512 bytes
  637. Disklabel type: dos
  638. Disk identifier: 0x00005e85
  639. Device Boot Start End Sectors Size Id Type
  640. /dev/sda1 * 63 33180863 33180801 15.8G 6 FAT16
  641. =================== Default settings of Boot Repair
  642. The default repair of the Boot-Repair utility would reinstall the grub-efi-amd64-signed of mmcblk1p1, using the following options: mmcblk0p1/boot/efi,
  643. Additional repair would be performed: unhide-bootmenu-10s use-standard-efi-file
  644. =================== Final advice in case of suggested repair
  645. Please do not forget to make your BIOS boot on mmcblk1 (15.9GB) disk!
  646. If your computer reboots directly into Windows, try to change the boot order in your BIOS.
  647. If your BIOS does not allow to change the boot order, change the default boot entry of the Windows bootloader.
  648. For example you can boot into Windows, then type the following command in an admin command prompt:
  649. bcdedit /set {bootmgr} path \EFI\...\grub*.efi
  650. =================== User settings
  651. The settings chosen by the user will reinstall the grub-efi-amd64-signed of mmcblk1p1, using the following options: mmcblk0p1/boot/efi,
  652. Additional repair will be performed: unhide-bootmenu-10s use-standard-efi-file
  653. /boot/efi added in mmcblk1p1/fstab
  654. Mount mmcblk0p1 on /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi
  655. ls mmcblk0p1/efi: /Microsoft/Recovery/BCD.LOG2 /Microsoft/Recovery/BCD.LOG1 /Microsoft/Recovery/BCD.LOG /Microsoft/Recovery/BCD /Microsoft/Boot/zh-TW /Microsoft/Boot/zh-HK /Microsoft/Boot/zh-CN /Microsoft/Boot/uk-UA /Microsoft/Boot/tr-TR /Microsoft/Boot/sv-SE /Microsoft/Boot/sr-Latn-RS /Microsoft/Boot/sr-Latn-CS /Microsoft/Boot/sl-SI /Microsoft/Boot/sk-SK /Microsoft/Boot/ru-RU /Microsoft/Boot/ro-RO /Microsoft/Boot/Resources /Microsoft/Boot/qps-ploc /Microsoft/Boot/pt-PT /Microsoft/Boot/pt-BR /Microsoft/Boot/pl-PL /Microsoft/Boot/nl-NL /Microsoft/Boot/nb-NO /Microsoft/Boot/memtest.efi /Microsoft/Boot/lv-LV /Microsoft/Boot/lt-LT /Microsoft/Boot/ko-KR /Microsoft/Boot/kdstub.dll /Microsoft/Boot/kd_0C_8086.dll /Microsoft/Boot/kd_07_1415.dll /Microsoft/Boot/kd_02_8086.dll /Microsoft/Boot/kd_02_19a2.dll /Microsoft/Boot/kd_02_1969.dll /Microsoft/Boot/kd_02_15b3.dll /Microsoft/Boot/kd_02_14e4.dll /Microsoft/Boot/kd_02_1137.dll /Microsoft/Boot/kd_02_10ec.dll /Microsoft/Boot/kd_02_10df.dll /Microsoft/Boot/ja-JP /Microsoft/Boot/it-IT /Microsoft/Boot/hu-HU /Microsoft/Boot/hr-HR /Microsoft/Boot/fr-FR /Microsoft/Boot/fr-CA /Microsoft/Boot/Fonts /Microsoft/Boot/fi-FI /Microsoft/Boot/et-EE /Microsoft/Boot/es-MX /Microsoft/Boot/es-ES /Microsoft/Boot/en-US /Microsoft/Boot/en-GB /Microsoft/Boot/el-GR /Microsoft/Boot/de-DE /Microsoft/Boot/da-DK /Microsoft/Boot/cs-CZ /Microsoft/Boot/boot.stl /Microsoft/Boot/BOOTSTAT.DAT /Microsoft/Boot/bootmgr.efi /Microsoft/Boot/bootmgfw.efi /Microsoft/Boot/bg-BG /Microsoft/Boot/BCD.LOG2 /Microsoft/Boot/BCD.LOG1 /Microsoft/Boot/BCD.LOG /Microsoft/Boot/BCD /ubuntu/shimx64.efi /ubuntu/MokManager.efi /ubuntu/grubx64.efi /ubuntu/grub.cfg /ubuntu/fwupx64.efi /ubuntu/fw /Microsoft/Recovery /Microsoft/Boot /Boot/bootx64.efi
  656. ls mmcblk0p1: boot-sav
  657. EFI . Please report this message to [email protected]
  658. *******lspci -nnk | grep -iA3 vga
  659. 00:02.0 VGA compatible controller [0300]: Intel Corporation Device [8086:22b1] (rev 21)
  660. Subsystem: ASUSTeK Computer Inc. Device [1043:1c4d]
  661. Kernel driver in use: i915
  662. Kernel modules: i915
  663. *******
  664. grub-install --version
  665. grub-install (GRUB) 2.02~beta2-36ubuntu3.1,grub-install (GRUB) 2.
  666. chroot /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc efibootmgr -v
  667. BootCurrent: 0007
  668. Timeout: 2 seconds
  669. BootOrder: 0003,0002,0006,0007,0001,0000
  670. Boot0000* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  671. Boot0001* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  672. Boot0002* ubuntu HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIUBUNTUSHIMX64.EFI)
  673. Boot0003* Windows Boot Manager HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIMICROSOFTBOOTBOOTMGFW.EFI)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}...X................
  674. Boot0006* ubuntu HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIUBUNTUGRUBX64.EFI)..BO
  675. Boot0007* UEFI: USB2.0 DISK 1.00, Partition 1 PciRoot(0x0)/Pci(0x14,0x0)/USB(0,0)/HD(1,MBR,0x4294967173,0x3f,0x1fa4c81)..BO
  676. chroot /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc uname -r
  677. Kernel: 4.4.0-31-generic
  678. Reinstall the grub-efi-amd64-signed of mmcblk1p1
  679. Installing for x86_64-efi platform.
  680. Installation finished. No error reported.
  681. grub-install --efi-directory=/boot/efi --target=x86_64-efi --uefi-secure-boot : exit code of grub-install :0
  682. ls mmcblk0p1/efi: /Microsoft/Recovery/BCD.LOG2 /Microsoft/Recovery/BCD.LOG1 /Microsoft/Recovery/BCD.LOG /Microsoft/Recovery/BCD /Microsoft/Boot/zh-TW /Microsoft/Boot/zh-HK /Microsoft/Boot/zh-CN /Microsoft/Boot/uk-UA /Microsoft/Boot/tr-TR /Microsoft/Boot/sv-SE /Microsoft/Boot/sr-Latn-RS /Microsoft/Boot/sr-Latn-CS /Microsoft/Boot/sl-SI /Microsoft/Boot/sk-SK /Microsoft/Boot/ru-RU /Microsoft/Boot/ro-RO /Microsoft/Boot/Resources /Microsoft/Boot/qps-ploc /Microsoft/Boot/pt-PT /Microsoft/Boot/pt-BR /Microsoft/Boot/pl-PL /Microsoft/Boot/nl-NL /Microsoft/Boot/nb-NO /Microsoft/Boot/memtest.efi /Microsoft/Boot/lv-LV /Microsoft/Boot/lt-LT /Microsoft/Boot/ko-KR /Microsoft/Boot/kdstub.dll /Microsoft/Boot/kd_0C_8086.dll /Microsoft/Boot/kd_07_1415.dll /Microsoft/Boot/kd_02_8086.dll /Microsoft/Boot/kd_02_19a2.dll /Microsoft/Boot/kd_02_1969.dll /Microsoft/Boot/kd_02_15b3.dll /Microsoft/Boot/kd_02_14e4.dll /Microsoft/Boot/kd_02_1137.dll /Microsoft/Boot/kd_02_10ec.dll /Microsoft/Boot/kd_02_10df.dll /Microsoft/Boot/ja-JP /Microsoft/Boot/it-IT /Microsoft/Boot/hu-HU /Microsoft/Boot/hr-HR /Microsoft/Boot/fr-FR /Microsoft/Boot/fr-CA /Microsoft/Boot/Fonts /Microsoft/Boot/fi-FI /Microsoft/Boot/et-EE /Microsoft/Boot/es-MX /Microsoft/Boot/es-ES /Microsoft/Boot/en-US /Microsoft/Boot/en-GB /Microsoft/Boot/el-GR /Microsoft/Boot/de-DE /Microsoft/Boot/da-DK /Microsoft/Boot/cs-CZ /Microsoft/Boot/boot.stl /Microsoft/Boot/BOOTSTAT.DAT /Microsoft/Boot/bootmgr.efi /Microsoft/Boot/bootmgfw.efi /Microsoft/Boot/bg-BG /Microsoft/Boot/BCD.LOG2 /Microsoft/Boot/BCD.LOG1 /Microsoft/Boot/BCD.LOG /Microsoft/Boot/BCD /ubuntu/shimx64.efi /ubuntu/MokManager.efi /ubuntu/grubx64.efi /ubuntu/grub.cfg /ubuntu/fwupx64.efi /ubuntu/fw /Microsoft/Recovery /Microsoft/Boot /Boot/bootx64.efi
  683. ls mmcblk0p1: boot-sav
  684. EFI . Please report this message to [email protected]
  685. ls: cannot access '/media/ubuntu/OS/': No such file or directory
  686. ls: cannot access '/media/ubuntu/OS/': No such file or directory
  687. df /dev/mmcblk0p1
  688. Save and rename /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/Boot/bootx64.efi (/media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/Boot/bkpbootx64.efi)
  689. cp /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/ubuntu/shimx64.efi /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/Boot/bootx64.efi
  690. ls mmcblk0p1/efi: /Microsoft/Recovery/BCD.LOG2 /Microsoft/Recovery/BCD.LOG1 /Microsoft/Recovery/BCD.LOG /Microsoft/Recovery/BCD /Microsoft/Boot/zh-TW /Microsoft/Boot/zh-HK /Microsoft/Boot/zh-CN /Microsoft/Boot/uk-UA /Microsoft/Boot/tr-TR /Microsoft/Boot/sv-SE /Microsoft/Boot/sr-Latn-RS /Microsoft/Boot/sr-Latn-CS /Microsoft/Boot/sl-SI /Microsoft/Boot/sk-SK /Microsoft/Boot/ru-RU /Microsoft/Boot/ro-RO /Microsoft/Boot/Resources /Microsoft/Boot/qps-ploc /Microsoft/Boot/pt-PT /Microsoft/Boot/pt-BR /Microsoft/Boot/pl-PL /Microsoft/Boot/nl-NL /Microsoft/Boot/nb-NO /Microsoft/Boot/memtest.efi /Microsoft/Boot/lv-LV /Microsoft/Boot/lt-LT /Microsoft/Boot/ko-KR /Microsoft/Boot/kdstub.dll /Microsoft/Boot/kd_0C_8086.dll /Microsoft/Boot/kd_07_1415.dll /Microsoft/Boot/kd_02_8086.dll /Microsoft/Boot/kd_02_19a2.dll /Microsoft/Boot/kd_02_1969.dll /Microsoft/Boot/kd_02_15b3.dll /Microsoft/Boot/kd_02_14e4.dll /Microsoft/Boot/kd_02_1137.dll /Microsoft/Boot/kd_02_10ec.dll /Microsoft/Boot/kd_02_10df.dll /Microsoft/Boot/ja-JP /Microsoft/Boot/it-IT /Microsoft/Boot/hu-HU /Microsoft/Boot/hr-HR /Microsoft/Boot/fr-FR /Microsoft/Boot/fr-CA /Microsoft/Boot/Fonts /Microsoft/Boot/fi-FI /Microsoft/Boot/et-EE /Microsoft/Boot/es-MX /Microsoft/Boot/es-ES /Microsoft/Boot/en-US /Microsoft/Boot/en-GB /Microsoft/Boot/el-GR /Microsoft/Boot/de-DE /Microsoft/Boot/da-DK /Microsoft/Boot/cs-CZ /Microsoft/Boot/boot.stl /Microsoft/Boot/BOOTSTAT.DAT /Microsoft/Boot/bootmgr.efi /Microsoft/Boot/bootmgfw.efi /Microsoft/Boot/bg-BG /Microsoft/Boot/BCD.LOG2 /Microsoft/Boot/BCD.LOG1 /Microsoft/Boot/BCD.LOG /Microsoft/Boot/BCD /ubuntu/shimx64.efi /ubuntu/MokManager.efi /ubuntu/grubx64.efi /ubuntu/grub.cfg /ubuntu/fwupx64.efi /ubuntu/fw /Microsoft/Recovery /Microsoft/Boot /Boot/bootx64.efi /Boot/bkpbootx64.efi
  691. ls mmcblk0p1: boot-sav
  692. EFI . Please report this message to [email protected]
  693. Add /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi efi entries in /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/etc/grub.d/25_custom
  694. Adding custom /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
  695. Adding custom /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/Boot/bkpbootx64.efi
  696. mmcblk0p1/bkpbootx64.efi already added
  697. Adding custom /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/ubuntu/fwupx64.efi
  698. Adding custom /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc/boot/efi/EFI/ubuntu/MokManager.efi
  699. mmcblk0p1/bootmgfw.efi already added
  700. ls: cannot access '/media/ubuntu/OS/': No such file or directory
  701. ls: cannot access '/media/ubuntu/OS/': No such file or directory
  702. Installing for x86_64-efi platform.
  703. Installation finished. No error reported.
  704. grub-install --efi-directory=/boot/efi --target=x86_64-efi --uefi-secure-boot : exit code of grub-install :0
  705. chroot /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc efibootmgr -v
  706. BootCurrent: 0007
  707. Timeout: 2 seconds
  708. BootOrder: 0002,0003,0007,0001,0000
  709. Boot0000* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  710. Boot0001* Windows Boot Manager VenHw(99e275e7-75a0-4b37-a2e6-c5385e6c00cb)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}....................
  711. Boot0002* ubuntu HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIubuntushimx64.efi)
  712. Boot0003* Windows Boot Manager HD(1,GPT,ec1dde75-be7b-41e0-947b-93fc4bd0d96a,0x800,0x82000)/File(EFIMICROSOFTBOOTBOOTMGFW.EFI)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}...X................
  713. Boot0007* UEFI: USB2.0 DISK 1.00, Partition 1 PciRoot(0x0)/Pci(0x14,0x0)/USB(0,0)/HD(1,MBR,0x4294967173,0x3f,0x1fa4c81)..BO
  714. chroot /media/ubuntu/33e33f58-4922-4f08-a6b4-287ee4f292cc update-grub
  715. Generating grub configuration file ...
  716. Found linux image: /boot/vmlinuz-4.4.0-31-generic
  717. Found initrd image: /boot/initrd.img-4.4.0-31-generic
  718. Found Windows Boot Manager on /dev/mmcblk0p1@/EFI/Microsoft/Boot/bootmgfw.efi
  719. Adding boot menu entry for EFI firmware configuration
  720. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  721. mount /dev/mmcblk0 : Error code 32
  722. mount -r /dev/mmcblk0 /mnt/boot-sav/mmcblk0
  723. mount: /dev/mmcblk0 is already mounted or /mnt/boot-sav/mmcblk0 busy
  724. mount -r /dev/mmcblk0 : Error code 32
  725. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  726. mount /dev/mmcblk1 : Error code 32
  727. mount -r /dev/mmcblk1 /mnt/boot-sav/mmcblk1
  728. mount: /dev/mmcblk1 is already mounted or /mnt/boot-sav/mmcblk1 busy
  729. mount -r /dev/mmcblk1 : Error code 32
  730. Unhide GRUB boot menu in mmcblk1p1/boot/grub/grub.cfg
  731. Boot successfully repaired.
  732. You can now reboot your computer.
  733. Please do not forget to make your BIOS boot on mmcblk1 (15.9GB) disk!
  734. If your computer reboots directly into Windows, try to change the boot order in your BIOS.
  735. If your BIOS does not allow to change the boot order, change the default boot entry of the Windows bootloader.
  736. For example you can boot into Windows, then type the following command in an admin command prompt:
  737. bcdedit /set {bootmgr} path \EFI\ubuntu\shimx64.efi
  738. paste.ubuntu.com ko (), using paste.debian
  739. paste.debian.net ko (), using paste2