Advertisement
Guest User

Runde 2

a guest
Dec 20th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 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.  
  12. ###
  13. cat /boot/efi/Acronis14/bootx64.xml
  14.  
  15.  
  16. if [ "$grub_platform" = "efi" ]; then
  17. menuentry "Acronis True Image 2014 - einzelne Dateien /efi/Acronis14/" {
  18. #/efi/Acronis14/*
  19. #edit /efi/Acronis14/bootx64.xml:
  20. #<Kernel Arguments="quiet" Path="/efi/Acronis14/dat7.dat" />
  21. #<Ramdisk Path="/efi/Acronis14/dat6.dat" />
  22. chainloader /efi/Acronis14/bootx64.efi
  23. }
  24. fi
  25.  
  26. ###
  27. cat /etc/grub.d/40_custom
  28.  
  29. Auszug
  30.  
  31. menuentry "Acronis True Image 2014 - einzelene Dateien /boot/efi/Acronis14/" {
  32. #/efi/boot/bootx64.xml
  33. #<Kernel Arguments="quiet" Path="/efi/boot/dat7.dat" />
  34. #<Ramdisk Path="/efi/boot/dat6.dat" />
  35. linux /boot/efi/Acronis14/dat7.dat quiet
  36. initrd /boot/efi/Acronis14/dat6.dat
  37. }
  38.  
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement