linux /etc目录下的重要配置文件day06.day07.

linux /etc目录的下的配置文件

1.网卡配置文件

/etc/sysconfig/network-scripts/ifcfg-eth0或ens33

[root@linux59-moban ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 
TYPE="Ethernet"                         ###    以太网
BOOTPROTO="none"                 
DEFROUTE="yes"
NAME="eth0"
DEVICE="eth0"
ONBOOT="yes"
IPADDR="10.0.0.203"
PREFIX="24"
GATEWAY="10.0.0.254"
DNS1="10.0.0.254"
DNS2="223.5.5.5"
linux /etc目录下的重要配置文件day06.day07._第1张图片
网卡配置文件.png

systemctl restart network
start 开启
stop 关闭
status 查看状态
restart重启
系统控制命令 重启 所有网卡

2.解析 DNS

/etc/resolv.conf

[root@linux59-moban ~]# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 10.0.0.254
nameserver 223.5.5.5

网卡里面配置DNS VS /etc/resolv.conf配置DNS

网卡配置DNS使用的是 (网卡里面永久生效 )
DNS1="10.0.0.254"
DNS2="223.5.5.5"

/etc/resolv.conf里面是 (立即生效,临时生效,重启网卡后会被网卡里面的DNS覆盖)
nameserver 223.5.5.5
nameserver 223.6.6.6

3.主机名的配置文件

/etc/hostname

[root@linux59-moban ~]# cat /etc/hostname 
linux59-moban

Linux如何修改主机名:

通用:cenos6 7 都可以使用

1# hostname命令修改主机名(临时 重启服务器之后失效)
[root@oldboyedu59 ~]# hostname
oldboyedu59
[root@oldboyedu59 ~]# hostname oldboyedu59-lnb

2# 修改文件内容(写合同 永久 重启服务器之后生效)
vim /etc/hostname

3# 检查
[root@oldboyedu59 ~]# hostname
oldboyedu59-lnb
[root@oldboyedu59 ~]# cat /etc/hostname
oldboyedu59-lnb

CentOS 7特有:

一条命令,同时修改临时+永久
[root@oldboyedu59-lnb ~]# hostnamectl set-hostname oldboyedu59
同时修改临时+永久
[root@oldboyedu59-lnb ~]# hostname
oldboyedu59
[root@oldboyedu59-lnb ~]# cat /etc/hostname
oldboyedu59

4.域名与ip地址解析关系

/etc/hosts

[root@linux59-moban ~]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

网站更新过程(程序代码更新)
1.在开发人员自己电脑进行测试
2.公司内部机房进行测试
3.在IDC机房(数据中心) 测试
4.程序代码放在用户使用的环境(生产环境/线上环境)

5.配置开机设备自动挂载的文件 || 把苹果挂载到树枝 挂载表

/etc/fstab

#
# /etc/fstab
# Created by anaconda on Tue Mar 26 11:38:44 2019
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=35ee4728-c5d4-43be-8a05-989df0217956 /                       xfs     defaults        0 0
UUID=0765cf05-6253-4adb-8903-d1bca9a3551f /boot                   xfs     defaults        0 0
UUID=411ec0c6-4cf4-4a73-b12e-bd350affc74a swap                    swap    defaults        0 0

6.开机自启动程序命令的地方 文件

/etc/rc.local

[root@linux59-moban ~]# cat /etc/rc.local 
#!/bin/bash
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
#
# It is highly advisable to create own systemd services or udev rules
# to run scripts during boot instead of using this file.
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.

touch /var/lock/subsys/local
[root@linux59-moban ~]# ll -d /etc/rc.local
lrwxrwxrwx. 1 root root 13 Mar 26 11:41 /etc/rc.local -> rc.d/rc.local

centos7版本要赋予chmod +x /etc/rc.d/rc.local文件x权限就可以使用了.

7.系统运行级别与加载相关的级别对应启动文件。配置文件(6版本)

/etc/inittab

0    ###  关机
1    ###  单用户模式
2    ###  多用户模式 但没有 NFS    没网
3    ###  多用户模式 命令模式(默认 有网)
4    ###  没有使用
5    ###  图像界面模式 桌面模式
6    ###  重启

centos6版本启动流程

linux /etc目录下的重要配置文件day06.day07._第2张图片
image.png

centos7版本启动流程

linux /etc目录下的重要配置文件day06.day07._第3张图片
image.png

centos6 7 版本对比

linux /etc目录下的重要配置文件day06.day07._第4张图片
image.png

8.别名,环境变量的配置文件

/etc/profile

查看系统环境变量 env

[root@linux59-moban ~]# env
XDG_SESSION_ID=38
HOSTNAME=linux59-moban
TERM=linux
SHELL=/bin/bash
HISTSIZE=1000
SSH_CLIENT=10.0.0.1 14430 22
SSH_TTY=/dev/pts/1
USER=root

查看系统别名 alias


[root@linux59-moban ~]# alias 
alias cp='cp -i'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias mv='mv -i'
alias rm='rm -i'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

9.别名的配置文件

/etc/bashrc

10.用户登录后显示的内容

/etc/motd

11.用户登录前显示的内容

/etc/issue

12.CentOS 6下面系统管理命令(脚本)存放的位置 || CentOS 7下面只有network服务

/etc/init.d

7版本只有network服务

[root@linux59-moban ~]# ll /etc/init.d/
total 40
-rw-r--r--. 1 root root 18281 Aug 24  2018 functions
-rwxr-xr-x. 1 root root  4569 Aug 24  2018 netconsole
-rwxr-xr-x. 1 root root  7923 Aug 24  2018 network
-rw-r--r--. 1 root root  1160 Oct 31 07:31 README


你可能感兴趣的:(linux /etc目录下的重要配置文件day06.day07.)