Guest User

Untitled

a guest
Mar 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. # fdisk -l /dev/sdb
  2. Disk /dev/sdb: 465.8 GiB, 500107862016 bytes, 976773168 sectors
  3. Units: sectors of 1 * 512 = 512 bytes
  4. Sector size (logical/physical): 512 bytes / 4096 bytes
  5. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  6. Disklabel type: gpt
  7. Disk identifier: 17E16B0D-9815-4A52-88A8-67DF03C9C6E0
  8.  
  9. Device Start End Sectors Size Type
  10. /dev/sdb1 2048 526335 524288 256M Microsoft basic data
  11. /dev/sdb2 526336 42469375 41943040 20G EFI System
  12. /dev/sdb3 42469376 46663679 4194304 2G Linux swap
  13. /dev/sdb4 46663680 976773119 930109440 443.5G Microsoft basic data
  14.  
  15. # parted /dev/sdb
  16. GNU Parted 3.2
  17. Using /dev/sdb
  18. Welcome to GNU Parted! Type 'help' to view a list of commands.
  19. (parted) p
  20. Model: WDC WD50 00LPVT-22G33T0 (scsi)
  21. Disk /dev/sdb: 500GB
  22. Sector size (logical/physical): 512B/4096B
  23. Partition Table: gpt
  24. Disk Flags:
  25.  
  26. Number Start End Size File system Name Flags
  27. 1 1049kB 269MB 268MB ext3 msftdata
  28. 2 269MB 21.7GB 21.5GB ext3 boot, esp
  29. 3 21.7GB 23.9GB 2147MB swsusp
  30. 4 23.9GB 500GB 476GB ext3 msftdata
  31.  
  32. # fdisk -l /dev/sdc
  33. Disk /dev/sdc: 223.6 GiB, 240057409536 bytes, 468862128 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. Disklabel type: gpt
  38. Disk identifier: 30BD5947-8BC3-4AFE-BC3C-14615E9AF60F
  39.  
  40. Device Start End Sectors Size Type
  41. /dev/sdc1 2048 526335 524288 256M Linux filesystem
  42. /dev/sdc2 526336 42469375 41943040 20G Linux filesystem
  43. /dev/sdc3 42469376 46663679 4194304 2G Linux swap
  44. /dev/sdc4 46663680 468862094 422198415 201.3G Linux filesystem
  45. # parted /dev/sdc
  46. GNU Parted 3.2
  47. Using /dev/sdc
  48. Welcome to GNU Parted! Type 'help' to view a list of commands.
  49. (parted) p
  50. Model: SanDisk SDSSDA240G (scsi)
  51. Disk /dev/sdc: 240GB
  52. Sector size (logical/physical): 512B/512B
  53. Partition Table: gpt
  54. Disk Flags:
  55.  
  56. Number Start End Size File system Name Flags
  57. 1 1049kB 269MB 268MB ext3 primary
  58. 2 269MB 21.7GB 21.5GB ext3 primary
  59. 3 21.7GB 23.9GB 2147MB linux-swap(v1) primary
  60. 4 23.9GB 240GB 216GB ext3 primary
  61.  
  62. # /sbin/grub-install --root-directory=/ /dev/sdc
  63. /dev/sdc does not have any corresponding BIOS drive.
  64.  
  65. # /sbin/grub-install --recheck /dev/sdc
  66. Probing devices to guess BIOS drives. This may take a long time.
  67. The file /boot/grub/stage1 not read correctly.
Add Comment
Please, Sign In to add comment