Linux 發(fā)行版(英語:Linux distribution,也被叫做GNU/Linux 發(fā)行版),為一般用戶預(yù)先集成好的Linux操作系統(tǒng)及各種應(yīng)用軟件。一般用戶不需要重新編譯,在直接安裝之后,只需要小幅度更改設(shè)置就可以使用,通常以軟件包管理系統(tǒng)來進(jìn)行應(yīng)用軟件的管理,F(xiàn)在有超過300個(gè)Linux發(fā)行版(Linux發(fā)行版列表)。大部分都正處于活躍的開發(fā)中,不斷地改進(jìn)。
由于大多數(shù)軟件包是自由軟件和開源軟件,所以Linux發(fā)行版的形式多種多樣——從功能齊全的桌面系統(tǒng)以及服務(wù)器系統(tǒng)到小型系統(tǒng)(通常在嵌入式設(shè)備,或者啟動(dòng)軟盤)。除了一些定制軟件(如安裝和配置工具)linux命令,發(fā)行版通常只是將特定的應(yīng)用軟件安裝在一堆函數(shù)庫和內(nèi)核上,以滿足特定用戶的需求。
Ubuntu,一個(gè)非常流行的桌面發(fā)行版,由Canonical維護(hù)
社群發(fā)行版
Debian,一個(gè)強(qiáng)烈信奉自由軟件,并由志愿者維護(hù)的系統(tǒng)
Kubuntu, 使用KDE桌面的Ubuntu
Linux Mint,從Ubuntu派生并與Ubuntu兼容的系統(tǒng)
Knoppix,第一個(gè)Live CD發(fā)行版,可以從可移動(dòng)介質(zhì)運(yùn)行,Debian的派生版
OpenGEU,Ubuntu的派生版
Elementary OS:基于Ubuntu,接口酷似Mac OS X
gOS和其他上網(wǎng)本用的系統(tǒng)
Red Hat Enterprise Linux,F(xiàn)edora的商業(yè)版,由Red Hat維護(hù)和提供技術(shù)支持
openSUSE,最初由Slackware分離出來,現(xiàn)在由Novell維護(hù)
Fedora,是Red Hat的社區(qū)版,會(huì)經(jīng)常引入新特性進(jìn)行測試
PCLinuxOS,Mandriva的派生版本,由社區(qū)維護(hù)的非常流行的發(fā)行版
CentOS,從Red Hat發(fā)展而來的發(fā)行版,由志愿者維護(hù),旨在提供開源的,并與Red Hat 100%兼容的系統(tǒng)
Mageia,從Mandriva發(fā)展而來的發(fā)行版
ArchLinux,一個(gè)基于KISS(Keep It Simple and Stupid)的滾動(dòng)更新的操作系統(tǒng)
Chakra,一個(gè)從ArchLinux派生出來,只使用KDE桌面的半滾動(dòng)更新發(fā)行版
Gentoo,一個(gè)面向高級(jí)用戶的發(fā)行版,所有軟件的源代碼需要自行編譯
Slackware,最早的發(fā)行版之一,1993年創(chuàng)建,由Patrick J. Volkerding維護(hù)
Linux系統(tǒng)常用命令格式: command[選項(xiàng)] [參數(shù)]
其中選項(xiàng)以-開始,多個(gè)選項(xiàng)可用一個(gè)-連起來,如ls -l -a與ls -la。根據(jù)命令的不同linux命令,參數(shù)分為可選的或必須的。
使用linux命令最主要的是要會(huì)使用命令幫助,常見的命令幫助有:
1.man command(系統(tǒng)手冊中的命令幫助)
2.info command(超級(jí)詳細(xì)的命令幫助)
3.command --help(shell內(nèi)部的命令幫助)
4.whatis(簡短的命令說明)
5.apropos(聯(lián)機(jī)模糊搜索)
[root@svr-75# cat --help
Usage: cat [OPTION]... [FILE]...
Concatenate FILE(s), or standard input, to standard output.
-A, --show-all equivalent to -vET
-b, --number-nonblank number nonempty output lines, overrides -n
-e equivalent to -vE
-E, --show-ends display $ at end of each line
-n, --number number all output lines
-s, --squeeze-blank suppress repeated empty output lines
-t equivalent to -vT
-T, --show-tabs display TAB characters as ^I
-u (ignored)
-v, --show-nonprinting use ^ and M- notation, except for LFD and TAB
--help display this help and exit
--version output version information and exit
With no FILE, or when FILE is -, read standard input.
Examples:
cat f - g Output f's contents, then standard input, then g's contents.
cat Copy standard input to standard output.
GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
For complete documentation, run: info coreutils 'cat invocation'