CentOS7 安装管理KVM虚拟机

51 篇文章 0 订阅
系统:CentOS7 64位
     cat /etc/redhat-release
安装KVM
     yum install qemu-kvm libvirt virt-install bridge-utils
     lsmod |grep kvm
配置KVM虚拟机桥接网络
[root@extp ~]# nmcli c add type bridge autoconnect yes con-name br0 ifname br0  #添加虚拟桥接网卡br0
[root@extp ~]# nmcli c modify br0 ipv4.addresses "192.168.0.244/24 192.168.0.1" ipv4.method manual  #设置虚拟网卡ip和网关
[root@extp ~]# nmcli c modify br0 ipv4.dns 192.168.0.1 #设置DNS 192.168.0.1
[root@extp ~]# nmcli c delete enp3s0 #删除当前网络配置  enp3s0 是我的网路标示,在CentOS 6是eth0
[root@extp ~]# nmcli c add type bridge-slave autoconnect yes con-name enp3s0 ifname enp3s0 master br0 #添加br0接口
[root@extp ~]#  systemctl stop NetworkManager; systemctl start NetworkManager #停止网络和启动网络##nmcli是一个网络管理工具
[root@extp ~]# which nmcli
/usr/bin/nmcli
[root@extp ~]# rpm -qf /usr/bin/nmcli
NetworkManager-0.9.9.1-29.git20140326.4dba720.el7_0.x86_64
#ip addr
[root@extp ~]# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:0c:29:e8:7c:f8 brd ff:ff:ff:ff:ff:ff
    inet 192.168.35.129/24 brd 192.168.135.255 scope global dynamic eno16777736
       valid_lft 1773sec preferred_lft 1773sec
    inet6 fe80::d03e:d462:1d2f:c788/64 scope link
       valid_lft forever preferred_lft forever
3: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN qlen 1000
    link/ether 52:54:00:12:96:87 brd ff:ff:ff:ff:ff:ff
    inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
       valid_lft forever preferred_lft forever
4: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN qlen 1000
    link/ether 52:54:00:12:96:87 brd ff:ff:ff:ff:ff:ff
5: br0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN qlen 1000
    link/ether 76:57:5e:5e:b6:ad brd ff:ff:ff:ff:ff:ff

构建安装源
[root@extp ~]# yum install vsftpd #安装ftp
[root@extp ~]# systemctl start vsftpd #启动ftp
 [root@extp ~]# systemctl enable vsftpd  #开机自启动
[root@extp tmp]#wget http://mirrors.sohu.com/centos/6/isos/x86_64/CentOS-6.6-x86_64-minimal.iso  #下载Centos6.6 MINI安装盘
[root@extp tmp]# mkdir /mnt/cdrom/
[root@extp tmp]# mount CentOS-6.6-x86_64-minimal.iso /mnt/cdrom/ #挂载
[root@extp tmp]# cp -r /mnt/cdrom /var/ftp/
[root@extp tmp]# cd /root/centos/cdrom/
[root@extp cdrom]# vim .treeinfo#修改如下
[general]
family = CentOS
timestamp = 1414159790.06
variant =
totaldiscs = 1
version = 6.6
discnum = 1
packagedir =
arch = x86_64
[images-x86_64]
kernel = isolinux/vmlinuz  ##主要是修改这
initrd = isolinux/initrd.img ##主要修改这
[images-xen]
initrd = images/pxeboot/initrd.img
[stage2]
mainimage = images/install.img
#完了保存的时候强制保存 :wq!
然后重启你的vftpd。
测试:看能不能访问


使用virt-install创建虚拟机并安装GuestOS
virt-install是一个命令行工具,它能够为KVM、Xen或其它支持libvrit API的hypervisor创建虚拟机并完成GuestOS安装;此外,它能够基于串行控制台、VNC或SDL支持文本或图形安装界面。安装过程可以使用本地的安装介质如CDROM,也可以通过网络方式如NFS、HTTP或FTP服务实现。对于通过网络安装的方式,virt-install可以自动加载必要的文件以启动安装过程而无须额外提供引导工具。当然,virt-install也支持PXE方式的安装过程,也能够直接使用现有的磁盘映像直接启动安装过程。
virt-install命令有许多选项,这些选项大体可分为下面几大类,同时对每类中的常用选项也做出简单说明。
◇ 一般选项:指定虚拟机的名称、内存大小、VCPU个数及特性等;
 -n NAME, --name=NAME:虚拟机名称,需全局惟一;
 -r MEMORY, --ram=MEMORY:虚拟机内在大小,单位为MB;
 --vcpus=VCPUS[,maxvcpus=MAX][,sockets=#][,cores=#][,threads=#]:VCPU个数及相关配置;
 --cpu=CPU:CPU模式及特性,如coreduo等;可以使用qemu-kvm -cpu ?来获取支持的CPU模式;
◇ 安装方法:指定安装方法、GuestOS类型等;
 -c CDROM, --cdrom=CDROM:光盘安装介质;
 -l LOCATION, --location=LOCATION:安装源URL,支持FTP、HTTP及NFS等,如ftp://172.16.0.1/pub;
 --pxe:基于PXE完成安装;
 --livecd: 把光盘当作LiveCD;
 --os-type=DISTRO_TYPE:操作系统类型,如linux、unix或windows等;
 --os-variant=DISTRO_VARIANT:某类型操作系统的变体,如rhel5、fedora8等;
 -x EXTRA, --extra-args=EXTRA:根据--location指定的方式安装GuestOS时,用于传递给内核的额外选项,例如指定kickstart文件的位置,--extra-args "ks=http://172.16.0.1/class.cfg"
 --boot=BOOTOPTS:指定安装过程完成后的配置选项,如指定引导设备次序、使用指定的而非安装的kernel/initrd来引导系统启动等 ;例如:
 --boot cdrom,hd,network:指定引导次序;
 --boot kernel=KERNEL,initrd=INITRD,kernel_args=”console=/dev/ttyS0”:指定启动系统的内核及initrd文件;
◇ 存储配置:指定存储类型、位置及属性等;
 --disk=DISKOPTS:指定存储设备及其属性;格式为--disk /some/storage/path,opt1=val1,opt2=val2等;常用的选项有:
 device:设备类型,如cdrom、disk或floppy等,默认为disk;
 bus:磁盘总结类型,其值可以为ide、scsi、usb、virtio或xen;
 perms:访问权限,如rw、ro或sh(共享的可读写),默认为rw;
 size:新建磁盘映像的大小,单位为GB;
 cache:缓存模型,其值有none、writethrouth(缓存读)及writeback(缓存读写);
 format:磁盘映像格式,如raw、qcow2、vmdk等;
 sparse:磁盘映像使用稀疏格式,即不立即分配指定大小的空间;
 --nodisks:不使用本地磁盘,在LiveCD模式中常用;
◇ 网络配置:指定网络接口的网络类型及接口属性如MAC地址、驱动模式等;
 -w NETWORK, --network=NETWORK,opt1=val1,opt2=val2:将虚拟机连入宿主机的网络中,其中NETWORK可以为:
 bridge=BRIDGE:连接至名为“BRIDEG”的桥设备;
 network=NAME:连接至名为“NAME”的网络;
其它常用的选项还有:
 model:GuestOS中看到的网络设备型号,如e1000、rtl8139或virtio等;
 mac:固定的MAC地址;省略此选项时将使用随机地址,但无论何种方式,对于KVM来说,其前三段必须为52:54:00;
 --nonetworks:虚拟机不使用网络功能;
◇ 图形配置:定义虚拟机显示功能相关的配置,如VNC相关配置;
 --graphics TYPE,opt1=val1,opt2=val2:指定图形显示相关的配置,此选项不会配置任何显示硬件(如显卡),而是仅指定虚拟机启动后对其进行访问的接口;
 TYPE:指定显示类型,可以为vnc、sdl、spice或none等,默认为vnc;
 port:TYPE为vnc或spice时其监听的端口;
 listen:TYPE为vnc或spice时所监听的IP地址,默认为127.0.0.1,可以通过修改/etc/libvirt/qemu.conf定义新的默认值;
 password:TYPE为vnc或spice时,为远程访问监听的服务进指定认证密码;
 --noautoconsole:禁止自动连接至虚拟机的控制台;
◇ 设备选项:指定文本控制台、声音设备、串行接口、并行接口、显示接口等;
 --serial=CHAROPTS:附加一个串行设备至当前虚拟机,根据设备类型的不同,可以使用不同的选项,格式为“--serial type,opt1=val1,opt2=val2,...”,例如:
 --serial pty:创建伪终端;
 --serial dev,path=HOSTPATH:附加主机设备至此虚拟机;
 --video=VIDEO:指定显卡设备模型,可用取值为cirrus、vga、qxl或vmvga;

◇ 虚拟化平台:虚拟化模型(hvm或paravirt)、模拟的CPU平台类型、模拟的主机类型、hypervisor类型(如kvm、xen或qemu等)以及当前虚拟机的UUID等;
 -v, --hvm:当物理机同时支持完全虚拟化和半虚拟化时,指定使用完全虚拟化;
 -p, --paravirt:指定使用半虚拟化;
 --virt-type:使用的hypervisor,如kvm、qemu、xen等;所有可用值可以使用’virsh capabilities’命令获取;
◇ 其它:
 --autostart:指定虚拟机是否在物理启动后自动启动;
 --print-xml:如果虚拟机不需要安装过程(--import、--boot),则显示生成的XML而不是创建此虚拟机;默认情况下,此选项仍会创建磁盘映像;
 --force:禁止命令进入交互式模式,如果有需要回答yes或no选项,则自动回答为yes;
 --dry-run:执行创建虚拟机的整个过程,但不真正创建虚拟机、改变主机上的设备配置信息及将其创建的需求通知给libvirt;
 -d, --debug:显示debug信息;

创建虚拟机
virt-install \
--name centos7 \
--ram 1024 \
--vcpus=2 \
--location=/opt/pkg/CentOS-7-x86_64-Minimal-1611.iso \
--disk path=/kvm/images/centos7.qcow2,size=10,format=qcow2 \
--network bridge=br0 \
--os-type=linux \
--os-variant=rhel7 \
--graphics none \ 
--extra-args='console=ttyS0' \
--force
---------------或---------
[root@extp cdrom]#  virt-install \
> --name centos6.6 \ #指定虚拟机名字
> --ram 512 \  #分配虚拟机的内存大小
> --disk path=/data/kvm/images/centos6.6.img,size=20 \ #虚拟机硬盘安装路径
> --vcpus 2 \  #CPU个数
> --os-type linux \ #操作系统类型
> --os-variant rhel6 \ #虚拟机操作系统的变种,当前CENTOS是redhat的所以。
> --network bridge=br0 \ #网络配置
> --graphics none \  #不使用图形界面
> --console pty,target_type=serial \ #配置接口
> --location 'ftp://192.168.0.244/cdrom/' \  #指定安装源
>  --extra-args 'console=ttyS0,115200n8 serial'  #额外传的参数
#回车
开始安装......
搜索文件 .treeinfo......                                                                                                                                                                  |  590 B  00:00:00 !!!
搜索文件 vmlinuz......                                                                                                                                                                    | 7.9 MB  00:00:00 !!!
搜索文件 initrd.img......                                                                                                                                                                 |  66 MB  00:00:00 !!!
创建存储文件 centos6.6.img                                                                                                                                                              |  20 GB  00:00:00
创建域......                                                                                                                                                                               |    0 B  00:00:00
连接到域 centos6.6
换码符为 ^]

