ubuntuusers.de

Bootinfoskript-Taomon

Autor:
Taomon
Datum:
16. Mai 2019 20:29
Code:
   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
                  Boot Info Script 0.76      [13 April 2017]


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

sda1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Debian GNU/Linux 9 (stretch)
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/extlinux/extlinux.conf 
                       /boot/grub/i386-pc/core.img

sda2: __________________________________________________________________________

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

sdb1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 18.04.2 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdb2: __________________________________________________________________________

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

sdb3: __________________________________________________________________________

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

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

Drive: sda _____________________________________________________________________
Festplatte /dev/sda: 111,8 GiB, 120034123776 Bytes, 234441648 Sektoren
Einheiten: Sektoren von 1 * 512 = 512 Bytes
Sektorgröße (logisch/physikalisch): 512 Bytes / 512 Bytes
E/A-Größe (minimal/optimal): 512 Bytes / 512 Bytes
Festplattenbezeichnungstyp: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1               2,048    73,402,367    73,400,320  83 Linux
/dev/sda2          73,402,368    85,985,279    12,582,912  82 Linux swap / Solaris


Drive: sdb _____________________________________________________________________
Festplatte /dev/sdb: 931,5 GiB, 1000204886016 Bytes, 1953525168 Sektoren
Einheiten: Sektoren von 1 * 512 = 512 Bytes
Sektorgröße (logisch/physikalisch): 512 Bytes / 4096 Bytes
E/A-Größe (minimal/optimal): 4096 Bytes / 4096 Bytes
Festplattenbezeichnungstyp: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1               2,048    62,916,607    62,914,560  83 Linux
/dev/sdb2          62,916,608    71,305,215     8,388,608  82 Linux swap / Solaris
/dev/sdb3          71,305,216 1,953,525,167 1,882,219,952  83 Linux


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda1        88411b09-1aaa-4775-9fc7-f60041049d6c   ext4       
/dev/sda2        c3c5da03-36db-4ad5-8817-05215fe43b6d   swap       
/dev/sdb1        0ddc8e0a-4b8a-479c-9502-5478ed3c4036   ext4       
/dev/sdb2        927f38a0-c962-47de-9361-f1730032704e   swap       
/dev/sdb3        1ebf0f02-cdd8-44d9-80f9-7078de79e191   ext4       

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

insgesamt 0
lrwxrwxrwx 1 root root  9 Mai 16 08:36 ata-SanDisk_SDSSDA120G_173003A01451 -> ../../sda
lrwxrwxrwx 1 root root 10 Mai 16 08:36 ata-SanDisk_SDSSDA120G_173003A01451-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mai 16 08:36 ata-SanDisk_SDSSDA120G_173003A01451-part2 -> ../../sda2
lrwxrwxrwx 1 root root  9 Mai 16 08:36 ata-WDC_WD10JPVX-22JC3T0_WD-WX91AC7D72KK -> ../../sdb
lrwxrwxrwx 1 root root 10 Mai 16 08:36 ata-WDC_WD10JPVX-22JC3T0_WD-WX91AC7D72KK-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mai 16 08:36 ata-WDC_WD10JPVX-22JC3T0_WD-WX91AC7D72KK-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Mai 16 08:36 ata-WDC_WD10JPVX-22JC3T0_WD-WX91AC7D72KK-part3 -> ../../sdb3
lrwxrwxrwx 1 root root  9 Mai 16 08:36 wwn-0x50014ee65da50475 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mai 16 08:36 wwn-0x50014ee65da50475-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mai 16 08:36 wwn-0x50014ee65da50475-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Mai 16 08:36 wwn-0x50014ee65da50475-part3 -> ../../sdb3
lrwxrwxrwx 1 root root  9 Mai 16 08:36 wwn-0x5001b448b4ded500 -> ../../sda
lrwxrwxrwx 1 root root 10 Mai 16 08:36 wwn-0x5001b448b4ded500-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mai 16 08:36 wwn-0x5001b448b4ded500-part2 -> ../../sda2

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

Device           Mount_Point              Type       Options

