# mount -rw -t ext3 /dev/sda /home
-rw : 해당 드라이브에 read, write 가능하다.
-t ext3 : 해당 드라이브의 파일 시스템이 ext3이다.
/dev/sda/ : 마운트할 드라이브 공간
/home : 실제로 할당할 디렉토리
# mount -v
/dev/sda on /home type ext3 (rw)
라고 나오면 정상임
'Server-Side > Linux' 카테고리의 다른 글
[rrdtool] how to install rrdtool on CentOS 5.X 64bit (0) | 2010.12.18 |
---|---|
[CentOS] Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) (0) | 2010.12.01 |
how to check memory usage of memcached (0) | 2010.11.22 |
[CentOS]call to undefined function mysql_connect (0) | 2010.10.15 |
[CentOS] how to install memcached in 64bit centos (0) | 2010.10.11 |