Initializing cgroup subsys cpuset
Initializing cgroup subsys cpu
Linux version 2.6.32-504.el6.x86_64 (mockbuild@c6b9.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) ) #1 SMP Wed Oct 15 04:27:16 UTC 2014
Command line: method=ftp://192.168.0.244/cdrom/ console=ttyS0,115200n8 serial
KERNEL supported cpus:
  Intel GenuineIntel
  AMD AuthenticAMD
  Centaur CentaurHauls
BIOS-provided physical RAM map:
 BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
 BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
......省略。
###############
Welcome to CentOS for x86_64

                    ┌────────┤ Choose a Language ├────────┐
                    │                                     │
                    │ What language would you like to use │
                    │ during the installation process?    │
                    │                                     │
                    │      Catalan                ↑       │
                    │      Chinese(Simplified)    ▒       │
                    │      Chinese(Traditional)   ▮       │
                    │      Croatian               ▒       │
                    │      Czech                  ▒       │
                    │      Danish                 ▒       │
                    │      Dutch                  ▒       │
                    │      English                ↓       │
                    │                                     │
                    │               ┌────┐                │
                    │               │ OK │                │
                    │               └────┘                │
                    │                                     │
                    │                                     │
                    └─────────────────────────────────────┘
#用tab键选择语言
Welcome to CentOS for x86_64

                 ┌────────────┤ Configure TCP/IP ├────────────┐
                 │                                            │
                 │ [*] Enable IPv4 support                    │
                 │        (*) Dynamic IP configuration (DHCP) │
                 │        ( ) Manual configuration            │
                 │                                            │
                 │ [*] Enable IPv6 support                    │
                 │        (*) Automatic                       │
                 │        ( ) Automatic, DHCP only            │
                 │        ( ) Manual configuration            │
                 │                                            │
                 │        ┌────┐              ┌──────┐        │
                 │        │ OK │              │ Back │        │
                 │        └────┘              └──────┘        │
                 │                                            │
                 │                                            │
                 └────────────────────────────────────────────┘
