Guest User

Untitled

a guest
Dec 14th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. Disk /dev/sdb: 0 MB, 512000 bytes
  2. 255 heads, 63 sectors/track, 0 cylinders, total 1000 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. Disk identifier: 0x00095df6
  7.  
  8. Device Boot Start End Blocks Id System
  9.  
  10. Error creating partition on /dev/sdb: Command-line parted --align optimal --script "/dev/sdb" "mkpart primary ext2 1MiB 7969177599b"' exited with non-zero exit status 1: Error: The location 7969177599b is outside of the device /dev/sdb.
  11. (udisks-error-quark, 0)
  12.  
  13. sudo parted --list
  14.  
  15. Model: SomeUSB disk (scsi)
  16. Disk /dev/sdc: 64GB
  17. Sector size (logical/physical): 512B/4096B
  18. Partition Table: gpt
  19. Disk Flags:
  20.  
  21. Number Start End Size File system Name Flags
  22. 1 1049kB 8GB 8GB FAT BOOT
  23.  
  24. sudo parted /dev/sdc mklabel msdos
  25.  
  26. sudo parted -a none /dev/sdc mkpart primary fat32 0 8192
  27.  
  28. mkfs.vfat -n "8GB-USB" /dev/sdc1
Add Comment
Please, Sign In to add comment