记录在学习linux过程中,碰到的常见的文件的路径
序号 | 路径 | 关键字 | 描述 |
---|---|---|---|
1 | /etc/bashrc(所有用户) ~/.bashrc(登录用户) /root/.bashrc(root用户) | 用户环境、 别名 | 每开启一个新的bash终端都会生效. ???尝试用root用户登录 /etc/bashrc和~.bashrc的执行顺序 |
2 | /etc/sysconfig/network-scripts/ifcfg-eth0 | 网卡eth0的配置 | 学会用nmcli来对网络进行配置 |
3 | /etc/hostname | 主机名 | #hostname 可以查看修改 |
4 | /etc/yun.repos.d/xxxx.repo | yum客户端 | 配置远程仓库的地址 [rhel] name=xxx baseurl=xxx enable=1 #该仓库配置是否生效 gpgcheck=0 #签名校验 |
5 | /etc/passwd | 用户信息 | 一行一个用户 |
6 | /etc/shells/ | 解释器目录 | ??? |
7 | /etc/resolv.conf | DNS配置 | nameserver 172.25.254.254 可以使用nslookup、host、ping来进行测试 |
8 | /etc/shadaw | 密码文件 | |
9 | /etc/group | 组 | cat /etc/group | grep 组名 |
10 | /etc/chrony.conf | NTP客户端配置 | 客户端守护进程为 chronyd-daemon |
11 | /etc/fstab | 开机挂载 | source mount-point 文件系统类型(ext3/4,xfs) 参数(defaults) 备份方式 硬件检测 |
12 | /proc/version | 内核版本信息 | # uname -r |
13 | /etc/redhat-release | 红帽版本信息 | |
14 | /etc/selinux/config | SeLinux运行模式 | linux之皇帝 |
15 | /var/httpd/conf/httpd.conf /var/www/html | httpd | httpd服务 |
16 | /var/ftp | ftp | vsftpd 服务 默认目录 |
17 | /etc/samba/smb.conf | samba配置 | linux-linux,linux-windows |
18 | /etc/exports | NFS | -net file system linux-linux |
19 | /etc/my.conf | mariadb | mysql和mariadb的默认配置文件 |
20 | /etc/iscsi/initiatorname.iscsi | iscsi | 客户端: 配置服务端发布的名称 |
21 | ~/.vimrc | vim预先设置 | set nu set ai set tabstop=2 |
22 | ~/.bash_history | 命令行操作记录 history -c >~/.bash_history | |