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 | 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
for (,msdos8)/boot/grub on this drive.
=> 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 uses an
embedded config file:
---------------------------------------------------------------------------
search.fs_uuid d5181823-faa2-4649-b4f0-81e35c515b21 root
set prefix=($root)/boot/grub
---------------------------------------------------------------------------
-----.
=> No boot loader is installed in the MBR of /dev/sdc.
sda1: __________________________________________________________________________
File system:
Boot sector type: -
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
sda2: __________________________________________________________________________
File system:
Boot sector type: -
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
mount: unknown filesystem type ''
sda3: __________________________________________________________________________
File system:
Boot sector type: -
Boot sector info:
Mounting failed: mount: unknown filesystem type ''
mount: unknown filesystem type ''
mount: unknown filesystem type ''
sda4: __________________________________________________________________________
File system: Extended Partition
Boot sector type: -
Boot sector info:
sda5: __________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sda6: __________________________________________________________________________
File system: swap
Boot sector type: -
Boot sector info:
sda7: __________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sda8: __________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 12.04.5 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sda9: __________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System: Ubuntu 10.04.4 LTS
Boot files: /boot/grub/grub.cfg /etc/fstab /boot/grub/core.img
sda10: _________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sda11: _________________________________________________________________________
File system: ext3
Boot sector type: -
Boot sector info:
Operating System:
Boot files:
sdb1: __________________________________________________________________________
File system: vfat
Boot sector type: FAT16
Boot sector info: No errors found in the Boot Parameter Block.
Operating System:
Boot files: /DELLBIO.BIN /DELLRMK.BIN /COMMAND.COM
sdb2: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows Vista
Boot files: /Windows/System32/winload.exe
sdb3: __________________________________________________________________________
File system: ntfs
Boot sector type: Windows Vista/7: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: Windows Vista
Boot files: /NST/menu.lst /bootmgr /boot/bcd
/Windows/System32/winload.exe
sdc1: __________________________________________________________________________
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:
============================ Drive/Partition Info: =============================
Drive: sda _____________________________________________________________________
Disk /dev/sda: 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 / 512 bytes
Partition Boot Start Sector End Sector # of Sectors Id System
/dev/sda1 63 80,324 80,262 83 Linux
/dev/sda2 80,325 32,852,924 32,772,600 83 Linux
/dev/sda3 32,852,925 647,258,849 614,405,925 83 Linux
/dev/sda4 647,258,974 1,953,520,064 1,306,261,091 5 Extended
/dev/sda5 1,953,118,440 1,953,520,064 401,625 83 Linux
/dev/sda6 1,912,152,753 1,953,118,439 40,965,687 82 Linux swap / Solaris
/dev/sda7 1,702,440,243 1,912,152,689 209,712,447 83 Linux
/dev/sda8 1,597,583,988 1,702,440,179 104,856,192 83 Linux
/dev/sda9 * 647,258,976 752,115,104 104,856,129 83 Linux
/dev/sda10 856,973,312 1,596,555,263 739,581,952 83 Linux
/dev/sda11 1,596,555,828 1,597,583,924 1,028,097 83 Linux
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 63 80,324 80,262 de Dell Utility
/dev/sdb2 81,920 30,801,919 30,720,000 7 NTFS / exFAT / HPFS
/dev/sdb3 * 30,801,920 976,771,119 945,969,200 7 NTFS / exFAT / HPFS
Drive: sdc _____________________________________________________________________
Disk /dev/sdc: 2000.4 GB, 2000398933504 bytes
255 heads, 63 sectors/track, 243201 cylinders, total 3907029167 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/sdc1 2,048 3,907,029,163 3,907,027,116 7 NTFS / exFAT / HPFS
"blkid" output: ________________________________________________________________
Device UUID TYPE LABEL
/dev/sda10 b41da791-f48b-4ad9-ba3e-825e6166f5e2 ext3 10.04LTSgoodHOME
/dev/sda11 6d8bc121-660e-407a-a281-5576448633fa ext3 CloneZillaLiveBR
/dev/sda5 56a5646a-de11-4643-bc20-2d57cad6ca68 ext3 IntentFreeSpace
/dev/sda6 df4f2aaa-95af-45d3-8ba6-f78a5d83e018 swap
/dev/sda7 ae76b439-27f5-4bda-b47f-5821554e8be8 ext3 HOME 12.04LTS
/dev/sda8 d5181823-faa2-4649-b4f0-81e35c515b21 ext3 ROOT 12.04LTS
/dev/sda9 c7e93ec4-ee58-490c-8249-fccc30e66b0d ext3 10.04LTSgoodROOT
/dev/sdb1 3030-3030 vfat DellUtility
/dev/sdb2 32E0E47BE0E44727 ntfs RECOVERY
/dev/sdb3 420CE7390CE7269F ntfs OS
/dev/sdc1 5A22DB2D22DB0CBF ntfs Seagate Expansion Drive
================================ Mount points: =================================
Device Mount_Point Type Options
/dev/sda7 /home ext3 (rw)
/dev/sda8 / ext3 (rw,errors=remount-ro)
/dev/sdc1 /media/Seagate Expansion Drive fuseblk (rw,nosuid,nodev,allow_other,default_permissions,blksize=4096)
=========================== sda8/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,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=auto
load_video
insmod gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
set locale_dir=($root)/boot/grub/locale
set lang=en_US
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(hd0,msdos7)'
search --no-floppy --fs-uuid --set=root ae76b439-27f5-4bda-b47f-5821554e8be8
insmod png
if background_image /mcgrete/Pictures/drafting-declaration.png; then
set color_normal=black/black
set color_highlight=red/black
else
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
clear
fi
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux_proxy ###
menuentry "Ubuntu, with Linux 3.11.0-18-generic.efi.signed" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.11.0-18-generic.efi.signed root=/dev/sda8 ro quiet splash $vt_handoff
}
menuentry "Ubuntu, with Linux 3.11.0-18-generic.efi.signed (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.11.0-18-generic.efi.signed ...'
linux /boot/vmlinuz-3.11.0-18-generic.efi.signed root=/dev/sda8 ro recovery nomodeset
}
### END /etc/grub.d/10_linux_proxy ###
### BEGIN /etc/grub.d/40_custom_proxy ###
menuentry "TEM-Clonezilla-Live-2.0.1-15-amd64.iso from ClonezillaLiveBR"{
set isofile="/TEM-Clonezilla-Live-2.0.1-15-amd64.iso"
loopback loop (hd1,11)$isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
### END /etc/grub.d/40_custom_proxy ###
### BEGIN /etc/grub.d/41_os-prober_proxy ###
menuentry "Windows Vista (loader) (on /dev/sdb3)" --class windows --class os {
insmod part_msdos
insmod ntfs
set root='(hd1,msdos3)'
search --no-floppy --fs-uuid --set=root 420CE7390CE7269F
chainloader +1
}
menuentry "Ubuntu, with Linux 2.6.32-45-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-45-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-45-generic
}
menuentry "Ubuntu, with Linux 2.6.32-45-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-45-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-45-generic
}
### END /etc/grub.d/41_os-prober_proxy ###
### BEGIN /etc/grub.d/44_linux_proxy ###
menuentry "Ubuntu, with Linux 3.2.0-60-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-60-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-60-generic
}
menuentry "Ubuntu, with Linux 3.2.0-60-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-60-generic ...'
linux /boot/vmlinuz-3.2.0-60-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-60-generic
}
### END /etc/grub.d/44_linux_proxy ###
### BEGIN /etc/grub.d/46_linux_proxy ###
menuentry "Ubuntu, with Linux 3.2.0-45-generic (/dev/sda8)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-45-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-45-generic
}
menuentry "Ubuntu, with Linux 3.2.0-45-generic (recovery mode) (/dev/sda8)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-45-generic ...'
linux /boot/vmlinuz-3.2.0-45-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-45-generic
}
submenu "Previous PRECISE kernels"{
menuentry "Ubuntu, with Linux 3.2.0-45-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-45-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-45-generic
}
menuentry "Ubuntu, with Linux 3.2.0-45-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-45-generic ...'
linux /boot/vmlinuz-3.2.0-45-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-45-generic
}
menuentry "Ubuntu, with Linux 3.2.0-35-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-35-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-35-generic
}
menuentry "Ubuntu, with Linux 3.2.0-35-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-35-generic ...'
linux /boot/vmlinuz-3.2.0-35-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-35-generic
}
menuentry "Ubuntu, with Linux 3.2.0-40-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-40-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-40-generic
}
menuentry "Ubuntu, with Linux 3.2.0-40-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-40-generic ...'
linux /boot/vmlinuz-3.2.0-40-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-40-generic
}
menuentry "Ubuntu, with Linux 3.2.0-34-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-34-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-34-generic
}
menuentry "Ubuntu, with Linux 3.2.0-34-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-34-generic ...'
linux /boot/vmlinuz-3.2.0-34-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-34-generic
}
menuentry "Ubuntu, with Linux 3.2.0-33-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-33-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-33-generic
}
menuentry "Ubuntu, with Linux 3.2.0-33-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-33-generic ...'
linux /boot/vmlinuz-3.2.0-33-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-33-generic
}
menuentry "Ubuntu, with Linux 3.2.0-29-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-29-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-29-generic
}
menuentry "Ubuntu, with Linux 3.2.0-29-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
echo 'Loading Linux 3.2.0-29-generic ...'
linux /boot/vmlinuz-3.2.0-29-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-3.2.0-29-generic
}
}
### END /etc/grub.d/46_linux_proxy ###
### BEGIN /etc/grub.d/48_linux_xen_proxy ###
submenu "Previous LUCID kernels"{
menuentry "Ubuntu, with Linux 2.6.32-44-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-44-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-44-generic
}
menuentry "Ubuntu, with Linux 2.6.32-44-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-44-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-44-generic
}
menuentry "Ubuntu, with Linux 2.6.32-42-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-42-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-42-generic
}
menuentry "Ubuntu, with Linux 2.6.32-42-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-42-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-42-generic
}
menuentry "Ubuntu, with Linux 2.6.32-41-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-41-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-41-generic
}
menuentry "Ubuntu, with Linux 2.6.32-41-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-41-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-41-generic
}
menuentry "Ubuntu, with Linux 2.6.32-40-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-40-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-40-generic
}
menuentry "Ubuntu, with Linux 2.6.32-40-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-40-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-40-generic
}
menuentry "Ubuntu, with Linux 2.6.32-38-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-38-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-38-generic
}
menuentry "Ubuntu, with Linux 2.6.32-38-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-38-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-38-generic
}
menuentry "Ubuntu, with Linux 2.6.32-37-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-37-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-37-generic
}
menuentry "Ubuntu, with Linux 2.6.32-37-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-37-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-37-generic
}
menuentry "Ubuntu, with Linux 2.6.32-33-generic (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-33-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-33-generic
}
menuentry "Ubuntu, with Linux 2.6.32-33-generic (recovery mode) (on /dev/sda9)" --class gnu-linux --class gnu --class os {
insmod part_msdos
insmod ext2
set root='(hd0,msdos9)'
search --no-floppy --fs-uuid --set=root c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-33-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
initrd /boot/initrd.img-2.6.32-33-generic
}
}
### END /etc/grub.d/48_linux_xen_proxy ###
### BEGIN /etc/grub.d/50_custom_proxy ###
submenu "New Clonezilla"{
# 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.
#
#
# TEM copied the contents below from old 10.04LTS 'custom' file.
# I kept the records of what worked/did not work in 10.04LTS as is.
# Anything that was tried in 12.04LTS will be documented below as well.
#
#
# Added lines to be able to boot CloneZilla Live from partition on my HDD (/dev/sdb11).
# See website: http://clonezilla.org/livehd.php
# THis does NOT work (with GRUB2 at least...)
#menuentry "Clonezilla" {
#set root=(hd1,11)
#linux /live-hd/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash live-media-path=/live-hd bootfrom=/dev/sdb11 #toram=filesystem.squashfs
#initrd /live-hd/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This did not work either...
#menuentry "Clonezilla live" {
#set isofile="(hd1,11)/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
#menuentry "Clonezilla live from 11.10ROOT..." {
#set isofile="(hd1,8)/media/Ub11.10ROOT/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#menuentry "Clonezilla live from 10.04LTS ROOT..." {
#set isofile="(hd1,9)/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
# THis failed too...
#menuentry "2-Clonezilla live" {
#set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop (hd1,11)$isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
# This failed...
#menuentry "2-Clonezilla live from 11.10ROOT..." {
#set isofile="/media/Ub11.10ROOT/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop (hd1,8)$isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
# This worked!!!!
# This works too!!!
# Have posted reply to thread to ask if I can manage to boot from iso on /dev/sdb11....
# POST at: http://ubuntuforums.org/showthread.php?t=1549847&page=20
menuentry "Clonezilla-live-1.2.11-23-amd64.iso from 12.04LTS ROOT..." {
set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop (hd1,8)$isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
menuentry "Clonezilla-live-1.2.11-23-amd64.isofrom 10.04LTS ROOT..." {
set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop (hd1,9)$isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
}
submenu "Old Clonezilla"{
# 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.
#
#
# TEM copied the contents below from old 10.04LTS 'custom' file.
# I kept the records of what worked/did not work in 10.04LTS as is.
# Anything that was tried in 12.04LTS will be documented below as well.
#
#
# Added lines to be able to boot CloneZilla Live from partition on my HDD (/dev/sdb11).
# See website: http://clonezilla.org/livehd.php
# THis does NOT work (with GRUB2 at least...)
#menuentry "Clonezilla" {
#set root=(hd1,11)
#linux /live-hd/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash live-media-path=/live-hd bootfrom=/dev/sdb11 #toram=filesystem.squashfs
#initrd /live-hd/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This did not work either...
#menuentry "Clonezilla live" {
#set isofile="(hd1,11)/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
#menuentry "Clonezilla live from 11.10ROOT..." {
#set isofile="(hd1,8)/media/Ub11.10ROOT/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#menuentry "Clonezilla live from 10.04LTS ROOT..." {
#set isofile="(hd1,9)/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop $isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
# THis failed too...
#menuentry "2-Clonezilla live" {
#set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop (hd1,11)$isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
# This failed...
#menuentry "2-Clonezilla live from 11.10ROOT..." {
#set isofile="/media/Ub11.10ROOT/clonezilla-live-1.2.11-23-amd64.iso"
#loopback loop (hd1,8)$isofile
#linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
#initrd (loop)/live/initrd.img
#}
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
# This worked!!!!
# This works too!!!
# Have posted reply to thread to ask if I can manage to boot from iso on /dev/sdb11....
# POST at: http://ubuntuforums.org/showthread.php?t=1549847&page=20
menuentry "Clonezilla-live-1.2.11-23-amd64.iso from 11.10ROOT..." {
set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop (hd1,8)$isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
menuentry "Clonezilla-live-1.2.11-23-amd64.iso from 10.04LTS ROOT..." {
set isofile="/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop (hd1,9)$isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
}
submenu "Memory Test"{
menuentry "Memory test (memtest86+)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod part_msdos
insmod ext2
set root='(hd0,msdos8)'
search --no-floppy --fs-uuid --set=root d5181823-faa2-4649-b4f0-81e35c515b21
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
}
### END /etc/grub.d/50_custom_proxy ###
--------------------------------------------------------------------------------
=============================== sda8/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>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sda8 during installation
UUID=d5181823-faa2-4649-b4f0-81e35c515b21 / ext3 errors=remount-ro 0 1
# /home was on /dev/sda7 during installation
UUID=ae76b439-27f5-4bda-b47f-5821554e8be8 /home ext3 defaults 0 2
# swap was on /dev/sda6 during installation
UUID=df4f2aaa-95af-45d3-8ba6-f78a5d83e018 none swap sw 0 0
--------------------------------------------------------------------------------
=================== sda8: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
771.338605881 = 828.218521600 boot/grub/core.img 2
771.650518417 = 828.553435136 boot/grub/grub.cfg 1
771.671266556 = 828.575713280 boot/initrd.img-3.11.0-18-generic 23
771.401899338 = 828.286482432 boot/initrd.img-3.2.0-29-generic 7
771.316484451 = 828.194768896 boot/initrd.img-3.2.0-33-generic 7
771.425367355 = 828.311681024 boot/initrd.img-3.2.0-34-generic 8
771.516405106 = 828.409432064 boot/initrd.img-3.2.0-35-generic 8
771.492460251 = 828.383721472 boot/initrd.img-3.2.0-40-generic 8
771.559473038 = 828.455675904 boot/initrd.img-3.2.0-45-generic 15
771.524850845 = 828.418500608 boot/initrd.img-3.2.0-53-generic 22
771.495588303 = 828.387080192 boot/initrd.img-3.2.0-60-generic 14
771.646299362 = 828.548904960 boot/initrd.img-3.2.0-61-generic 15
771.571390152 = 828.468471808 boot/initrd.img-3.2.0-74-generic 10
771.501096725 = 828.392994816 boot/vmlinuz-3.11.0-18-generic 5
771.347902298 = 828.228503552 boot/vmlinuz-3.11.0-18-generic.efi.signed 7
771.366384506 = 828.248348672 boot/vmlinuz-3.2.0-29-generic 3
771.388334274 = 828.271917056 boot/vmlinuz-3.2.0-33-generic 5
771.406721115 = 828.291659776 boot/vmlinuz-3.2.0-34-generic 5
771.430067062 = 828.316727296 boot/vmlinuz-3.2.0-35-generic 7
771.379114151 = 828.262017024 boot/vmlinuz-3.2.0-40-generic 3
771.539636612 = 828.434376704 boot/vmlinuz-3.2.0-45-generic 7
795.647207260 = 854.319683584 boot/vmlinuz-3.2.0-53-generic 3
771.338495255 = 828.218402816 boot/vmlinuz-3.2.0-60-generic 5
771.606691360 = 828.506376192 boot/vmlinuz-3.2.0-61-generic 7
771.606702805 = 828.506388480 boot/vmlinuz-3.2.0-74-generic 5
771.571390152 = 828.468471808 initrd.img 10
771.646299362 = 828.548904960 initrd.img.old 15
771.606702805 = 828.506388480 vmlinuz 5
771.606691360 = 828.506376192 vmlinuz.old 7
=========================== sda9/boot/grub/grub.cfg: ===========================
--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
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
}
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
if [ ${recordfail} = 1 ]; then
set timeout=-1
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
insmod tga
if background_image /usr/share/images/desktop-base/93938-2.tga ; then
set color_normal=white/black
set color_highlight=red/yellow
else
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux_proxy ###
menuentry "Ubuntu, with Linux 2.6.32-45-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-45-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-45-generic
}
menuentry "Ubuntu, with Linux 2.6.32-45-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-45-generic ...'
linux /boot/vmlinuz-2.6.32-45-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-45-generic
}
submenu "Previous 10.04LTS kernels"{
menuentry "Ubuntu, with Linux 2.6.32-44-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-44-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-44-generic
}
menuentry "Ubuntu, with Linux 2.6.32-44-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-44-generic ...'
linux /boot/vmlinuz-2.6.32-44-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-44-generic
}
menuentry "Ubuntu, with Linux 2.6.32-42-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-42-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-42-generic
}
menuentry "Ubuntu, with Linux 2.6.32-42-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-42-generic ...'
linux /boot/vmlinuz-2.6.32-42-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-42-generic
}
menuentry "Ubuntu, with Linux 2.6.32-41-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-41-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-41-generic
}
menuentry "Ubuntu, with Linux 2.6.32-41-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-41-generic ...'
linux /boot/vmlinuz-2.6.32-41-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-41-generic
}
menuentry "Ubuntu, with Linux 2.6.32-40-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-40-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-40-generic
}
menuentry "Ubuntu, with Linux 2.6.32-40-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-40-generic ...'
linux /boot/vmlinuz-2.6.32-40-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-40-generic
}
menuentry "Ubuntu, with Linux 2.6.32-38-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-38-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-38-generic
}
menuentry "Ubuntu, with Linux 2.6.32-38-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-38-generic ...'
linux /boot/vmlinuz-2.6.32-38-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-38-generic
}
menuentry "Ubuntu, with Linux 2.6.32-37-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-37-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-37-generic
}
menuentry "Ubuntu, with Linux 2.6.32-37-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-37-generic ...'
linux /boot/vmlinuz-2.6.32-37-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-37-generic
}
menuentry "Ubuntu, with Linux 2.6.32-33-generic" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux /boot/vmlinuz-2.6.32-33-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap
initrd /boot/initrd.img-2.6.32-33-generic
}
menuentry "Ubuntu, with Linux 2.6.32-33-generic (recovery mode)" --class ubuntu --class gnu-linux --class gnu --class os {
recordfail
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
echo 'Loading Linux 2.6.32-33-generic ...'
linux /boot/vmlinuz-2.6.32-33-generic root=UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d ro single
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-2.6.32-33-generic
}
}
### END /etc/grub.d/10_linux_proxy ###
### BEGIN /etc/grub.d/20_memtest86+_proxy ###
menuentry "Memory test (memtest86+)" {
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux16 /boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
insmod ext2
set root='(hd0,9)'
search --no-floppy --fs-uuid --set c7e93ec4-ee58-490c-8249-fccc30e66b0d
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+_proxy ###
### BEGIN /etc/grub.d/30_os-prober_proxy ###
menuentry "Ubuntu, with Linux 3.2.0-29-generic (on /dev/sda8)" {
insmod ext2
set root='(hd0,8)'
search --no-floppy --fs-uuid --set d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-29-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro quiet splash $vt_handoff
initrd /boot/initrd.img-3.2.0-29-generic
}
menuentry "Ubuntu, with Linux 3.2.0-29-generic (recovery mode) (on /dev/sda8)" {
insmod ext2
set root='(hd0,8)'
search --no-floppy --fs-uuid --set d5181823-faa2-4649-b4f0-81e35c515b21
linux /boot/vmlinuz-3.2.0-29-generic root=UUID=d5181823-faa2-4649-b4f0-81e35c515b21 ro recovery nomodeset
initrd /boot/initrd.img-3.2.0-29-generic
}
### END /etc/grub.d/30_os-prober_proxy ###
### BEGIN /etc/grub.d/40_custom_proxy ###
menuentry "Clonezilla live" {
set isofile="(hd1,11)/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop $isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
submenu "Clonezilla"{
menuentry "Clonezilla live from 12.04LTS ROOT..." {
set isofile="(hd1,8)/media/Ub11.10ROOT/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop $isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
menuentry "Clonezilla live from 10.04LTS ROOT..." {
set isofile="(hd1,9)/clonezilla-live-1.2.11-23-amd64.iso"
loopback loop $isofile
linux (loop)/live/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash toram=filesystem.squashfs findiso=$isofile
initrd (loop)/live/initrd.img
}
}
# 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.
#
#
# Added lines to be able to boot CloneZilla Live from partition on my HDD (/dev/sdb11).
# See website: http://clonezilla.org/livehd.php
# THis does NOT work (with GRUB2 at least...)
#menuentry "Clonezilla" {
#set root=(hd1,11)
#linux /live-hd/vmlinuz boot=live live-config noswap nolocales edd=on nomodeset ocs_live_run=\"ocs-live-general\" ocs_live_extra_param=\"\" #ocs_live_keymap=\"\" ocs_live_batch=\"no\" ocs_lang=\"\" vga=788 ip=frommedia nosplash live-media-path=/live-hd bootfrom=/dev/sdb11 #toram=filesystem.squashfs
#initrd /live-hd/initrd.img
#}
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This did not work either...
#
# Now, trying: http://ubuntuforums.org/archive/index.php/t-1549847.html
# This time, try to use iso from a root directory of Ubuntu 11.10 so that I can backup non-11.10 root partitions...(at least I think so...maybe still backup 11.10's root...?)
### END /etc/grub.d/40_custom_proxy ###
--------------------------------------------------------------------------------
=============================== sda9/etc/fstab: ================================
--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' 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>
proc /proc proc nodev,noexec,nosuid 0 0
# / was on /dev/sdb9 during installation
UUID=c7e93ec4-ee58-490c-8249-fccc30e66b0d / ext3 errors=remount-ro 0 1
# /home was on /dev/sdb10 during installation
UUID=b41da791-f48b-4ad9-ba3e-825e6166f5e2 /home ext3 defaults 0 2
# swap was on /dev/sdb6 during installation
UUID=df4f2aaa-95af-45d3-8ba6-f78a5d83e018 none swap sw 0 0
--------------------------------------------------------------------------------
=================== sda9: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
355.352420807 = 381.556756480 boot/grub/core.img 1
355.479244232 = 381.692932096 boot/grub/grub.cfg 1
355.348278046 = 381.552308224 boot/initrd.img-2.6.32-33-generic 4
355.348342896 = 381.552377856 boot/initrd.img-2.6.32-37-generic 4
355.277973175 = 381.476818944 boot/initrd.img-2.6.32-38-generic 6
355.379573822 = 381.585911808 boot/initrd.img-2.6.32-40-generic 6
355.406696320 = 381.615034368 boot/initrd.img-2.6.32-41-generic 18
355.314529419 = 381.516070912 boot/initrd.img-2.6.32-42-generic 13
355.410236359 = 381.618835456 boot/initrd.img-2.6.32-44-generic 16
355.448669434 = 381.660102656 boot/initrd.img-2.6.32-45-generic 63
355.479228973 = 381.692915712 boot/initrd.img-2.6.32-57-generic 72
355.323398590 = 381.525594112 boot/vmlinuz-2.6.32-33-generic 2
355.329959869 = 381.532639232 boot/vmlinuz-2.6.32-37-generic 3
355.350418091 = 381.554606080 boot/vmlinuz-2.6.32-38-generic 5
355.356555939 = 381.561196544 boot/vmlinuz-2.6.32-40-generic 7
355.393722534 = 381.601103872 boot/vmlinuz-2.6.32-41-generic 6
355.370128632 = 381.575770112 boot/vmlinuz-2.6.32-42-generic 2
355.362964630 = 381.568077824 boot/vmlinuz-2.6.32-44-generic 3
355.416118622 = 381.625151488 boot/vmlinuz-2.6.32-45-generic 7
355.426856995 = 381.636681728 boot/vmlinuz-2.6.32-57-generic 8
355.479228973 = 381.692915712 initrd.img 72
355.448669434 = 381.660102656 initrd.img.old 63
355.426856995 = 381.636681728 vmlinuz 8
355.416118622 = 381.625151488 vmlinuz.old 7
============================== sdb3/NST/menu.lst: ==============================
--------------------------------------------------------------------------------
# NeoSmart NeoGrub Bootloader Configuration File
#
# This is the NeoGrub configuration file, and should be located at C:\NST\menu.lst
# Please see the EasyBCD Documentation for information on how to create/modify entries:
# http://neosmart.net/wiki/display/EBCD
find --set-root --ignore-floppies /boot/grub/menu.lst
configfile /boot/grub/menu.lst
# All your boot are belong to NeoSmart!--------------------------------------------------------------------------------
=================== sdb3: Location of files loaded by Grub: ====================
GiB - GB File Fragment(s)
?? = ?? NST/menu.lst 0
=============================== StdErr Messages: ===============================
xz: (stdin): Compressed data is corrupt
xz: (stdin): Compressed data is corrupt
|