如何为Linux系统VPS挂载数据盘到指定目录

如何为Linux系统VPS挂载数据盘到指定目录,第1张

开设VPS的时候就一个C区,默认不能挂载更多区。 管理员可以为每个VPS可以添加D盘,E盘等。 这个 *** 作只能管理员 *** 作,用户自己不允许。 VZCC中方法: 登陆到VZCC,点击相应的VPS,选择标签:“高级”,“管理卷” 点击“添加”按钮即可。 VZMC中方法: ...

硬盘没有特殊要求,只要bios里识别就行了。你是移动硬盘,更没有要求了。按以下步骤就行了。

1.把移动硬盘插入主机。执行fdisk -l,会看到硬盘信息。

[root@zt ~]# fdisk -l

Disk /dev/sda: 250.0 GB, 250059350016 bytes

255 heads, 63 sectors/track, 30401 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System

/dev/sda1 * 1255020482843+ c W95 FAT32 (LBA)

/dev/sda22551 30401 223713157+ f W95 Ext'd (LBA)

/dev/sda52551 1147471681998+ b W95 FAT32

/dev/sda6 11475 2039871681998+ 7 HPFS/NTFS

/dev/sda7 20399 3014078252583+ 83 Linux

/dev/sda8 30141 30401 2096451 82 Linux swap

Disk /dev/sdb: 4047 MB, 4047502848 bytes

4 heads, 32 sectors/track, 61759 cylinders

Units = cylinders of 128 * 512 = 65536 bytes

Device Boot Start End Blocks Id System

/dev/sdb1 * 1 61760 3952623+ b W95 FAT32

2.对指定的硬盘进行分区

[root@localhost beinan]# fdisk /dev/sda

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 注:l是列出分区类型,以供我们设置相应分区的类型;

m print this menu 注:m 是列出帮助信息;

n add a new partition 注:添加一个分区;

o create a new empty DOS partition table

p print the partition table 注:p列出分区表

q quit without saving changes 注:不保存退出;

s create a new empty Sun disklabel

t change a partition's system id 注:t 改变分区类型;

u change display/entry units

v verify the partition table

w write table to disk and exit 注:把分区表写入硬盘并退出;

x extra functionality (experts only) 注:扩展应用,专家功能;

3.选n新建一个分区

Command (m for help): n 注:增加一个分区;

Command action

l logical (5 or over) 注:增加逻辑分区,分区编号要大于5;为什么要大于5,因为已经有sda5了;

p primary partition (1-4) 注:增加一个主分区;编号从 1-4 ;但sda1 和sda2都被占用,所以只能从3开始;

p

Partition number (1-4): 3

First cylinder (51-125, default 51): 注:这个就是分区的Start 值;这里最好直接按回车,如果您输入了一个非默认的数字,会造成空间浪费;

Using default value 51

Last cylinder or +size or +sizeM or +sizeK (51-125, default 125): +200M 注:这个是定义分区大小的,+200M 就是大小为200M ;当然您也可以根据p提示的单位cylinder的大小来算,然后来指定 End的数值。回头看看是怎么算的;还是用+200M这个办法来添加,这样能直观一点。如果您想添加一个10G左右大小的分区,请输入 +10000M ;

Command (m for help):

4.分好了,保存分区。其中 q是 不保存退出,w是保存退出

Command (m for help): w

5.对分区进行格式化,以及挂载到相关目录

[root@localhost beinan]# mkfs.ext3 /dev/sda6

[root@localhost beinan]# mount /dev/sda6 /home/mydata

6.把挂载加入/etc/rc.local启动或编辑/etc/fstab文件以使硬盘开机自动挂载。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11368276.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-15
下一篇 2023-05-15

发表评论

登录后才能评论

评论列表(0条)

保存