Linux 通常安装项
Posted Morron--漠然随笔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 通常安装项相关的知识,希望对你有一定的参考价值。
yum install net-tools // 安装网络基础包
yum install ntp
systemctl start ntpd
ntpdate 10.16.42.7 //更新时间
service nptd start //开启ntp服务
chkconfig --level 23456 ntpd on //ntp随机启动
yum install net-snmp 、net-snmp-devel //安装snmp 服务
chkconfig --level 23456 snmpd on //设置开机启动
配置以下三处snmp
40 # sec.name source community
41 com2sec notConfigUser default tekro
53 # Make at least snmpwalk -v 1 localhost -c public system fast again.
54 # name incl/excl subtree mask(optional)
55 view all included .1
56 view systemview included .1.3.6.1.2.1.1
57 view systemview included .1.3.6.1.2.1.25.1.1
60 # Finally, grant the group read-only access to the systemview view.
61
62 # group context sec.model sec.level prefix read write notif
63access notConfigGroup "" any noauth exact all none none
通过CRT上传下载 //lrzsz是一款在linux里可代替ftp上传和下载的程序。
yum install lrzsz -y
查看开机自起服务项
systemctl list-unit-files | grep enable
安装自动补全命令(重连ssh生效)
yum install -y bash-completion
更改mysql数据库root密码
/usr/bin/mysqladmin -u root password ‘new-password‘
以上是关于Linux 通常安装项的主要内容,如果未能解决你的问题,请参考以下文章
linux安装docker里面又安装centos7怎么发布项
关于Linux如何在安装软件包是不考虑依赖关系进行安装的相关命令项,谢谢