Centos 装载硬盘

1.VMware虚拟机(实体机忽略本部分)

首先在vm主界面左侧右击虚拟机打开设置

在硬件处点击添加

选择硬盘,下一步

随意选择(一般使用推荐的SCSI)

因为是学习用,所以一般选创建新虚拟硬盘

大小自定,通常分为多个文件

起名随意,点击完成,然后重启虚拟机即可。


2.装载硬盘

首先使用 fdisk -l 命令查看新连接的硬盘:

root@localhost Desktop]# fdisk -l

通常此条即为新硬盘的位置==》》》Disk /dev/sdb: 4294 MB, 4294967296 bytes(作者使用虚拟机,实体未经测试)

再输入 fdisk /dev/sdb 进入选项

输入m查看指令表

---------------------------------------------------------------------

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)

---------------------------------------------------------------------

或者直接输入 n 对新硬盘添加新分区:

Command (m for help): n

Command action

  e  extended

  p  primary partition (1-4)

默认选 p

Partition number (1-4): 1

First cylinder (1-522, default 1): p

First cylinder (1-522, default 1): 1

Last cylinder, +cylinders or +size{K,M,G} (1-522, default 522):

Using default value 522

然后输入 w 写入

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.


3.快速格式化,装载

最后用mkfs.ext4+空格+之前看到的硬盘位置(我的是/dev/sdb)快速格式化,

“无论如何也要继续? (y,n) y”

出现以下即格式化完成:

--------------------------------------------------------------------------------------

正在写入inode表: 完成

Creating journal (32768 blocks): 完成

Writing superblocks and filesystem accounting information: 完成

This filesystem will be automatically checked every 21 mounts or

180 days, whichever comes first.  Use tune2fs -c or -i to override.

---------------------------------------------------------------------------------------

然后用 mkdir+空格+文件夹名字 创建要装载到的文件夹(例:mkdir values)

用mount+空格+硬盘位置+空格+刚创建的文件夹位置(例:mount /dev/sdb1 values)即装载完成

cd /values

ls 即可查看刚刚装载的新硬盘

或者用 df -h

-----------------------------------------------------------------------

Filesystem      Size  Used Avail Use% Mounted on

/dev/sdb1      4.0G  72M  3.7G  2% /root/values

你可能感兴趣的:(Centos 装载硬盘)