1:  网卡的配置文件

[

root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 
DEVICE=eth0  #网卡设备名称
HWADDR=:0C::::BD  #MAC地址
TYPE=Ethernet  #以太网
UUID=e982e20a-e7ef--8e44-a7c0c474c708  #Linux系统内部的标识,唯一
ONBOOT=yes  #开机启动
NM_CONTROLLED=yes  
#BOOTPROTO=dhclient
BOOTPROTO=static  #引导协议,一般为static(静态),dhclient(自动获取)
IPADDR=192.168.126.128  #IP地址
NETMASK=255.255.255.0  #子网掩码
GATEWAY=192.168.126.2  #网关
DNS=111.13.148.14

同样可以使用命令setup来执行网卡参数

2:  DNS文件

[root@localhost ~]# cat /etc/resolv.conf
; generated by /sbin/dhclient-script
search localdomain
nameserver 192.168.126.2

注:网卡的配置文件里面如果配置了DNS,它的优先级是高于这个配置文件的。

3:  hosts文件

/etc/hosts  用户IP与名称(域名)的对应解析的配置文件

在实际的生产环境中很有用(一般所有的内网机器hosts文件都保持一致),主要用于服务器迁移

[root@centos6 ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
:: localhost localhost.localdomain localhost6 localhost6.localdomain6
192.168.197.100 centos6.
[root@centos6 ~]# hostname
centos6.
[root@centos6 ~]# ping centos6.
PING centos6. (192.168.197.100) () bytes of data.
bytes from centos6. (192.168.197.100): icmp_seq= ttl= time=0.051 ms
bytes from centos6. (192.168.197.100): icmp_seq= ttl= time=0.047 ms
bytes from centos6. (192.168.197.100): icmp_seq= ttl= time=0.047 ms
^C
-- centos6. ping statistics --
packets transmitted, received, % packet loss, time 2867ms
rtt min/avg/max/mdev = 0.047/0.048/0.051/0.006 ms

实际生产环境的作用:

  1.  开发、产品、测试人员用于通过正式的域名来测试产品

  2.  服务器之间调用可以用域名,方便以后的迁移(各程序之间调用域名,机房迁移之后只需修改相应的hosts文件即可)

4:  主机名文件

/etc/sysconfig/network  修改机器名及网卡启动、网关配置文件

修改上述的HOSTNAME永久生效(修改主机名)

5:  fstab文件

/etc/fstab  记录开机要挂载的文件系统文件

开机自动挂载磁盘,设置文件系统挂载信息的文件

文件信息一共包含六列(具体解析可 man fstab 查看)

第一列:  被挂载的设备名称

第二列:  挂载点位置

第三列:  文件系统类型

第四列:  挂载选项(只读、可写、其他等等)

第五列:  需不需要备份(0就是不备份)

第六列:  需不需要开机检查(0就是不需要,需要设置为1)

6:  /etc/rc.local文件

存放开机自启动服务命令(同于windows里面的开始菜单中启动菜单)

可以将命令直接写入到配置文件的末行

注:  实际生产环境中,一般服务开机自启动都会写入这个配置文件里面,这样只需要查看此配置文件就可以得知服务器运行哪些服务。

7:  inittab文件

/etc/inittab  设定系统启动时init进程将把系统设置成什么样的运行级别及加相关的启动文件配置的文件

[root@localhost ~]# 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:

注:  linux开机启动流程如下:

开机自检----MBR引导程序-----GRUB菜单----加载内核----运行init进程----读取/etc/inittab配置文件----执行/etc/rc.d/rc.sysinit脚本----执行/etc/rc.local脚本(读取运行级别)----启动终端登录进程----登录系统

8:  软件启动服务文件

/etc/init.d  安装的软件启动服务(系统的启动服务)所在目录

使用yum、rpm安装的软件启动程序都在这个目录下

9:  全局环境变量文件

/etc/profile  系统全局变量的配置文件

[root@localhost init.d]# cat /etc/profile
# /etc/profile # System wide environment and startup programs, for login setup  #系统全局变量和启动程序
# Functions and aliases go in /etc/bashrc # It's NOT a good idea to change this file unless you know what you  #除非你知道你要做什么,否则不要更改
# are doing. It's much better to create a custom.sh shell script in  #更好的是去创建脚本在/etc/profile.d,去改变
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates. pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$
else
PATH=$:$PATH
fi
esac
} if [ -x /usr/bin/id ]; then
if [ -z "$EUID" ]; then
# ksh workaround
EUID=`id -u`
UID=`id -ru`
fi
USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
fi # Path manipulation
if [ "$EUID" = "" ]; then
pathmunge /sbin
pathmunge /usr/sbin
pathmunge /usr/local/sbin
else
pathmunge /usr/local/sbin after
pathmunge /usr/sbin after
pathmunge /sbin after
fi HOSTNAME=`/bin/hostname >/dev/null`
HISTSIZE=
if [ "$HISTCONTROL" = "ignorespace" ] ; then
export HISTCONTROL=ignoreboth
else
export HISTCONTROL=ignoredups
fi export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL # By default, we want umask to get set. This sets it for login shell
# Current threshold for system reserved uid/gids is
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt ] && [ "`id -gn`" = "`id -un`" ]; then
umask
else
umask
fi for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
if [ "${-#*i}" != "$-" ]; then
. "$i"
else
. "$i" >/dev/null 2>&1
fi
fi
done unset i
unset -f pathmunge
export TMOUT=300
HISTSIZE=50
HISTFILESIZE=50