/dev/sda1        /media/root/88411b09-1aaa-4775-9fc7-f60041049d6c ext4       (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb1        /                        ext4       (rw,relatime,errors=remount-ro,data=ordered)
/dev/sdb3        /home/alex/jd2           ext4       (rw,nosuid,nodev,noexec,relatime,data=ordered,user)
/dev/sdb3        /media/debian-home-partition ext4       (rw,nosuid,nodev,noexec,relatime,data=ordered,user)


=========================== 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="${saved_entry}"
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_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  88411b09-1aaa-4775-9fc7-f60041049d6c
else
  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1600x900
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_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  88411b09-1aaa-4775-9fc7-f60041049d6c
else
  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
fi
insmod png
if background_image /usr/share/desktop-base/softwaves-theme/grub/grub-4x3.png; then
  set color_normal=white/black
  set color_highlight=black/white
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
	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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	echo	'Linux 4.19.0-0.bpo.4-amd64 wird geladen …'
	linux	/boot/vmlinuz-4.19.0-0.bpo.4-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  
	echo	'Initiale Ramdisk wird geladen …'
	initrd	/boot/initrd.img-4.19.0-0.bpo.4-amd64
}
submenu 'Erweiterte Optionen für Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	menuentry 'Debian GNU/Linux, mit Linux 4.19.0-0.bpo.4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.4-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.4-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.4-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 4.19.0-0.bpo.4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.4-amd64-recovery-88411b09-1aaa-4775-9fc7-f60041049d6c' {
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.4-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.4-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro single 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.4-amd64
	}
	menuentry 'Debian GNU/Linux, mit Linux 4.19.0-0.bpo.2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.2-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.2-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.2-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.2-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 4.19.0-0.bpo.2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.2-amd64-recovery-88411b09-1aaa-4775-9fc7-f60041049d6c' {
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.2-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.2-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro single 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.2-amd64
	}
	menuentry 'Debian GNU/Linux, mit Linux 4.9.0-8-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-8-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.9.0-8-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.9.0-8-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.9.0-8-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 4.9.0-8-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-8-amd64-recovery-88411b09-1aaa-4775-9fc7-f60041049d6c' {
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.9.0-8-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.9.0-8-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro single 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.9.0-8-amd64
	}
}

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

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

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

### BEGIN /etc/grub.d/20_memtest86 ###
menuentry "Memory test (memtest86)" {
	linux16	/boot/memtest86.bin
}
### END /etc/grub.d/20_memtest86 ###

