linux配置

vi /etc/sysconfig/network-scripts/ifcfg-ens33
	--修改
	ONBOOT=yes
	BOOTPROTO=static //静态网络IP dhcp 动态获取网络IP
	--添加
	IPADDR=192.168.58.100
	NETMASK=255.255.255.0	--子网掩码,为了对IP地址进行标识,区分网络和主机
	GATEWAY=192.168.58.2	--网关
	DNS1=114.114.114.114	
	删除------
	UUID
systemctl restart network.service 重启网络
vi /etc/selinux/config 
	SELINUX=disabled --软件安装限制
vi /etc/hostname	修改完成后需要重启生效
reboot 重启
yum install -y lrzsz (下载安装解压工具)
yum install zip unzip -y
	tar -zxvf apache-tomcat-8.5.47.tar.gz
	tar -zcf apache-tomcat-8.5.47.tar.gz apache-tomcat-8.5.47(压缩apache-tomcat-8.5.47命名为apache-tomcat-8.5.47.tar.gz -cf为压缩文件)
	压缩
		zip -r tomcat.zip apache-tomcat-7.0.61
		zip -r xshell_5.0.0553.exe
	解压缩
		unzip tomcat.zip
		unzip xshell_5.0.0553.zip
vi /etc/hosts
yum install -y net-tools(安装ifconfig配置包)
yum install telnet -y
yum install ntp -y (日期同步)
	ntpdate cn.ntp.org.cn
rpm -ivh jdk-8u231-linux-x64.rpm (安装jdk-8u231-linux-x64.rpm)
vim /etc/profile (修改配置文件,最后一行加入)
[root@basiscs ~]# source /etc/profile
yum install wget -y (安装wget,wget用于网络下载资源)
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup(将系统原始配置文件失效)
更换yum源
	使用Wget获取阿里yum源配置文件(二个都运行)
		wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
		wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
	清空以前yum源的缓存
		yum clean all
	获取阿里云的缓存
		yum makecache


你可能感兴趣的:(大数据,linux)