Ubuntu Pastebin

Paste from kopulaps at Tue, 12 May 2015 19:40:20 +0000

Download as text
   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
                  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 
    976766976 of the same hard drive for core.img. core.img is at this 
    location and looks in partition 112 for .
 => Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 
    62529536 of the same hard drive for core.img. core.img is at this location 
    and looks in partition 129 for .

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  Unknown
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /efi/Boot/bootx64.efi

sda2: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  Unknown
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

sda3: __________________________________________________________________________

    File system:       
    Boot sector type:  -
    Boot sector info: 
    Mounting failed:   mount: unknown filesystem type ''

sda4: __________________________________________________________________________

    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:        

sda5: __________________________________________________________________________

    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:        /bootmgr /Windows/System32/winload.exe

sda6: __________________________________________________________________________

    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:        

sda7: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 14.04.2 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab

sda8: __________________________________________________________________________

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

sda9: __________________________________________________________________________

    File system:       BIOS Boot partition
    Boot sector type:  Grub2's core.img
    Boot sector info: 

sda10: _________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sdb1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Arch Linux ()
    Boot files:        /boot/grub/grub.cfg /etc/fstab

sdb2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sdb3: __________________________________________________________________________

    File system:       BIOS Boot partition
    Boot sector type:  Grub2's core.img
    Boot sector info: 

sdb4: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        /boot/grub/grub.cfg /etc/fstab

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

Drive: sda _____________________________________________________________________

Disk /dev/sda: 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 / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1                   1   976,773,167   976,773,167  ee GPT


GUID Partition Table detected.

Partition    Start Sector    End Sector  # of Sectors System
/dev/sda1           2,048     1,026,047     1,024,000 EFI System partition
/dev/sda2       1,026,048     1,107,967        81,920 -
/dev/sda3       1,107,968     1,370,111       262,144 Microsoft Reserved Partition (Windows)
/dev/sda4       1,370,112     2,373,631     1,003,520 Windows Recovery Environment (Windows)
/dev/sda5       2,373,632   299,331,583   296,957,952 Data partition (Windows/Linux)
/dev/sda6     955,246,592   976,766,598    21,520,007 Windows Recovery Environment (Windows)
/dev/sda7     299,331,584   368,963,583    69,632,000 Data partition (Linux)
/dev/sda8     945,006,592   955,246,591    10,240,000 Swap partition (Linux)
/dev/sda9     976,766,976   976,773,134         6,159 BIOS Boot partition
/dev/sda10    368,963,584   945,006,591   576,043,008 Data partition (Linux)

Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 32.0 GB, 32017047552 bytes
255 heads, 63 sectors/track, 3892 cylinders, total 62533296 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                   1    62,533,295    62,533,295  ee GPT


GUID Partition Table detected.

Partition    Start Sector    End Sector  # of Sectors System
/dev/sdb1           2,048    43,479,039    43,476,992 Data partition (Linux)
/dev/sdb2      43,479,040    50,604,031     7,124,992 Data partition (Linux)
/dev/sdb3      62,529,536    62,533,262         3,727 BIOS Boot partition
/dev/sdb4      50,604,032    62,529,535    11,925,504 Data partition (Linux)

"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda1        F654-402F                              vfat       ESP
/dev/sda10       72b9576b-7a6d-44d1-98df-608d035e0d12   ext4       
/dev/sda2        92B8-6C46                              vfat       DIAGS
/dev/sda4        82A2B9B4A2B9ACD3                       ntfs       WINRETOOLS
/dev/sda5        B47823F37823B352                       ntfs       
/dev/sda6        167C421B7C41F651                       ntfs       PBR Image
/dev/sda7        36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7   ext4       
/dev/sda8        ab4bb4f4-70b3-4eb5-9ae5-da703cce17c6   swap       
/dev/sdb1        ee155b66-550c-4fc9-a106-cafcbdcbf9a0   ext4       system
/dev/sdb2        2fae221f-f368-4566-b506-502aeedc7a82   ext4       data
/dev/sdb4        f2e1fcde-7e80-47c1-96d8-b5cf6ff86004   ext4       

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

Device           Mount_Point              Type       Options

/dev/sda10       /home                    ext4       (rw)
/dev/sda7        /                        ext4       (rw,errors=remount-ro)


=========================== sda7/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_gpt
insmod ext2
set root='hd0,gpt7'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
else
  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
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_IN
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 0,0,0,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd0,gpt7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	else
	  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	fi
	linux	/boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-51-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
	menuentry 'Ubuntu, with Linux 3.13.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-51-generic-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-51-generic ...'
		linux	/boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-51-generic-recovery-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-51-generic ...'
		linux	/boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-49-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-49-generic-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-49-generic ...'
		linux	/boot/vmlinuz-3.13.0-49-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-49-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-49-generic-recovery-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-49-generic ...'
		linux	/boot/vmlinuz-3.13.0-49-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-48-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-48-generic-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-48-generic ...'
		linux	/boot/vmlinuz-3.13.0-48-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-48-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-48-generic-recovery-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-48-generic ...'
		linux	/boot/vmlinuz-3.13.0-48-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-46-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-46-generic-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-46-generic ...'
		linux	/boot/vmlinuz-3.13.0-46-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-46-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-46-generic-recovery-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-46-generic ...'
		linux	/boot/vmlinuz-3.13.0-46-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-45-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-45-generic-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-45-generic ...'
		linux	/boot/vmlinuz-3.13.0-45-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-45-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-45-generic-recovery-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		echo	'Loading Linux 3.13.0-45-generic ...'
		linux	/boot/vmlinuz-3.13.0-45-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-45-generic
	}
}

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

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_gpt
	insmod ext2
	set root='hd0,gpt7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	else
	  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_gpt
	insmod ext2
	set root='hd0,gpt7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	else
	  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Arch (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
	else
	  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
	fi
	linux /boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw quiet
	initrd /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch (on /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
	menuentry 'Arch Linux (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		else
		  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		fi
		linux /boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw quiet
		initrd /boot/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		else
		  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		fi
		linux /boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw quiet
		initrd /boot/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		else
		  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		fi
		linux /boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw quiet
		initrd /boot/initramfs-linux-fallback.img
	}
}

menuentry 'Linux From Scratch (7.7) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	else
	  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	fi
	linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4
}
submenu 'Advanced options for Linux From Scratch (7.7) (on /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	menuentry 'Linux From Scratch (7.7) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.19-lfs-7.7--f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		else
		  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		fi
		linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4
	}
}

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 ###
--------------------------------------------------------------------------------

=============================== sda7/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda7 during installation
UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda10 during installation
UUID=72b9576b-7a6d-44d1-98df-608d035e0d12 /home           ext4    defaults        0       2
# swap was on /dev/sda8 during installation
UUID=ab4bb4f4-70b3-4eb5-9ae5-da703cce17c6 none            swap    sw              0       0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)


=========================== sdb1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt 
insmod ext2
set root='hd1,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
else
  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
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_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt 
	insmod ext2
	set root='hd1,gpt1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
	else
	  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
	fi
	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw  quiet
	echo	'Loading initial ramdisk ...'
	initrd	 /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt 
		insmod ext2
		set root='hd1,gpt1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		else
		  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw  quiet
		echo	'Loading initial ramdisk ...'
		initrd	 /boot/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-ee155b66-550c-4fc9-a106-cafcbdcbf9a0' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt 
		insmod ext2
		set root='hd1,gpt1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 --hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		else
		  search --no-floppy --fs-uuid --set=root ee155b66-550c-4fc9-a106-cafcbdcbf9a0
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0 rw  quiet
		echo	'Loading initial ramdisk ...'
		initrd	 /boot/initramfs-linux-fallback.img
	}
}

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

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 14.04 LTS (14.04) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
	insmod part_gpt 
	insmod ext2
	set root='hd0,gpt7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	else
	  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
	fi
	linux /boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-51-generic
}
submenu 'Advanced options for Ubuntu 14.04 LTS (14.04) (on /dev/sda7)' $menuentry_id_option 'osprober-gnulinux-advanced-36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
	menuentry 'Ubuntu (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-51-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-51-generic (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-51-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-51-generic (recovery mode) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-51-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-51-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-49-generic (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-49-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-49-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-49-generic (recovery mode) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-49-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-49-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-48-generic (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-48-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-48-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-48-generic (recovery mode) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-48-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-48-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-46-generic (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-46-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-46-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-46-generic (recovery mode) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-46-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-46-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-45-generic (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-45-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-45-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-45-generic (recovery mode) (on /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-45-generic--36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7' {
		insmod part_gpt 
		insmod ext2
		set root='hd0,gpt7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt7 --hint-efi=hd0,gpt7 --hint-baremetal=ahci0,gpt7  36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		else
		  search --no-floppy --fs-uuid --set=root 36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7
		fi
		linux /boot/vmlinuz-3.13.0-45-generic root=UUID=36e5b2ea-0d54-429b-83e3-e4ed0ae55ca7 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-45-generic
	}
}

menuentry 'Linux From Scratch (7.7) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	insmod part_gpt 
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	else
	  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	fi
	linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4
}
submenu 'Advanced options for Linux From Scratch (7.7) (on /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	menuentry 'Linux From Scratch (7.7) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.19-lfs-7.7--f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
		insmod part_gpt 
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		else
		  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		fi
		linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4
	}
}

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###
--------------------------------------------------------------------------------

=============================== sdb1/etc/fstab: ================================

--------------------------------------------------------------------------------
# 
# /etc/fstab: static file system information
#
# <file system>	<dir>	<type>	<options>	<dump>	<pass>
# /dev/sdb1 LABEL=system
UUID=ee155b66-550c-4fc9-a106-cafcbdcbf9a0	/         	ext4      	rw,relatime,data=ordered	0 1

# /dev/sdb2 LABEL=data
UUID=2fae221f-f368-4566-b506-502aeedc7a82	/home     	ext4      	rw,relatime,data=ordered	0 2

--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)


=========================== sdb4/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
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if loadfont unicode ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'GNU/Linux' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	load_video
	insmod gzio
	insmod part_gpt 
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	else
	  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
	fi
	echo	'Loading Linux 3.19-lfs-7.7 ...'
	linux	/boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4 ro  
}
submenu 'Advanced options for GNU/Linux' $menuentry_id_option 'gnulinux-advanced-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
	menuentry 'GNU/Linux, with Linux 3.19-lfs-7.7' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19-lfs-7.7-advanced-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
		load_video
		insmod gzio
		insmod part_gpt 
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		else
		  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		fi
		echo	'Loading Linux 3.19-lfs-7.7 ...'
		linux	/boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4 ro  
	}
	menuentry 'GNU/Linux, with Linux 3.19-lfs-7.7 (recovery mode)' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19-lfs-7.7-recovery-f2e1fcde-7e80-47c1-96d8-b5cf6ff86004' {
		load_video
		insmod gzio
		insmod part_gpt 
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		else
		  search --no-floppy --fs-uuid --set=root f2e1fcde-7e80-47c1-96d8-b5cf6ff86004
		fi
		echo	'Loading Linux 3.19-lfs-7.7 ...'
		linux	/boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb4 ro single 
	}
}

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

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdb4/etc/fstab: ================================

--------------------------------------------------------------------------------
# Begin /etc/fstab

# file system  mount-point  type     options             dump  fsck
#                                                              order

/dev/sdb4    /           ext4    defaults            1     1
/dev/sda8     swap         swap     pri=1               0     0
proc           /proc        proc     nosuid,noexec,nodev 0     0
sysfs          /sys         sysfs    nosuid,noexec,nodev 0     0
devpts         /dev/pts     devpts   gid=5,mode=620      0     0
tmpfs          /run         tmpfs    defaults            0     0
devtmpfs       /dev         devtmpfs mode=0755,nosuid    0     0

# End /etc/fstab
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)


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

Unknown GPT Partiton Type
d3ad6b79bf6b9f4db631466eb71a4965
Unknown BootLoader on sda1

