Linux下挂载新硬盘方法

Linux的硬盘识别:
一般使用”fdisk -l”命令可以列出系统中当前连接的硬盘设备和分区信息.
新硬盘没有分区信息,则只显示硬盘大小信息.

查看硬盘信息

1
fdisk -l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Disk /dev/xvdb: 1073.7 GB, 1073741824000 bytes, 2097152000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/xvda: 107.4 GB, 107374182400 bytes, 209715200 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x00034d18

Device Boot Start End Blocks Id System
/dev/xvda1 * 2048 1026047 512000 83 Linux
/dev/xvda2 1026048 205520895 102247424 83 Linux
/dev/xvda3 205520896 209715199 2097152 82 Linux swap / Solaris

进入磁盘,对磁盘进行分区

1
fdisk /dev/xvdb
1
2
3
4
5
6
7
8
9
10
11

Command (m for help):n
Command action
   e extended //输入e为创建扩展分区
   p primary partition (1-4) //输入p为创建逻辑分区
p
Partion number(1-4):1 //在这里输入l,就进入划分逻辑分区阶段了;
First cylinder (51-125, default 51): //注:这个就是分区的Start 值;这里最好直接按回车,如果您输入了一个非默认的数字,会造成空间浪费;
Using default value 51
Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:这个是定义分区大小的,+200M 就是大小为200M ;当然您也可以根据p提示的单位cylinder的大小来算,然后来指定 End的数值。回头看看是怎么算的;还是用+200M这个办法来添加,这样能直观一点。如果您想添加一个10G左右大小的分区,请输入 +10000M ;
Command (m for help): w //最后输入w回车保存。

查看硬盘空间

1
#fdisk -l

格式化分区

1
2
mkfs.xfs /dev/xvdb1
对硬盘进行格式化

创建挂载目录/data

1
mkdir /data

挂载分区

1
mount /dev/xvdb1 /data

查看硬盘大小以及挂载分区

1
df -h

配置开机自动挂载

因为mount挂载在重启服务器后会失效,所以需要将分区信息写到/etc/fstab文件中让它永久挂载:

1
2
vim /etc/fstab
加入/dev/xvdb1(磁盘分区) /data(挂载目录) xfs(文件格式)defaults 0 0

完成

分享到