CentOS 7.2 使用笔记

  • 安装系统,通过 https://www.centos.org/ 下载ISO文件进行安装
  • 更新yum官方源为国内163国内源,切换到目录 /etc/yum.repos.d/ 执行命令 wget http://mirrors.163.com/.help/CentOS7-Base-163.repo 将163源下载到当前目录,执行 yum makecache 重建缓存,系统会自动加载 fastestmirror 插件根据最快的镜像来构建缓存,此处就是使用163提供的源
  • 查看内核版本, 3.10.0-327.36.1.el7.x86_64.
  • 安装 slb_release命令工具,通过yum install redhat-lsb -y安装 lsb_release: (Linux Standard Base) 查看当前系统的发行版信息
  • 安装ifconfig命令工具,通过 sudo yum install net-tools安装
  • 添加 EPEL(Extra Package for Enterprise Linux) 源,sudo yum install epel-release
  • 安装Docker引擎,参见 官方指南 ,添加国内镜像源,加速镜像下载
cp -n /lib/systemd/system/docker.service /etc/systemd/system/docker.service
nano /etc/systemd/system/docker.service
ExecStart=/usr/bin/dockerd --registry-mirror=https://xvfa2uzp.mirror.aliyuncs.com
systemctl daemon-reload
service docker restart
  • 安装.NET Core 1.0.1 SDK, 参见 微软官方指南 官方的包地址有错误请使用以下地址。
sudo yum install libunwind libicu
curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-centos-x64.latest.tar.gz
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
dotnet --version
  • 关闭SELINUX
nano /etc/selinux/config  
SELINUX=disabled

你可能感兴趣的:(CentOS 7.2 使用笔记)