Advertisement
Guest User

RESULTS.txt

a guest
Nov 27th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.56 KB | None | 0 0
  1. Boot Info Script 0.61 [1 April 2012]
  2.  
  3.  
  4. ============================= Boot Info Summary: ===============================
  5.  
  6. => Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector
  7. 744337408 of the same hard drive for core.img, but core.img can not be
  8. found at this location.
  9.  
  10. sda1: __________________________________________________________________________
  11.  
  12. File system: vfat
  13. Boot sector type: FAT32
  14. Boot sector info: No errors found in the Boot Parameter Block.
  15. Operating System:
  16. Boot files: /grub/grub.cfg /efi/grub/grubx64.efi
  17.  
  18. sda2: __________________________________________________________________________
  19.  
  20. File system: ext4
  21. Boot sector type: -
  22. Boot sector info:
  23. Operating System: Arch Linux ()
  24. Boot files: /etc/fstab
  25.  
  26. sda6: __________________________________________________________________________
  27.  
  28. File system: swap
  29. Boot sector type: -
  30. Boot sector info:
  31.  
  32. ============================ Drive/Partition Info: =============================
  33.  
  34. Drive: sda _____________________________________________________________________
  35. Dysk /dev/sda: 465,8 GiB, bajtów: 500107862016, sektorów: 976773168
  36. Jednostki: sektorów, czyli 1 * 512 = 512 bajtów
  37. Rozmiar sektora (logiczny/fizyczny) w bajtach: 512 / 4096
  38. Rozmiar we/wy (minimalny/optymalny) w bajtach: 4096 / 4096
  39. Typ etykiety dysku: gpt
  40.  
  41. Partition Boot Start Sector End Sector # of Sectors Id System
  42.  
  43. /dev/sda1 1 976,773,167 976,773,167 ee GPT
  44.  
  45.  
  46. GUID Partition Table detected.
  47.  
  48. Partition Start Sector End Sector # of Sectors System
  49. /dev/sda1 2,048 409,599 407,552 EFI System partition
  50. /dev/sda2 8,798,208 976,773,119 967,974,912 Data partition (Linux)
  51. /dev/sda6 409,600 8,798,207 8,388,608 Swap partition (Linux)
  52.  
  53. "blkid" output: ________________________________________________________________
  54.  
  55. Device UUID TYPE LABEL
  56.  
  57. /dev/sda1 7B27-4BF8 vfat
  58. /dev/sda2 7e7817d7-1b99-4602-9a5f-09ce852175d6 ext4
  59. /dev/sda6 c0dc06f0-eebe-4663-b33e-46b65a35c10c swap
  60.  
  61. ================================ Mount points: =================================
  62.  
  63. Device Mount_Point Type Options
  64.  
  65. /dev/sda1 /boot vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
  66. /dev/sda2 / ext4 (rw,relatime,stripe=32731,data=ordered)
  67.  
  68.  
  69. ============================= sda1/grub/grub.cfg: ==============================
  70.  
  71. --------------------------------------------------------------------------------
  72. #
  73. # DO NOT EDIT THIS FILE
  74. #
  75. # It is automatically generated by grub-mkconfig using templates
  76. # from /etc/grub.d and settings from /etc/default/grub
  77. #
  78.  
  79. ### BEGIN /etc/grub.d/00_header ###
  80. insmod part_gpt
  81. insmod part_msdos
  82. if [ -s $prefix/grubenv ]; then
  83. load_env
  84. fi
  85. if [ "${next_entry}" ] ; then
  86. set default="${next_entry}"
  87. set next_entry=
  88. save_env next_entry
  89. set boot_once=true
  90. else
  91. set default="0"
  92. fi
  93.  
  94. if [ x"${feature_menuentry_id}" = xy ]; then
  95. menuentry_id_option="--id"
  96. else
  97. menuentry_id_option=""
  98. fi
  99.  
  100. export menuentry_id_option
  101.  
  102. if [ "${prev_saved_entry}" ]; then
  103. set saved_entry="${prev_saved_entry}"
  104. save_env saved_entry
  105. set prev_saved_entry=
  106. save_env prev_saved_entry
  107. set boot_once=true
  108. fi
  109.  
  110. function savedefault {
  111. if [ -z "${boot_once}" ]; then
  112. saved_entry="${chosen}"
  113. save_env saved_entry
  114. fi
  115. }
  116.  
  117. function load_video {
  118. if [ x$feature_all_video_module = xy ]; then
  119. insmod all_video
  120. else
  121. insmod efi_gop
  122. insmod efi_uga
  123. insmod ieee1275_fb
  124. insmod vbe
  125. insmod vga
  126. insmod video_bochs
  127. insmod video_cirrus
  128. fi
  129. }
  130.  
  131. if [ x$feature_default_font_path = xy ] ; then
  132. font=unicode
  133. else
  134. insmod part_gpt
  135. insmod ext2
  136. set root='hd0,gpt2'
  137. if [ x$feature_platform_search_hint = xy ]; then
  138. search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7e7817d7-1b99-4602-9a5f-09ce852175d6
  139. else
  140. search --no-floppy --fs-uuid --set=root 7e7817d7-1b99-4602-9a5f-09ce852175d6
  141. fi
  142. font="/usr/share/grub/unicode.pf2"
  143. fi
  144.  
  145. if loadfont $font ; then
  146. set gfxmode=auto
  147. load_video
  148. insmod gfxterm
  149. set locale_dir=$prefix/locale
  150. set lang=pl_PL
  151. insmod gettext
  152. fi
  153. terminal_input console
  154. terminal_output gfxterm
  155. if [ x$feature_timeout_style = xy ] ; then
  156. set timeout_style=menu
  157. set timeout=5
  158. # Fallback normal timeout code in case the timeout_style feature is
  159. # unavailable.
  160. else
  161. set timeout=5
  162. fi
  163. ### END /etc/grub.d/00_header ###
  164.  
  165. ### BEGIN /etc/grub.d/10_linux ###
  166.  
  167. ### END /etc/grub.d/10_linux ###
  168.  
  169. ### BEGIN /etc/grub.d/20_linux_xen ###
  170. ### END /etc/grub.d/20_linux_xen ###
  171.  
  172. ### BEGIN /etc/grub.d/30_os-prober ###
  173. ### END /etc/grub.d/30_os-prober ###
  174.  
  175. ### BEGIN /etc/grub.d/40_custom ###
  176. # This file provides an easy way to add custom menu entries. Simply type the
  177. # menu entries you want to add after this comment. Be careful not to change
  178. # the 'exec tail' line above.
  179. ### END /etc/grub.d/40_custom ###
  180.  
  181. ### BEGIN /etc/grub.d/41_custom ###
  182. if [ -f ${config_directory}/custom.cfg ]; then
  183. source ${config_directory}/custom.cfg
  184. elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
  185. source $prefix/custom.cfg;
  186. fi
  187. ### END /etc/grub.d/41_custom ###
  188. --------------------------------------------------------------------------------
  189.  
  190. =================== sda1: Location of files loaded by Grub: ====================
  191.  
  192. GiB - GB File Fragment(s)
  193.  
  194.  
  195. =============================== sda2/etc/fstab: ================================
  196.  
  197. --------------------------------------------------------------------------------
  198. #
  199. # /etc/fstab: static file system information
  200. #
  201. # <file system> <dir> <type> <options> <dump> <pass>
  202. # /dev/sda2
  203. UUID=7e7817d7-1b99-4602-9a5f-09ce852175d6 / ext4 rw,relatime,data=ordered 0 1
  204.  
  205. # /dev/sda6
  206. UUID=c0dc06f0-eebe-4663-b33e-46b65a35c10c none swap defaults 0 0
  207.  
  208. --------------------------------------------------------------------------------
  209.  
  210. =============================== StdErr Messages: ===============================
  211.  
  212. cat: /tmp/BootInfo-YnNHQGaj/Tmp_Log: Nie ma takiego pliku ani katalogu
  213. mdadm: No arrays found in config file or automatically
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement