第一章 Linux
Linux,全称GNU/Linux,是一种免费使用和自由传播的类UNIX操作系统,其内核由林纳斯·本纳第克特·托瓦兹于1991年10月5日首次发布,它主要受到Minix和Unix思想的启发,是一个基于POSIX和Unix的多用户、多任务、支持多线程和多CPU的操作系统。它能运行主要的Unix工具软件、应用程序和网络协议。它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。Linux有上百种不同的发行版,如基于社区开发的debian、archlinux,和基于商业开发的Red Hat Enterprise Linux、SUSE、oracle linux等。
其实,Linux就是一个操作系统。
第二章 Linux 发行版
主要的Linux发行版如下图所示:
目前主流的系列为Debian和Redhat,其中主流的操作系统为 Redhat、Centos、Debian 、Ubuntu。
第一节 RedHat和CentOS的关系
CentOS是Redhat的一个分支,其特点是免费、迭代周期短,没有商业支持服务。
RedHat是一个商业化的产品,如果需要使用咨询和在线补丁升级功能需要付费。
总的来说,CentOS更像是RedHat的测试版,新的功能出来后,现在CentOS中测试,测试稳定后会形成RedHat新的的发行版。所以在使用yum源(或者说dnf源)的时候,一般情况下,RedHat可以直接使用Centos的源。
第二节 Debian和Ubuntu的关系
Ubuntu是基于Debian进行二次开发的,Ubuntu更注重于桌面,更适合桌面使用。
Ubuntu和Debian都有各自的软件仓库。
安装Centos系统
第一节 安装
-
创建虚拟机
-
挂载ISO镜像
-
虚拟机开机
-
选择安装
-
选择语言
-选择安装盘
-
磁盘分区
-
选择需要安装的软件
-
设置网络
-
设置时间
-
开始安装
-
设置root密码
-
安装完成重启
-
选择启动内核
-
接受许可
-
登录桌面
第二节 创建用户并登录
第三章 配置 history 显示命令执行时间
-
默认情况下,history不会显示执行时间
修改HISTTIMEFORMAT变量
HISTTIMEFORMAT变量的设置格式使用了strftime格式
If the HISTTIMEFORMAT variable is set and not null, its value is used
as a format string for strftime(3) to print the time stamp associated
with each displayed history entry.
该格式的帮助可以在man date中看到
FORMAT controls the output. Interpreted sequences are:
%% a literal %
%a locale's abbreviated weekday name (e.g., Sun)
%A locale's full weekday name (e.g., Sunday)
%b locale's abbreviated month name (e.g., Jan)
%B locale's full month name (e.g., January)
%c locale's date and time (e.g., Thu Mar 3 23:05:25 2005)
%C century; like %Y, except omit last two digits (e.g., 20)
%d day of month (e.g., 01)
%D date; same as %m/%d/%y
%e day of month, space padded; same as %_d
%F full date; same as %Y-%m-%d
%g last two digits of year of ISO week number (see %G)
%G year of ISO week number (see %V); normally useful only with %V
%h same as %b
%H hour (00..23)
%I hour (01..12)
%j day of year (001..366)
%k hour, space padded ( 0..23); same as %_H
%l hour, space padded ( 1..12); same as %_I
%m month (01..12)
%M minute (00..59)
%n a newline
%N nanoseconds (000000000..999999999)
%p locale's equivalent of either AM or PM; blank if not known
%P like %p, but lower case
%q quarter of year (1..4)
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
%R 24-hour hour and minute; same as %H:%M
%s seconds since 1970-01-01 00:00:00 UTC
%S second (00..60)
%t a tab
%T time; same as %H:%M:%S
%u day of week (1..7); 1 is Monday
%U week number of year, with Sunday as first day of week (00..53)
%V ISO week number, with Monday as first day of week (01..53)
%w day of week (0..6); 0 is Sunday
%W week number of year, with Monday as first day of week (00..53)
%x locale's date representation (e.g., 12/31/99)
%X locale's time representation (e.g., 23:13:48)
%y last two digits of year (00..99)
%Y year
%z +hhmm numeric time zone (e.g., -0400)
%:z +hh:mm numeric time zone (e.g., -04:00)
%::z +hh:mm:ss numeric time zone (e.g., -04:00:00)
%:::z numeric time zone with : to necessary precision (e.g., -04, +05:30)
%Z alphabetic time zone abbreviation (e.g., EDT)
- 设置HISTTIMEFORMAT格式
[root@server ~]# echo "export HISTTIMEFORMAT='%F %T '" >> /etc/bashrc
[root@server ~]# source /etc/bashrc
第四章 Linux 哲学思想
Linux的哲学思想就是:一切皆文件。
第五章 Linux 常见的命令格式
一般来说,Linux命令基本遵循了以下格式:
命令 选项 变量