与之关联的还有一个文件/etc/profile.d,可以存放登录后自动执行的脚本

[root@centos6 ~]# cd /etc/profile.d/
[root@centos6 profile.d]# vi welcome.sh
echo "welcome to mingongge's blog"
[root@centos6 profile.d]# chmod +x welcome.sh
[root@centos6 profile.d]# logout
Last login: Thu Dec :: from 192.168.197.1
welcome to mingongge's blog

10:  motd文件

/etc/motd  用户登录提示信息

编辑过后,再登录就显示自己编辑的文本。

11:  group文件

/etc/group  用户的组名与相关信息

12:  用户账号相关信息

/etc/passwd  系统所有用户账号信息文件

13:  用户密码相关文件

/etc/shadow  系统所有用户密码信息文件
/etc/gshadow  系统所有组密码信息文件

14:  系统信息文件

/var/log/messages  系统日志文件

/var/log/secure  登陆系统存取信息文件(系统安全日志文件)

15:  定时任务配置文件

/var/spool/cron/  定时任务配置文件

DESCRIPTION
Crontab is the program used to install, remove or list the tables  #crontab是程序用来安装,移除或者列出一个表去驱动cron进程。
used to drive the cron() daemon. Each user can have their own
crontab, and though these are files in /var/spool/ , they are not  #这些定时文件到在/var/spool/cron下
intended to be edited directly. For SELinux in mls mode can be even
more crontabs - for each range. For more see selinux(). The cron jobs could be allow or disallow for different users. For
classical crontab there exists cron.allow and cron.deny files. If
cron.allow file exists, then you must be listed therein in order to
be allowed to use this command. If the cron.allow file does not
exist but the cron.deny file does exist, then you must not be
listed in the cron.deny file in order to use this command. If nei-
ther of these files exists, only the super user will be allowed to
use this command. The second option is using PAM authentication,
where you set up users, which could or couldn’t use crontab and
also system cron jobs from /etc/cron.d/. The temporary directory could be set in enviroment variables. If
it’s not set by user than /tmp is used.