00000000  eb 58 90 4d 53 44 4f 53  35 2e 30 00 02 08 3e 18  |.X.MSDOS5.0...>.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 a0 0f 00 e1 03 00 00  00 00 00 00 02 00 00 00  |................|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 00 29 2f 40 54 f6 4e  4f 20 4e 41 4d 45 20 20  |..)/@T.NO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 33 c9 8e d1 bc f4  |  FAT32   3.....|
00000060  7b 8e c1 8e d9 bd 00 7c  88 56 40 88 4e 02 8a 56  |{......|.V@.N..V|
00000070  40 b4 41 bb aa 55 cd 13  72 10 81 fb 55 aa 75 0a  |@.A..U..r...U.u.|
00000080  f6 c1 01 74 05 fe 46 02  eb 2d 8a 56 40 b4 08 cd  |...t..F..-.V@...|
00000090  13 73 05 b9 ff ff 8a f1  66 0f b6 c6 40 66 0f b6  |.s......f...@f..|
000000a0  d1 80 e2 3f f7 e2 86 cd  c0 ed 06 41 66 0f b7 c9  |...?.......Af...|
000000b0  66 f7 e1 66 89 46 f8 83  7e 16 00 75 39 83 7e 2a  |f..f.F..~..u9.~*|
000000c0  00 77 33 66 8b 46 1c 66  83 c0 0c bb 00 80 b9 01  |.w3f.F.f........|
000000d0  00 e8 2c 00 e9 a8 03 a1  f8 7d 80 c4 7c 8b f0 ac  |..,......}..|...|
000000e0  84 c0 74 17 3c ff 74 09  b4 0e bb 07 00 cd 10 eb  |..t.<.t.........|
000000f0  ee a1 fa 7d eb e4 a1 7d  80 eb df 98 cd 16 cd 19  |...}...}........|
00000100  66 60 80 7e 02 00 0f 84  20 00 66 6a 00 66 50 06  |f`.~.... .fj.fP.|
00000110  53 66 68 10 00 01 00 b4  42 8a 56 40 8b f4 cd 13  |Sfh.....B.V@....|
00000120  66 58 66 58 66 58 66 58  eb 33 66 3b 46 f8 72 03  |fXfXfXfX.3f;F.r.|
00000130  f9 eb 2a 66 33 d2 66 0f  b7 4e 18 66 f7 f1 fe c2  |..*f3.f..N.f....|
00000140  8a ca 66 8b d0 66 c1 ea  10 f7 76 1a 86 d6 8a 56  |..f..f....v....V|
00000150  40 8a e8 c0 e4 06 0a cc  b8 01 02 cd 13 66 61 0f  |@............fa.|
00000160  82 74 ff 81 c3 00 02 66  40 49 75 94 c3 42 4f 4f  |.t.....f@Iu..BOO|
00000170  54 4d 47 52 20 20 20 20  00 00 00 00 00 00 00 00  |TMGR    ........|
00000180  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 0d 0a 44 69  |..............Di|
000001b0  73 6b 20 65 72 72 6f 72  ff 0d 0a 50 72 65 73 73  |sk error...Press|
000001c0  20 61 6e 79 20 6b 65 79  20 74 6f 20 72 65 73 74  | any key to rest|
000001d0  61 72 74 0d 0a 00 00 00  00 00 00 00 00 00 00 00  |art.............|
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  ac 01 b9 01 00 00 55 aa  |..............U.|
00000200

Unknown BootLoader on sda2

00000000  eb 58 90 4d 53 44 4f 53  35 2e 30 00 02 01 7e 1b  |.X.MSDOS5.0...~.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 a8 0f 00  |........?.......|
00000020  00 40 01 00 41 02 00 00  00 00 00 00 02 00 00 00  |.@..A...........|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 00 29 46 6c b8 92 4e  4f 20 4e 41 4d 45 20 20  |..)Fl..NO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 33 c9 8e d1 bc f4  |  FAT32   3.....|
00000060  7b 8e c1 8e d9 bd 00 7c  88 56 40 88 4e 02 8a 56  |{......|.V@.N..V|
00000070  40 b4 41 bb aa 55 cd 13  72 10 81 fb 55 aa 75 0a  |@.A..U..r...U.u.|
00000080  f6 c1 01 74 05 fe 46 02  eb 2d 8a 56 40 b4 08 cd  |...t..F..-.V@...|
00000090  13 73 05 b9 ff ff 8a f1  66 0f b6 c6 40 66 0f b6  |.s......f...@f..|
000000a0  d1 80 e2 3f f7 e2 86 cd  c0 ed 06 41 66 0f b7 c9  |...?.......Af...|
000000b0  66 f7 e1 66 89 46 f8 83  7e 16 00 75 39 83 7e 2a  |f..f.F..~..u9.~*|
000000c0  00 77 33 66 8b 46 1c 66  83 c0 0c bb 00 80 b9 01  |.w3f.F.f........|
000000d0  00 e8 2c 00 e9 a8 03 a1  f8 7d 80 c4 7c 8b f0 ac  |..,......}..|...|
000000e0  84 c0 74 17 3c ff 74 09  b4 0e bb 07 00 cd 10 eb  |..t.<.t.........|
000000f0  ee a1 fa 7d eb e4 a1 7d  80 eb df 98 cd 16 cd 19  |...}...}........|
00000100  66 60 80 7e 02 00 0f 84  20 00 66 6a 00 66 50 06  |f`.~.... .fj.fP.|
00000110  53 66 68 10 00 01 00 b4  42 8a 56 40 8b f4 cd 13  |Sfh.....B.V@....|
00000120  66 58 66 58 66 58 66 58  eb 33 66 3b 46 f8 72 03  |fXfXfXfX.3f;F.r.|
00000130  f9 eb 2a 66 33 d2 66 0f  b7 4e 18 66 f7 f1 fe c2  |..*f3.f..N.f....|
00000140  8a ca 66 8b d0 66 c1 ea  10 f7 76 1a 86 d6 8a 56  |..f..f....v....V|
00000150  40 8a e8 c0 e4 06 0a cc  b8 01 02 cd 13 66 61 0f  |@............fa.|
00000160  82 74 ff 81 c3 00 02 66  40 49 75 94 c3 42 4f 4f  |.t.....f@Iu..BOO|
00000170  54 4d 47 52 20 20 20 20  00 00 00 00 00 00 00 00  |TMGR    ........|
00000180  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 0d 0a 44 69  |..............Di|
000001b0  73 6b 20 65 72 72 6f 72  ff 0d 0a 50 72 65 73 73  |sk error...Press|
000001c0  20 61 6e 79 20 6b 65 79  20 74 6f 20 72 65 73 74  | any key to rest|
000001d0  61 72 74 0d 0a 00 00 00  00 00 00 00 00 00 00 00  |art.............|
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  ac 01 b9 01 00 00 55 aa  |..............U.|
00000200


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

sdc 

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

cat: /tmp/BootInfo-4AOfhYb7/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-4AOfhYb7/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-4AOfhYb7/Tmp_Log: No such file or directory
Download as text