Linux를 사용한 첫날인데 USB 드라이브를 마운트하는 방법을 모르겠습니다. 연결해서 fdisk -l
위치를 잡아서 사용했습니다. 그런데 입력해보니 mount /dev/sda1
sda1이 존재하지 않는다고 뜹니다.
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#
내가 뭘 잘못했나요?
답변1
man mount
설명의 요약 섹션 과 같이 다양한 방법으로 마운트를 호출할 수 있습니다 .
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
하나의 인수만 제공하므로 file 에서 검색하고 mount
해당 항목을 찾지 못하고 불평합니다./dev/sda1
/etc/fstab
다음 항목에 입력 /etc/fstab
하거나 사용해야 합니다.
mount /dev/sda1 /media/sda1
/media/sda1
기존 디렉토리가 있고 mount
USB 드라이브의 형식을 인식한다고 가정합니다 ( 를 사용하여 지정하지 않은 경우 -t
).
Kali Linux가 너무 불친절해서 일단 드라이브를 연결하면 자동으로 드라이브를 마운트하지 않는다는 사실에 조금 놀랐습니다.