Advertisement
Guest User

Untitled

a guest
May 29th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. root@proxmox2:~# fdisk -l /dev/sdb
  2.  
  3. Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
  4. 255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
  5. Units = sectors of 1 * 512 = 512 bytes
  6. Sector size (logical/physical): 512 bytes / 4096 bytes
  7. I/O size (minimum/optimal): 4096 bytes / 4096 bytes
  8. Disk identifier: 0x7431e929
  9.  
  10. Device Boot Start End Blocks Id System
  11. /dev/sdb1 63 1953525167 976762552+ 83 Linux
  12. Partition 1 does not start on physical sector boundary.
  13. root@proxmox2:~# mount -t linux /dev/sdb1 /mnt/sdb1
  14. mount: unknown filesystem type 'linux'
  15. root@proxmox2:~# mount -t ext /dev/sdb1 /mnt/sdb1
  16. mount: unknown filesystem type 'ext'
  17. root@proxmox2:~# mount -t ext4 /dev/sdb1 /mnt/sdb1
  18. mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
  19. missing codepage or helper program, or other error
  20. In some cases useful info is found in syslog - try
  21. dmesg | tail or so
  22.  
  23. root@proxmox2:~# mount -t ext3 /dev/sdb1 /mnt/sdb1
  24. mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
  25. missing codepage or helper program, or other error
  26. In some cases useful info is found in syslog - try
  27. dmesg | tail or so
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement