Advertisement
Guest User

Untitled

a guest
Feb 11th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. xubuntu@xubuntu:~$ sudo fdisk -l
  2.  
  3. Disk /dev/sda: 80.0 GB, 80026361856 bytes
  4. 255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors
  5. Units = sectors of 1 * 512 = 512 bytes
  6. Sector size (logical/physical): 512 bytes / 512 bytes
  7. I/O size (minimum/optimal): 512 bytes / 512 bytes
  8. Disk identifier: 0x11224d6c
  9.  
  10. Device Boot Start End Blocks Id System
  11.  
  12. Disk /dev/sdb: 320.1 GB, 320072933376 bytes
  13. 255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
  14. Units = sectors of 1 * 512 = 512 bytes
  15. Sector size (logical/physical): 512 bytes / 512 bytes
  16. I/O size (minimum/optimal): 512 bytes / 512 bytes
  17. Disk identifier: 0x00000000
  18.  
  19. Disk /dev/sdb doesn't contain a valid partition table
  20.  
  21. Disk /dev/sdc: 2101 MB, 2101346304 bytes
  22. 65 heads, 62 sectors/track, 1018 cylinders, total 4104192 sectors
  23. Units = sectors of 1 * 512 = 512 bytes
  24. Sector size (logical/physical): 512 bytes / 512 bytes
  25. I/O size (minimum/optimal): 512 bytes / 512 bytes
  26. Disk identifier: 0x00009ea5
  27.  
  28. Device Boot Start End Blocks Id System
  29. /dev/sdc1 * 62 4102539 2051239 b W95 FAT32
  30. xubuntu@xubuntu:~$ sudo time dd if=/dev/zero of=/dev/sdb
  31. ^C7598425+0 records in
  32. 7598425+0 records out
  33. 3890393600 bytes (3.9 GB) copied, 154.578 s, 25.2 MB/s
  34. Command terminated by signal 2
  35. 0.01user 54.12system 2:34.57elapsed 35%CPU (0avgtext+0avgdata 932maxresident)k
  36. 7598432inputs+7598432outputs (0major+285minor)pagefaults 0swaps
  37. xubuntu@xubuntu:~$ sudo time dd if=/dev/zero of=/dev/sdb bs=512
  38. ^C8153249+0 records in
  39. 8153249+0 records out
  40. 4174463488 bytes (4.2 GB) copied, 166.365 s, 25.1 MB/s
  41. Command terminated by signal 2
  42. 0.04user 58.36system 2:46.36elapsed 35%CPU (0avgtext+0avgdata 928maxresident)k
  43. 8153256inputs+8153256outputs (0major+286minor)pagefaults 0swaps
  44. xubuntu@xubuntu:~$ sudo time dd if=/dev/zero of=/dev/sdb bs=512
  45. ^C2976401+0 records in
  46. 2976401+0 records out
  47. 1523917312 bytes (1.5 GB) copied, 60.7338 s, 25.1 MB/s
  48. Command terminated by signal 2
  49. 0.00user 21.33system 1:00.73elapsed 35%CPU (0avgtext+0avgdata 924maxresident)k
  50. 2976408inputs+2976408outputs (0major+284minor)pagefaults 0swaps
  51. xubuntu@xubuntu:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement