Advertisement
Guest User

Die Konfiguration

a guest
Dec 20th, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. ###
  2. ls -la /boot/efi/Acronis14
  3. insgesamt 72800
  4. drwx------ 2 root root 4096 Dez 20 18:31 .
  5. drwx------ 6 root root 4096 Jan 1 1970 ..
  6. -rwx------ 1 root root 2492336 Dez 19 17:59 bootx64.efi
  7. -rwx------ 1 root root 350 Dez 20 18:31 bootx64.xml
  8. -rwx------ 1 root root 69109479 Dez 19 17:59 dat6.dat
  9. -rwx------ 1 root root 2926816 Dez 19 17:59 dat7.dat
  10. ###
  11. cat /boot/efi/Acronis14/bootx64.xml
  12.  
  13.  
  14. if [ "$grub_platform" = "efi" ]; then
  15. menuentry "Acronis True Image 2014 - einzelne Dateien /efi/Acronis14/" {
  16. #/efi/Acronis14/*
  17. #edit /efi/Acronis14/bootx64.xml:
  18. #<Kernel Arguments="quiet" Path="/efi/Acronis14/dat7.dat" />
  19. #<Ramdisk Path="/efi/Acronis14/dat6.dat" />
  20. chainloader /efi/Acronis14/bootx64.efi
  21. }
  22. fi
  23. ###
  24. cat /etc/grub.d/40_custom
  25. #!/bin/sh
  26. exec tail -n +3 $0
  27. # This file provides an easy way to add custom menu entries. Simply type the
  28. # menu entries you want to add after this comment. Be careful not to change
  29. # the 'exec tail' line above.
  30. menuentry "Acronis True Image 2014 - einzelene Dateien /boot/Acronis/" {
  31. #/efi/boot/bootx64.xml
  32. #<Kernel Arguments="quiet" Path="/efi/boot/dat7.dat" />
  33. #<Ramdisk Path="/efi/boot/dat6.dat" />
  34. linux /efi/Acronis14/dat7.dat quiet
  35. initrd /efi/Acronis14/dat6.dat
  36. }
  37. ###
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement