1. 显示当前主机目录

命令df -h

[root@localhost ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root26G  2.9G 22G 13% / tmpfs 1.9G 0 1.9G 0% /dev/shm /dev/xvda1 485M 32M 428M 7% /boot

2. 磁盘分区

2.1 显示机器当前的磁盘:

命令fdisk -l

[root@localhost ~]# fdisk -l /dev/xvdb Disk /dev/xvdb: 53.7 GB, 53687091200 bytes
255 heads, 63 sectors/track, 6527 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: 0x00000000

注:这里知道新增磁盘为/dev/xvdb,就直接指定了,缩减显示篇幅。

2.2 fdisk 分区 /dev/xvdb:

fdisk /dev/xvdb 根据帮助提示分区,这里是把/dev/xvdb分成一个区.

[root@localhost ~]# fdisk /dev/xvdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x0adfd119.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)WARNING: DOS-compatible mode is deprecated. It's strongly recommended toswitch off the mode (command 'c') and change display units tosectors (command 'u').Command (m for help): m Command action a toggle a bootable flag b edit bsd disklabel c toggle the dos compatibility flag d delete a partition l list known partition types m print this menu n add a new partition o create a new empty DOS partition table p print the partition table q quit without saving changes s create a new empty Sun disklabel t change a partition's system id u change display/entry units v verify the partition table w write table to disk and exit x extra functionality (experts only) Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-6527, default 1): Using default value 1 Last cylinder, +cylinders or +size{K,M,G} (1-6527, default 6527): Using default value 6527 Command (m for help): p Disk /dev/xvdb: 53.7 GB, 53687091200 bytes 255 heads, 63 sectors/track, 6527 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: 0x0adfd119 Device Boot Start End Blocks Id System /dev/xvdb1 1 6527 52428096 83 Linux Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.

3. 磁盘格式化

命令mkfs.ext4 /dev/xvdb1分区为ext4的文件系统格式。

[root@localhost ~]# mkfs.ext4 /dev/xvdb1
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux Block size=4096 (log=2) Fragment size=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks 3276800 inodes, 13107024 blocks 655351 blocks (5.00%) reserved for the super user First data block=0 Maximum filesystem blocks=4294967296 400 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 Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem accounting information: done This filesystem will be automatically checked every 28 mounts or 180 days, whichever comes first. Use tune2fs -c or -i to override.

4.挂载目录

4.1 手工挂载

新建目录/u01mkdir -p /u01
挂载设备到目录/u01mount /dev/xvdb1 /u01

[root@localhost ~]# mkdir -p /u01
[root@localhost ~]# mount /dev/xvdb1 /u01

4.2 开机自动挂载

修改/etc/fstab配置文件,末尾添加一行:

/dev/xvdb1              /u01                    ext4    defaults        0 0

显示当前目录,已成功挂载/u01目录:

[root@localhost ~]# df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup-lv_root26G  2.9G 22G 13% / tmpfs 1.9G 0 1.9G 0% /dev/shm /dev/xvda1 485M 32M 428M 7% /boot /dev/xvdb1 50G 180M 47G 1% /u01

参考文章:http://www.cnblogs.com/jyzhao/p/4778657.html

转载于:https://www.cnblogs.com/weifeng1463/p/7807901.html

Linux 磁盘分区、格式化、目录挂载相关推荐

  1. linux磁盘分区格式化与挂载

    磁盘的可细分为扇区(Sector)和圆柱(Cylinder) 扇区大小为512bytes,磁盘的0扇区,不属于任何分区. 0扇区主要记录了两个记录: MBR:主要启动记录,占用446bytes,可以安 ...

  2. 手把手教你Linux磁盘分区与文件挂载

    欢迎关注博主 Mindtechnist 或加入[Linux C/C++/Python社区]一起探讨和分享Linux C/C++/Python/Shell编程.机器人技术.机器学习.机器视觉.嵌入式AI ...

  3. linux 磁盘分区,格式化,挂载

    在操作系统中,磁盘管理属于设备管理的范畴,一块硬盘安装到主机之后称为裸设备,若要能够linux系统中使用必须对其进行如下步骤: 分区 --> 格式化 --> 挂载 1. linux 系统中 ...

  4. linux分区格式8e,linux磁盘分区格式化

    乱世风云剑之磁盘分区格式化 在进行磁盘分区格式化之前,先介绍一些基础常识,虽说是常识,但隔行如隔山,外行人看了,不一定懂.不扯了,步入正题. 磁盘分区格式化是相对于硬盘而言的,硬盘属于随机存储设备,在 ...

  5. Linux磁盘分区/格式化/挂载目录

    分区及挂载目录 以CentOS7.2为例,一般我们服务端应用部署前需要确认部署机的磁盘空间及挂载目录.操作如下: 如上图,如果操作系统是新装的,未挂盘的话需要先挂载盘.操作如下: fdisk -l # ...

  6. Linux虚拟机新增磁盘分区格式化和挂载

    Virtualbox虚拟机增加额外磁盘 Author:onceday date:2022年8月8日 一套简单解决Linux虚拟机磁盘不够的方案. 安装虚拟机和Ubuntu 以下参阅其他文档: 使用vi ...

  7. linux格式化分区进程,linux磁盘分区格式化

    下面介绍一下系统主要的目录用途: /bin /sbin  :os自身运行要用到的程序 /usr/{bin,sbin}:os管理工具 /usr/local/{bin,sbin}:第三方程序可执行程序 库 ...

  8. linux磁盘管fdisk,Linux 磁盘分区工具和挂载,fdisk管理分区详解

    MBR分区 MBR概述:全称为Master Boot Record,即硬盘的主引导记录. 主引导记录(MBR,Master Boot Record)是位于磁盘最前边的一段引导(Loader)代码.它负 ...

  9. Linux 磁盘分区及文件系统挂载

    1.fdisk命令 在Linux系统中,fdisk命令非常强大,能用于观察硬盘设备的使用情况,还能用于对硬盘进行分区,它采用了传统的问答式界面,使用比较方便. 1)语法 fdisk命令的语法如下: f ...

  10. linux磁盘是vda,linux磁盘分区格式化-fdisk命令工具

    本文主要讲述使用fdisk工具对磁盘进行分区和格式化的方法 首先要明确分区是针对磁盘进行的操做,磁盘分区会创建分区表,类似vda,sda的是磁盘,vda1,sda1的是分区 1.查看磁盘分区状态 1. ...

最新文章

  1. NERDTree这个插件的用法简介
  2. android中button点击频率控制
  3. WeightedRandomSampler 理解了吧
  4. 删除无序单链表中值重复出现的节点
  5. for update引发的血案
  6. 怎样使用fastJson发送数组格式的Json数据
  7. 【Python】可视化分类型变量,我一般使用这6种图形。
  8. python美化输出模块_Python 格式化输出 ( 颜色 )
  9. 解决安装XMind出现Invalid Configuration Location The configuration area at ‘C:\Users\Administrator\Applicat
  10. SegmentFault 创始人祁宁对话 C# 之父 Anders Hejlsberg
  11. 程序员面试金典 - 面试题 05.06. 整数转换(位运算)
  12. android点击运行后无法显示设备,Android仿真器除了黑屏外什么都不显示,adb设备显示“设备离线”...
  13. 微软应用商店_重新安装微软应用商店,并解决无法联网的问题
  14. ElasticSearch SQL 日期函数
  15. 服务器游戏协议,游戏服务器tcp协议
  16. 基于SSM房屋租赁管理系统
  17. lambda表达式最实用的例子,最实用的案例
  18. php 日期转换为大写
  19. a豆:在讲一个珍重每一个人的故事
  20. java面试教程视频

热门文章

  1. [实战]MVC5+EF6+MySql企业网盘实战(15)——逻辑重构2
  2. 如何读取jar包外的properties文件和log4j.properties
  3. 对称加密和不对称加密原理
  4. PHP的学习--解析URL
  5. 刚发现的,免费领取1024G云空间
  6. MVC新手教程三:Entity Framework 4.0 来实现MVC的增删改查功能,10分钟搞定
  7. market layout
  8. How to publish in an open world?
  9. 卡罗林斯卡学院(Karolinska Institute)
  10. 基于长度特征的三文鱼好sea bass的区分,sesbass 比三文鱼长