1创建分区
fdisk /dev/hdc
Command (m for help): n
Command action
e extended
p primary partition (1-4)
输入:P
Partition number (1-4): 1
First cylinder (1-9729, default 1):回车
Last cylinder or +size or +sizeM or +sizeK (1-9729, default 9729):回车
Command (m for help):w(保存退出)
创建好分区后却找不到?或者,创建时:
WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.
可能需要使用partprobe命令重新读取分区表。
# partprobe
这个命令执行完毕之后不会输出任何返回信息
2格式化
fdisk -l
mkfs -t ext3 /dev/hdc4
Writing superblocks and filesystem accounting information:直接回车。
3挂载
mount /dev/hdc4 /oracle
4开机直接挂载
编辑/etc/fstab 文件
添加:/dev/hdc4 /oracle ext3 defaults 1 1
阅读(12306) | 评论(1) | 转发(0) |