### 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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	linux16	/boot/memtest86+.bin
}
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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
	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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	multiboot	/boot/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
	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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	multiboot	/boot/memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 18.04.2 LTS (18.04) (auf /dev/sdb1)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	savedefault
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	else
	  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	fi
	linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro noplymouth
	initrd /boot/initrd.img-4.15.0-48-generic
}
submenu 'Erweiterte Optionen für Ubuntu 18.04.2 LTS (18.04) (auf /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	menuentry 'Ubuntu (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro noplymouth
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-48-generic (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro noplymouth
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-48-generic (recovery mode) (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic-root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-47-generic (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-47-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-47-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro noplymouth
		initrd /boot/initrd.img-4.15.0-47-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-47-generic (recovery mode) (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-47-generic-root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-47-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-47-generic
	}
	menuentry 'Ubuntu text (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro systemd.unit=multi-user.target
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu text, mit Linux 4.15.0-48-generic (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro systemd.unit=multi-user.target
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu text, mit Linux 4.15.0-47-generic (auf /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-47-generic--0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		linux /boot/vmlinuz-4.15.0-47-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro systemd.unit=multi-user.target
		initrd /boot/initrd.img-4.15.0-47-generic
	}
}

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

exec tail -n +3 $0
# 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.

menuentry "Mint" { 
insmod part_msdos
insmod ext2 
insmod lzopio
insmod gzio
gfxpayload=$linux_gfx_mode 
set isofile=/boot/mint/mint-rosa.iso
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject 
initrd (loop)/casper/initrd.lz}

### 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/70_kodi ###
function gfxmode {
	set gfxpayload="${1}"
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Debian Kodi' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
	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  88411b09-1aaa-4775-9fc7-f60041049d6c
	else
	  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
	fi
	echo	'Linux 4.19.0-0.bpo.4-amd64 wird geladen …'
	linux	/boot/vmlinuz-4.19.0-0.bpo.4-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  systemd.unit=kodi.target
	echo	'Initiale Ramdisk wird geladen …'
	initrd	/boot/initrd.img-4.19.0-0.bpo.4-amd64
}
submenu 'Erweiterte Optionen für Debian Kodi' $menuentry_id_option 'gnulinux-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	menuentry 'Debian Kodi, mit Linux 4.19.0-0.bpo.4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.4-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.4-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.4-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  systemd.unit=kodi.target
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.4-amd64
	}
	menuentry 'Debian Kodi, mit Linux 4.19.0-0.bpo.2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-0.bpo.2-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.19.0-0.bpo.2-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.19.0-0.bpo.2-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  systemd.unit=kodi.target
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.19.0-0.bpo.2-amd64
	}
	menuentry 'Debian Kodi, mit Linux 4.9.0-8-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-8-amd64-advanced-88411b09-1aaa-4775-9fc7-f60041049d6c' {
	savedefault
		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  88411b09-1aaa-4775-9fc7-f60041049d6c
		else
		  search --no-floppy --fs-uuid --set=root 88411b09-1aaa-4775-9fc7-f60041049d6c
		fi
		echo	'Linux 4.9.0-8-amd64 wird geladen …'
		linux	/boot/vmlinuz-4.9.0-8-amd64 root=UUID=88411b09-1aaa-4775-9fc7-f60041049d6c ro  systemd.unit=kodi.target
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.9.0-8-amd64
	}
}

### END /etc/grub.d/70_kodi ###
--------------------------------------------------------------------------------

=============================== 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>
proc            /proc           proc    defaults        0       0
# / was on /dev/sda1 during installation
UUID=88411b09-1aaa-4775-9fc7-f60041049d6c  /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda3 during installation
#UUID=f7217969-9cde-4eff-940b-761ebb06189b  /home           ext4    defaults        0       2
# /home neu
UUID=1ebf0f02-cdd8-44d9-80f9-7078de79e191  /home           ext4    defaults        0       2
# swap neu
UUID=927f38a0-c962-47de-9361-f1730032704e    none            swap    sw              0       0
# swap was on /dev/sda2 during installation
#UUID=f923fdf9-3416-420d-898c-e481c82a757b   none            swap    sw              0       0
# /dev/sr0       /media/cdrom0   udf,iso9660 user,noauto     0       0
# nfsmount ubuntu-server
# 172.16.0.2:/media/cdrom   /media/ubuntu/dvd nfs  rw,users,noauto,intr,soft,bg,nolock 0  0 
# 172.16.0.2:/home/alex /media/ubuntu/home  nfs  rw,users,noauto,intr,soft,bg,nolock   0  0

# Test

# LABEL=backup /media/backup   ext3  ro,user,noauto                 0    0 





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

====================== sda1/boot/extlinux/extlinux.conf: =======================

--------------------------------------------------------------------------------
## /boot/extlinux/extlinux.conf
##
## IMPORTANT WARNING
##
## The configuration of this file is generated automatically.
## Do not edit this file manually, use: extlinux-update


default l0
prompt 1
timeout 50

include themes/debian/theme.cfg
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  32.969787598 = 35.401039872   boot/grub/grub.cfg                             4
   2.439903259 = 2.619826176    boot/grub/i386-pc/core.img                     1
  33.240180969 = 35.691372544   boot/vmlinuz-4.19.0-0.bpo.2-amd64              2
   9.892559052 = 10.622054400   boot/vmlinuz-4.19.0-0.bpo.4-amd64              2
  17.051799774 = 18.309230592   boot/vmlinuz-4.9.0-8-amd64                     1
   9.892559052 = 10.622054400   vmlinuz                                        2
  33.240180969 = 35.691372544   vmlinuz.old                                    2
   2.102310181 = 2.257338368    boot/initrd.img-4.19.0-0.bpo.2-amd64           3
  19.421192169 = 20.853346304   boot/initrd.img-4.19.0-0.bpo.4-amd64           2
  17.543842316 = 18.837557248   boot/initrd.img-4.9.0-8-amd64                  3
  19.421192169 = 20.853346304   initrd.img                                     2
   2.102310181 = 2.257338368    initrd.img.old                                 3

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

           GiB - GB             File                                 Fragment(s)

  12.136554718 = 13.031526400   boot/extlinux/extlinux.conf                    1
  12.150936127 = 13.046968320   boot/extlinux/chain.c32                        1

============== sda1: Version of COM32(R) files used by Syslinux: ===============

 boot/extlinux/chain.c32            :  COM32R module (v4.xx)

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

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

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

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

export menuentry_id_option

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

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
else
  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1024x768
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=de_DE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=2
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=2
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	else
	  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	fi
        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  noplymouth
	initrd	/boot/initrd.img-4.15.0-50-generic
}
submenu 'Erweiterte Optionen für Ubuntu' $menuentry_id_option 'gnulinux-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	menuentry 'Ubuntu, mit Linux 4.15.0-50-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-50-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  noplymouth
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-50-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-recovery-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-50-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-48-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-48-generic-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-48-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  noplymouth
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, mit Linux 4.15.0-48-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-48-generic-recovery-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-48-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro recovery nomodeset 
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-48-generic
	}
}

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

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

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

