Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Linux 極入門篇

LJP-TW
September 25, 2021

Linux 極入門篇

LJP-TW

September 25, 2021
Tweet

More Decks by LJP-TW

Other Decks in Technology

Transcript

  1. 來跟大家簡單聊聊... • Linux 是什麼 • Ubuntu 介面 • 用終端機敲幾個常用指令 •

    幾個常用的工具程式 • 各種再深入一小點點的 Linux 知識 3
  2. 給你看看 Linus • Linus Benedict Torvalds • Linux 的老爸 •

    Talk is cheap. Show me the code. 9 Ref: https://lkml.org/lkml/2000/8/25/132
  3. Linux 常用指令 13 • 在 Linux 裡面打指令, 按 tab 就有機會直接補全整條指令

    • 一開始你排斥, 後來你習慣, 最後你離不開, 這就是 TAB 補全
  4. Linux 常用指令 • mkdir • 建立目錄 • cd • 移動

    • ls • 條列目錄 • touch • 建立檔案 14 • echo • 回音(? • cat • 看檔案內容 • mv • 搬檔案 • cp • 複製檔案 • rm • 刪除檔案 • sudo • 提升權限 • apt / apt-get • 套件管理 • dpkg • 套件管理
  5. File Descriptor • 簡稱 fd • 在 Linux 的世界, 萬物皆是檔案

    • File Descriptor 用來代表檔案 (代表萬物) • /proc/<pid>/fd • 直接進 DEMO 25