Centos7 2初始化和公升級更新命令

2022-09-06 11:33:22 字數 1803 閱讀 1287

第一部分:centos7.2初始化

1、更新yum源

[root@localhost ~]# yum install wget

[root@localhost ~]# cd /etc/yum.repos.d/

[root@localhost yum.repos.d]# mv /etc/yum.repos.d/centos-base.repo /etc/yum.repos.d/centos-base.repo.backup

[root@localhost yum.repos.d]# wget -o /etc/yum.repos.d/centos-base.repo

[root@localhost yum.repos.d]# yum clean

[root@localhost yum.repos.d]# yum makecache

[root@localhost yum.repos.d]# yum install epel-release

[root@localhost yum.repos.d]# yum install wget zip unzip rsync lrzsz vim-enhanced ntpdate tree lsof dstat net-tools

3、關閉防火牆

[root@localhost yum.repos.d]# systemctl stop firewalld.service

[root@localhost yum.repos.d]# systemctl disable firewalld.service

[root@localhost yum.repos.d]# sed -i s#^selinux=enforcing#selinux=disabled# /etc/selinux/config

[root@localhost yum.repos.d]# source /etc/sysconfig/selinux

[root@docker ~]# ntpdate s1a.time.edu.cn

[root@docker ~]# hwclock -w

4、修改主機名

[root@localhost yum.repos.d]# hostnamectl set-hostname docker

第二部分:公升級系統版本

linux中公升級更新命令yum upgrade和yum update的區別

參考:[root@centos72 ~]# yum install wget net-tools

更新阿里雲源位址,覆蓋centos-base.repo檔案,先備份檔案

[root@centos72 yum.repos.d]# wget

[root@centos72 yum.repos.d]# yum clean all

[root@centos72 yum.repos.d]# yum makecache

[root@centos72 yum.repos.d]# yum update 此處耗時較長,共計330個安裝包

[root@centos72 yum.repos.d]# yum install epel-release

公升級前:

系統版本: centos linux release 7.2.1511 (core)

核心版本: 3.10.0-327.el7.x86_64

yum -y update 公升級後

系統版本: centos linux release 7.4.1708 (core)

核心版本: 3.10.0-693.5.2.el7.x86_64

跨大版本公升級:centos5-centos7,涉及到原始碼包更新。

CentOS7 2公升級核心

yum y install gcc gcc c ncurses ncurses devel cmake elfutils libelf devel openssl devel或者可以安裝開發工具包 yum groupinstall development tools cd usr src wget ...

centos7 2 安裝和啟動docker

第一步 通過uname r命令檢視你當前的核心版本 因為docker 要求 centos 系統的核心版本不低於 3.10 檢視本頁面的前提條件來驗證你的centos 版本是否支援 docker 第二步直接執行yum y install docker進行安裝docker 因為docker 軟體包和依賴...

CentOS7 2最小化安裝及配置

我相信有很多人都跟我一樣都不喜歡最小化安裝,因為安裝過後很多常用命令不能使用,因為系統沒有為我們做安裝的事情,需要我們自己手動安裝,可是我們手動配置的時候還總容易出現各種問題,剛好最近在搞虛擬機器就總結一下寫出來,希望能對大家有點幫助!首先需要安裝一台最小化的機器,我的是基於centos7.2的機器...