-
Notifications
You must be signed in to change notification settings - Fork 2
/
RESULTS.txt
3177 lines (2918 loc) · 131 KB
/
RESULTS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Boot Info Script 0.61 [1 April 2012]
============================= Boot Info Summary: ===============================
=> No boot loader is installed in the MBR of /dev/sda.
=> Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 0 of
the same hard drive for core.img, but core.img can not be found at this
location.
sda1: __________________________________________________________________________
File system: vfat
Boot sector type: Unknown
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /efi/Boot/bootx64.efi /efi/Boot/fbx64.efi
/efi/arch/grubx64.efi /efi/kali/grubx64.efi
/efi/ubuntu/fwupx64.efi /efi/ubuntu/grubx64.efi
/efi/ubuntu/mmx64.efi /efi/ubuntu/shimx64.efi
sda2: __________________________________________________________________________
File system:
Boot sector type: -
Boot sector info:
Mounting failed: mount: /tmp/BootInfo-yvyS4chM/sda2: unknown filesystem type ''.
sda3: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /Windows/System32/winload.exe
sda4: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda5: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Arch Linux ()
Boot files: /boot/grub/grub.cfg /etc/fstab
sda6: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Kali GNU/Linux Rolling
Boot files: /boot/grub/grub.cfg /etc/fstab
sda7: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sda8: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda9: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows XP: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda10: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Linux Mint 18.2 Sonya
Boot files: /boot/grub/grub.cfg /etc/fstab
sda11: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sda12: _________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sda13: _________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda14: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 16.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab
sda15: _________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda16: _________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda17: _________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files:
sda18: _________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Manjaro Linux () ()
Boot files: /boot/grub/grub.cfg /etc/fstab
sda19: _________________________________________________________________________
File system: vfat
Boot sector type: FAT32
Boot sector info: According to the info in the boot sector, sda19
starts at sector -1073444864. But according to the
info from fdisk, sda19 starts at sector 3221522432.
Operating System:
Boot files:
sdb1: __________________________________________________________________________
File system: iso9660
Boot sector type: Unknown
Boot sector info:
Operating System:
Boot files: /boot/grub/grub.cfg
sdb2: __________________________________________________________________________
File system: vfat
Boot sector type: FAT16
Boot sector info: According to the info in the boot sector, sdb2 starts
at sector 0. But according to the info from fdisk,
sdb2 starts at sector 4232080. According to the info
in the boot sector, sdb2 has 0 sectors.
Operating System:
Boot files: /efi/boot/bootx64.efi
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 1.8 TiB, 2000398934016 bytes, 3907029168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 1 3,907,029,167 3,907,029,167 ee GPT
GUID Partition Table detected.
Partition Start Sector End Sector # of Sectors System
/dev/sda1 2,048 1,026,047 1,024,000 EFI System partition
/dev/sda2 1,026,048 1,288,191 262,144 Microsoft Reserved Partition (Windows)
/dev/sda3 1,288,192 535,580,671 534,292,480 Data partition (Windows/Linux)
/dev/sda4 535,580,672 1,379,178,495 843,597,824 Data partition (Windows/Linux)
/dev/sda5 1,379,178,496 1,479,841,791 100,663,296 Data partition (Linux)
/dev/sda6 1,479,841,792 1,534,529,535 54,687,744 Data partition (Linux)
/dev/sda7 1,534,529,536 1,584,701,439 50,171,904 Data partition (Linux)
/dev/sda8 1,584,701,440 2,633,836,543 1,049,135,104 Data partition (Windows/Linux)
/dev/sda9 2,633,836,544 3,060,316,159 426,479,616 Data partition (Windows/Linux)
/dev/sda10 3,060,316,160 3,110,316,031 49,999,872 Data partition (Linux)
/dev/sda11 3,110,316,032 3,152,316,415 42,000,384 Data partition (Linux)
/dev/sda12 3,152,316,416 3,169,093,631 16,777,216 Data partition (Windows/Linux)
/dev/sda13 3,264,032,768 3,579,781,119 315,748,352 Data partition (Windows/Linux)
/dev/sda14 3,579,781,120 3,859,480,575 279,699,456 Data partition (Linux)
/dev/sda15 3,875,481,600 3,876,403,199 921,600 Windows Recovery Environment (Windows)
/dev/sda16 3,876,403,200 3,904,839,679 28,436,480 Windows Recovery Environment (Windows)
/dev/sda17 3,904,841,728 3,907,028,991 2,187,264 Windows Recovery Environment (Windows)
/dev/sda18 3,169,093,632 3,221,522,431 52,428,800 Data partition (Linux)
/dev/sda19 3,221,522,432 3,222,571,007 1,048,576 EFI System partition
Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 7.5 GiB, 8053063680 bytes, 15728640 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdb1 * 64 4,232,079 4,232,016 cd CTOS Memdump?
/dev/sdb2 4,232,080 4,240,271 8,192 ef EFI (FAT-12/16/32)
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/sda1 9A02-00C8 vfat ESP
/dev/sda10 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ext4
/dev/sda11 c308f54b-aefc-4972-8ebb-d1b73caa4bfe ext4
/dev/sda12 swap
/dev/sda13 0C7EE0AC7EE0902E ntfs Ubuntu-Win
/dev/sda14 04048bda-66bf-4212-bd32-a54be16313e2 ext4
/dev/sda15 BCEC22B9EC226DB8 ntfs WINRETOOLS
/dev/sda16 D4B023A6B0238E54 ntfs Image
/dev/sda17 F20081F90081C4D7 ntfs DELLSUPPORT
/dev/sda18 7ff24395-f335-43d8-a738-9802b151c874 ext4
/dev/sda19 2E94-57DA vfat
/dev/sda2
/dev/sda3 01D3F76BF767C250 ntfs OS
/dev/sda4 01D41DA39F2D5510 ntfs
/dev/sda5 71a91b48-a421-4cc7-bef3-ac0b968fef87 ext4 Arch Linux
/dev/sda6 df0945cb-8819-4eb5-b45b-1c49a9447af1 ext4
/dev/sda7 0a38fb21-7c71-415b-8b0b-ca558a29f0d4 ext4
/dev/sda8 01D40163CB419550 ntfs Media
/dev/sda9 01D41E59F264C540 ntfs Backup Drive
/dev/sdb1 2018-07-01-09-34-20-00 iso9660 MJR17111
/dev/sdb2 64C8-8DA6 vfat MISO_EFI
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/sda1 /boot/efi vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro)
/dev/sda5 / ext4 (rw,relatime)
=========================== sda5/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt6' --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt6' --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt6' --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt6' --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-fallback.img
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-efi-9A02-00C8' {
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,gpt1' --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9A02-00C8
else
search --no-floppy --fs-uuid --set=root 9A02-00C8
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
=============================== sda5/etc/fstab: ================================
--------------------------------------------------------------------------------
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 LABEL=Arch\134x20Linux
/dev/sda18 / ext4 rw,relatime,data=ordered 0 1
# UUID=9A02-00C8 LABEL=ESP
/dev/sda1 /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,utf8,errors=remount-ro 0 2
--------------------------------------------------------------------------------
=================== sda5: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
=========================== sda6/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7 df0945cb-8819-4eb5-b45b-1c49a9447af1
else
search --no-floppy --fs-uuid --set=root df0945cb-8819-4eb5-b45b-1c49a9447af1
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=C
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7 df0945cb-8819-4eb5-b45b-1c49a9447af1
else
search --no-floppy --fs-uuid --set=root df0945cb-8819-4eb5-b45b-1c49a9447af1
fi
insmod png
if background_image /usr/share/desktop-base/kali-theme/grub/grub-4x3.png; then
set color_normal=white/black
set color_highlight=black/white
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Kali GNU/Linux' --class kali --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-df0945cb-8819-4eb5-b45b-1c49a9447af1' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7 df0945cb-8819-4eb5-b45b-1c49a9447af1
else
search --no-floppy --fs-uuid --set=root df0945cb-8819-4eb5-b45b-1c49a9447af1
fi
echo 'Loading Linux 4.12.0-kali1-amd64 ...'
linux /boot/vmlinuz-4.12.0-kali1-amd64 root=UUID=df0945cb-8819-4eb5-b45b-1c49a9447af1 ro quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.12.0-kali1-amd64
}
submenu 'Advanced options for Kali GNU/Linux' $menuentry_id_option 'gnulinux-advanced-df0945cb-8819-4eb5-b45b-1c49a9447af1' {
menuentry 'Kali GNU/Linux, with Linux 4.12.0-kali1-amd64' --class kali --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.12.0-kali1-amd64-advanced-df0945cb-8819-4eb5-b45b-1c49a9447af1' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7 df0945cb-8819-4eb5-b45b-1c49a9447af1
else
search --no-floppy --fs-uuid --set=root df0945cb-8819-4eb5-b45b-1c49a9447af1
fi
echo 'Loading Linux 4.12.0-kali1-amd64 ...'
linux /boot/vmlinuz-4.12.0-kali1-amd64 root=UUID=df0945cb-8819-4eb5-b45b-1c49a9447af1 ro quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.12.0-kali1-amd64
}
menuentry 'Kali GNU/Linux, with Linux 4.12.0-kali1-amd64 (recovery mode)' --class kali --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.12.0-kali1-amd64-recovery-df0945cb-8819-4eb5-b45b-1c49a9447af1' {
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7 df0945cb-8819-4eb5-b45b-1c49a9447af1
else
search --no-floppy --fs-uuid --set=root df0945cb-8819-4eb5-b45b-1c49a9447af1
fi
echo 'Loading Linux 4.12.0-kali1-amd64 ...'
linux /boot/vmlinuz-4.12.0-kali1-amd64 root=UUID=df0945cb-8819-4eb5-b45b-1c49a9447af1 ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.12.0-kali1-amd64
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-efi-9A02-00C8' {
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9A02-00C8
else
search --no-floppy --fs-uuid --set=root 9A02-00C8
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry 'Ubuntu 16.04.4 LTS (16.04) (on /dev/sda13)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.15.0-24-generic root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.15.0-24-generic
}
submenu 'Advanced options for Ubuntu 16.04.4 LTS (16.04) (on /dev/sda13)' $menuentry_id_option 'osprober-gnulinux-advanced-04048bda-66bf-4212-bd32-a54be16313e2' {
menuentry 'Ubuntu (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-24-generic--04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.15.0-24-generic root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.15.0-24-generic
}
menuentry 'Ubuntu, with Linux 4.15.0-24-generic (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-24-generic--04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.15.0-24-generic root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.15.0-24-generic
}
menuentry 'Ubuntu, with Linux 4.15.0-24-generic (upstart) (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-24-generic--04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.15.0-24-generic root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff init=/sbin/upstart
initrd /boot/initrd.img-4.15.0-24-generic
}
menuentry 'Ubuntu, with Linux 4.15.0-24-generic (recovery mode) (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-24-generic-root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro recovery nomodeset-04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.15.0-24-generic root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro recovery nomodeset
initrd /boot/initrd.img-4.15.0-24-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-45-generic (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.13.0-45-generic.efi.signed--04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.13.0-45-generic.efi.signed root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.13.0-45-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-45-generic (upstart) (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.13.0-45-generic.efi.signed--04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.13.0-45-generic.efi.signed root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro quiet splash $vt_handoff init=/sbin/upstart
initrd /boot/initrd.img-4.13.0-45-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-45-generic (recovery mode) (on /dev/sda13)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.13.0-45-generic.efi.signed-root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro recovery nomodeset-04048bda-66bf-4212-bd32-a54be16313e2' {
insmod part_gpt
insmod ext2
set root='hd0,gpt13'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 04048bda-66bf-4212-bd32-a54be16313e2
else
search --no-floppy --fs-uuid --set=root 04048bda-66bf-4212-bd32-a54be16313e2
fi
linux /boot/vmlinuz-4.13.0-45-generic.efi.signed root=UUID=04048bda-66bf-4212-bd32-a54be16313e2 ro recovery nomodeset
initrd /boot/initrd.img-4.13.0-45-generic
}
}
menuentry 'Linux Mint 18.2 Sonya (18.2) (on /dev/sda19)' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
insmod part_gpt
insmod ext2
set root='hd0,gpt19'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt19 --hint-efi=hd0,gpt19 --hint-baremetal=ahci0,gpt19 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
else
search --no-floppy --fs-uuid --set=root 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
fi
linux /boot/vmlinuz-4.8.0-53-generic root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.8.0-53-generic
}
submenu 'Advanced options for Linux Mint 18.2 Sonya (18.2) (on /dev/sda19)' $menuentry_id_option 'osprober-gnulinux-advanced-3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
menuentry 'Linux Mint 18.2 Cinnamon 64-bit (on /dev/sda19)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-53-generic--3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
insmod part_gpt
insmod ext2
set root='hd0,gpt19'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt19 --hint-efi=hd0,gpt19 --hint-baremetal=ahci0,gpt19 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
else
search --no-floppy --fs-uuid --set=root 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
fi
linux /boot/vmlinuz-4.8.0-53-generic root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.8.0-53-generic
}
menuentry 'Linux Mint 18.2 Cinnamon 64-bit, with Linux 4.8.0-53-generic (on /dev/sda19)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-53-generic--3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
insmod part_gpt
insmod ext2
set root='hd0,gpt19'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt19 --hint-efi=hd0,gpt19 --hint-baremetal=ahci0,gpt19 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
else
search --no-floppy --fs-uuid --set=root 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
fi
linux /boot/vmlinuz-4.8.0-53-generic root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.8.0-53-generic
}
menuentry 'Linux Mint 18.2 Cinnamon 64-bit, with Linux 4.8.0-53-generic (upstart) (on /dev/sda19)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-53-generic--3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
insmod part_gpt
insmod ext2
set root='hd0,gpt19'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt19 --hint-efi=hd0,gpt19 --hint-baremetal=ahci0,gpt19 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
else
search --no-floppy --fs-uuid --set=root 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
fi
linux /boot/vmlinuz-4.8.0-53-generic root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro quiet splash $vt_handoff init=/sbin/upstart
initrd /boot/initrd.img-4.8.0-53-generic
}
menuentry 'Linux Mint 18.2 Cinnamon 64-bit, with Linux 4.8.0-53-generic (recovery mode) (on /dev/sda19)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-53-generic-root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro recovery nomodeset-3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e' {
insmod part_gpt
insmod ext2
set root='hd0,gpt19'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt19 --hint-efi=hd0,gpt19 --hint-baremetal=ahci0,gpt19 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
else
search --no-floppy --fs-uuid --set=root 3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e
fi
linux /boot/vmlinuz-4.8.0-53-generic root=UUID=3f1aa51e-345f-4d71-b5b9-1bf4ce52d96e ro recovery nomodeset
initrd /boot/initrd.img-4.8.0-53-generic
}
}
menuentry 'Manjaro Linux (17.1.11) (on /dev/sda21)' --class manjarolinux --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-d7b46e33-12b6-42de-8978-3f4513957ca9' {
insmod part_gpt
insmod ext2
set root='hd0,gpt21'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt21 --hint-efi=hd0,gpt21 --hint-baremetal=ahci0,gpt21 d7b46e33-12b6-42de-8978-3f4513957ca9
else
search --no-floppy --fs-uuid --set=root d7b46e33-12b6-42de-8978-3f4513957ca9
fi
linux /boot/vmlinuz-4.14-x86_64 root=UUID=d7b46e33-12b6-42de-8978-3f4513957ca9 rw quiet
initrd /boot/intel-ucode.img
}
submenu 'Advanced options for Manjaro Linux (17.1.11) (on /dev/sda21)' $menuentry_id_option 'osprober-gnulinux-advanced-d7b46e33-12b6-42de-8978-3f4513957ca9' {
menuentry 'Manjaro Linux (on /dev/sda21)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.14-x86_64--d7b46e33-12b6-42de-8978-3f4513957ca9' {
insmod part_gpt
insmod ext2
set root='hd0,gpt21'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt21 --hint-efi=hd0,gpt21 --hint-baremetal=ahci0,gpt21 d7b46e33-12b6-42de-8978-3f4513957ca9
else
search --no-floppy --fs-uuid --set=root d7b46e33-12b6-42de-8978-3f4513957ca9
fi
linux /boot/vmlinuz-4.14-x86_64 root=UUID=d7b46e33-12b6-42de-8978-3f4513957ca9 rw quiet
initrd /boot/intel-ucode.img
}
menuentry 'Manjaro Linux (Kernel 4.14.56-1-MANJARO x64) (on /dev/sda21)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.14-x86_64--d7b46e33-12b6-42de-8978-3f4513957ca9' {
insmod part_gpt
insmod ext2
set root='hd0,gpt21'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt21 --hint-efi=hd0,gpt21 --hint-baremetal=ahci0,gpt21 d7b46e33-12b6-42de-8978-3f4513957ca9
else
search --no-floppy --fs-uuid --set=root d7b46e33-12b6-42de-8978-3f4513957ca9
fi
linux /boot/vmlinuz-4.14-x86_64 root=UUID=d7b46e33-12b6-42de-8978-3f4513957ca9 rw quiet
initrd /boot/intel-ucode.img
}
menuentry 'Manjaro Linux (Kernel 4.14.56-1-MANJARO x64 - fallback initramfs) (on /dev/sda21)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.14-x86_64--d7b46e33-12b6-42de-8978-3f4513957ca9' {
insmod part_gpt
insmod ext2
set root='hd0,gpt21'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt21 --hint-efi=hd0,gpt21 --hint-baremetal=ahci0,gpt21 d7b46e33-12b6-42de-8978-3f4513957ca9
else
search --no-floppy --fs-uuid --set=root d7b46e33-12b6-42de-8978-3f4513957ca9
fi
linux /boot/vmlinuz-4.14-x86_64 root=UUID=d7b46e33-12b6-42de-8978-3f4513957ca9 rw quiet
initrd /boot/initramfs-4.14-x86_64-fallback.img
}
}
menuentry 'Arch Linux (on /dev/sda6)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
initrd /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch Linux (on /dev/sda6)' $menuentry_id_option 'osprober-gnulinux-advanced-71a91b48-a421-4cc7-bef3-ac0b968fef87' {
menuentry 'Arch Linux (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--71a91b48-a421-4cc7-bef3-ac0b968fef87' {
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
initrd /boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--71a91b48-a421-4cc7-bef3-ac0b968fef87' {
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
initrd /boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (fallback initramfs) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--71a91b48-a421-4cc7-bef3-ac0b968fef87' {
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 71a91b48-a421-4cc7-bef3-ac0b968fef87
else
search --no-floppy --fs-uuid --set=root 71a91b48-a421-4cc7-bef3-ac0b968fef87
fi
linux /boot/vmlinuz-linux root=UUID=71a91b48-a421-4cc7-bef3-ac0b968fef87 rw quiet
initrd /boot/initramfs-linux-fallback.img
}
}
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
=============================== sda6/etc/fstab: ================================
--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda7 during installation
UUID=df0945cb-8819-4eb5-b45b-1c49a9447af1 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=9A02-00C8 /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda14 during installation
UUID=80c22e4c-e542-410c-ba9c-7b9dbcd95e96 none swap sw 0 0
# swap was on /dev/sda18 during installation
UUID=4087ea6f-d489-4fdf-9485-4834875441ab none swap sw 0 0
# swap was on /dev/sda5 during installation
UUID=7b401763-3fbe-4422-a95b-e6efb458fe40 none swap sw 0 0
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0
--------------------------------------------------------------------------------
=================== sda6: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
========================== sda10/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"