Advertisement
Guest User

GRUB installation Ubuntu

a guest
Jun 24th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. ubuntu@ubuntu:~$ sudo -i
  2. root@ubuntu:~# fdisk -l
  3. Disk /dev/loop0: 1.99 GiB, 2109763584 bytes, 4120632 sectors
  4. Units: sectors of 1 * 512 = 512 bytes
  5. Sector size (logical/physical): 512 bytes / 512 bytes
  6. I/O size (minimum/optimal): 512 bytes / 512 bytes
  7.  
  8.  
  9. Disk /dev/loop1: 218.102 MiB, 229629952 bytes, 448496 sectors
  10. Units: sectors of 1 * 512 = 512 bytes
  11. Sector size (logical/physical): 512 bytes / 512 bytes
  12. I/O size (minimum/optimal): 512 bytes / 512 bytes
  13.  
  14.  
  15. Disk /dev/loop2: 64.79 MiB, 67915776 bytes, 132648 sectors
  16. Units: sectors of 1 * 512 = 512 bytes
  17. Sector size (logical/physical): 512 bytes / 512 bytes
  18. I/O size (minimum/optimal): 512 bytes / 512 bytes
  19.  
  20.  
  21. Disk /dev/loop3: 55.48 MiB, 58159104 bytes, 113592 sectors
  22. Units: sectors of 1 * 512 = 512 bytes
  23. Sector size (logical/physical): 512 bytes / 512 bytes
  24. I/O size (minimum/optimal): 512 bytes / 512 bytes
  25.  
  26.  
  27. Disk /dev/loop4: 51.4 MiB, 53522432 bytes, 104536 sectors
  28. Units: sectors of 1 * 512 = 512 bytes
  29. Sector size (logical/physical): 512 bytes / 512 bytes
  30. I/O size (minimum/optimal): 512 bytes / 512 bytes
  31.  
  32.  
  33. Disk /dev/loop5: 31.9 MiB, 32595968 bytes, 63664 sectors
  34. Units: sectors of 1 * 512 = 512 bytes
  35. Sector size (logical/physical): 512 bytes / 512 bytes
  36. I/O size (minimum/optimal): 512 bytes / 512 bytes
  37.  
  38.  
  39. Disk /dev/nvme0n1: 465.78 GiB, 500107862016 bytes, 976773168 sectors
  40. Disk model: WDC WDS500G2B0C-00PXH0
  41. Units: sectors of 1 * 512 = 512 bytes
  42. Sector size (logical/physical): 512 bytes / 512 bytes
  43. I/O size (minimum/optimal): 512 bytes / 512 bytes
  44. Disklabel type: dos
  45. Disk identifier: 0xa4947527
  46.  
  47. Device Boot Start End Sectors Size Id Type
  48. /dev/nvme0n1p1 2048 975745751 975743704 465.3G 7 HPFS/NTFS/exFAT
  49. /dev/nvme0n1p2 975747072 976769023 1021952 499M 27 Hidden NTFS WinRE
  50.  
  51.  
  52. Disk /dev/sda: 1.84 TiB, 2000398934016 bytes, 3907029168 sectors
  53. Disk model: ST2000DM008-2FR1
  54. Units: sectors of 1 * 512 = 512 bytes
  55. Sector size (logical/physical): 512 bytes / 4096 bytes
  56. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  57. Disklabel type: dos
  58. Disk identifier: 0xa494752f
  59.  
  60. Device Boot Start End Sectors Size Id Type
  61. /dev/sda1 * 2048 104447 102400 50M 7 HPFS/NTFS/exFAT
  62. /dev/sda2 104448 3907024895 3906920448 1.8T 7 HPFS/NTFS/exFAT
  63.  
  64.  
  65. Disk /dev/sdb: 111.81 GiB, 120034123776 bytes, 234441648 sectors
  66. Disk model: ADATA SU655
  67. Units: sectors of 1 * 512 = 512 bytes
  68. Sector size (logical/physical): 512 bytes / 512 bytes
  69. I/O size (minimum/optimal): 512 bytes / 512 bytes
  70. Disklabel type: gpt
  71. Disk identifier: 1F53C55F-A945-4522-B8CA-FB528B52CA1D
  72.  
  73. Device Start End Sectors Size Type
  74. /dev/sdb1 2048 1050623 1048576 512M EFI System
  75. /dev/sdb2 1050624 234440703 233390080 111.3G Linux filesystem
  76.  
  77.  
  78. Disk /dev/sdc: 15 GiB, 16106127360 bytes, 31457280 sectors
  79. Disk model: Flash Disk
  80. Units: sectors of 1 * 512 = 512 bytes
  81. Sector size (logical/physical): 512 bytes / 512 bytes
  82. I/O size (minimum/optimal): 512 bytes / 512 bytes
  83. Disklabel type: dos
  84. Disk identifier: 0x00bb6c78
  85.  
  86. Device Boot Start End Sectors Size Id Type
  87. /dev/sdc1 * 2048 31457279 31455232 15G c W95 FAT32 (LBA)
  88. root@ubuntu:~# mount /dev/sdb1 /mnt
  89. root@ubuntu:~# grub-install --boot-directory=/mnt /dev/sdb
  90. Installing for i386-pc platform.
  91. grub-install: warning: this GPT partition label contains no BIOS Boot Partition; embedding won't be possible.
  92. grub-install: warning: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
  93. grub-install: error: will not proceed with blocklists.
  94. root@ubuntu:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement