BZ creates a block cloud drive to add to the virtual machine, and then mounts the hard drive as usual on the USB drive:
Mount-t ext4/dev/vdb/mnt/xxxx
The results reported the following error:
Mount:wrong fs type, bad option, bad Superblock on/dev/vdb,
Missing codepage or helper program, or other error
In some cases useful info are found in Syslog-try
DMESG | Tail or so
After searching the internet, an elder brother gave a reply, saying it was because there was no formatting, and then I ran to format:
Mkfs-t Ext4/dev/vdb
The result is also an error:
Disk/dev/vdb doesn ' t contain a valid partition table.
Found an article http://blog.csdn.net/chen3888015/article/details/7515699, which is how to partition the hard disk, partition after the execution of Mount command or error:
Mount:wrong fs type, bad option, bad Superblock on/dev/vdb,
Missing codepage or helper program, or other error
In some cases useful info are found in Syslog-try
DMESG | Tail or so
But now the execution has been successfully formatted:
Mkfs-t Ext4/dev/vdb
Then execute the Mount command successfully, and finally summarize the entire hard drive mount process:
1. FDISK partition--2. MKFS formatted-->3. Mount Mount
This is the same as the procedure under Windows, but you can click on the mouse under Windows.
Linux Notes---HDD add