linux 加载外置磁盘

加载外置硬盘

[root@CS140618447003 ~]# fdisk -l

 

Disk /dev/hda: 21.4 GB, 21474836480 bytes

224 heads, 56 sectors/track, 3343 cylinders

Units = cylinders of 12544 * 512 = 6422528 bytes

 

   Device Boot      Start         End      Blocks   Id  System

/dev/hda1   *           1        3343    20967268   83  Linux

 

Disk /dev/xvdb: 289.9 GB, 289910292480 bytes

224 heads, 56 sectors/track, 45139 cylinders

Units = cylinders of 12544 * 512 = 6422528 bytes

 

    Device Boot      Start         End      Blocks   Id  System

[root@CS140618447003 ~]#

 

root帐号登录云服务器 运行命令 “fdisk /dev/xvdb”

根据提示,依次输入 “n”, “p”, “1” 按两次回车 输入“w”, 当提示Syncing disks.时,表示已成功完成分区 

输入“mkfs.ext3 /dev/xvdb1” 格式化分区 

输入“mkdir /alidata”建立挂载目录 

使用“mount /dev/xvdb1 /alidata ”命令挂载分区后即可使用

vi /etc/fstab 最后一行写入添加 /dev/xvdb1 /alidata ext3 defaults 0 0 esc 输入:wq 保存退出

 

这样启动系统会看到外置硬盘了!

 

[root@iZ23netje4yZ ~]# df

Filesystem           1K-blocks      Used Available Use% Mounted on

/dev/hda1             20802016   1673532  19128484   9% /

tmpfs                  1029152         0   1029152   0% /dev/shm

/dev/xvdb1           103209988    192252  97774976   1% /alidata

你可能感兴趣的:(LINUX,系统运维和工具)