• 安装虚拟机


    创建新的虚拟机

    使用'典型'创建虚拟机

    选择稍后安装操作系统

    版本选择CenOS 7 64位

    虚拟机的命名:oldboy

    虚拟机磁盘分配20G

    单机完成,创建虚拟机

    安装系统

    将系统盘 .iso,放入光驱

    开启虚拟机

    按 ↑ 选中 Install CentOS7 然后按 Tab ,修改网卡名称,按空格键,然后输入如下内容

    net.ifnames=0 biosdevname=0

    直接选择 Continue 继续

    设置日期,时区

    禁止使用kdump

    给磁盘分区,自定义分区,不要自动分区

    分配IP地址

    设置密码

    点击Reboot

    xshell连接虚拟机

    模板机的优化步骤

    1.配置yum
    curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
    yum install -y wget
    wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
    wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
    2.安装软件包
    yum install net-tools vim tree htop iftop gcc gcc-c++ glibc #
      iotop lrzsz sl wget unzip telnet nmap nc psmisc 
      dos2unix bash-completion bash-completion-extra sysstat 
      rsync nfs-utils httpd-tools ntpdate -y
    3.关闭防火墙
    sudo systemctl disable firewalld.service #
    sudo systemctl stop firewalld.service
    4.关闭selinux
    sed -i '/^SELINUX=/c SELINUX=disabled' /etc/selinux/config
    /etc/selinux/config
    /etc/sysconfig/selinux
    改成disabled
    再reboot
    5.调整单个进程最大能打开文件的数量
    echo '* - nofile 65535' >> /etc/security/limits.conf  #
    6.修改主机名
    hostnamectl set-hostname syy
    7.拍摄快照
  • 相关阅读:
    转载:支持向量机SVM原理
    python爬虫:BeautifulSoup的使用
    python爬虫:使用urllib库获取数据
    python爬虫:urllib库的简单使用
    C++实现logistic模型
    C++实现感知机模型
    希尔伯特矩阵(Hilbert matrix)
    2/2 从一个简单例子来看 Vue.js 中 v-for 中 key 值的重要性
    1.31 Vue.js 学习总结 ( 一 )
    1/30 Vue.js中的数据响应
  • 原文地址:https://www.cnblogs.com/syy1757528181/p/12812904.html
Copyright © 2020-2023  润新知