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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663 | Boot Info Script 0.61 [1 April 2012]
============================= Boot Info Summary: ===============================
=> Grub2 (v1.99) is installed in the MBR of /dev/sda and looks at sector 1 of
the same hard drive for core.img. core.img is at this location and looks
in partition 112 for .
=> Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 1 of
the same hard drive for core.img. core.img is at this location and looks
in partition 97 for .
=> Grub2 (v1.99) is installed in the MBR of /dev/sdc and looks at sector 1 of
the same hard drive for core.img. core.img is at this location and looks
for (,msdos1)/boot/grub on this drive.
sda1: __________________________________________________________________________
File system: vfat
Boot sector type: Dell Utility: FAT16
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /DELLBIO.BIN /DELLRMK.BIN /COMMAND.COM
sda2: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows XP
Boot files: /boot.ini /bootmgr /Boot/BCD /ntldr /NTDETECT.COM
sda3: __________________________________________________________________________
File system: Extended Partition
Boot sector type: Unknown
Boot sector info:
sda5: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 14.04.5 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab
sda6: __________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sdb1: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 16.04.1 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab
sdb2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sdc1: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 12.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sdc2: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sdc3: __________________________________________________________________________
File system: ext4
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 250.0 GB, 250000000000 bytes
255 heads, 63 sectors/track, 30394 cylinders, total 488281250 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 63 80,324 80,262 de Dell Utility
/dev/sda2 81,920 313,363,169 313,281,250 7 NTFS / exFAT / HPFS
/dev/sda3 313,364,478 488,280,063 174,915,586 5 Extended
/dev/sda5 313,364,480 480,159,743 166,795,264 83 Linux
/dev/sda6 480,161,792 488,280,063 8,118,272 82 Linux swap / Solaris
Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdb1 * 2,048 123,074,559 123,072,512 83 Linux
/dev/sdb2 123,074,560 976,773,119 853,698,560 83 Linux
Drive: sdc _____________________________________________________________________
Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sdc1 2,048 209,717,247 209,715,200 83 Linux
/dev/sdc2 209,717,248 629,147,647 419,430,400 83 Linux
/dev/sdc3 629,147,648 1,953,525,167 1,324,377,520 83 Linux
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/sda1 3030-3030 vfat DellUtility
/dev/sda2 A0888EEC888EC070 ntfs OS
/dev/sda5 97ca4c6f-67c6-40f1-b176-7bf1af257d70 ext4
/dev/sda6 df900da5-bd3f-496d-8fb4-358207ca7d46 swap
/dev/sdb1 bb14697c-8b03-4633-aa43-1ba49abad874 ext4
/dev/sdb2 ef480989-605b-4a26-b412-f351ff32319e ext4 home
/dev/sdc1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb ext4
/dev/sdc2 fe9c1b8c-35d5-4c05-b39f-ece36a278926 ext4
/dev/sdc3 3c49ea0e-e954-4bbc-9a45-431d74456e8b ext4
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/sda5 / ext4 (rw,errors=remount-ro)
/dev/sdb2 /home ext4 (rw,noatime)
/dev/sdc1 /mnt/d ext4 (rw,noatime)
/dev/sdc2 /mnt/videos ext4 (rw,noatime)
/dev/sdc3 /mnt/timeshift ext4 (rw)
================================ sda2/boot.ini: ================================
--------------------------------------------------------------------------------
[boot loader]
timeout=3
default=multi(0)disk(0)rdisk(0)partition(2)\WINDOWS
[operating systems]
C:\CMDCONS\BOOTSECT.DAT="Microsoft Windows Recovery Console" /cmdcons
UnsupportedDebug="do not select this" /debug
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptIn
--------------------------------------------------------------------------------
=========================== 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 ###
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 recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; 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_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
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=en_US
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=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
initrd /boot/initrd.img-3.13.0-95-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
menuentry 'Ubuntu, with Linux 3.13.0-95-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-95-generic-advanced-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
echo 'Loading Linux 3.13.0-95-generic ...'
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.13.0-95-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-95-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-95-generic-recovery-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
echo 'Loading Linux 3.13.0-95-generic ...'
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.13.0-95-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-93-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-93-generic-advanced-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
echo 'Loading Linux 3.13.0-93-generic ...'
linux /boot/vmlinuz-3.13.0-93-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.13.0-93-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-93-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-93-generic-recovery-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
recordfail
load_video
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
echo 'Loading Linux 3.13.0-93-generic ...'
linux /boot/vmlinuz-3.13.0-93-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.13.0-93-generic
}
}
### 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 Vista (loader) (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-A0888EEC888EC070' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 A0888EEC888EC070
else
search --no-floppy --fs-uuid --set=root A0888EEC888EC070
fi
parttool ${root} hidden-
chainloader +1
}
menuentry 'Ubuntu 12.04.5 LTS (12.04) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-69-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-69-generic-pae
}
submenu 'Advanced options for Ubuntu 12.04.5 LTS (12.04) (on /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
menuentry 'Ubuntu, with Linux 3.2.0-69-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-69-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-69-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-69-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-69-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-69-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-69-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-69-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-68-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-68-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-68-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-68-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-68-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-68-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-68-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-68-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-64-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-64-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-64-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-64-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-64-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-64-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-64-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-64-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-63-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-63-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-63-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-63-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-63-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-63-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-63-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-63-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-61-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-61-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-61-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-61-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-61-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-61-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-61-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-61-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-60-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-60-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-60-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-60-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-60-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-60-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-60-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-60-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-59-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-59-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-59-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-59-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-59-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-59-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-59-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-59-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-58-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-58-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-58-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-58-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-58-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-58-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-58-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-58-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-57-generic-pae (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-57-generic-pae--8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-57-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-57-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-57-generic-pae (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-57-generic-pae-root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset-8dbfcc40-072f-41a2-bcc1-7ee82509a109' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 8dbfcc40-072f-41a2-bcc1-7ee82509a109
else
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
fi
linux /boot/vmlinuz-3.2.0-57-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-57-generic-pae
}
}
menuentry 'Ubuntu 12.04.4 LTS (12.04) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
submenu 'Advanced options for Ubuntu 12.04.4 LTS (12.04) (on /dev/sdc1)' $menuentry_id_option 'osprober-gnulinux-advanced-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae--33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (recovery mode) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae-root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae--33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (recovery mode) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae-root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### 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 ###
--------------------------------------------------------------------------------
=============================== sda5/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/sda5 during installation
UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda6 during installation
UUID=df900da5-bd3f-496d-8fb4-358207ca7d46 none swap sw 0 0
#########################################################################################
# This is the 12.04 root disk from the Dell Dimension 8400 that gave up the ghost on 9/27/2014
# /dev/sdb1 on /media/apb/8dbfcc40-072f-41a2-bcc1-7ee82509a109 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
#########################################################################################
#192.168.0.12:/mnt/timeshift /mnt/timeshift nfs auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 0
#192.168.0.12:/mnt/c/home /home nfs auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 0
#192.168.0.12:/mnt/d /mnt/d nfs auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 0
#Filesystem 1K-blocks Used Available Use% Mounted on
#/dev/sda5 81956552 11592728 66177560 15% /
#/dev/sdc1 103081248 89967336 7854648 92% /mnt/d
#/dev/sdc3 651665768 555782824 62757124 90% /mnt/timeshift
#/dev/sdb1 60438604 28622284 28723124 50% /ubuntu_12.04
#/dev/sdc2 206293688 195699216 92328 100% /mnt/videos
#/dev/sdb2 420019872 58789712 339871312 15% /home
/dev/sdc1 /mnt/d ext4 defaults,noatime 0 2
/dev/sdc2 /mnt/videos ext4 defaults,noatime 0 2
/dev/sdc3 /mnt/timeshift ext4 defaults 0 2
/dev/sdb1 /ubuntu_12.04 ext4 defaults,noatime 0 2
/dev/sdb2 /home ext4 defaults,noatime 0 2
# Added 6/28/16 as per Ben64 in ##hardware
# It creates a RAM disk for /tmp. It uses probably 1/2 total RAM
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
--------------------------------------------------------------------------------
=================== sda5: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
=========================== sdb1/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 recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; 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_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
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=en_US
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=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
clear
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-bb14697c-8b03-4633-aa43-1ba49abad874' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
linux /boot/vmlinuz-4.4.0-31-generic root=UUID=bb14697c-8b03-4633-aa43-1ba49abad874 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.4.0-31-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-bb14697c-8b03-4633-aa43-1ba49abad874' {
menuentry 'Ubuntu, with Linux 4.4.0-31-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-advanced-bb14697c-8b03-4633-aa43-1ba49abad874' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
echo 'Loading Linux 4.4.0-31-generic ...'
linux /boot/vmlinuz-4.4.0-31-generic root=UUID=bb14697c-8b03-4633-aa43-1ba49abad874 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.4.0-31-generic
}
menuentry 'Ubuntu, with Linux 4.4.0-31-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-init-upstart-bb14697c-8b03-4633-aa43-1ba49abad874' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
echo 'Loading Linux 4.4.0-31-generic ...'
linux /boot/vmlinuz-4.4.0-31-generic root=UUID=bb14697c-8b03-4633-aa43-1ba49abad874 ro quiet splash $vt_handoff init=/sbin/upstart
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.4.0-31-generic
}
menuentry 'Ubuntu, with Linux 4.4.0-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-31-generic-recovery-bb14697c-8b03-4633-aa43-1ba49abad874' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
echo 'Loading Linux 4.4.0-31-generic ...'
linux /boot/vmlinuz-4.4.0-31-generic root=UUID=bb14697c-8b03-4633-aa43-1ba49abad874 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.4.0-31-generic
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
knetbsd /boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 bb14697c-8b03-4633-aa43-1ba49abad874
else
search --no-floppy --fs-uuid --set=root bb14697c-8b03-4633-aa43-1ba49abad874
fi
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Vista (loader) (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-A0888EEC888EC070' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 A0888EEC888EC070
else
search --no-floppy --fs-uuid --set=root A0888EEC888EC070
fi
parttool ${root} hidden-
chainloader +1
}
menuentry 'Ubuntu 14.04.5 LTS (14.04) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
initrd /boot/initrd.img-3.13.0-95-generic
}
submenu 'Advanced options for Ubuntu 14.04.5 LTS (14.04) (on /dev/sda5)' $menuentry_id_option 'osprober-gnulinux-advanced-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
menuentry 'Ubuntu (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-95-generic--97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
initrd /boot/initrd.img-3.13.0-95-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-95-generic (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-95-generic--97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
initrd /boot/initrd.img-3.13.0-95-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-95-generic (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-95-generic-root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-95-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset
initrd /boot/initrd.img-3.13.0-95-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-93-generic (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-93-generic--97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-93-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro
initrd /boot/initrd.img-3.13.0-93-generic
}
menuentry 'Ubuntu, with Linux 3.13.0-93-generic (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-93-generic-root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset-97ca4c6f-67c6-40f1-b176-7bf1af257d70' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 97ca4c6f-67c6-40f1-b176-7bf1af257d70
else
search --no-floppy --fs-uuid --set=root 97ca4c6f-67c6-40f1-b176-7bf1af257d70
fi
linux /boot/vmlinuz-3.13.0-93-generic root=UUID=97ca4c6f-67c6-40f1-b176-7bf1af257d70 ro single nomodeset
initrd /boot/initrd.img-3.13.0-93-generic
}
}
menuentry 'Ubuntu 12.04.4 LTS (12.04) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
submenu 'Advanced options for Ubuntu 12.04.4 LTS (12.04) (on /dev/sdc1)' $menuentry_id_option 'osprober-gnulinux-advanced-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae--33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (recovery mode) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-67-generic-pae-root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae--33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (recovery mode) (on /dev/sdc1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.2.0-65-generic-pae-root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset-33c2e61f-5df2-4879-8eae-5cc622b0cdcb' {
insmod part_msdos
insmod ext2
set root='hd2,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
else
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
fi
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### 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 ###
--------------------------------------------------------------------------------
=============================== sdb1/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/sdb1 during installation
UUID=bb14697c-8b03-4633-aa43-1ba49abad874 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda6 during installation
UUID=df900da5-bd3f-496d-8fb4-358207ca7d46 none swap sw 0 0
--------------------------------------------------------------------------------
=================== sdb1: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
=========================== sdc1/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
set default="0"
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 recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
}
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=auto
load_video
insmod gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
set locale_dir=($root)/boot/grub/locale
set lang=
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=-1
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=hidden
set timeout=0
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 0 ; then
set timeout=0
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 75,75,75; then
clear
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-67-generic-pae (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
echo 'Loading Linux 3.2.0-67-generic-pae ...'
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
submenu "Previous Linux versions" {
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry 'Ubuntu, with Linux 3.2.0-65-generic-pae (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 33c2e61f-5df2-4879-8eae-5cc622b0cdcb
echo 'Loading Linux 3.2.0-65-generic-pae ...'
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb ro single nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
}
### 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 "Ubuntu, with Linux 3.2.0-67-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-67-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-67-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-67-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-65-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-65-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-65-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-65-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-64-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-64-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-64-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-64-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-64-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-64-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-63-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-63-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-63-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-63-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-63-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-63-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-61-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-61-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-61-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-61-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-61-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-61-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-60-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-60-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-60-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-60-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-60-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-60-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-59-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-59-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-59-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-59-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-59-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-59-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-58-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-58-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-58-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-58-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-58-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-58-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-57-generic-pae (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-57-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-57-generic-pae
}
menuentry "Ubuntu, with Linux 3.2.0-57-generic-pae (recovery mode) (on /dev/sdb1)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set=root 8dbfcc40-072f-41a2-bcc1-7ee82509a109
linux /boot/vmlinuz-3.2.0-57-generic-pae root=UUID=8dbfcc40-072f-41a2-bcc1-7ee82509a109 ro single nomodeset
initrd /boot/initrd.img-3.2.0-57-generic-pae
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### 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 $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------
=============================== sdc1/etc/fstab: ================================
--------------------------------------------------------------------------------
# UNCONFIGURED FSTAB FOR BASE SYSTEM
# (identifier) (location, eg sda5) (format, eg ext3 or ext4) (some settings)
UUID=33c2e61f-5df2-4879-8eae-5cc622b0cdcb /home ext4 defaults 0 2
#/dev/sda1: UUID="33c2e61f-5df2-4879-8eae-5cc622b0cdcb" TYPE="ext4"
#/dev/sda2: UUID="fe9c1b8c-35d5-4c05-b39f-ece36a278926" TYPE="ext4"
#/dev/sda3: UUID="3c49ea0e-e954-4bbc-9a45-431d74456e8b" TYPE="ext4"
#/dev/sdb1: UUID="8dbfcc40-072f-41a2-bcc1-7ee82509a109" TYPE="ext4"
--------------------------------------------------------------------------------
=================== sdc1: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
======================== Unknown MBRs/Boot Sectors/etc: ========================
Unknown BootLoader on sda3
00000000 5a 53 29 b2 91 0b 34 73 ed 44 04 7e c1 03 e1 b4 |ZS)...4s.D.~....|
00000010 21 1b 3f 61 b9 fc f8 a4 7c 55 9d d9 b8 80 15 c0 |!.?a....|U......|
00000020 39 d5 b7 0c 79 fa f7 5d a1 02 ec 7f c8 dc 20 9a |9...y..]...... .|
00000030 60 43 88 df 9c f1 98 84 a7 81 9e 13 7e ae 12 46 |`C..........~..F|
00000040 1b 16 fe bf 92 0f 34 67 39 bb 56 19 66 20 93 14 |......4g9.V.f ..|
00000050 82 3b 76 e4 d2 7e ab 19 3b 8c 87 ef be 80 43 07 |.;v..~..;.....C.|
00000060 5e 53 29 b6 91 0b 45 e5 fb 80 6c 9a 55 d4 69 cc |^S)...E...l.U.i.|
00000070 25 97 c8 28 f8 33 e0 ab 81 aa 3f bb ba 80 90 43 |%..(.3....?....C|
00000080 09 8a ec 98 d0 4c 70 3f a8 a2 34 df 10 9e 24 66 |.....Lp?..4...$f|
00000090 9f b6 77 20 fc 39 07 27 0b 32 fa 95 fb d3 17 4c |..w .9.'.2.....L|
000000a0 1b b4 c2 5f 95 01 16 01 12 bb f0 7e 9d 04 4c 9b |..._.......~..L.|
000000b0 bd 6f b3 0e ba 6a b0 12 8f 70 7b bf ba 80 bf fc |.o...j...p{.....|
000000c0 a1 53 29 b6 91 57 63 6c 65 81 87 f5 5c cb 60 df |.S)..Wcle...\.`.|
000000d0 95 f9 d5 24 fc 39 1c a8 81 55 3f bb ba f8 36 a9 |...$.9...U?...6.|
000000e0 ec 96 07 f7 c3 5b 62 36 1b 6f 31 b6 1f 5e 9e 9b |.....[b6.o1..^..|
000000f0 60 40 13 b9 03 88 ac ad c4 91 11 fa e3 cf 06 fa |`@..............|
00000100 52 a5 2d bc e3 e8 cb 8c 6b c9 c6 67 a1 2a fa 7b |R.-.....k..g.*.{|
00000110 a5 67 36 61 be 6a a5 ae 46 7a 3b b1 ba 7c bc fc |.g6a.j..Fz;..|..|
00000120 5e 53 29 b6 c8 f4 82 fc 28 6a e8 f8 4e dd 61 63 |^S).....(j..N.ac|
00000130 aa 8c 73 2a fc c5 1f a8 7e 55 3f bb 00 30 e1 01 |..s*....~U?..0..|
00000140 9b 7d 68 f8 c4 41 71 89 a9 95 ad b4 14 9a 24 9a |.}h..Aq.......$.|
00000150 60 49 77 20 b5 68 ec 06 bb 7b 7e ea ea cb 06 f9 |`Iw .h...{~.....|
00000160 a1 a7 2d bc 91 f7 cb 8c ed 44 a9 b4 38 d9 8d 5b |..-......D..8..[|
00000170 a5 67 36 72 a5 60 a5 a9 a2 11 3b bb ea 29 43 03 |.g6r.`....;..)C.|
00000180 7c c6 f6 10 7f 70 d7 88 29 6a f0 ed 40 d8 28 ba ||....p..)j..@.(.|
00000190 cf 4d 77 20 f8 39 e0 57 7e 55 3f 6a 3d e2 22 c6 |.Mw .9.W~U?j=.".|
000001a0 70 12 61 fe c8 4d 38 c9 f9 40 a9 1f 65 61 db 94 |p.a..M8..@..ea..|
000001b0 15 de 53 41 57 5c 76 93 50 0c 65 ea fc 8d 00 fe |..SAW\v.P.e.....|
000001c0 ff ff 83 fe ff ff 02 00 00 00 00 18 f1 09 00 fe |................|
000001d0 ff ff 05 fe ff ff 02 18 f1 09 00 e8 7b 00 00 00 |............{...|
000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 55 aa |..............U.|
00000200
=============================== StdErr Messages: ===============================
xz: (stdin): Compressed data is corrupt
cat: /tmp/BootInfo-QlLpQ4wz/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-QlLpQ4wz/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-QlLpQ4wz/Tmp_Log: No such file or directory
|