Linux的重要子目录的更多相关文章

  1. (转)Linux系统重要子目录及内容小结

    Linux系统重要子目录及内容小结 原文:http://blog.csdn.net/xiaolong361/article/details/52318834 1.首先来介绍下根目录下的一些重要目录含义 ...

  2. Linux移植之子目录下的built-in.o生成过程分析

    在Linux移植之make uImage编译过程分析中罗列出了最后链接生成vmlinux的过程.可以看到在每个子目录下都有一个built-in.o文件.对于此产生了疑问built-in.o文件是根据什 ...

  3. Linux C++ 访问子目录以及里面的文件

    #include <iostream> #include <fstream> #include <string> #include <vector> # ...

  4. 构建LINUX下的入侵检测系统——LIDS 系统管理命令--vlock

    构建LINUX下的入侵检测系统——LIDS   系统管理命令--vlock http://blog.chinaunix.net/uid-306663-id-2440200.html LIDS官方网站: ...

  5. Linux命令及架构部署大全

    1.Linux系统基础知识 Linux 基础优化配置 Linux系统根目录结构介绍 linux系统重要子目录介绍 Linux基础命令(之一)详解 Linux基础命令(之二)详解 Linux文件系统 L ...

  6. Linux 驱动开发

    linux驱动开发总结(一) 基础性总结 1, linux驱动一般分为3大类: * 字符设备 * 块设备 * 网络设备 2, 开发环境构建: * 交叉工具链构建 * NFS和tftp服务器安装 3, ...

  7. Linux 目录结构_004

    前言 Linux文件系统层次标准,英文全称Filesystem Hierarchy Standard,英文简称FHS. 由于利用Linux来开发产品的团队和个人实在太多了,如果每个人都以自己的想法来配 ...

  8. Linux移植之make uImage编译过程分析

    编译出uboot可以运行的linux内核代码的命令是make uImage,下面详细介绍下生成linux-2.6.22.6/arch/arm/boot/uImage的过程: 1.vmlinux.Ima ...

  9. linux菜鸟笔记

    linux目录的子目录复制 cp -r 要复制的目录+新的目录 cp -r a test 意思就是将a的子目录及文件复制到新的目录test下面 zt@ubuntu:~/Desktop$ mkdir - ...

随机推荐

  1. C++面试考点

    1.下面程序在x64下结果 struct st { int a; long long b; double c; }; int main() { st s; cout << &s.a ...

  2. 三种web性能压力测试工具

    三种web性能压力测试工具http_load webbench ab小结 题记:压力和性能测试工具很多,下文讨论的是我觉得比较容易上手,用的比较多的三种 http_load 下载地址:http://w ...

  3. VisualGDB系列11:Linux C++项目中使用外部Linux库

    根据VisualGDB官网(https://visualgdb.com)的帮助文档大致翻译而成.主要是作为个人学习记录.有错误的地方,Robin欢迎大家指正. 在<使用VS创建Linux静态库和 ...

  4. Angular07 利用angular打造管理系统页面

    1 创建一个新的angular应用 ng new adminSystem 2 利用WebStorm打开adminSystem应用 3 借助AdminLTE这个开源项目来辅助开发 AdminLTE项目: ...

  5. PythonNote02_HTML标签

    <!DOCTYPE> <html> <head> <meta charset = "utf-8" /> <meta name= ...

  6. 771. Jewels and Stones珠宝数组和石头数组中的字母对应

    [抄题]: You're given strings J representing the types of stones that are jewels, and S representing th ...

  7. 主键primary key和唯一索引unique index

    1)主键一定是唯一性索引,唯一性索引并不一定就是主键. 2)主键就是能够唯一标识表中某一行的属性或属性组,一个表只能有一个主键,但可以有多个候选索引. 3)主键常常与外键构成参照完整性约束,防止出现数 ...

  8. JavaPersistenceWithHibernate第二版笔记-第七章-001Mapping a set(@ElementCollection、@CollectionTable、@JoinColumn、)

    一.结构 二.代码 1. package org.jpwh.model.collections.setofstrings; import org.jpwh.model.Constants; impor ...

  9. 100211D Police Cities

    传送门 分析 看到这个题我们的第一反应自然是Tarjan缩点,在这之后我们可以发现实际只要在缩点之后所有出度或入度为0的点布置警察局就可以达到要求,我们用dpij表示考虑前i个出度或入度为0的点共布置 ...

  10. 《Maven实战》笔记-10-灵活的构建

    一.灵活构建的意义 一个优秀的构建系统必须足够灵活,它应该能够让项目在不同的环境下都能成功地构建.例如,典型的项目都会有开发环境.测试环境和产品环境,这些环境的数据库配置不尽相同,那么项目构建的时候就 ...