Sie sind nicht angemeldet.

Andere Version/Installation - Nach Grub erfolgt Neustart (Endlosschleife)

  • »phate999« ist männlich
  • »phate999« ist der Autor dieses Themas

Beiträge: 50

Registrierungsdatum: 23.01.2012

Derivat: Ubuntu

Architektur: 64-Bit PC

Desktop: Unity

Andere Betriebssysteme: Windoof 10

  • Nachricht senden

1

05.03.2017, 15:41

Nach Grub erfolgt Neustart (Endlosschleife)

Hallo in die Runde,

ich habe auf meinem Desktoppc Linux Mint 18 64bit installiert.
Der PC hat 2 Festplatten. Auf der ersten ist Windows installiert auf die zweite habe ich oben erwähntes BS installiert.

Ich musste zwar im BIOS die Bootreinfolge ändern, damit er in Grub startet und nicht direkt Win10 (64bit) aber das ging natürlich problemlos.

Mein Problem besteht darin, dass wenn ich versuche Linux Mint zu booten, kommt kurz ein Blackscreen, eh der Computer neustartet. Das ganze erfolgt in einer Schleife.
Windows über Grub booten funktioniert.

Hat jemand eine Idee, was bei der Installation schief gelaufen ist bzw. was ich machen kann?


Vielen Dank.

Habe gerade mal per boot-repair eine Reparatur versucht - ohne Erfolg.

Folgendes Log kam dabei raus:

Quellcode

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
 Boot Info Script cfd9efe + Boot-Repair extra info [Boot-Info 26Apr2016]


============================= Boot Info Summary: ===============================

=> Grub2 (v2.00) 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 (,msdos1)/boot/grub. It also embeds following components:

modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk
---------------------------------------------------------------------------
=> Grub2 (v2.00) 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 
for /boot/grub. It also embeds following components:

modules
---------------------------------------------------------------------------
fshelp ext2 part_msdos biosdisk search_fs_uuid
---------------------------------------------------------------------------

config script
---------------------------------------------------------------------------
search.fs_uuid acbef976-8855-41dd-9754-b89bec050127 root hd0,msdos1 
set prefix=($root)'/boot/grub'

---------------------------------------------------------------------------
=> No known boot loader is installed in the MBR of /dev/sdc.

sda1: __________________________________________________________________________

File system: ext4
Boot sector type: -
Boot sector info: 
Operating System: Linux Mint 18
Boot files: /boot/grub/grub.cfg /etc/fstab 
/boot/grub/i386-pc/core.img

sda2: __________________________________________________________________________

File system: Extended Partition
Boot sector type: Unknown
Boot sector info: 

sda5: __________________________________________________________________________

File system: swap
Boot sector type: -
Boot sector info: 

sdb1: __________________________________________________________________________

File system: ntfs
Boot sector type: Windows 8/2012: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: 
Boot files: /bootmgr /Boot/BCD

sdb2: __________________________________________________________________________

File system: ntfs
Boot sector type: Windows 7/2008: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: 
Boot files: /Windows/System32/winload.exe

sdb3: __________________________________________________________________________

File system: ntfs
Boot sector type: Windows 8/2012: NTFS
Boot sector info: No errors found in the Boot Parameter Block.
Operating System: 
Boot files: 

sdc1: __________________________________________________________________________

File system: iso9660
Boot sector type: Unknown
Boot sector info: 
Mounting failed: mount: /dev/sdc1 is already mounted or /mnt/BootInfo/sdc1 busy

sdc2: __________________________________________________________________________

File system: vfat
Boot sector type: FAT16
Boot sector info: According to the info in the boot sector, sdc2 starts 
at sector 0. But according to the info from fdisk, 
sdc2 starts at sector 3794252. According to the info 
in the boot sector, sdc2 has 0 sectors.
Mounting failed: mount: /dev/sdc1 is already mounted or /mnt/BootInfo/sdc1 busy
mount: /dev/sdc2 is already mounted or /mnt/BootInfo/sdc2 busy

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________
Disk /dev/sda: 596.2 GiB, 640135028736 bytes, 1250263728 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos

Partition Boot Start Sector End Sector # of Sectors Id System

/dev/sda1 * 2,048 1,225,099,263 1,225,097,216 83 Linux
/dev/sda2 1,225,101,310 1,250,263,039 25,161,730 5 Extended
/dev/sda5 1,225,101,312 1,250,263,039 25,161,728 82 Linux swap / Solaris


Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos

Partition Boot Start Sector End Sector # of Sectors Id System

/dev/sdb1 * 2,048 206,847 204,800 7 NTFS / exFAT / HPFS
/dev/sdb2 206,848 1,952,598,015 1,952,391,168 7 NTFS / exFAT / HPFS
/dev/sdb3 1,952,598,016 1,953,519,615 921,600 27 Hidden NTFS (Recovery Environment)


Drive: sdc _____________________________________________________________________
Disk /dev/sdc: 29.2 GiB, 31376707072 bytes, 61282631 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos

Partition Boot Start Sector End Sector # of Sectors Id System

/dev/sdc1 * 0 3,807,647 3,807,648 0 Empty
/dev/sdc2 3,794,252 3,798,987 4,736 ef EFI (FAT-12/16/32)

/dev/sdc1 overlaps with /dev/sdc2

GUID Partition Table detected, but does not seem to be used.

Partition Attrs Start Sector End Sector # of Sectors System
/dev/sdc1 + R 0 3,807,591 3,807,592 Data partition (Windows/Linux)
/dev/sdc2 + R 3,794,252 3,798,987 4,736 Data partition (Windows/Linux)

Attributes: R=Required, N=No Block IO, B=Legacy BIOS Bootable, +=More bits set

"blkid" output: ________________________________________________________________

Device UUID TYPE LABEL

/dev/loop0 squashfs 
/dev/sda1 acbef976-8855-41dd-9754-b89bec050127 ext4 
/dev/sda5 c694d5a3-5ccd-411c-bbf0-6459f53907a7 swap 
/dev/sdb1 527E3E9C7E3E7935 ntfs System-reserviert
/dev/sdb2 E67E43B97E4380F3 ntfs 
/dev/sdb3 303232FE3232C89C ntfs 
/dev/sdc1 2016-09-04-19-16-26-00 iso9660 Linux Mint 18 KDE 64-bit
/dev/sdc2 B1F5-0A13 vfat 

========================= "ls -l /dev/disk/by-id" output: ======================