### BEGIN /etc/grub.d/30_os-prober ###
### 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/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/70_text-mode ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Ubuntu text' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	else
	  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
	fi
        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  systemd.unit=multi-user.target
	initrd	/boot/initrd.img-4.15.0-50-generic
}
submenu 'Erweiterte Optionen für Ubuntu text' $menuentry_id_option 'gnulinux-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
	menuentry 'Ubuntu text, mit Linux 4.15.0-50-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-50-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  systemd.unit=multi-user.target
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu text, mit Linux 4.15.0-48-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-48-generic-advanced-0ddc8e0a-4b8a-479c-9502-5478ed3c4036' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 --hint='hd1,msdos1'  0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		else
		  search --no-floppy --fs-uuid --set=root 0ddc8e0a-4b8a-479c-9502-5478ed3c4036
		fi
		echo	'Linux 4.15.0-48-generic wird geladen …'
	        linux	/boot/vmlinuz-4.15.0-48-generic root=UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036 ro  systemd.unit=multi-user.target
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-4.15.0-48-generic
	}
}

### END /etc/grub.d/70_text-mode ###
--------------------------------------------------------------------------------

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

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation,geändert auf /dev/sdb1
UUID=0ddc8e0a-4b8a-479c-9502-5478ed3c4036  /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda2 during installation, geändert auf /dev/sdb2
#swap neu
UUID=927f38a0-c962-47de-9361-f1730032704e none  swap    sw              0       0
# debian-home-partition einbinden.
# uuid_neu
UUID=1ebf0f02-cdd8-44d9-80f9-7078de79e191  /media/debian-home-partition  ext4 user,auto    0       2
# einzelne Ordner einbinden von debian-home
/media/debian-home-partition/alex/jd2  /home/alex/jd2   none  bind,user,auto                 0       0


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

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

           GiB - GB             File                                 Fragment(s)

  28.829208374 = 30.955126784   boot/grub/grub.cfg                             3
  11.241348267 = 12.070305792   boot/grub/i386-pc/core.img                     1
   1.050994873 = 1.128497152    boot/vmlinuz-4.15.0-48-generic                 1
  12.914276123 = 13.866598400   boot/vmlinuz-4.15.0-50-generic                 2
  12.914276123 = 13.866598400   vmlinuz                                        2
   1.050994873 = 1.128497152    vmlinuz.old                                    1
  10.745208740 = 11.537580032   boot/initrd.img-4.15.0-48-generic              2
  28.499061584 = 30.600634368   boot/initrd.img-4.15.0-50-generic              2
  28.499061584 = 30.600634368   initrd.img                                     2
  10.745208740 = 11.537580032   initrd.img.old                                 2