linux部分基本设置(centos7)
Posted Narule
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux部分基本设置(centos7)相关的知识,希望对你有一定的参考价值。
SSH端口号修改
修改 /etc/ssh/sshd_config 文件
vi /etc/ssh/sshd_config
指定端口为 1000
直接在文件中加入 Port 1000
制定 22 和 1000 同时为ssh端口
Port 22
Port 100
保存退出,使设置生效
service sshd restart
常用工具未安装
-bash: ifconfig: command not found
yum install net-tools; # 即可完成安装
yum provides ifconfig #查看是哪个包提供了ifconfig命令
Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.163.com net-tools-2.0-0.24.20131004git.el7.x86_64 : Basic networking tools Repo : @base Matched from: Filename : /usr/sbin/ifconfig
上面显示 net-tools-2.0-0.24版本
安装时不需要后缀,直接输入 yum install net-tools 回车即可完成安装
-bash: wget: command not found
yum -y install wget
-bash: vim: command not found
yum -y
install
vim*
时间格式
ll 命令用来显示当前所在文件信息 但是时间格式不太习惯,可以通过修改 用户目录下的 .bash_profile 文件修改日期显示格式
.bash_profile 是隐藏文件 需要 ll -a 才能显示
vim .bash_profile
按i 进入编辑模式
末尾添加一行
export TIME_STYLE=‘+%Y-%m-%d %H:%M:%S‘ #设置时间显示格式
shift + q 到Ex模式 ‘wq‘ 回车保存退出 w:write 写入 q:quit 退出
source /用户/.bash_profile 即可生效
修改终端字体颜色样式
字体显示样式设置文件: /etc/DIR_COLORS
vim /etc/DIR_COLORS
找到 ‘RESET’
‘i‘ 进入编辑模式
RESET 00;32 # reset to "normal" color 默认 绿色 00 表示普通
FILE 00;32 文件 绿色
DIR 01;34;100 # directory 文件夹 加粗,蓝色,背景灰色 01加粗 34 蓝色 100 背景色 灰色
LINK 01;36 链接文件 加粗 淡蓝色
shift + q 进入Ex模式 , wq 保存退出 source /etc/DIR_COLORS 重新加载配置文件
断开远程服务器重连,输入ll 即可看到效果(不断开,终端不会刷新上面修改的配置)
创建时间 2019-0105
修改时间 2020-0115
以上是关于linux部分基本设置(centos7)的主要内容,如果未能解决你的问题,请参考以下文章
Nginx在linux环境下(centos7)的安装负载均衡设置