コンパクトフラッシュのマウント
コンパクトフラッシュのバックアップ作成したいです。
旧CFはCent OSに新CFはUSB+リーダーでVineにつないでます。
新CFをfdiskで旧CFと同じようパーティションに切りました、フォーマットもしました。
fdisk -l でそれぞれのパーティションは見えてます。
しかし、マウントポイントを作り、それぞれのマウントしようとしてもマウントできません。
/sbin/fdisk -l /dev/sdc1
とすると、
Disk /dev/sdc1: 7999 MB, 7999884288 bytes
247 heads, 62 sectors/track, 1020 cylinders
Units = シリンダ数 of 15314 * 512 = 7840768 bytes
デバイス Boot Start End Blocks Id System
/dev/sdc1p1 1 13 99510 83 Linux
/dev/sdc1p2 14 996 7526831 83 Linux
と出ます。
mount /dev/sdc1p1 /hoge1 nfs
としましたが、
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
となり、うまくマウントできません。
/devを確認すると、sdc1はあるのですが、sdc1p1がありません。
どうしたら、それぞれのパーティションをマウントできるでしょうか。
お礼
/dev/fd0 や/mnt/floppy を打ち込むと 「スーパーブロックを読めません」 「/etc/fstabの8行目は不正です」 「/etc/fstabや/etc/mtab内に /mnt/floppyを見つけられません」 などのメッセージが出てきます。 何とかして読めるようになるのでしょうか。