Linux系统重要文件(三)
一系统运行级别文件
文件路径:/etc/inittab
文件作用说明:定义系统启动后,自动开启哪些软件程序系统
runlevel 查看当前运行级别
centos6系统运行级别: 7个级别
0 -- 系统关机级别 init 0
1 -- 系统单用户级别
用于破解系统密码root,救援恢复系统数据,没有网络服务
2 -- 系统多用户级别 没有网络多用户级别
3 -- 系统多用户级别 拥有网络多用户级别,生产中使用最多
4 -- 未使用级别
5 -- 系统图形化级别
6 -- 系统重启级别 init 6
(一)查看当前运行级别
[root@centos61 ~]# cat /etc/redhat-release
CentOS release 6.8 (Final)
[root@centos61 ~]# runlevel
N
[root@centos71 ~]# cat /etc/redhat-release
CentOS Linux release 7.6. (Core)
[root@centos71 ~]# runlevel
N
(二)centos6设置系统级别
临时设置:init 级别数字
[root@centos61 ~]# cat /etc/inittab
# inittab is only used by upstart for the default runlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# System initialization is started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
#
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
#
# For information on how to write upstart event handlers, or how
# upstart works, see init(), init(), and initctl().
#
# Default runlevel. The runlevels used are:
# - halt (Do NOT set initdefault to this)
# - Single user mode
# - Multiuser, without NFS (The same as , if you do not have networking)
# - Full multiuser mode
# - unused
# - X11
# - reboot (Do NOT set initdefault to this)
#
id::initdefault:
此时断开远程连接
[root@centos61 ~]# init
[root@centos61 ~]#
Connection closed by foreign host. Disconnected from remote host(centos61) at ::. Type `help' to learn how to use Xshell prompt.
[c:\~]$

永久设置
对配置文件/etc/inittab修改
可以使用小工具进行修改,比如sed,awk,强化练习
[root@centos61 ~]# sed -i s/::/::/g /etc/inittab
[root@centos61 ~]# tail - /etc/inittab
id::initdefault:
[root@centos61 ~]# runlevel
S
[root@centos61 ~]# reboot Broadcast message from root@centos61.huawei.com
(/dev/pts/) at : ... The system is going down for reboot NOW!
[root@centos61 ~]#
Connection closed by foreign host. Disconnected from remote host(centos6-) at ::. Type `help' to learn how to use Xshell prompt.