#激活ipv4,局域网有dhcp就下一步取消ipv6,没有手动写个ip跟你ftp server 在同一网关即可
Welcome to CentOS for x86_64

       ┌────────────────┤ Manual TCP/IP Configuration ├─────────────────┐
       │                                                                │
       │ Enter the IPv4 and/or the IPv6 address and prefix (address /   │
       │ prefix).  For IPv4, the dotted-quad netmask or the CIDR-style  │
       │ prefix are acceptable. The gateway and name server fields must │
       │ be valid IPv4 or IPv6 addresses.                               │
       │                                                                │
       │ IPv4 address: 192.168.0.13____ / 24______________              │
       │ Gateway:      192.168.0.1______________________________        │
       │ Name Server:  _________________________________________        │
       │                                                                │
       │             ┌────┐                        ┌──────┐             │
       │             │ OK │                        │ Back │             │
       │             └────┘                        └──────┘             │
       │                                                                │
       │                                                                │
       └────────────────────────────────────────────────────────────────┘
#用tab键切换到OK上然后会提示保存网卡信息OK即可下一步
 Welcome to CentOS for x86_64

               ┌──────────────────┤ CentOS ├───────────────────┐
               │                                               │
               │ Welcome to CentOS!                            │
               │                                               │
               │                                               │
               │                    ┌────┐                     │
               │                    │ OK │                     │
               │                    └────┘                     │
               │                                               │
               │                                               │
               └───────────────────────────────────────────────┘

