


This article introduces how ECS should impose restrictions on imported images to ensure the availability of imported images, and focuses on the specific steps.
Must-read when importing images
To ensure the availability of imported images and improve the efficiency of image import, you need to consider the restrictions imposed by ECS on imported images.
Depending on different operating systems, such as Windows type images and Linux type images, the precautions for importing images are different.
Windows type image
Important suggestions
Before importing the image of Windows operating system, please Confirm file system integrity.
Please check the remaining space of the system disk to ensure that the system disk is not full.
Close the firewall and allow RDP 3389 port.
The login password for the administrator account must be 8-30 characters and contain uppercase or lowercase letters, numbers, and special symbols. The special characters can be ( ) ` ~ ! @ # $ % ^ & * - = | { } [ ] : ; ' , . ? /
Based on the virtual disk size of the image instead of using Capacity configures the imported system disk size. The system disk capacity range supports 40GiB−500GiB.
Do not modify critical system files.
Support items
Supports multi-partition system disks.
Supports NTFS file system and MBR partition.
Support RAW, qcow2 and VHD format images.
Note
Before importing images in other formats, please convert the image format before importing. It is recommended that you convert to VHD format with smaller transmission capacity.
ECS supports importing images containing the following operating system versions:
Microsoft Windows Server 2016
Microsoft Windows Server 2012 R2 (Standard Edition)
Microsoft Windows Server 2012 (Standard Edition and Datacenter Edition)
Microsoft Windows Server 2008 R2 (Standard Edition, Datacenter Edition, and Enterprise Edition)
Microsoft Windows Server 2008 (Standard Edition, Datacenter Edition, and Enterprise)
Windows Server 2003 (Standard, Datacenter, and Enterprise) with Service Pack 1 (SP1) or later
Not supported item
It is not supported to install qemu-ga in the image, otherwise some services required by ECS will be unavailable.
Windows XP, Professional and Enterprise editions of Windows 7, Windows 8 and Windows 10 are not supported.
Linux type image
Important suggestions
Before importing the image of the Linux operating system, please Confirm file system integrity.
Please check the remaining space of the system disk to ensure that the system disk is not full.
Close the firewall and allow TCP port 22.
Install the virtualization platform XEN or KVM driver.
It is recommended to install cloud-init to ensure that the hostname, NTP source and yum source can be successfully configured.
Need to enable DHCP (Dynamic Host Configuration Protocol, Dynamic Host Configuration Protocol).
The login password for the root account must be 8-30 characters and contain uppercase or lowercase letters, numbers, and special symbols. The special characters can be ( ) ` ~ ! @ # $ % ^ & * - = | { } [ ] : ; ' , . ? /
Do not modify key system files, such as / Directories such as sbin, /bin and /lib*.
Support items
Support RAW, qcow2 and VHD format images.
Note
Before importing images in other formats, please convert the image format before importing. It is recommended that you convert to VHD format with smaller transmission capacity.
Supports xfs, ext3 and ext4 file systems, and supports MBR partitions.
Unsupported items
Multiple network interfaces are not supported.
IPv6 addresses are not supported.
Does not support adjusting the system disk partition. Currently, only a single root partition is supported.
Notes
Depending on whether the Linux system image you import is a standard platform image, you need to pay attention to different issues.
We define the officially released operating system release version as a standard platform image. Currently supported system versions include Aliyun Linux, CentOS 5/6/7, CoreOS 681.2.0, Debian 6/7, FreeBSD, OpenSUSE 13.1 , RedHat, RHEL (Red Hat Enterprise Linux), SUSE Linux 10/11/12 and Ubuntu 10/12/13/14.
Operating system platform images that are not in the public image list provided by ECS are non-standard platform images. Although the image comes from a standard platform, there are no images that comply with the requirements of the standard platform in terms of key system configuration files, system basic environment, and applications. If you need to use a non-standard platform image, you can only choose:
Others Linux: ECS is uniformly identified as other system types when importing the image. If you import the Others Linux platform image, ECS will not do any processing on the created instance. If you enable DHCP before creating the image, ECS will automatically configure the network for you. After completing the instance creation, you need to connect to the instance through the remote connection function of the management console, and then configure the IP, routing, password, etc. yourself.
Customized Linux: customized image. After importing the Customized Linux image, please configure the instance's network and password according to the ECS standard system configuration method. For more details, see Configuring a Customized Linux custom image.
The above is the detailed content of How to implement ECS restrictions on imported images to ensure the availability of imported images. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
