中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

第1章 Linux命令行簡(jiǎn)介

時(shí)間:2019-09-27

Linux是一個(gè)主要通過(guò)命令來(lái)進(jìn)行管理的操作系統(tǒng)。

1)通過(guò)SSH工具遠(yuǎn)程連接阿里云ECS服務(wù)器,如Xshell;

2)使用阿里云Web控制臺(tái)-遠(yuǎn)程連接ECS服務(wù)器

3)CentOS Linux命令行退出命令操作的界面

常見的Linux遠(yuǎn)程連接工具:SecureCRT、Xshell客戶端軟件;

1)最有用的快捷鍵;

2)移動(dòng)光標(biāo)快捷鍵;

3)剪切、粘貼、清除快捷鍵;

linux重啟命令_linux命令_linux 命令

4)重復(fù)執(zhí)行命令快捷鍵

5)控制快捷鍵

6)!開頭的快捷鍵

7)Esc相關(guān)

1)man命令的基本用法

man命令是LInux系統(tǒng)中最核心的命令之一,可通過(guò)其查看其它Linux命令的使用、用法信息。還可查看軟件服務(wù)配置文件、系統(tǒng)調(diào)用、庫(kù)函數(shù)等幫助信息;

2) 語(yǔ)法格式

man 參數(shù)選項(xiàng) 命令/文件

3)選項(xiàng)說(shuō)明

4)實(shí)戰(zhàn)舉例

man man

linux 命令_linux重啟命令_linux命令

man cp

man ls

5) man幫助頁(yè)的快捷鍵

復(fù)制代碼

[root@iZ2ze2m3z176dpbiaolifiZ ~]# 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'
[root@iZ2ze2m3z176dpbiaolifiZ ~]# more --help
more: unknown option -help
Usage: more [options] file...
Options:
  -d        display help instead of ring bell
  -f        count logical, rather than screen lines
  -l        suppress pause after form feed
  -p        do not scroll, clean screen and display text
  -c        do not scroll, display text and clean line ends
  -u        suppress underlining
  -s        squeeze multiple blank lines into one
  -NUM      specify the number of lines per screenful
  +NUM      display file beginning from line number NUM
  +/STRING  display file beginning from search string match
  -V        output version information and exit
[root@iZ2ze2m3z176dpbiaolifiZ ~]#