#OK
Welcome to CentOS for x86_64
 ┌────────────────────────────────┤ Warning ├─────────────────────────────────┐
 │                                                                            │
 │         Error processing drive:                                 ↑          │
 │                                                                 ▮          │
 │         pci-0000:00:04.0-virtio-pci-virtio1                     ▒          │
 │         20480MB                                                 ▒          │
 │         Virtio Block Device                                     ▒          │
 │                                                                 ▒          │
 │         This device may need to be reinitialized.               ▒          │
 │                                                                 ▒          │
 │         REINITIALIZING WILL CAUSE ALL DATA TO BE LOST!          ▒          │
 │                                                                 ▒          │
 │         This action may also be applied to all other disks      ▒          │
 │         needing reinitialization.                               ↓          │
 │                                                                            │
 │  ┌────────┐   ┌────────────┐   ┌───────────────┐   ┌───────────────────┐   │
 │  │ Ignore │   │ Ignore all │   │ Re-initialize │   │ Re-initialize all │   │
 │  └────────┘   └────────────┘   └───────────────┘   └───────────────────┘   │
 │                                                                            │
 │                                                                            │
#选择初始化所有Re-initialize all
Welcome to CentOS for x86_64

                    ┌───────┤ Time Zone Selection ├───────┐
                    │                                     │
                    │ In which time zone are you located? │
                    │                                     │
                    │ [*] System clock uses UTC           │
                    │                                     │
                    │  America/Monterrey               ↑  │
                    │  America/Montevideo              ▮  │
                    │  America/Montserrat              ▒  │
                    │  America/Nassau                  ▒  │
                    │  America/New York                ↓  │
                    │                                     │
                    │      ┌────┐          ┌──────┐       │
                    │      │ OK │          │ Back │       │
                    │      └────┘          └──────┘       │
                    │                                     │
                    │                                     │
                    └─────────────────────────────────────┘
#选择时区Asia/上海
Welcome to CentOS for x86_64

                ┌──────────────┤ Root Password ├───────────────┐
                │                                              │
                │    Pick a root password. You must type it    │
                │    twice to ensure you know it and do not    │
                │    make a typing mistake.                    │
                │                                              │
                │ Password:           ________________________ │
                │ Password (confirm): ________________________ │
                │                                              │
                │        ┌────┐               ┌──────┐         │
                │        │ OK │               │ Back │         │
                │        └────┘               └──────┘         │
                │                                              │
                │                                              │
                └──────────────────────────────────────────────┘
#设置root密码
Welcome to CentOS for x86_64

       ┌─────────────────────┤ Partitioning Type ├─────────────────────┐
       │                                                               │
       │ Installation requires partitioning of your hard drive.  The   │
       │ default layout is suitable for most users.  Select what space │
       │ to use and which drives to use as the install target.         │
       │                                                               │
       │                 Use entire drive                              │
       │                 Replace existing Linux system                 │
       │                 Use free space                                │
       │                                                               │
       │   Which drive(s) do you want to use for this installation?    │
       │        [*]    vda    20480 MB (Virtio Block Device) ↑         │
       │                                                     ▮         │
       │                                                               │
       │                      ┌────┐   ┌──────┐                        │
       │                      │ OK │   │ Back │                        │
       │                      └────┘   └──────┘                        │
       │                                                               │
       │                                                               │
       └───────────────────────────────────────────────────────────────┘       

<Space>,<+>,<-> selection   |   <F2> Add drive   |   <F12> next screen
#分区
Welcome to CentOS for x86_64

     ┌─────────────┤ Writing storage configuration to disk ├──────────────┐
     │                                                                    │
     │ The partitioning options you have selected will now be written to  │
     │ disk.  Any data on deleted or reformatted partitions will be lost. │
     │                                                                    │
     │        ┌─────────┐               ┌───────────────────────┐         │
     │        │ Go back │               │ Write changes to disk │         │
     │        └─────────┘               └───────────────────────┘         │
     │                                                                    │
     │                                                                    │
     └────────────────────────────────────────────────────────────────────┘
#写入保存磁盘。
Welcome to CentOS for x86_64

     ┌─────────────────────┤ Package Installation ├──────────────────────┐
     │                                                                   │
     │                                                                   │
     │                                71%                                │
     │                                                                   │
     │                  Packages completed: 180 of 205                   │
     │                                                                   │
     │ Installing kernel-2.6.32-504.el6.x86_64 (123 MB)                  │
     │ The Linux kernel                                                  │
     │                                                                   │
     │                                                                   │
     │                                                                   │
     └───────────────────────────────────────────────────────────────────┘     

  <Tab>/<Alt-Tab> between elements   |  <Space> selects   |  <F12> next screen 