total 0
lrwxrwxrwx 1 root root 9 Mar 5 2017 ata-HL-DT-ST_DVDRAM_GH22NS40_114E7C46CC57 -> ../../sr0
lrwxrwxrwx 1 root root 9 Mar 5 14:59 ata-ST31000528AS_9VP23BY4 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-ST31000528AS_9VP23BY4-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-ST31000528AS_9VP23BY4-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-ST31000528AS_9VP23BY4-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 9 Mar 5 14:59 ata-WDC_WD6400AACS-00G8B1_WD-WCAUF2560011 -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-WDC_WD6400AACS-00G8B1_WD-WCAUF2560011-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-WDC_WD6400AACS-00G8B1_WD-WCAUF2560011-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Mar 5 14:59 ata-WDC_WD6400AACS-00G8B1_WD-WCAUF2560011-part5 -> ../../sda5
lrwxrwxrwx 1 root root 9 Mar 5 2017 usb-Generic_Storage_Device_00000000000006-0:0 -> ../../sdd
lrwxrwxrwx 1 root root 9 Mar 5 14:57 usb-SanDisk_Extreme_AA011207151421291219-0:0 -> ../../sdc
lrwxrwxrwx 1 root root 10 Mar 5 14:57 usb-SanDisk_Extreme_AA011207151421291219-0:0-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Mar 5 14:57 usb-SanDisk_Extreme_AA011207151421291219-0:0-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 9 Mar 5 14:59 wwn-0x5000c500199fde48 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x5000c500199fde48-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x5000c500199fde48-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x5000c500199fde48-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 9 Mar 5 2017 wwn-0x5001480000000000 -> ../../sr0
lrwxrwxrwx 1 root root 9 Mar 5 14:59 wwn-0x50014ee101766161 -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x50014ee101766161-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x50014ee101766161-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Mar 5 14:59 wwn-0x50014ee101766161-part5 -> ../../sda5

================================ Mount points: =================================

Device Mount_Point Type Options

/dev/loop0 /rofs squashfs (ro,noatime)
/dev/sdc /cdrom iso9660 (ro,noatime)


