ext2 타입의 파일시스템 마운트하기
작성자 정보
- 관리자 작성
- 작성일
컨텐츠 정보
- 2,440 조회
- 0 추천
- 목록
본문
ext2 타입의 파일시스템 마운트하기
이번에는 ext2리눅스 파일시스템을 마운트하는 예를 보도록 하겠습니다.
아래의 예는 ext2파일시스템으로 /dev/sdb2를 /ftp_data에 마운트 시킨 예입니다.
마운트한 이후에 mount라는 명령어로 마운트 결과를 확인해 보면 마지막행이 ext2로 마운트시킨 결과를 나타내고 있습니다.
이 행의 내용을 보시면 ext2로 /dev/sdb2가 /ftp_data에 마운트되어 있다는 것을 알 수가 있습니다.
[root@su249 ~]# mount -t ext2 /dev/sdb2 /ftp_data [root@su249 ~]# [root@su249 ~]# mount /dev/sda3 on / type ext3 (rw) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) /dev/sda1 on /boot type ext3 (rw) tmpfs on /dev/shm type tmpfs (rw) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw) fusectl on /sys/fs/fuse/connections type fusectl (rw) /dev/sdb1 on /backup type ext3 (rw) /dev/sdb2 on /ftp_data type ext2 (rw)
[root@su249 ~]# |
관련자료
-
이전
-
다음