一、按系列羅列Linux的發行版,並描述不一樣發行版之間的聯繫與區別?html
一、Debian:(純正的社區方式,免費開源)前端
Ubuntu:主要針對於桌面系統和服務器系統,基於Debian開發。linux
Linux Mint:主要針對於用戶我的桌面系統,提供更有效,更爽快的用戶體驗。shell
二、slackware (商業版的Linunx)編程
suse:主要針對商業的服務器和桌面系統,基於slackware開發windows
SLES(SUSE Linux Enterprise Server(SLES):企業版的linux服務器,惟一與微軟Windows兼容的linux操做系統服務器
OpenSUSE:由SUSE二次開發,針對於我的桌面系統開發,提供開源。session
三、Redhat(早期開源免費,後期被紅帽收購)ide
Fedora: 是Redhat是針對我的用戶發行的linux系統,每隔大概6個月發行新版本。函數
Centos:是基於Redhat企業級的linux發行版本,基於Redhat linux enterprice server 開發。新版本每隔兩年發行新版本,每一個版本每隔6個月更新,以支持新的設備硬件。
四、其餘發行版本
Gentoo:定製版linux,幾乎能夠爲任何程序和需求做出優化和定製。Gentoo的哲學是:自由和選擇。
Kali:主要用於測試和***使用。
主要聯繫和區別:
聯繫:都是基礎linux內核開發的系統,都須要遵循GNU的GPL協定和LGPL協定。全部發行都有本身的版本號:主版本號、次版本號、發行號、修正號
區別:不一樣發行版採用不一樣版本的內核、庫、程序組成。主要區別:包管理器的不一樣,debianx系列採用的是DPKG包管理系統,apt(aptitude)是它主要前端包管理工具。openSUSE、Fedora、centOS、使用的是RPM包管理系統、yum、dnf是它的主要前端包管理工具。
二、安裝Centos7.6操做系統,建立一個本身名字的用戶名,並能夠正常登陸,將主要步驟截圖。
一、建立虛擬機
二、安裝光盤:
3:登陸
三、配置環境變量,實現執行history的時候能夠看到執行命令的時間。
1、臨時生效方式:在終端下運行:$HISTTIMEFORMAT=」%F%T」
2、永久生效方式:在開機啓動運行腳本目錄中建立一個腳本
reboot 重啓生效
四、總結Linux哲學思想。
(1)一切皆文件:把幾乎全部的資源抽象爲文件形式:包括硬件設備,甚至通訊接口等:
open(),close(),read(),write(),delete(),create()
(2)由衆多單一功能的程序組成,每一個程序只作一件事,而且作好。
(3)儘可能避免和用戶交互
目標:易於以編程的方式實現自動化任務
(4)使用文本文件保存配置信息。
五、總結Linux經常使用命令使用格式,並用實例說明。例如echo、screen、date、ifconfig、export等命令
echo:回顯一行文本,主要用法:
echo –n:回顯不會換行:
echo –e: enable interpretation of backslash escapes 能夠解釋反斜槓與逃逸符:\t \b等
screen:
語法: screen [ -options ] [ cmd [ args ] ]
screen -r [[pid.]tty[.host]]
命令行參數: -A
Adapt the sizes of all windows to the size of the current terminal.(將全部的窗口調整爲終端的大小)
-d|-D [pid.tty.host]
does not start screen, but detaches the elsewhere running screen session.(分離在別處運行的會話)
-h num
Specifies the history scrollback buffer to be num lines high.(指明歷史緩衝區行數)
-m causes screen to ignore the $STY environment variable. With "screen -m" creation of a new session is enforced,(忽略$STY(screen會話)環境變量,強制建立一個新的會話)
-r sessionowner/[pid.tty.host]
resumes a detached screen session.(恢復離線的會話)
-R attempts to resume the first detached screen session it finds. If successful, all other command-line options are ignored. If no detached session exists, starts a new session using the specified options, just as if -R had not been specified.(先恢復離線,若沒有離線則建立新的會話)
-ls [match]
-list [match]
does not start screen, but prints a list of pid.tty.host strings identifying your screen sessions(顯示目前全部的screen做業)
-wipe [match]
does the same as "screen -ls", but removes destroyed sessions instead of marking them as -S sessionname
When creating a new session, this option can be used to specify a meaningful name for the session.)
-x Attach to a not detached screen session. (Multi display mode). (恢復以前離線的screen做業)
-S sessionname
When creating a new session, this option can be used to specify a meaningful name for the session.( 當建立一個新的會話,給它定義一個名字)
date:
date:顯示時間 date [OPTION]... [+FORMAT] format:
格式符:
+%S: 從1970年1月1號(Unix元年)到如今通過的秒數
設定日期:date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
date 101008082013.08
ifconfig:網口配置
-a display all interfaces which are currently available, even if down(顯示全部接口,即便他是關閉的)
-s display a short list (like netstat -i)(顯示簡要的信息)
export:設置以及輸出shell變量屬性
Marks each NAME for automatic export to the environment of subsequently executed commands. If VALUE is supplied, assign VALUE before exporting(自動標識每一個名字給輸出隨後執行命令的環境,若是值被支持,則在輸出前指定值)
Options:
語法:export [-fnp][變量名稱]=[變量設置值]: -f refer to shell functions(表明[變量名稱]爲shell函數) -n remove the export property from each NAME(從每一個變量刪除輸出屬性) -p display a list of all exported variables and functions(顯示全部shell 環境變量和函數)