创建模式 | 云硬盘容量 | 后续操作 |
直接创建 | 云硬盘容量 < 2TB | |
| 云硬盘容量 ≥ 2TB | |
从快照创建 | 云硬盘容量 = 快照容量 | 挂载至 Windows 云服务器:登录实例后,通过服务器管理 > 存储 >磁盘管理,联机后即可使用。 挂载至 Linux 云服务器:登录实例后,执行 mount <磁盘分区> <挂载点> 命令,例如mount /dev/vdb /mnt 后即可使用。 |
| 快照容量 < 云硬盘容量 ≤ 2TB 或 2TB < 快照容量 < 云硬盘容量 | 挂载至 Windows 云服务器:扩展分区及文件系统(Windows) 挂载至 Linux 云服务器:扩展分区及文件系统(Linux) |
| 快照容量 ≤ 2TB < 云硬盘容量 | 若快照中使用 MBR 分区形式: 若快照中使用 GPT 分区形式: 挂载至 Windows 云服务器:扩展分区及文件系统(Windows) 挂载至 Linux 云服务器:扩展分区及文件系统(Linux) |
umount
(Linux)或脱机(Windows)操作,否则可能会导致该云服务器再次挂载弹性云硬盘时无法识别。CVM 操作系统类型 | 版本 |
CentOS | 5.11 64位 |
| 5.11 32位 |
| 5.8 64位 |
| 5.8 32位 |
Debian | 6.0.3 32位 |
Ubuntu | 10.04 64位 |
| 10.04 32位 |
openSUSE | 12.3 64位 |
| 12.3 32位 |
modprobe acpiphp
acpiphp
模块设置成开机自动加载:acpiphp.modules
文件。vi /etc/sysconfig/modules/acpiphp.modules
#!/bin/bashmodprobe acpiphp >& /dev/null
chmod a+x /etc/sysconfig/modules/acpiphp.modules
vi /etc/modules
acpiphp
vi /etc/sysconfig/kernel
MODULES_LOADED_ON_BOOT="acpiphp"
ntfs
或 fat32
格式。onlineAll
。diskpart
san
/etc/rc.local
文件中添加以下命令,将数据盘挂载点写入文件中。mkdir -p <mount-point>mount <device-id> <mount-point>
<mount-point>
需设置为文件系统的挂载点,例如 /mydata
。<device-id>
需设置为实际文件分区位置。例如,无分区有文件系统时填写 /dev/vdb
,有分区有文件系统时填写 /dev/vdb1
。
本页内容是否解决了您的问题?