CentOS7.6一些常用软件安装

下载DVD版的CentOS7.6以后,使用最小安装,安装前先设置好网络,nat模式。

查看ip地址:ip addr

解决ssh客户端The remote SSH server rejected X11 forwarding request问题:
vi /etc/ssh/sshd_config
使用/X11Forwarding定位到该关键字,按i进入插入模式,修改为yes
去掉#UseLogin no的注释
按esc,:wq保存退出,或者:q!放弃修改退出
重启服务:systemctl restart sshd.service
如果还不行,就安装yum install xorg-x11-xauth

解决虚拟机时间不对的情况
安装ntp:yum –y install ntp
同步时间:ntpdate -d cn.pool.ntp.org
写入硬件:hwclock -w

关闭防火墙:
启动: systemctl start firewalld
关闭: systemctl stop firewalld
查看状态: systemctl status firewalld
开机禁用 : systemctl disable firewalld
开机启用 : systemctl enable firewalld

安装JDK
下载jdk的rpm包
#rpm包的安装格式
rpm -ivh 包全名
选项:
-i(install) 安装
-v(verbose) 显示详细信息
-h(hash) 显示进度
–nodeps 不检测依赖性
#RPM包的升级格式

rpm -Uvh 包全名
选项:
-U (upgrade) 升级
#RPM包的卸载格式

rpm -e 包名
选项:
-e (erase) 卸载
–nodeps 不检测依赖性

你可能感兴趣的:(CentOS7)