[미운오리]님이
남기신 글:
>mount -t vfat /dev/floopy /mnt/floppy 엔터시
>mount:special device /dev/floppy does not exist 라고나옵니다
>
>mount -v msdos /dev/floppy /mnt/floppy 엔터시
>vfs:con't find an ext2 filesystem on dev fd(2.0)
>mount:wrong fs type,bad options bad,super block on /dev/fd0
>or too many mounted filesystem
>
>이란 글씨가 나오면서
>
>mount 가 안되는것같읍니다
>floppy 는 이상이없는것같읍니다
>한번더 도와구세요
========================================
아...
또 제가 실수 했군요..
/dev/floppy가 아니라 /dev/fd0 입니다.
그리고 커널에서 vfat(FAT32)을 지원하도록
컴파일되어 있어야 합니다.
/etc/fstab-------------
...
/dev/fd0 /mnt/floppy ext2 noauto,owner 0 0
...
----------------------
와 같이 되어 있으면 정상입니다.
기본적으로 ext2 파일시스템을 읽도록 되어 있지요...
>mount:wrong fs type,bad options bad,super block on /dev/fd0
이건 프로피 디스크에 문제가 있는것 같군요...
마운트를 하지 않는 상태에서 다음과 같이 ext2 파일
시스템으로
우선 마운트해보시길
바랍니다.
# fdformat /dev/fd0
Double-sided, 80 tracks, 18 sec/track. Total capacity 1440 kB.
Formatting ... done
Verifying ... done
#
# mount /dev/fd0 /mnt/floppy
mount: you must specify the filesystem type
#
# cd /mnt/floppy
# l
total 0
# mkdir kkk
# l
total 1
drwxr-xr-x 2 root root 1024 Apr 14 22:27 kkk/
#
|