注意还要执行init 3才可以的
[root@centos61 ~]# runlevel
S
(三)centos7设置系统级别
和centos6有区别,使用target模式
[root@centos7 ~]# ll /usr/lib/systemd/system/runlevel*target
lrwxrwxrwx. 1 root root 15 Nov 26 17:33 /usr/lib/systemd/system/runlevel0.target -> poweroff.target
lrwxrwxrwx. 1 root root 13 Nov 26 17:33 /usr/lib/systemd/system/runlevel1.target -> rescue.target
lrwxrwxrwx. 1 root root 17 Nov 26 17:33 /usr/lib/systemd/system/runlevel2.target -> multi-user.target
lrwxrwxrwx. 1 root root 17 Nov 26 17:33 /usr/lib/systemd/system/runlevel3.target -> multi-user.target
lrwxrwxrwx. 1 root root 17 Nov 26 17:33 /usr/lib/systemd/system/runlevel4.target -> multi-user.target
lrwxrwxrwx. 1 root root 16 Nov 26 17:33 /usr/lib/systemd/system/runlevel5.target -> graphical.target
lrwxrwxrwx. 1 root root 13 Nov 26 17:33 /usr/lib/systemd/system/runlevel6.target -> reboot.target
[root@centos7 ~]# runlevel
N
[root@centos71 ~]# ll /usr/lib/systemd/system/multi-user.target
-rw-r--r--. root root Oct /usr/lib/systemd/system/multi-user.target
[root@centos71 ~]# ll /usr/lib/systemd/system/rescue.target
-rw-r--r--. root root Oct /usr/lib/systemd/system/rescue.target
[root@centos71 ~]# cat /usr/lib/systemd/system/multi-user.target
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version. [Unit]
Description=Multi-User System
Documentation=man:systemd.special()
Requires=basic.target
Conflicts=rescue.service rescue.target
After=basic.target rescue.service rescue.target
AllowIsolate=yes [root@centos71 ~]# cat /usr/lib/systemd/system/rescue.target
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version. [Unit]
Description=Rescue Mode
Documentation=man:systemd.special()
Requires=sysinit.target rescue.service
After=sysinit.target rescue.service
AllowIsolate=yes [Install]
Alias=kbrequest.target
临时设置: init 级别数字
永久设置
[root@centos71 ~]# cat /etc/inittab
# inittab is no longer used when using systemd.
#
# ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# Ctrl-Alt-Delete is handled by /usr/lib/systemd/system/ctrl-alt-del.target
#
# systemd uses 'targets' instead of runlevels. By default, there are two main targets:
#
# multi-user.target: analogous to runlevel
# graphical.target: analogous to runlevel
#
# To view current default target, run:
# systemctl get-default
#
# To set a default target, run:
# systemctl set-default TARGET.target
二系统登录前后提示文件
(一)登录系统前显示提示信息
[root@centos71 ~]# ll /etc/issue*
-rw-r--r--. root root Nov /etc/issue
-rw-r--r--. root root Nov /etc/issue.net
[root@centos71 ~]# cat /etc/issue*
\S
Kernel \r on an \m \S
Kernel \r on an \m
[root@centos71 ~]# cat /etc/issue
\S
Kernel \r on an \m [root@centos71 ~]# cat /etc/issue.net
\S
Kernel \r on an \m
[root@centos71 ~]#
[root@centos71 ~]# diff /etc/issue*
3d2
<
[root@centos71 ~]# wc /etc/issue.net
/etc/issue.net
[root@centos71 ~]# wc /etc/issue
/etc/issue
(二)登录系统后显示提示信息
[root@centos61 ~]# ll /etc/motd
-rw-r--r--. root root Jan /etc/motd
[root@centos71 ~]# cat /etc/motd
(@@) ( ) (@) ( ) @@ () @ O @ O @
( )
(@@@@)
( ) (@@@)
==== ________ ___________
_D _| |_______/ \__I_I_____===__|_________|
|(_)--- | H\________/ | | =|___ ___| _________________
/ | | H | | | | ||_| |_|| _| \_____A
| | | H |__--------------------| [___] | =| |
| ________|___H__/__|_____/[][]~\_______| | -| |
|/ | |-----------I_____I [][] [] D |=======|____|________________________|_
__/ =| o |=-~~\ /~~\ /~~\ /~~\ ____Y___________|__|__________________________|_
|/-=|___|=O=====O=====O=====O |_____/~\___/ |_D__D__D_| |_D__D__D_|
\_/ \__/ \__/ \__/ \__/ \_/ \_/ \_/ \_/ \_/
[root@centos71 ~]# ll /etc/motd
-rw-r--r--. root root Dec : /etc/motd
三系统主机名配置文件
文件作用说明:修改主机名称
主机名称: 区域-机房-机柜号码-机器编号 BJ - pbs-010203 - 01
(一)centos6/7系统主机名称临时修改
hostname
[root@centos61 ~]# hostname
centos61.huawei.com
[root@centos61 ~]# hostname centos6.com
[root@centos61 ~]# exit
logout Connection closed by foreign host. Disconnected from remote host(centos6-) at ::. Type `help' to learn how to use Xshell prompt.
[c:\~]$ Connecting to 10.0.0.61:...
Connection established.
To escape to local shell, press Ctrl+Alt+]. Last login: Thu Dec :: from 10.0.0.1
[root@centos6 ~]# hostname
centos6.com
文件内容没有变化
[root@centos6 ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=centos61.huawei.com
[root@centos7 ~]# hostname centos7.jd.com
[root@centos7 ~]# exit
logout Connection closed by foreign host. Disconnected from remote host(centos7-1) at 09:58:58. Type `help' to learn how to use Xshell prompt.
[c:\~]$ ssh 10.0.0.72 Connecting to 10.0.0.200:22...
Connection established.
To escape to local shell, press Ctrl+Alt+]. WARNING! The remote SSH server rejected X11 forwarding request.
Last login: Wed Dec 4 08:27:57 2019 from 10.0.0.1
[root@centos7 ~]# hostname
centos7.jd.com
[root@centos7 ~]# cat /etc/hostname
centos7.com
(二)centos6系统主机名称永久修改
注意修改之后要重启,注销没用
[root@centos6 ~]# hostname
centos6.com
[root@centos6 ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=centos61.com
[root@centos6 ~]# exit
logout Connection closed by foreign host. Disconnected from remote host(centos6-) at ::. Type `help' to learn how to use Xshell prompt.
[c:\~]$ Connecting to 10.0.0.61:...
Connection established.
To escape to local shell, press Ctrl+Alt+]. Last login: Thu Dec :: from 10.0.0.1
[root@centos6 ~]# hostname
centos6.com
重启之后变成了centos61
[root@centos6 ~]# hostname
centos6.com
[root@centos6 ~]# reboot Broadcast message from root@centos6.com
(/dev/pts/) at : ... The system is going down for reboot NOW!
[root@centos6 ~]#
Connection closed by foreign host. Disconnected from remote host(centos6-) at ::. Type `help' to learn how to use Xshell prompt.
[c:\~]$ Connecting to 10.0.0.61:...
Connection established.
To escape to local shell, press Ctrl+Alt+]. Last login: Thu Dec :: from 10.0.0.1
[root@centos61 ~]# hostname
centos61.com
[root@centos61 ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=centos61.com
(三)centos7系统主机名称永久修改
要修改两处
[root@centos71 ~]# cat /etc/hostname
centos71.com
[root@centos71 ~]# sed -i s@@@g /etc/hostname
[root@centos71 ~]# cat /etc/hostname
centos7.com
[root@centos71 ~]# hostnamectl set-hostname centos7.com
[c:\~]$ Connecting to 10.0.0.200:...
Connection established.
To escape to local shell, press Ctrl+Alt+]. WARNING! The remote SSH server rejected X11 forwarding request.
Last login: Thu Dec :: from 10.0.0.1
[root@centos7 ~]# host
-bash: host: command not found
[root@centos7 ~]# hostname
centos7.com
Linux系统重要文件(三)的更多相关文章
- Linux系统中文件定位与查找
Linux系统中文件查找 关键词 文件查找 | find | locate 本文主要介绍有关文件查找的两个命令——find和locate,以及压缩打包的命令——compress, gzip,bzip2 ...
- Linux系统初学-第三课 Linux网络配置1
Linux系统初学-第三课 Linux网络配置 1.动态IP配置 配置文件路径 /etc/sysconfig/network-scripts/ ls查看网卡eth0,其中HWADDR值得获取:ifco ...
- Linux系统重要文件(二)
Linux系统重要文件概述 一系统自动挂载文件 文件路径信息:/etc/fstab文件作用说明:实现存储设备自动挂载 [root@centos7 ~]# cat /etc/fstab # # /etc ...
- Linux系统重要文件
Linux系统重要文件介绍与配置 一网卡配置文件 (一)网卡配置文件参数介绍 文件路径信息:/ec/sysconfig/network-scripts/ifcfg-eth0 文件作用说明:配置网卡地址 ...
- 实验二:Linux系统简单文件操作命令
項目 内容 这个作业属于哪个课程() 课程链接 这个作业的要求在哪里 实验要求 学号-姓名 17043133-木腾飞 作业学习目标 学习在Linux系统终端下进行命令行操作: 学习掌握常用命令行操作并 ...
- Linux系统下文件压缩与打包命令
Linux系统下文件压缩与打包命令 常用的压缩文件拓展名 * .Z * .zip * .gz * .bz2 * .xz * .tar * .tar.gz * .tar.bz2 * .tar.xz 压缩 ...
- Linux系统编程--文件IO操作
Linux思想即,Linux系统下一切皆文件. 一.对文件操作的几个函数 1.打开文件open函数 int open(const char *path, int oflags); int open(c ...
- 树莓派与Linux系统之间文件传输
最近因为要学习Python,于是把放在家里接了一年灰的树莓派又给搜出来了,刚买那会也捣鼓了好一阵子, 基本操作都学会了,但现在又忘光了,只能又从头开始搞了,首先第一个要解决的是怎么把文件从电脑传输到树 ...
- Linux学习笔记之二————Linux系统的文件和目录
一.Windows和Linux文件系统区别 1.在 windows 平台下,打开“计算机”,我们看到的是一个个的驱动器盘符: 每个驱动器都有自己的根目录结构,这样形成了多个树并列的情形,如图所示: ...
- linux系统——hosts文件修改
1. 关于/etc/host,主机名和IP配置文件 Hosts - The static table lookup for host name(主机名查询静态表) Linux 的/etc/hosts是 ...
随机推荐
- Fault Contract
The Fault Contract sample demonstrates how to communicate error information from a service to a clie ...
- 洛谷P1546 最短网络 Agri-Net(最小生成树,Kruskal)
洛谷P1546 最短网络 Agri-Net 最小生成树模板题. 直接使用 Kruskal 求解. 复杂度为 \(O(E\log E)\) . #include<stdio.h> #incl ...
- HDU6668 Polynomial(模拟)
HDU6668 Polynomial 顺序遍历找出最高次幂项的系数 分三种情况 \(1/0\).\(0/1\).\(f(x)/g(x)\) . 复杂度为 \(O(n)\) . #include< ...
- JSON字符串格式化为JSON对象
根据项目需要,需要对json格式的字符串格式化为json对象,以下是解决方法: 参考文章:https://www.cnblogs.com/cailijuan/p/10150918.html
- leetcode 238. 除自身以外数组的乘积 (python)
给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积. 示例: 输入: [1 ...
- 如何根据字典值的大小,对字典中的项排序---Python数据结构与算法相关问题与解决技巧
实际案例: 某班英语成绩以字典形式存储为: { 'LiLei' : 90, 'Jim' : 88, 'Lucy': 92 } 如何根据成绩高低,计算学生排名 -- 根据分数,进行排名,并且把排名信息添 ...
- MySQL 查询语句--------------进阶8:分页查询
#进阶8:分页查询 /* 应用场景:要显示的数据,一页显示不全,需要分页提交sql请求 语法: select 查询列表 from 表 [join type] join 表2 on 连接条件 [wher ...
- 牛逼哄哄的 API 网关是什么鬼?面试必问!
Java技术栈 www.javastack.cn 优秀的Java技术公众号 作者:aCoder2013 github.com/aCoder2013/blog/issues/35 前言 假设你正在开发一 ...
- [BZOJ 4771]七彩树(可持久化线段树+树上差分)
[BZOJ 4771]七彩树(可持久化线段树+树上差分) 题面 给定一棵n个点的有根树,编号依次为1到n,其中1号点是根节点.每个节点都被染上了某一种颜色,其中第i个节点的颜色为c[i].如果c[i] ...
- python 分析 知乎粉丝数据
昨天花了一下午写了一个小爬虫,用来分析自己的粉丝数据.这个真好玩!今天帮了群里好多大V也爬了他们的数据.运行速度:每分钟5千粉丝以上.暂时先写成这样,这两天要准备补考,没有时间继续玩这个. 下次要改进 ...