#然后初始化,格式化硬盘自动等待安装完毕
Welcome to CentOS for x86_64

     ┌───────────────────────────┤ Complete ├────────────────────────────┐
     │                                                                   │
     │ Congratulations, your CentOS installation is complete.            │
     │                                                                   │
     │ Please reboot to use the installed system.  Note that updates may │
     │ be available to ensure the proper functioning of your system and  │
     │ installation of these updates is recommended after the reboot.    │
     │                                                                   │
     │                            ┌────────┐                             │
     │                            │ Reboot │                             │
     │                            └────────┘                             │
     │                                                                   │
     │                                                                   │
     └───────────────────────────────────────────────────────────────────┘
 #重启即可进入创建的虚拟机
#因为是mimi关盘安装很快的
     CentOS release 6.6 (Final)
Kernel 2.6.32-504.el6.x86_64 on an x86_64

localhost.localdomain login: 

#OK,输入用户名和密码即可
[root@localhost ~]# ifconfig
eth0      Link encap:Ethernet  HWaddr 52:54:00:4F:7D:82
          inet addr:192.168.0.13  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::5054:ff:fe4f:7d82/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:206 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:22155 (21.6 KiB)  TX bytes:546 (546.0 b)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:340 (340.0 b)  TX bytes:340 (340.0 b)

[root@localhost ~]#
#按Ctrl+]从虚拟机里切换到物理机
[root@extp cdrom]# virsh list  #列出已经安装的虚拟机
 Id    名称                         状态
----------------------------------------------------
 11    centos6.5                      running
 13    centos6.6                      running

[root@extp cdrom]# virsh console centos6.6  #从物理机连接虚拟机
连接到域 centos6.6
换码符为 ^]

[root@localhost ~]#
[root@extp ~]# virsh autostart centos6.5 #自动启动
域 centos6.5标记为自动开始

[root@extp ~]# virsh autostart centos6.6 #自动启动
域 centos6.6标记为自动开始
#
[root@extp images]# cd /etc/libvirt/
[root@extp libvirt]# ls
libvirt.conf  libvirtd.conf  lxc.conf  nwfilter  qemu  qemu.conf  qemu-lockd.conf  storage  virtlockd.conf
[root@extp libvirt]# cd qemu/
[root@extp qemu]# ls
autostart  centos6.5.xml  centos6.6.xml  kvm001.xml  kvm002.xml  networks  template.xml
[root@extp qemu]# cd autostart/
[root@extp autostart]# ll
总用量 0
lrwxrwxrwx. 1 root root 31 1月  20 14:18 centos6.5.xml -> /etc/libvirt/qemu/centos6.5.xml  #开机自启动的文件都会在安装目录里创建一个autostart目录,并设置软连接
lrwxrwxrwx. 1 root root 31 1月  20 14:19 centos6.6.xml -> /etc/libvirt/qemu/centos6.6.xml

[root@extp ~]# 

[root@extp ~]# virsh autostart --disable centos6.6 #取消自动启动
域 centos6.6取消标记为自动开始
#关闭一台虚拟机
[root@extp images]# virsh list --all #列出所有启动没启动的虚拟机
 Id    名称                         状态
----------------------------------------------------
 23    centos6.5                      running
 29    centos6.6                      running
 -     kvm001                         关闭
 -     kvm002                         关闭
 -     template                       关闭

[root@extp images]# virsh shutdown centos6.6 #关闭一台centos6.6
域 centos6.6 被关闭

好像关不了#默认virsh不能关闭虚拟机需要安装acpid

[root@extp images]# yum install acpid
[root@extp images]# systemctl start acpid.service
[root@extp images]# systemctl enable acpid.service#在关闭试试

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值