LINUX(一)
1. Linux基础
- 所用工具:SecureCRT
- Linux版本:CentOS 6.9 64位
- Linux专业来说是个内核不是操作系统
- tab键可以自动补齐目录(文件)和命令,能补齐的表示一定存在的,善用tab键可以解决没有这个目录或文件的error
- Linux哲学:一切皆文件
- 一些快捷键:
- CTRL+C:取消
- CTRL+D:退出
- CTRL+L:清屏(不是真正意义上的清屏)
- 通配符
- *:0个或多个字符
- ?:1个字符
- 常用的一些Linux操作系统
- CentOS 64 位 #免费
- Red-hat 红帽子
- Ubuntu
- Debian
- klinux
- deepin
2.常见的系统目录
/bin #binary 二进制, bin目录常放应用程序
/boot #启动文件存放的位置 #vmlinuz-2.6.32-696.el6.x86_64 #2.6.32 内核版本 #x86_64 架构
/dev #设备目录
★/etc #and so on 等等 #配置文件所在的路径
★/home #用户默认的家目录
/lib #library 库文件
/lib64
/lost+found
/media #媒体 CD/DVD
/misc
/mnt
/net #网络
/opt #常见的应用目录
★/proc #内核影响,性能统计命令常读取的位置
/root #root的家 root是超级管理员,与windows中的administrator一样
/sbin #超级管理员的命令
/selinux #安全性
/srv
/sys
/tmp #临时目录
/usr #第三方应用的目录
★/var #variable 变化的目录 #系统日志存放的位置
- 命令man hier 可以得到所有目录的解释
常用目录及含义
文件 | 说明 | 备注 |
---|---|---|
/etc/inittab | 系统runlevel初始文 | |
/etc/motd | 件横幅文件 | |
/etc/group | 组信息文件 | |
/etc/shadow | 用户密码文件 | |
/etc/passwd | 用户信息文件 | |
/etc/services | 常见的协议和端口 | |
/etc/bashrc | 系统配置文件 | 类似于windows下的系统变量 |
/etc/profile | 系统配置文件 | 类似于windows下的系统变量 |
/etc/profile.d/custom.sh | 系统配置文件 | 类似于windows下的系统变量 |
~/.bashrc | 用户配置文件 | 类似于windows下的系统变量 |
/etc/sudoers | sudo配置文件 | 要用visudo来编辑 |
/etc/sysconfig/network-scripts/ifcfg-eth0 | 网卡配置文件 | 第一块一般是eth0 |
/etc/shells | 系统支持的shell列 |
-
/etc/inittab
[root@CSDN home]# 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(5), init(8), and initctl(8). # # Default runlevel. The runlevels used are: # 0 - halt (Do NOT set initdefault to this) 0 - 关机 # 1 - Single user mode 1 - 单用户模式 # 2 - Multiuser, without NFS (The same as 3, if you do not have networking) 2 - 多用户模式,不带NFS(网络文件系统) # 3 - Full multiuser mode 3 - 文字模式 # 4 - unused 4 - 备用 # 5 - X11 5 - 图形界面模式 # 6 - reboot (Do NOT set initdefault to this) 6 - 重启 # id:5:initdefault: