`

Centos 增加新硬盘

 
阅读更多
  • 环境介绍
  • 增加步骤

一、环境介绍

 

原主机有500G硬盘,现在新增一颗2T硬盘。

 

 

二、增加步骤

 

  1. 查看硬盘
  2. 新建分区
  3. 格式化
  4. 挂载使用
  5. 设置开机自动挂载 

 

1.查看硬盘

# fdisk -l

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xba24d924

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          26      204800   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              26         287     2097152   82  Linux swap / Solaris
Partition 2 does not end on cylinder boundary.
/dev/sda3             287       60802   486083584   83  Linux

Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x97d16691

   Device Boot      Start         End      Blocks   Id  System

可见一颗sdb硬盘2T存在系统中,但未被格式化。

 

 

2.新建分区

使用fdisk命令对新增的sdb硬盘进行操作

# fdisk /dev/sdb

The device presents a logical sector size that is smaller than
the physical sector size. Aligning to a physical sector (or optimal
I/O) size boundary is recommended, or performance may be impacted.

WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

Command (m for help): p #查看此颗硬盘分区状况

Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x97d16691

   Device Boot      Start         End      Blocks   Id  System

Command (m for help): n #新建分区
Command action
   e   extended
   p   primary partition (1-4)
p #新建原始分区
Partition number (1-4): 1 #分区编号
First cylinder (1-243201, default 1): 1#从第一个扇区开始
Last cylinder, +cylinders or +size{K,M,G} (1-243201, default 243201): #直接回车使用所有空间
Using default value 243201

Command (m for help): p#再次查看分区情况
Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x97d16691

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1      243201  1953512001   83  Linux
Partition 1 does not start on physical sector boundary.

Command (m for help): w#保存分区
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.

 

 

再次使用fdisk命令查看服务器硬盘情况

# fdisk -l

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xba24d924

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *           1          26      204800   83  Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2              26         287     2097152   82  Linux swap / Solaris
Partition 2 does not end on cylinder boundary.
/dev/sda3             287       60802   486083584   83  Linux

Disk /dev/sdb: 2000.4 GB, 2000398934016 bytes
255 heads, 63 sectors/track, 243201 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x97d16691

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1      243201  1953512001   83  Linux
Partition 1 does not start on physical sector boundary.

此时可以看见新建的sdb1分区,还需要格式化才能使用。

 

 

3.格式化

使用mkfs命令将新增硬盘格式化为ext3格式

# mkfs.ext3 /dev/sdb1
mke2fs 1.41.12 (17-May-2010)
/dev/sdb1 alignment is offset by 512 bytes.
This may result in very poor performance, (re)-partitioning suggested.
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=1 blocks, Stripe width=0 blocks
122101760 inodes, 488378000 blocks
24418900 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=0
14905 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
        32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
        4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
        102400000, 214990848

Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 20 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.

 

 

4.挂载使用

# mkdir /eda_bak #建立新挂载点
# mount /dev/sdb1 /eda_bak #挂载使用此硬盘
# 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)
tmpfs on /dev/shm type tmpfs (rw,rootcontext="system_u:object_r:tmpfs_t:s0")
/dev/sda1 on /boot type ext3 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
gvfs-fuse-daemon on /root/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev)
/dev/sdb1 on /eda_bak type ext3 (rw)

# df -h #查看使用空间
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda3             457G  3.0G  431G   1% /
tmpfs                 995M  260K  994M   1% /dev/shm
/dev/sda1             194M   26M  158M  15% /boot
/dev/sdb1             1.8T  196M  1.7T   1% /eda_bak

 

 

5.设置开机自动挂载

# vi /etc/fstab
增加
/dev/sdb1               /eda_bak                ext3    defaults        1 2

 

 

至此、完成。

分享到:
评论

相关推荐

    CentOS_6.0硬盘安装.doc

    【CentOS 6.0 硬盘安装详解】 在没有光驱、U盘或移动硬盘,且主板不支持U盘启动的情况下,要在装有Windows XP的电脑上安装CentOS 6.0,可以通过硬盘安装的方式实现。以下是详细的步骤: **必备工具:** 1. **操作...

    centos7系统挂载新硬盘,扩充根目录磁盘空间.docx

    CentOS 7 系统挂载新硬盘,扩充根目录磁盘空间 在本文中,我们将详细介绍如何在 CentOS 7 系统中挂载新硬盘,扩充根目录磁盘空间的步骤。这个过程涉及到多个 Linux 命令和概念,包括 fdisk、lvs、pvcreate、...

    CENTOS5.5软RAID1配置及更换硬盘

    接下来,我们需要将新硬盘添加到软 RAID1 设备中,并重新生成 mdadm.conf 文件。最后,我们需要重新安装 GRUB,以便系统可以从新硬盘启动。 软 RAID1 的优点 软 RAID1 设备可以提供高可用性和高安全性,它可以保护...

    Centos7挂载硬盘详细说明,不用重启

    如果新添加的硬盘在`fdisk -l`命令下没有显示,可以执行`echo "- - -" > /sys/class/scsi_host/hostX/scan`来刷新磁盘列表,其中X是前面查询到的主机编号。如果有多条记录,需要对每个主机编号执行此命令。 3. **...

    虚拟机中CentOS-7.9的硬盘空间扩容(EXSI).doc

    在虚拟机中 CentOS-7.9 的硬盘空间扩容...总结来说,本文指导您如何在 VMware ESXi 中扩容 CentOS-7.9 虚拟机的硬盘空间,包括增加虚机容量、创建新的分区、格式化新分区、LVM 实现卷扩容、文件系统的扩容五个步骤。

    CentOS7虚拟机添加、挂载硬盘详细过程

    **一、添加硬盘** 1. 在VMware环境中,我们需要为CentOS 7虚拟机添加一个新的硬盘。这可以通过左侧窗口的操作完成,选择虚拟机设置,然后添加硬件,选择硬盘,并设置所需的容量,如本例中的20GB。 **二、识别新硬盘...

    centos7.3多块硬盘LVM分区

    在CentOS 7.3中,如果系统有多个硬盘,使用LVM分区可以更好地管理和利用这些硬盘空间。以下是详细步骤: 1. **查看硬盘分区情况**: 使用`fdisk -l`命令,可以列出系统中所有硬盘及其分区的信息,包括设备名(如`...

    centos硬盘安装

    CentOS 硬盘安装 在本节中,我们将详细介绍 CentOS 硬盘安装的过程,该过程将指导您如何从头开始安装 CentOS 操作系统,包括准备工作、安装 Grub4DOS、将 CentOS-5.5-i386-bin-DVD.iso 文件夹拷贝到 FAT32 分区、...

    CentOs如何挂载硬盘.zip

    本文将详细解释如何在CentOS系统中挂载硬盘,包括硬件识别、分区、格式化以及挂载等步骤。 1. **硬件识别** 首先,我们需要确认新硬盘是否已经被系统识别。可以使用`fdisk -l`命令查看所有连接的磁盘。这个命令会...

    Windows下CentOS的硬盘安装双系统

    ### Windows 下 CentOS 的硬盘安装双系统详解 #### 一、准备工作与环境要求 在开始之前,确保具备以下条件: 1. **操作系统环境**:当前正在使用的 Windows 操作系统。 2. **CentOS 安装文件**:下载 CentOS 的 ...

    CentOS在不重启的情况下为其虚拟机添加新硬盘的教程.docx

    首先,在你的虚拟化平台(如 ESXi 或 vCenter)中,你需要为 CentOS 虚拟机增加一个新的硬盘。这通常在管理界面操作,选择相应的虚拟机,然后在硬件配置中添加新的磁盘,比如一个 20GB 的硬盘。 接下来,登录到 ...

    CentOS7挂载硬盘攻略

    本文将详细介绍如何在 CentOS 7 系统中挂载新硬盘,并确保其在系统启动时能够自动挂载。 #### 二、准备工作 在开始挂载硬盘之前,我们需要做一些准备工作,包括识别硬盘、创建分区以及格式化分区。 ##### 2.1 识别...

    CentOS6.2硬盘安装指南

    ### CentOS6.2硬盘安装全解析 #### 一、下载CentOS6.2镜像文件 在准备硬盘安装CentOS6.2之前,首要任务是从官方或其他可信赖的渠道下载正确的ISO镜像文件。根据需求,可以选择不同类型的镜像: 1. **CentOS-6.2-...

    Centos7挂载XFS格式硬盘.pdf

    对于新添加的硬盘(如/dev/sdb),需要使用`sudo fdisk /dev/sdb`进入交互模式。在这里,你可以通过输入`n`创建新分区,通常选择默认设置即可,然后用`w`保存更改。 3. **格式化为XFS**: 使用`mkfs.xfs /dev/sdb...

    linux CentOS 下添加新硬盘并分区格式化

    Linux磁带备份,所以我先添加一块硬盘,并相应的建立分区,格式化,然后挂载使用。下面看我操作的步骤:  1.先用Fdisk -l 来查看当前状态下磁盘情况 [root@aaaa ~]# fdisk -l Disk /dev/sda: 300.0 GB, ...

    硬盘安装centos 组建win和centos双系统

    请注意,尽管此处介绍的是CentOS 5.2的安装方法,但基本步骤适用于较新版本的CentOS及其他Linux发行版。安装过程中务必谨慎操作,确保数据安全。同时,由于CentOS 5.2已过时,建议使用更新版本以获取更好的安全性和...

    CentOS5不重启机器添加SCSI硬盘

    在CentOS 5系统中,添加新的SCSI硬盘通常需要通过系统管理工具或命令行进行操作,以确保系统能识别并正确挂载新硬盘。 `rescan-scsi-bus.sh`是一个实用的Linux脚本,主要用于重新扫描SCSI总线,以检测任何新的硬件...

    Linux挂载exfat 硬盘 ,CentOS 7.4 安装 exfat 驱动 ,亲测可行

    添加以下行到文件中,替换 `/dev/sdb1` 为你的硬盘设备文件名: ``` UUID=your-exfat-uuid /mnt/myexfat exfat defaults 0 0 ``` 首先,你需要使用 `blkid` 命令找到exFAT分区的UUID: ``` sudo blkid ``` 然后将 `...

    扩大VMware虚拟机中CentOS7的硬盘空间过程记录1

    - 使用`vgextend vg_centos7 /dev/sda3`命令将新创建的物理卷添加到现有的逻辑卷组中。 5. **扩展逻辑卷大小**: - 使用`lvextend`命令来扩展逻辑卷的大小,例如`lvextend -L +70G /dev/vg_centos7/lv_root`。...

    使用VMware为centos添加硬盘

    以下是在VMware中为CentOS添加硬盘的详细步骤和注意事项: 1. 编辑虚拟机设置:首先,在VMware Workstation中打开虚拟机的设置窗口。在“硬件”选项卡中,点击“添加”按钮,然后从列表中选择“硬盘”。 2. 选择...

Global site tag (gtag.js) - Google Analytics