web-dev-qa-db-ja.com

USBドライブをマウントできません

これはLinuxでの最初の日であり、USBドライブをマウントする方法がわかりません。差し込んで使用したfdisk -lで検索します。ただし、mount /dev/sda1sda1が存在しないことを示しています。

root@kali:/media# fdisk -l

Disk /dev/sda: 62.9 GB, 62932647936 bytes
255 heads, 63 sectors/track, 7651 cylinders, total 122915328 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x73876c0c

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048   122914815    61456384    b  W95 FAT32
root@kali:/media# mount /dev/sda1
mount: can't find /dev/sda1 in /etc/fstab or /etc/mtab
root@kali:/media# 

何が悪いのですか?

3
emfon

man mountのSYNOPSISセクションで説明されているように、複数の方法でマウントを呼び出すことができます。

 mount [-lhV]

 mount -a [-fFnrsvw] [-t vfstype] [-O optlist]

 mount [-fnrsvw] [-o option[,option]...]  device|dir

 mount [-fnrsvw] [-t vfstype] [-o options] device dir

説明セクションの同じmanページには、次のように記載されています。

 If only directory or device is given, for example:

        mount /dir

 then mount looks for a mountpoint and if not found then for a device in
 the /etc/fstab file

引数を1つだけ指定するため、mount/dev/sda1ファイルで/etc/fstabを検索し、そこにエントリが見つからず、文句を言います。

/etc/fstabにエントリを作成するか、以下を使用する必要があります。

 mount /dev/sda1 /media/sda1

/media/sda1が既存のディレクトリであり、mountがUSBドライブの形式を認識していると仮定します(-tを使用して指定しない場合)。

Kali Linuxは非常に使い勝手が悪く、プラグを差し込んだ後はドライブが自動的にマウントされないので、少し驚いています。

2
Anthon