零零社区|百姓的网上家园-互动交流平台!(0.0)=^_^=(00社区)

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz

实用技巧:Linux操作系统添加新硬盘方法

2013-4-5 16:34| 发布者: 123456000000| 查看: 15| 评论: 0

摘要: #fdisk /dev/sdb 进入fdisk模式: Command (m for help):p //查看新硬盘的分区 Command (m for help):n //创建新分区 Command action e extended //输入e为创建扩展分区 p PRimary partition (1-4) //输入p为创建主分 ...
 

#fdisk /dev/sdb

进入fdisk模式:

Command (m for help):p //查看新硬盘的分区

Command (m for help):n //创建新分区

Command action

e extended //输入e为创建扩展分区

p PRimary partition (1-4) //输入p为创建主分区,这里我们选择p

Partion number(1-4):1 //第一个扩展分区,按您需求能够最多分4个主分区

First Cylinder(1-1014,default 1): 1 //第一个主分区起始的磁盘块数

Last cylindet or +siza or +sizeM or +sizeK: +1024MB //能够是以MB为单位的数字或以

磁盘块数,输入+1024MB表示分区大小为1G。

Command (m for help): w

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

#mkfs -t ext3 -c /dev/sdb1 //假如有多个分区,则分区修改为sdb2这样

#mkdir www //创建/www目录,我们将把新的分区挂到www下

#mount /dev/sdb1 /www //将/dev/sdb1挂载到/www

# df //用df命令进行查看

Filesystem 1K-blocks Used Available Use% Mounted>/dev/sda2 3771316 1388956 2190788 39% /

/dev/sda1 101089 9463 86407 10% /boot

none 62988 0 62988 0% /dev/shm

/dev/sdb1 485906 8239 452580 2% /www //

看到了,这就是刚才新挂载的分区

#vi /etc/fstab

/dev/sdb1 /www ext3 defaults 1 2


路过

雷人

握手

鲜花

鸡蛋

相关阅读

发表评论

最新评论

相关分类


Archiver|手机版|小黑屋|00社区

GMT+8, 2023-1-31 10:50 , Processed in 0.050952 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部