linux硬盘管理、格式化、硬盘自动挂载。 1) 在Linux下对SCSI的设备是以sd命名的,第一个ide设备是sda,第二个是sdb,依此类推。一般主板上有两个SCSI接口,一共可以安装四个SCSI设备。主SCSI上的两个设备分别对应sda和sdb,第二个SCSI口上的两个设备对应sdc和sdd。一般硬盘安装在主SCSI的主接口上,所以是sda或者sdb,光驱一般安装在第二个SCSI的主接口上,所以是sdc. (IDE接口设备是用hd命名的,第一个设备是hda,第二个是hdb。依此类推.) 2)分区是用设备名称加数字命名的。例如sda1代表sda这个硬盘设备上的第一个分区。 3)每个硬盘可以最多有四个主分区,一个扩展分区,扩展分区可以再分为多个逻辑分区。
如下为新加一个SCSI硬盘,分区为扩展分区,且只包含1个逻辑分区sdb1,然后格式化为ext3,挂载到/test,增加到/etc/fstab系统启动时自动挂:
fdisk /dev/sda
Command (m for help): n Command action e extended p primary partition (1-4)
输入:e
复制代码代码示例:
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(保存退出) 2、格式化硬盘 fdisk命令
fdisk -l
mkfs -t ext3 /dev/sda1 Writing superblocks and filesystem accounting information:直接回车。
3、挂载
mount /dev/sda1 /test
4、开机直接挂载
编辑/etc/fstab 文件
添加:/dev/sda1 /test ext3 defaults 1 1 重启则发选已经挂载上去。
如下为新加一个ide硬盘,分区为扩展分区,且只包含1个逻辑分区hdb1,然后格式化为ext3,最后挂载到/opt2:
[root]# fdisk /dev/hdb
Command (m for help): n Command (m for help): p
Disk /dev/hdb: 240 heads, 63 sectors, 2654 cylinders
Device Boot Start End Blocks Id System Command (m for help): w (Write and save partition table)
[root]# mkfs -t ext3 /dev/hdb1
Writing inode tables: done
This filesystem will be automatically checked every 34 mounts or (责任编辑:IT) |