=========================== sda1/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,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
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=10
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/06_mint_theme ###
set menu_color_normal=white/black
set menu_color_highlight=white/light-gray
### END /etc/grub.d/06_mint_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 'Linux Mint 18 KDE 64-bit' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-acbef976-8855-41dd-9754-b89bec050127' {
	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='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
	else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
	fi
	linux	/boot/vmlinuz-4.4.0-21-generic root=UUID=acbef976-8855-41dd-9754-b89bec050127 ro quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.4.0-21-generic
}
submenu 'Advanced options for Linux Mint 18 KDE 64-bit' $menuentry_id_option 'gnulinux-advanced-acbef976-8855-41dd-9754-b89bec050127' {
	menuentry 'Linux Mint 18 KDE 64-bit, with Linux 4.4.0-21-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-advanced-acbef976-8855-41dd-9754-b89bec050127' {
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='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
fi
echo	'Loading Linux 4.4.0-21-generic ...'
linux	/boot/vmlinuz-4.4.0-21-generic root=UUID=acbef976-8855-41dd-9754-b89bec050127 ro quiet splash $vt_handoff
echo	'Loading initial ramdisk ...'
initrd	/boot/initrd.img-4.4.0-21-generic
	}
	menuentry 'Linux Mint 18 KDE 64-bit, with Linux 4.4.0-21-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-init-upstart-acbef976-8855-41dd-9754-b89bec050127' {
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='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
fi
echo	'Loading Linux 4.4.0-21-generic ...'
linux	/boot/vmlinuz-4.4.0-21-generic root=UUID=acbef976-8855-41dd-9754-b89bec050127 ro quiet splash $vt_handoff init=/sbin/upstart
echo	'Loading initial ramdisk ...'
initrd	/boot/initrd.img-4.4.0-21-generic
	}
	menuentry 'Linux Mint 18 KDE 64-bit, with Linux 4.4.0-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-21-generic-recovery-acbef976-8855-41dd-9754-b89bec050127' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
fi
echo	'Loading Linux 4.4.0-21-generic ...'
linux	/boot/vmlinuz-4.4.0-21-generic root=UUID=acbef976-8855-41dd-9754-b89bec050127 ro recovery nomodeset 
echo	'Loading initial ramdisk ...'
initrd	/boot/initrd.img-4.4.0-21-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/10_lupin ###
### END /etc/grub.d/10_lupin ###

### 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='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
	else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 acbef976-8855-41dd-9754-b89bec050127
	else
search --no-floppy --fs-uuid --set=root acbef976-8855-41dd-9754-b89bec050127
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 10 (loader) (on /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-527E3E9C7E3E7935' {
	insmod part_msdos
	insmod ntfs
	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 527E3E9C7E3E7935
	else
search --no-floppy --fs-uuid --set=root 527E3E9C7E3E7935
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
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 ###
--------------------------------------------------------------------------------

=============================== sda1/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/sda1 during installation
UUID=acbef976-8855-41dd-9754-b89bec050127 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=c694d5a3-5ccd-411c-bbf0-6459f53907a7 none swap sw 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
--------------------------------------------------------------------------------

=================== sda1: Location of files loaded by Grub: ====================

GiB - GB File Fragment(s)

254.143318176 = 272.884310016 boot/grub/grub.cfg 1
254.146785736 = 272.888033280 boot/grub/i386-pc/core.img 1
254.140193939 = 272.880955392 boot/vmlinuz-4.4.0-21-generic 1
254.140193939 = 272.880955392 vmlinuz 1
222.964290619 = 239.406084096 boot/initrd.img-4.4.0-21-generic 2
222.964290619 = 239.406084096 initrd.img 2

======================== Unknown MBRs/Boot Sectors/etc: ========================

Unknown MBR on /dev/sdc

00000000 45 52 08 00 00 00 90 90 00 00 00 00 00 00 00 00 |ER..............|
00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000020 33 ed fa 8e d5 bc 00 7c fb fc 66 31 db 66 31 c9 |3......|..f1.f1.|
00000030 66 53 66 51 06 57 8e dd 8e c5 52 be 00 7c bf 00 |fSfQ.W....R..|..|
00000040 06 b9 00 01 f3 a5 ea 4b 06 00 00 52 b4 41 bb aa |.......K...R.A..|
00000050 55 31 c9 30 f6 f9 cd 13 72 16 81 fb 55 aa 75 10 |U1.0....r...U.u.|
00000060 83 e1 01 74 0b 66 c7 06 f1 06 b4 42 eb 15 eb 00 |...t.f.....B....|
00000070 5a 51 b4 08 cd 13 83 e1 3f 5b 51 0f b6 c6 40 50 |ZQ......?[Q...@P|
00000080 f7 e1 53 52 50 bb 00 7c b9 04 00 66 a1 b0 07 e8 |..SRP..|...f....|
00000090 44 00 0f 82 80 00 66 40 80 c7 02 e2 f2 66 81 3e |D.....f@.....f.>|
000000a0 40 7c fb c0 78 70 75 09 fa bc ec 7b ea 44 7c 00 |@|..xpu....{.D|.|
000000b0 00 e8 83 00 69 73 6f 6c 69 6e 75 78 2e 62 69 6e |....isolinux.bin|
000000c0 20 6d 69 73 73 69 6e 67 20 6f 72 20 63 6f 72 72 | missing or corr|
000000d0 75 70 74 2e 0d 0a 66 60 66 31 d2 66 03 06 f8 7b |upt...f`f1.f...{|
000000e0 66 13 16 fc 7b 66 52 66 50 06 53 6a 01 6a 10 89 |f...{fRfP.Sj.j..|
000000f0 e6 66 f7 36 e8 7b c0 e4 06 88 e1 88 c5 92 f6 36 |.f.6.{.........6|
00000100 ee 7b 88 c6 08 e1 41 b8 01 02 8a 16 f2 7b cd 13 |.{....A......{..|
00000110 8d 64 10 66 61 c3 e8 1e 00 4f 70 65 72 61 74 69 |.d.fa....Operati|
00000120 6e 67 20 73 79 73 74 65 6d 20 6c 6f 61 64 20 65 |ng system load e|
00000130 72 72 6f 72 2e 0d 0a 5e ac b4 0e 8a 3e 62 04 b3 |rror...^....>b..|
00000140 07 cd 10 3c 0a 75 f1 cd 18 f4 eb fd 00 00 00 00 |...<.u..........|
00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001b0 24 40 01 00 00 00 00 00 1a 32 dd 63 00 00 80 00 |$@.......2.c....|
000001c0 01 00 00 74 e0 f8 00 00 00 00 a0 19 3a 00 00 fe |...t........:...|
000001d0 ff ff ef fe ff ff 4c e5 39 00 80 12 00 00 00 00 |......L.9.......|
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


/dev/sdc1: unknown GPT attributes
1000000000000001

/dev/sdc2: unknown GPT attributes
1000000000000001
Unknown BootLoader on sda2

00000000 12 5c 10 5d 4f e5 dc e8 b1 04 2f ae 11 b7 fe 4e |.\.]O...../....N|
00000010 d7 bb ad 16 ac 1b ee 36 b4 85 7a 16 56 da 21 f1 |.......6..z.V.!.|
00000020 42 06 12 d7 53 2f 8b 55 af ca 89 c2 19 93 fa 64 |B...S/.U.......d|
00000030 2f e4 58 6a 46 88 94 41 3d 0f be 1f 88 36 b8 6a |/.XjF..A=....6.j|
00000040 fc 39 49 e5 a1 66 eb 77 db 75 17 d4 70 16 77 2a |.9I..f.w.u..p.w*|
00000050 5c 8f e3 81 d0 30 18 69 37 13 33 fd 0a b1 ea 10 |\....0.i7.3.....|
00000060 6d b2 5a 1c 55 0c be 8b 7b 09 70 16 45 08 34 83 |m.Z.U...{.p.E.4.|
00000070 0a 4e 7d 85 5d dc a2 e3 dc 36 ce af d4 26 3a c2 |.N}.]....6...&:.|
00000080 cb 72 91 9c 6a 89 95 e6 d3 b0 28 ec 58 9a ec 27 |.r..j.....(.X..'|
00000090 63 ec 20 48 7b 40 f5 b8 1b a6 06 71 cb c1 8c 84 |c. H{@.....q....|
000000a0 e2 0e 39 82 77 42 5b e8 ee 86 5c e5 6c e7 a6 52 |..9.wB[...\.l..R|
000000b0 17 7c 5b 9c fa 86 50 2f 00 b5 50 a3 5e 57 c3 02 |.|[...P/..P.^W..|
000000c0 b5 34 17 38 a9 a5 08 9f e2 cc 60 ae 27 b6 3c 53 |.4.8......`.'.<S|
000000d0 1b ae d1 57 50 a3 8b 0f 81 e4 05 0d b9 19 0d 8e |...WP...........|
000000e0 0b 42 8e 8c 90 3d c3 03 6b 95 1d a4 3c 97 18 af |.B...=..k...<...|
000000f0 96 ce 88 95 72 09 19 a8 78 ac 67 76 1c d9 3b d3 |....r...x.gv..;.|
00000100 6b 1c 4a 91 57 c4 9c 70 11 c0 78 f7 52 1b 44 72 |k.J.W..p..x.R.Dr|
00000110 a9 3d 75 05 c0 95 b8 01 c0 86 59 0d 82 39 e6 c9 |.=u.......Y..9..|
00000120 f8 91 cb 75 e4 e9 64 2c 1e e1 70 3c e4 6c d4 09 |...u..d,..p<.l..|
00000130 7a 97 31 fb 88 5f c2 a8 85 19 36 46 09 80 49 83 |z.1.._....6F..I.|
00000140 f4 34 ca 2d dd 61 18 5e 95 95 38 b1 ad 38 e4 19 |.4.-.a.^..8..8..|
00000150 7e 1b 0e 64 e2 20 a7 78 12 4a 49 ab c0 19 6e bb |~..d. .x.JI...n.|
00000160 0a c1 3c 06 e5 b0 63 0c ec c0 1e fc 4f b6 cd 18 |..<...c.....O...|
00000170 d1 d8 d8 8d 2e 97 0f 1b 7a a4 1c 47 11 6f af 10 |........z..G.o..|
00000180 f7 22 1b e7 51 6c 80 62 ce 47 d5 38 a0 91 ab 1d |."..Ql.b.G.8....|
00000190 80 91 e5 10 d9 5b 78 f2 15 0b c6 ca 14 f4 0b 4e |.....[x........N|
000001a0 d2 e7 8b ef 4a 38 3c df 2a 47 8f 43 5d 89 cb 14 |....J8<.*G.C]...|
000001b0 ec 10 87 dc d4 2d 12 94 b1 21 1c 7e ac e5 00 fe |.....-...!.~....|
000001c0 ff ff 82 fe ff ff 02 00 00 00 00 f0 7f 01 00 00 |................|
000001d0 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

Unknown BootLoader on sdc1

00000000 45 52 08 00 00 00 90 90 00 00 00 00 00 00 00 00 |ER..............|
00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000020 33 ed fa 8e d5 bc 00 7c fb fc 66 31 db 66 31 c9 |3......|..f1.f1.|
00000030 66 53 66 51 06 57 8e dd 8e c5 52 be 00 7c bf 00 |fSfQ.W....R..|..|
00000040 06 b9 00 01 f3 a5 ea 4b 06 00 00 52 b4 41 bb aa |.......K...R.A..|
00000050 55 31 c9 30 f6 f9 cd 13 72 16 81 fb 55 aa 75 10 |U1.0....r...U.u.|
00000060 83 e1 01 74 0b 66 c7 06 f1 06 b4 42 eb 15 eb 00 |...t.f.....B....|
00000070 5a 51 b4 08 cd 13 83 e1 3f 5b 51 0f b6 c6 40 50 |ZQ......?[Q...@P|
00000080 f7 e1 53 52 50 bb 00 7c b9 04 00 66 a1 b0 07 e8 |..SRP..|...f....|
00000090 44 00 0f 82 80 00 66 40 80 c7 02 e2 f2 66 81 3e |D.....f@.....f.>|
000000a0 40 7c fb c0 78 70 75 09 fa bc ec 7b ea 44 7c 00 |@|..xpu....{.D|.|
000000b0 00 e8 83 00 69 73 6f 6c 69 6e 75 78 2e 62 69 6e |....isolinux.bin|
000000c0 20 6d 69 73 73 69 6e 67 20 6f 72 20 63 6f 72 72 | missing or corr|
000000d0 75 70 74 2e 0d 0a 66 60 66 31 d2 66 03 06 f8 7b |upt...f`f1.f...{|
000000e0 66 13 16 fc 7b 66 52 66 50 06 53 6a 01 6a 10 89 |f...{fRfP.Sj.j..|
000000f0 e6 66 f7 36 e8 7b c0 e4 06 88 e1 88 c5 92 f6 36 |.f.6.{.........6|
00000100 ee 7b 88 c6 08 e1 41 b8 01 02 8a 16 f2 7b cd 13 |.{....A......{..|
00000110 8d 64 10 66 61 c3 e8 1e 00 4f 70 65 72 61 74 69 |.d.fa....Operati|
00000120 6e 67 20 73 79 73 74 65 6d 20 6c 6f 61 64 20 65 |ng system load e|
00000130 72 72 6f 72 2e 0d 0a 5e ac b4 0e 8a 3e 62 04 b3 |rror...^....>b..|
00000140 07 cd 10 3c 0a 75 f1 cd 18 f4 eb fd 00 00 00 00 |...<.u..........|
00000150 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
000001b0 24 40 01 00 00 00 00 00 1a 32 dd 63 00 00 80 00 |$@.......2.c....|
000001c0 01 00 00 74 e0 f8 00 00 00 00 a0 19 3a 00 00 fe |...t........:...|
000001d0 ff ff ef fe ff ff 4c e5 39 00 80 12 00 00 00 00 |......L.9.......|
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


========= Devices which don't seem to have a corresponding hard drive: =========

sdd 

=============================== StdErr Messages: ===============================

File descriptor 9 (/proc/6883/mounts) leaked on lvs invocation. Parent PID 22215: bash
File descriptor 63 (pipe:[57431]) leaked on lvs invocation. Parent PID 22215: bash

ADDITIONAL INFORMATION :
=================== log of boot-repair 2017-03-05__14h57 ===================
boot-repair version : 4ppa40
boot-sav version : 4ppa40
glade2script version : 3.2.3~ppa1
boot-sav-extra version :
grub-probe: error: cannot find a GRUB drive for /dev/sdc1. Check your device.map.
Warning: The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.
Warning: The driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.
boot-repair is executed in live-session (Linux Mint 18 Sarah, sarah, LinuxMint, x86_64)
CPU op-mode(s): 32-bit, 64-bit
BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper initrd=/casper/initrd.lz quiet splash --
ls: cannot access '/home/usr/.config': No such file or directory
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb1': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount -t ntfs-3g -o remove_hiberfile /dev/sdb1 /mnt/boot-sav/sdb1
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb1': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount /dev/sdb1 : Error code 14
mount -r /dev/sdb1 /mnt/boot-sav/sdb1
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount -t ntfs-3g -o remove_hiberfile /dev/sdb2 /mnt/boot-sav/sdb2
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount /dev/sdb2 : Error code 14
mount -r /dev/sdb2 /mnt/boot-sav/sdb2
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb3': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount -t ntfs-3g -o remove_hiberfile /dev/sdb3 /mnt/boot-sav/sdb3
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb3': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount /dev/sdb3 : Error code 14
mount -r /dev/sdb3 /mnt/boot-sav/sdb3
mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount /dev/sdc2 : Error code 32
mount -r /dev/sdc2 /mnt/boot-sav/sdc2
mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount -r /dev/sdc2 : Error code 32

=================== os-prober:
/dev/sda1:Linux Mint 18 Sarah (18):LinuxMint:linux
/dev/sdb1:Windows 10 (loader):Windows:chain

=================== blkid:
/dev/sda1: UUID="acbef976-8855-41dd-9754-b89bec050127" TYPE="ext4" PARTUUID="46f5825c-01"
/dev/sdb1: LABEL="System-reserviert" UUID="527E3E9C7E3E7935" TYPE="ntfs" PARTUUID="237ef478-01"
/dev/sdb2: UUID="E67E43B97E4380F3" TYPE="ntfs" PARTUUID="237ef478-02"
/dev/sdb3: UUID="303232FE3232C89C" TYPE="ntfs" PARTUUID="237ef478-03"
/dev/loop0: TYPE="squashfs"
/dev/sda5: UUID="c694d5a3-5ccd-411c-bbf0-6459f53907a7" TYPE="swap" PARTUUID="46f5825c-05"
/dev/sdc1: UUID="2016-09-04-19-16-26-00" LABEL="Linux Mint 18 KDE 64-bit" TYPE="iso9660" PTUUID="63dd321a" PTTYPE="dos" PARTUUID="63dd321a-01"
/dev/sdc2: SEC_TYPE="msdos" UUID="B1F5-0A13" TYPE="vfat" PARTUUID="63dd321a-02"


2 disks with OS, 2 OS : 1 Linux, 0 MacOS, 1 Windows, 0 unknown type OS.

mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount /dev/sdc2 : Error code 32
mount -r /dev/sdc2 /mnt/boot-sav/sdc2
mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount -r /dev/sdc2 : Error code 32
Windows not detected by os-prober on sdb2.
dd: invalid number: ‘0’
Warning: /var/log/boot-sav/log/2017-03-05__14h57boot-repair05/sdc/current_mbr.img could not be created. Please report this message to boot.repair@gmail.com

=================== sda1/etc/grub.d/ :
drwxr-xr-x 2 root root 4096 Mar 5 14:20 grub.d
total 92
-rwxr-xr-x 1 root root 9791 Jul 23 2016 00_header
-rwxr-xr-x 1 root root 6258 Mar 15 2016 05_debian_theme
-rwxr-xr-x 1 root root 1180 Oct 25 2014 06_mint_theme
-rwxr-xr-x 1 root root 12266 Mar 5 14:20 10_linux
-rwxr-xr-x 1 root root 10634 Oct 1 2012 10_lupin
-rwxr-xr-x 1 root root 11082 Jul 23 2016 20_linux_xen
-rwxr-xr-x 1 root root 1992 Jan 28 2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jul 23 2016 30_os-prober
-rwxr-xr-x 1 root root 1418 Jul 23 2016 30_uefi-firmware
-rwxr-xr-x 1 root root 214 Jul 23 2016 40_custom
-rwxr-xr-x 1 root root 216 Jul 23 2016 41_custom
-rw-r--r-- 1 root root 483 Jul 23 2016 README




=================== sda1/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sda1recordfail=1/grub/grubenv :
recordfail=1




=================== UEFI/Legacy mode:
This live-session is not in EFI-mode.
SecureBoot maybe enabled.


=================== PARTITIONS & DISKS:
sda1	: sda,	not-sepboot,	grubenv-ng	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sda1.
sdb1	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	bootmgr,	is-winboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sdb1.
sdb2	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	haswinload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sdb2.
sdb3	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	recovery-or-hidden,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sdb3.
sdc2	: sdc,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sdc2.

sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, not-usb,	has-os,	2048 sectors * 512 bytes
sdb	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, not-usb,	has-os,	2048 sectors * 512 bytes
sdc	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, usb-disk,	no-os,	0 sectors * 512 bytes


=================== parted -l:

Model: ATA WDC WD6400AACS-0 (scsi)
Disk /dev/sda: 640GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number Start End Size Type File system Flags
1 1049kB 627GB 627GB primary ext4 boot
2 627GB 640GB 12.9GB extended
5 627GB 640GB 12.9GB logical linux-swap(v1)


Model: ATA ST31000528AS (scsi)
Disk /dev/sdb: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number Start End Size Type File system Flags
1 1049kB 106MB 105MB primary ntfs boot
2 106MB 1000GB 1000GB primary ntfs
3 1000GB 1000GB 472MB primary ntfs diag


Model: SanDisk Extreme (scsi)
Disk /dev/sdc: 31.4GB
Sector size (logical/physical): 512B/512B
Partition Table: unknown
Disk Flags:

=================== parted -lm:

BYT;
/dev/sda:640GB:scsi:512:512:msdos:ATA WDC WD6400AACS-0:;
1:1049kB:627GB:627GB:ext4::boot;
2:627GB:640GB:12.9GB:::;
5:627GB:640GB:12.9GB:linux-swap(v1)::;

BYT;
/dev/sdb:1000GB:scsi:512:512:msdos:ATA ST31000528AS:;
1:1049kB:106MB:105MB:ntfs::boot;
2:106MB:1000GB:1000GB:ntfs::;
3:1000GB:1000GB:472MB:ntfs::diag;

BYT;
/dev/sdc:31.4GB:scsi:512:512:unknown:SanDisk Extreme:;

=================== lsblk:
KNAME TYPE FSTYPE SIZE LABEL
fd0 disk 4K
sda disk 596.2G
sda1 part ext4 584.2G
sda2 part 1K
sda5 part swap 12G
sdb disk 931.5G
sdb1 part ntfs 100M System-reserviert
sdb2 part ntfs 931G
sdb3 part ntfs 450M
sdc disk iso9660 29.2G Linux Mint 18 KDE 64-bit
sdc1 part iso9660 1.8G Linux Mint 18 KDE 64-bit
sdc2 part vfat 2.3M Linux Mint 18 KDE 64-bit
sr0 rom 1024M
loop0 loop squashfs 1.8G

KNAME ROTA RO RM STATE MOUNTPOINT
fd0 1 0 1
sda 1 0 0 running
sda1 1 0 0 /mnt/boot-sav/sda1
sda2 1 0 0
sda5 1 0 0 [SWAP]
sdb 1 0 0 running
sdb1 1 0 0 /mnt/boot-sav/sdb1
sdb2 1 0 0 /mnt/boot-sav/sdb2
sdb3 1 0 0 /mnt/boot-sav/sdb3
sdc 1 0 1 running /cdrom
sdc1 1 0 1
sdc2 1 0 1
sr0 1 0 1 running
loop0 1 1 0 /rofs


=================== mount:
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=6104284k,nr_inodes=1526071,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=1230336k,mode=755)
/dev/sdc on /cdrom type iso9660 (ro,noatime)
/dev/loop0 on /rofs type squashfs (ro,noatime)
/cow on / type overlay (rw,relatime,lowerdir=//filesystem.squashfs,upperdir=/cow/upper,workdir=/cow/work)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (rw,mode=755)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd,nsroot=/)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb,release_agent=/run/cgmanager/agents/cgm-release-agent.hugetlb,nsroot=/)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio,nsroot=/)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio,nsroot=/)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer,nsroot=/)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices,nsroot=/)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event,release_agent=/run/cgmanager/agents/cgm-release-agent.perf_event,nsroot=/)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids,release_agent=/run/cgmanager/agents/cgm-release-agent.pids,nsroot=/)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset,clone_children,nsroot=/)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct,nsroot=/)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory,nsroot=/)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=25,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
mqueue on /dev/mqueue type mqueue (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,relatime)
cgmfs on /run/cgmanager/fs type tmpfs (rw,relatime,size=100k,mode=755)
tmpfs on /run/user/999 type tmpfs (rw,nosuid,nodev,relatime,size=1230336k,mode=700,uid=999,gid=999)
/dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/boot-sav/sdb1 type fuseblk (ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdb2 on /mnt/boot-sav/sdb2 type fuseblk (ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdb3 on /mnt/boot-sav/sdb3 type fuseblk (ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096)


=================== ls:
/sys/block/fd0 (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/sda (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 sda2 sda5 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sdb1 sdb2 sdb3 size slaves stat subsystem trace uevent
/sys/block/sdc (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sdc1 sdc2 size slaves stat subsystem trace uevent
/sys/block/sdd (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/sr0 (filtered): alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered): autofs block bsg btrfs-control bus cdrom cdrw char console core cpu cpu_dma_latency cuse disk dvd dvdrw ecryptfs fd fd0 full fuse fw0 hidraw0 hidraw1 hidraw2 hidraw3 hidraw4 hidraw5 hidraw6 hidraw7 hpet hugepages hwrng initctl input kmsg kvm lightnvm log mapper mcelog media0 mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill roccatisku0 rtc rtc0 sda sda1 sda2 sda5 sdb sdb1 sdb2 sdb3 sdc sdc1 sdc2 sdd sg0 sg1 sg2 sg3 sg4 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom usb userio v4l vfio vga_arbiter vhci vhost-net video0 zero
ls /dev/mapper: control

=================== hexdump -n512 -C /dev/sdb1
00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....|
00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 08 00 00 |........?.......|
00000020 00 00 00 00 80 00 80 00 ff 1f 03 00 00 00 00 00 |................|
00000030 55 21 00 00 00 00 00 00 02 00 00 00 00 00 00 00 |U!..............|
00000040 f6 00 00 00 01 00 00 00 35 79 3e 7e 9c 3e 7e 52 |........5y>~.>~R|
00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..|
00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N|
00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...|
00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......|
00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........|
000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..|
000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.|
000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............|
000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-|
000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..|
000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf|
00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..|
00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.|
00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...|
00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...|
00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.|
00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........|
00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......|
00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.|
00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di|
00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc|
000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR|
000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..|
000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+|
000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..|
000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdb2
00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....|
00000010 00 00 00 00 00 f8 00 00 3f 00 ff 00 00 28 03 00 |........?....(..|
00000020 00 00 00 00 80 00 80 00 ff 1f 5f 74 00 00 00 00 |.........._t....|
00000030 00 00 0c 00 00 00 00 00 02 00 00 00 00 00 00 00 |................|
00000040 f6 00 00 00 01 00 00 00 f3 80 43 7e b9 43 7e e6 |..........C~.C~.|
00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..|
00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N|
00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...|
00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......|
00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........|
000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..|
000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.|
000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............|
000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-|
000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..|
000000f0 68 07 bb 16 68 70 0e 16 68 09 00 66 53 66 53 66 |h...hp..h..fSfSf|
00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..|
00000110 28 10 b9 d8 0f fc f3 aa e9 5f 01 90 90 66 60 1e |(........_...f`.|
00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...|
00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...|
00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.|
00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........|
00000160 0e 16 00 75 bc 07 1f 66 61 c3 a0 f8 01 e8 09 00 |...u...fa.......|
00000170 a0 fb 01 e8 03 00 f4 eb fd b4 01 8b f0 ac 3c 00 |..............<.|
00000180 74 09 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 46 65 |t.............Fe|
00000190 68 6c 65 72 20 62 65 69 6d 20 4c 65 73 65 6e 20 |hler beim Lesen |
000001a0 64 65 73 20 44 61 74 65 6e 74 72 84 67 65 72 73 |des Datentr.gers|
000001b0 00 0d 0a 42 4f 4f 54 4d 47 52 20 66 65 68 6c 74 |...BOOTMGR fehlt|
000001c0 00 0d 0a 42 4f 4f 54 4d 47 52 20 6b 6f 6d 70 72 |...BOOTMGR kompr|
000001d0 69 6d 69 65 72 74 00 0d 0a 4e 65 75 73 74 61 72 |imiert...Neustar|
000001e0 74 20 6d 69 74 20 53 74 72 67 2b 41 6c 74 2b 45 |t mit Strg+Alt+E|
000001f0 6e 74 66 0d 0a 00 0a 00 8c b1 c1 d7 00 00 55 aa |ntf...........U.|
00000200

=================== hexdump -n512 -C /dev/sdb3
00000000 eb 52 90 4e 54 46 53 20 20 20 20 00 02 08 00 00 |.R.NTFS .....|
00000010 00 00 00 00 00 f8 00 00 3f 00 f0 00 00 48 62 74 |........?....Hbt|
00000020 00 00 00 00 80 00 80 00 ff 0f 0e 00 00 00 00 00 |................|
00000030 00 96 00 00 00 00 00 00 02 00 00 00 00 00 00 00 |................|
00000040 f6 00 00 00 01 00 00 00 9c c8 32 32 fe 32 32 30 |..........22.220|
00000050 00 00 00 00 fa 33 c0 8e d0 bc 00 7c fb 68 c0 07 |.....3.....|.h..|
00000060 1f 1e 68 66 00 cb 88 16 0e 00 66 81 3e 03 00 4e |..hf......f.>..N|
00000070 54 46 53 75 15 b4 41 bb aa 55 cd 13 72 0c 81 fb |TFSu..A..U..r...|
00000080 55 aa 75 06 f7 c1 01 00 75 03 e9 dd 00 1e 83 ec |U.u.....u.......|
00000090 18 68 1a 00 b4 48 8a 16 0e 00 8b f4 16 1f cd 13 |.h...H..........|
000000a0 9f 83 c4 18 9e 58 1f 72 e1 3b 06 0b 00 75 db a3 |.....X.r.;...u..|
000000b0 0f 00 c1 2e 0f 00 04 1e 5a 33 db b9 00 20 2b c8 |........Z3... +.|
000000c0 66 ff 06 11 00 03 16 0f 00 8e c2 ff 06 16 00 e8 |f...............|
000000d0 4b 00 2b c8 77 ef b8 00 bb cd 1a 66 23 c0 75 2d |K.+.w......f#.u-|
000000e0 66 81 fb 54 43 50 41 75 24 81 f9 02 01 72 1e 16 |f..TCPAu$....r..|
000000f0 68 07 bb 16 68 52 11 16 68 09 00 66 53 66 53 66 |h...hR..h..fSfSf|
00000100 55 16 16 16 68 b8 01 66 61 0e 07 cd 1a 33 c0 bf |U...h..fa....3..|
00000110 0a 13 b9 f6 0c fc f3 aa e9 fe 01 90 90 66 60 1e |.............f`.|
00000120 06 66 a1 11 00 66 03 06 1c 00 1e 66 68 00 00 00 |.f...f.....fh...|
00000130 00 66 50 06 53 68 01 00 68 10 00 b4 42 8a 16 0e |.fP.Sh..h...B...|
00000140 00 16 1f 8b f4 cd 13 66 59 5b 5a 66 59 66 59 1f |.......fY[ZfYfY.|
00000150 0f 82 16 00 66 ff 06 11 00 03 16 0f 00 8e c2 ff |....f...........|
00000160 0e 16 00 75 bc 07 1f 66 61 c3 a1 f6 01 e8 09 00 |...u...fa.......|
00000170 a1 fa 01 e8 03 00 f4 eb fd 8b f0 ac 3c 00 74 09 |............<.t.|
00000180 b4 0e bb 07 00 cd 10 eb f2 c3 0d 0a 41 20 64 69 |............A di|
00000190 73 6b 20 72 65 61 64 20 65 72 72 6f 72 20 6f 63 |sk read error oc|
000001a0 63 75 72 72 65 64 00 0d 0a 42 4f 4f 54 4d 47 52 |curred...BOOTMGR|
000001b0 20 69 73 20 63 6f 6d 70 72 65 73 73 65 64 00 0d | is compressed..|
000001c0 0a 50 72 65 73 73 20 43 74 72 6c 2b 41 6c 74 2b |.Press Ctrl+Alt+|
000001d0 44 65 6c 20 74 6f 20 72 65 73 74 61 72 74 0d 0a |Del to restart..|
000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
000001f0 00 00 00 00 00 00 8a 01 a7 01 bf 01 00 00 55 aa |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdc2
00000000 eb 3c 90 6d 6b 66 73 2e 66 61 74 00 02 04 01 00 |.<.mkfs.fat.....|
00000010 02 00 02 80 12 f8 04 00 20 00 40 00 00 00 00 00 |........ .@.....|
00000020 00 00 00 00 80 00 29 13 0a f5 b1 4e 4f 20 4e 41 |......)....NO NA|
00000030 4d 45 20 20 20 20 46 41 54 31 32 20 20 20 0e 1f |ME FAT12 ..|
00000040 be 5b 7c ac 22 c0 74 0b 56 b4 0e bb 07 00 cd 10 |.[|.".t.V.......|
00000050 5e eb f0 32 e4 cd 16 cd 19 eb fe 54 68 69 73 20 |^..2.......This |
00000060 69 73 20 6e 6f 74 20 61 20 62 6f 6f 74 61 62 6c |is not a bootabl|
00000070 65 20 64 69 73 6b 2e 20 20 50 6c 65 61 73 65 20 |e disk. Please |
00000080 69 6e 73 65 72 74 20 61 20 62 6f 6f 74 61 62 6c |insert a bootabl|
00000090 65 20 66 6c 6f 70 70 79 20 61 6e 64 0d 0a 70 72 |e floppy and..pr|
000000a0 65 73 73 20 61 6e 79 20 6b 65 79 20 74 6f 20 74 |ess any key to t|
000000b0 72 79 20 61 67 61 69 6e 20 2e 2e 2e 20 0d 0a 00 |ry again ... ...|
000000c0 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

=================== df -Th:

Filesystem Type Size Used Avail Use% Mounted on
udev devtmpfs 5.9G 0 5.9G 0% /dev
tmpfs tmpfs 1.2G 9.6M 1.2G 1% /run
/dev/sdc iso9660 1.9G 1.9G 0 100% /cdrom
/dev/loop0 squashfs 1.8G 1.8G 0 100% /rofs
/cow overlay 5.9G 199M 5.7G 4% /
tmpfs tmpfs 5.9G 144K 5.9G 1% /dev/shm
tmpfs tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs tmpfs 5.9G 0 5.9G 0% /sys/fs/cgroup
tmpfs tmpfs 5.9G 192K 5.9G 1% /tmp
cgmfs tmpfs 100K 0 100K 0% /run/cgmanager/fs
tmpfs tmpfs 1.2G 12K 1.2G 1% /run/user/999
/dev/sda1 ext4 575G 6.1G 540G 2% /mnt/boot-sav/sda1
/dev/sdb1 fuseblk 100M 30M 71M 30% /mnt/boot-sav/sdb1
/dev/sdb2 fuseblk 931G 329G 603G 36% /mnt/boot-sav/sdb2
/dev/sdb3 fuseblk 450M 315M 136M 70% /mnt/boot-sav/sdb3

=================== fdisk -l:
Disk /dev/ram0: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram1: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram2: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram3: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram4: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram5: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram6: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram7: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram8: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram9: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram10: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram11: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram12: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram13: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram14: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/ram15: 64 MiB, 67108864 bytes, 131072 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/loop0: 1.8 GiB, 1897603072 bytes, 3706256 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes




Disk /dev/sda: 596.2 GiB, 640135028736 bytes, 1250263728 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x46f5825c

Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 1225099263 1225097216 584.2G 83 Linux
/dev/sda2 1225101310 1250263039 25161730 12G 5 Extended
/dev/sda5 1225101312 1250263039 25161728 12G 82 Linux swap / Solaris


Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x237ef478

Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 2048 206847 204800 100M 7 HPFS/NTFS/exFAT
/dev/sdb2 206848 1952598015 1952391168 931G 7 HPFS/NTFS/exFAT
/dev/sdb3 1952598016 1953519615 921600 450M 27 Hidden NTFS WinRE




Disk /dev/sdc: 29.2 GiB, 31376707072 bytes, 61282631 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x63dd321a

Device Boot Start End Sectors Size Id Type
/dev/sdc1 * 0 3807647 3807648 1.8G 0 Empty
/dev/sdc2 3794252 3798987 4736 2.3M ef EFI (FAT-12/16/32)


Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
User choice: Is sda (640GB) a removable disk? no



=================== Recommended repair
The default repair of the Boot-Repair utility will reinstall the grub2 of sda1 into the MBRs of all disks (except USB without OS).
Additional repair will be performed: unhide-bootmenu-10s fix-windows-boot


Quantity of real Windows: 1
WinSE in sdb2
mkdir: cannot create directory ‘/mnt/boot-sav/sdb2/Boot’: Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/BCD': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/BCD.LOG': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/BCD.LOG1': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/BCD.LOG2': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/bg-BG': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/BOOTSTAT.DAT': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/bootvhd.dll': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/cs-CZ': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/da-DK': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/de-DE': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/el-GR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/en-GB': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/en-US': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/es-ES': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/es-MX': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/et-EE': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/fi-FI': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/Fonts': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/fr-CA': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/fr-FR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/hr-HR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/hu-HU': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/it-IT': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/ja-JP': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/ko-KR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/lt-LT': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/lv-LV': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/memtest.exe': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/nb-NO': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/nl-NL': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/pl-PL': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/pt-BR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/pt-PT': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/qps-ploc': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/Resources': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/ro-RO': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/ru-RU': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/sk-SK': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/sl-SI': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/sr-Latn-CS': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/sr-Latn-RS': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/sv-SE': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/tr-TR': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/uk-UA': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/zh-CN': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/zh-HK': Read-only file system
cp: cannot create directory '/mnt/boot-sav/sdb2/zh-TW': Read-only file system
cp: cannot create regular file '/mnt/boot-sav/sdb2/bootmgr': Read-only file system
Copied Win boot files from sdb1 to sdb2
/mnt/boot-sav/sdb2/ may need repair.
/mnt/boot-sav/sdb2/bootmgr may need repair.

Reinstall the GRUB of sda1 into all MBRs of disks with OS or not-USB

*******lspci -nnk | grep -iA3 vga
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:1c03] (rev a1)
Kernel modules: nvidiafb, nouveau
01:00.1 Audio device [0403]: NVIDIA Corporation Device [10de:10f1] (rev a1)
Subsystem: Gigabyte Technology Co., Ltd Device [1458:3739]
*******

grub-install --version
grub-install.real (GRUB) 2.02~beta2-36ubuntu3.2,grub-install.

Reinstall the GRUB of sda1 into the MBR of sdb
Installing for i386-pc platform.
grub-install.real: warning: Sector 32 is already in use by the program `FlexNet'; avoiding it. This software may cause boot or other problems in future. Please ask its authors not to store data in the boot track.
Installation finished. No error reported.
grub-install /dev/sdb: exit code of grub-install /dev/sdb:0

*******lspci -nnk | grep -iA3 vga
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:1c03] (rev a1)
Kernel modules: nvidiafb, nouveau
01:00.1 Audio device [0403]: NVIDIA Corporation Device [10de:10f1] (rev a1)
Subsystem: Gigabyte Technology Co., Ltd Device [1458:3739]
*******

grub-install --version
grub-install.real (GRUB) 2.02~beta2-36ubuntu3.2,grub-install.

Reinstall the GRUB of sda1 into the MBR of sdc
Installing for i386-pc platform.
grub-install.real: warning: Attempting to install GRUB to a disk with multiple partition labels. This is not supported yet..
grub-install.real: error: embedding is not possible, but this is required for cross-disk install.
grub-install /dev/sdc: exit code of grub-install /dev/sdc:1

*******lspci -nnk | grep -iA3 vga
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation Device [10de:1c03] (rev a1)
Kernel modules: nvidiafb, nouveau
01:00.1 Audio device [0403]: NVIDIA Corporation Device [10de:10f1] (rev a1)
Subsystem: Gigabyte Technology Co., Ltd Device [1458:3739]
*******

grub-install --version
grub-install.real (GRUB) 2.02~beta2-36ubuntu3.2,grub-install.

Reinstall the GRUB of sda1 into the MBR of sda
Installing for i386-pc platform.
Installation finished. No error reported.
grub-install /dev/sda: exit code of grub-install /dev/sda:0

chroot /mnt/boot-sav/sda1 update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-21-generic
Found initrd image: /boot/initrd.img-4.4.0-21-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
File descriptor 9 (/proc/6883/mounts) leaked on lvs invocation. Parent PID 16544: /bin/sh
File descriptor 63 (pipe:[57431]) leaked on lvs invocation. Parent PID 16544: /bin/sh
grub-probe: error: cannot find a GRUB drive for /dev/sdc1. Check your device.map.
Found Windows 10 (loader) on /dev/sdb1
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb1': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount -t ntfs-3g -o remove_hiberfile /dev/sdb1 /mnt/boot-sav/sdb1
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb1': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount /dev/sdb1 : Error code 14
mount -r /dev/sdb1 /mnt/boot-sav/sdb1
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount -t ntfs-3g -o remove_hiberfile /dev/sdb2 /mnt/boot-sav/sdb2
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdb2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.
mount /dev/sdb2 : Error code 14
mount -r /dev/sdb2 /mnt/boot-sav/sdb2
mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount /dev/sdc2 : Error code 32
mount -r /dev/sdc2 /mnt/boot-sav/sdc2
mount: /dev/sdc2 is already mounted or /mnt/boot-sav/sdc2 busy
mount -r /dev/sdc2 : Error code 32
Unhide GRUB boot menu in sda1/boot/grub/grub.cfg

An error occurred during the repair.

You can now reboot your computer.
Please do not forget to make your BIOS boot on sda (640GB) disk!
pastebinit packages needed
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
W: The repository 'cdrom://Linux Mint 18 _Sarah_ - Release amd64 20160904 xenial Release' does not have a Release file.
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages.xz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages.xz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages.xz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages.bz2 failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages.bz2 failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages.bz2 failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages.lzma failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages.lzma failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages.lzma failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_contrib_binary-amd64_Packages.gz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_main_binary-amd64_Packages.gz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
W: Symlinking final file /var/lib/apt/lists/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages back to /var/lib/apt/lists/partial/Linux%20Mint%2018%20%5fSarah%5f%20-%20Release%20amd64%2020160904_dists_xenial_non-free_binary-amd64_Packages.gz failed - pkgAcqIndex::StageDownloadDone (17: File exists)
E: Failed to fetch cdrom://Linux Mint 18 _Sarah_ - Release amd64 20160904/dists/xenial/contrib/binary-i386/Packages Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs
E: Some index files failed to download. They have been ignored, or old ones used instead.
W: --force-yes is deprecated, use one of the options starting with --allow instead.
Making a lot of changes to the configuration files is the best way to break the Server.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »phate999« (05.03.2017, 16:09)


zitzi

User

  • »zitzi« ist männlich

Beiträge: 470

Registrierungsdatum: 22.10.2009

Derivat: anderes Ubuntu-Derivat

Version: gar kein Ubuntu

Architektur: 64-Bit PC

Desktop: anderer Desktop

Andere Betriebssysteme: Mint 20.1 Ulyssa MATE 64bit

  • Nachricht senden

2

07.03.2017, 10:06

Hallo !

Probiere mal ob Mint via Supergrub2disk startet.
Das ist ein schönes tool für Bootprobleme.
Suchs dir mal per Suchmaschine und wähle die Version entsprechend deiner CPU/Plattform.
Falls es mit dem booten klappt, repariere grub im laufenden System.
grub2repair

Wenn Mint mit sg2d nicht bootet, zieh mal die Windowsplatte ab und probiere mal die Mintplatte alleine.
Evtl. dann auch grub reparieren/neu installieren/updaten.

Könnte aber auch ein Problem mit EFI sein, falls du kein BIOS mehr hast.
Da gibt es viel zu beachten, siehe die Hinweise hier von Klaus P.

Viel Glück!

Tuxgrüsse von Zitzi
Versuch macht kluch............

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ASUS M5A97 EVO R2.0, AMD FX6100, 8 GB DDR3 Corsair, SSD Samsung 830 + Samsung 850 Pro , GeForce MSI 1050ti 4 GB LP

  • »phate999« ist männlich
  • »phate999« ist der Autor dieses Themas

Beiträge: 50

Registrierungsdatum: 23.01.2012

Derivat: Ubuntu

Architektur: 64-Bit PC

Desktop: Unity

Andere Betriebssysteme: Windoof 10

  • Nachricht senden

3

09.03.2017, 21:15

Hat sich bedingt erledigt. Richte den PC gerade mit neuer HDD ein.

Aktuell tritt aber ein anderes Problem auf. Ich eröffne dazu aber einen neuen Tread, da das Thema doch stark abweicht.

Dennoch vielen Dank für deine Bemühungen.
Making a lot of changes to the configuration files is the best way to break the Server.

4

09.03.2017, 22:08

Aber tu dir einen Gefallen und verzichte auf Sonder-Installationen, die dich anschließend überfordern. Du hattest Grub auf beiden Platten, aber auf einer fehlten ihm zwei Module - nämlich genau eines das er braucht um Linux zu finden. Viel zu gern übersieht man auch, daß sich die Device-Bezeichnungen ändern, wenn man die Platten vertauscht. Dank UUID wäre das zwar egal, aber wenn der Grub der damit was anfangen könnte auf der falschen Platte liegt bzw. vice versa...
Beim Erstellen dieser Nachricht kamen keine Tiere zu Schaden.
me is all sausage
but don't call me Ferdl