SlideShare una empresa de Scribd logo
1 de 1
Descargar para leer sin conexión
Unix/Linux コマンドリファレンス                                                                                      .com
                  ファイルコマンド                                              システム情報
ls – ディレクトリの内容を一覧表示する                                date – 現在の日付と時間を表示する
ls -al – `.’ で始まるファイルも含めた一覧を詳細表示する                   cal – 今月のカレンダを表示する
cd dir - dir (ディレクトリ)へ移動する                           uptime – 現在の uptime を表示する
cd – ホームディレクトリへ移動する                                  w – オンライン状態のユーザの情報を表示する
pwd – 現在のディレクトリの名前を表示する                              whoami – 現在のユーザ名を表示する
mkdir dir – dir を作成する                                finger user – user の情報を表示する
rm file – file(ファイル)を削除する                            uname -a – カーネル情報を表示する
rm -r dir – dir と dir 配下全てのファイル・ディレクトリを削             cat /proc/cpuinfo – CPU 情報を表示する
除する                                                  cat /proc/meminfo – メモリ情報を表示する
     -f file – file を強制的に削除する
rm                                                   man command – command のマニュアルを表示する
rm   -rf dir – dir と dir 配下全てを強制的に削除する *             df – ディスク使用状況を表示する
cp   file1 file2 – file1 を file2 にコピーする              du – ディレクトリのディスク使用状況を表示する
cp   -r dir1 dir2 – dir1 を dir2 にコピーする               free – メモリとスワップの使用状況を表示する
mv   file1 file2 – file1 を file2 に移動(名前変更)する;もし      whereis app – app(アプリケーション)のバイナリ・man ペー
file2 がディレクトリの場合は file1 を file2 配下に移動する              ジの場所を表示する
ln -s file link – file のシンボリックリンク link を作成す          which app – デフォルトで使用される app を表示する
る
                                                                 アーカイブの作成・展開
touch file – file を更新・作成する
                                                     tar cf file.tar files – files を含む file.tar という名の
cat > file – 標準入力を file に書き出す
                                                     tar ファイルを作成する
more file – file の内容を出力する
                                                     tar xf file.tar – ファイルを展開する
head file – file の先頭の 10 行を出力する
                                                     tar czf file.tar.gz files – tar ファイルを Gzip で圧
tail file – file の末尾の 10 行を出力する
                                                     縮したファイルを作成する
tail -f file – file が更新される度に出力し続ける
                                                     tar xzf file.tar.gz – Gzip で圧縮されたファイルを展開
                 プロセス管理                              する
ps – ユーザの現在アクティブなプロセスを表示する                           tar cjf file.tar.bz2 – tar ファイルを Bzip2 で圧縮した
top – 全ての実行中プロセスを表示する                                ファイルを作成する
                                                     tar xjf file.tar.bz2 – Bzip2 で圧縮されたファイルを展
kill pid – プロセス ID が pid のプロセスを終了させる
                                                     開する
killall proc – 名前が proc のプロセスを全て kill する *
                                                     gzip file – file を圧縮し file.gz に名前変更する
bg – 停止中またはバッググラウンドのジョブを表示する; バッグ
                                                     gzip -d file.gz – file.gz を展開し file に戻す
グラウンドの停止中ジョブを再開する
fg – 最新のジョブをフォアグラウンドに切り替える
                                                                   ネットワーク
fg n – n 番目のジョブをフォアグラウンドに切り替える
                                               ping host – host へ ping し結果を出力する
              ファイルのアクセス権                       whois domain – domain の whois 情報を取得する
chmod octal file – file のアクセス権を octal(数字 1 つがそ dig domain – domain の DNS 情報を取得する
れぞれ所有者, グループ, その他を意味する)に設定する;                  dig -x host – host の逆引きをする
   ● 4 – 読み込み (r)
                                               wget file – file をダウンロードする
   ● 2 – 書き込み (w)
                                               wget -c file – 一時中断した file の続きから再開する
   ● 1 – 実行 (x)
例:                                                     インストール
chmod 777 – 全てのユーザに rwx を許可する              ソースからインストールする: 
chmod 755 – 所有者に rwx を, グループとその他に rx を許可する ./configure
その他のオプションは man chmod を参照すること               make
                        SSH                  make install
ssh user@host – host へ user として接続する          dpkg -i pkg.deb – パッケージのインストール(Debian)
ssh -p port user@host – port 指定で ssh 接続する    rpm -Uvh pkg.rpm – パッケージのインストール(RPM)
ssh-copy-id user@host – 公開鍵を user@host に登録する
                                                              ショートカット
                        検索                   Ctrl+C – 現在のコマンドを終了する
grep pattern files – files 内の pattern を検索する  Ctrl+Z – 現在のコマンドを中断する, fg でフォアグランドジョ
grep -r pattern dir – dir 配下の全てのファイル内の       ブ、bg でバックグラウンドジョブに切り替える
pattern を検索する                                Ctrl+D – exit と同様に現在のセッションをログアウトする
command | grep pattern – command の出力結果から     Ctrl+W – 現在行で 1 単語を消す
pattern を検索する
                                             Ctrl+U – 現在行全体を消す
locate file – file というパターンを含む全てのファイルを検
                                             Ctrl+R – 最近実行したコマンドを表示する
索する
                                             !! - 最後に実行したコマンドを繰り返す
                                             exit – 現在のセッションをログアウトする

                                                     * 十分注意して使ってくださいね.
                                                  翻訳:むとうまさお <mutoh at highway.ne.jp> (http://www.yotabanana.com/)

Más contenido relacionado

La actualidad más candente

20090323 Phpstudy
20090323 Phpstudy20090323 Phpstudy
20090323 PhpstudyYusuke Ando
 
Ohp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 MojiretsuOhp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 Mojiretsusesejun
 
Gorm @ gopher china
Gorm @ gopher chinaGorm @ gopher china
Gorm @ gopher chinaJinzhu
 
英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5Yusuke Kawasaki
 
Html5 bangla-e-book
Html5  bangla-e-bookHtml5  bangla-e-book
Html5 bangla-e-bookSujit Halder
 
policy-strategy_and_leadership_review
 policy-strategy_and_leadership_review policy-strategy_and_leadership_review
policy-strategy_and_leadership_reviewMUHAMMAD FERDAUS
 
Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?Andy Davies
 
Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014Peter Martin
 
Open Source Type Pad Mobile
Open Source Type Pad MobileOpen Source Type Pad Mobile
Open Source Type Pad MobileHiroshi Sakai
 
俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279Turkmenistan Laws
 
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687Turkmenistan Laws
 
Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎mayperl
 

La actualidad más candente (20)

XS Japan 2008 Citrix Japanese
XS Japan 2008 Citrix JapaneseXS Japan 2008 Citrix Japanese
XS Japan 2008 Citrix Japanese
 
за Ruby
за Rubyза Ruby
за Ruby
 
20090323 Phpstudy
20090323 Phpstudy20090323 Phpstudy
20090323 Phpstudy
 
Ohp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 MojiretsuOhp Seijoen H20 06 Mojiretsu
Ohp Seijoen H20 06 Mojiretsu
 
Windows xp
Windows xpWindows xp
Windows xp
 
Gorm
GormGorm
Gorm
 
Gorm @ gopher china
Gorm @ gopher chinaGorm @ gopher china
Gorm @ gopher china
 
英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5英語ブログのスヽメ - 1000スピーカープロジェクト#5
英語ブログのスヽメ - 1000スピーカープロジェクト#5
 
Computer chamak
Computer chamakComputer chamak
Computer chamak
 
Html5 bangla-e-book
Html5  bangla-e-bookHtml5  bangla-e-book
Html5 bangla-e-book
 
policy-strategy_and_leadership_review
 policy-strategy_and_leadership_review policy-strategy_and_leadership_review
policy-strategy_and_leadership_review
 
Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?Speed matters, So why is your site so slow?
Speed matters, So why is your site so slow?
 
Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014Help mijn website is gehackt - Joomla User Group Den Bosch 2014
Help mijn website is gehackt - Joomla User Group Den Bosch 2014
 
HTML-Bangla E-book
HTML-Bangla E-bookHTML-Bangla E-book
HTML-Bangla E-book
 
Open Source Type Pad Mobile
Open Source Type Pad MobileOpen Source Type Pad Mobile
Open Source Type Pad Mobile
 
俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279俄罗斯Gost标准,进出口购买商品目录№RG 2279
俄罗斯Gost标准,进出口购买商品目录№RG 2279
 
multimedia networking
multimedia networkingmultimedia networking
multimedia networking
 
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
俄罗斯进出口标准,技术规格,法律,法规,中英文,目录编号RG 2687
 
Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎Упаковка и развертывание программ на perl под debian‎
Упаковка и развертывание программ на perl под debian‎
 
Computer fundamental full
Computer fundamental fullComputer fundamental full
Computer fundamental full
 

Similar a Linux Commands

20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説mochiko AsTech
 
20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)Hideki Yamane
 
20090522 Candycane
20090522 Candycane20090522 Candycane
20090522 CandycaneYusuke Ando
 
Shibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼうShibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼうgyuque
 
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信Yusuke Kawasaki
 
20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編mochiko AsTech
 
20090410 Gree Opentech Main
20090410 Gree Opentech Main20090410 Gree Opentech Main
20090410 Gree Opentech MainHideki Yamane
 
PostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-HorspoolアルゴリズムPostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-HorspoolアルゴリズムAkio Ishida
 
Search Engines Chapter 1 Summary
Search Engines Chapter 1 SummarySearch Engines Chapter 1 Summary
Search Engines Chapter 1 Summarysleepy_yoshi
 
技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTracterada
 
Ubuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオンUbuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオンubon
 
Hd60 Gd9 Manual
Hd60 Gd9 ManualHd60 Gd9 Manual
Hd60 Gd9 Manualguest807a1
 
Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門shigeya
 
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」devsumi2009
 
使いこなそうGUC
使いこなそうGUC使いこなそうGUC
使いこなそうGUCAkio Ishida
 

Similar a Linux Commands (20)

20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説20090418 イケテルRails勉強会 第2部Air編 解説
20090418 イケテルRails勉強会 第2部Air編 解説
 
20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)20090410 Gree Opentech Presentation (opening)
20090410 Gree Opentech Presentation (opening)
 
20090522 Candycane
20090522 Candycane20090522 Candycane
20090522 Candycane
 
Shibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼうShibuya.abc - Gnashで遊ぼう
Shibuya.abc - Gnashで遊ぼう
 
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
Cloud era -『クラウド時代』マッシュアップ技術による地方からの世界発信
 
20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編20090418 イケテルRails勉強会 第2部Air編
20090418 イケテルRails勉強会 第2部Air編
 
20090410 Gree Opentech Main
20090410 Gree Opentech Main20090410 Gree Opentech Main
20090410 Gree Opentech Main
 
PostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-HorspoolアルゴリズムPostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
PostgreSQLで学ぶBoyer-Moore-Horspoolアルゴリズム
 
Search Engines Chapter 1 Summary
Search Engines Chapter 1 SummarySearch Engines Chapter 1 Summary
Search Engines Chapter 1 Summary
 
技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac技術トレンディセミナー フレームワークとしてのTrac
技術トレンディセミナー フレームワークとしてのTrac
 
sigfpai73-kaji
sigfpai73-kajisigfpai73-kaji
sigfpai73-kaji
 
Ubuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオンUbuntu Firefox オススメ・アドオン
Ubuntu Firefox オススメ・アドオン
 
20070329 Phpconf2007 Training
20070329 Phpconf2007 Training20070329 Phpconf2007 Training
20070329 Phpconf2007 Training
 
Hd60 Gd9 Manual
Hd60 Gd9 ManualHd60 Gd9 Manual
Hd60 Gd9 Manual
 
03 Getting Started
03 Getting Started03 Getting Started
03 Getting Started
 
Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門Linuxユーザーのための Windows 管理入門
Linuxユーザーのための Windows 管理入門
 
Grails紹介
Grails紹介Grails紹介
Grails紹介
 
Green IT
Green ITGreen IT
Green IT
 
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
【13-C-4】 「もう業務はとまらない!オフライン機能を使った業務アプリケーションの実例と最新 Curl 情報」
 
使いこなそうGUC
使いこなそうGUC使いこなそうGUC
使いこなそうGUC
 

Último

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024SynarionITSolutions
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 

Último (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 

Linux Commands

  • 1. Unix/Linux コマンドリファレンス .com ファイルコマンド システム情報 ls – ディレクトリの内容を一覧表示する date – 現在の日付と時間を表示する ls -al – `.’ で始まるファイルも含めた一覧を詳細表示する cal – 今月のカレンダを表示する cd dir - dir (ディレクトリ)へ移動する uptime – 現在の uptime を表示する cd – ホームディレクトリへ移動する w – オンライン状態のユーザの情報を表示する pwd – 現在のディレクトリの名前を表示する whoami – 現在のユーザ名を表示する mkdir dir – dir を作成する finger user – user の情報を表示する rm file – file(ファイル)を削除する uname -a – カーネル情報を表示する rm -r dir – dir と dir 配下全てのファイル・ディレクトリを削 cat /proc/cpuinfo – CPU 情報を表示する 除する cat /proc/meminfo – メモリ情報を表示する -f file – file を強制的に削除する rm man command – command のマニュアルを表示する rm -rf dir – dir と dir 配下全てを強制的に削除する * df – ディスク使用状況を表示する cp file1 file2 – file1 を file2 にコピーする du – ディレクトリのディスク使用状況を表示する cp -r dir1 dir2 – dir1 を dir2 にコピーする free – メモリとスワップの使用状況を表示する mv file1 file2 – file1 を file2 に移動(名前変更)する;もし whereis app – app(アプリケーション)のバイナリ・man ペー file2 がディレクトリの場合は file1 を file2 配下に移動する ジの場所を表示する ln -s file link – file のシンボリックリンク link を作成す which app – デフォルトで使用される app を表示する る アーカイブの作成・展開 touch file – file を更新・作成する tar cf file.tar files – files を含む file.tar という名の cat > file – 標準入力を file に書き出す tar ファイルを作成する more file – file の内容を出力する tar xf file.tar – ファイルを展開する head file – file の先頭の 10 行を出力する tar czf file.tar.gz files – tar ファイルを Gzip で圧 tail file – file の末尾の 10 行を出力する 縮したファイルを作成する tail -f file – file が更新される度に出力し続ける tar xzf file.tar.gz – Gzip で圧縮されたファイルを展開 プロセス管理 する ps – ユーザの現在アクティブなプロセスを表示する tar cjf file.tar.bz2 – tar ファイルを Bzip2 で圧縮した top – 全ての実行中プロセスを表示する ファイルを作成する tar xjf file.tar.bz2 – Bzip2 で圧縮されたファイルを展 kill pid – プロセス ID が pid のプロセスを終了させる 開する killall proc – 名前が proc のプロセスを全て kill する * gzip file – file を圧縮し file.gz に名前変更する bg – 停止中またはバッググラウンドのジョブを表示する; バッグ gzip -d file.gz – file.gz を展開し file に戻す グラウンドの停止中ジョブを再開する fg – 最新のジョブをフォアグラウンドに切り替える ネットワーク fg n – n 番目のジョブをフォアグラウンドに切り替える ping host – host へ ping し結果を出力する ファイルのアクセス権 whois domain – domain の whois 情報を取得する chmod octal file – file のアクセス権を octal(数字 1 つがそ dig domain – domain の DNS 情報を取得する れぞれ所有者, グループ, その他を意味する)に設定する; dig -x host – host の逆引きをする ● 4 – 読み込み (r) wget file – file をダウンロードする ● 2 – 書き込み (w) wget -c file – 一時中断した file の続きから再開する ● 1 – 実行 (x) 例: インストール chmod 777 – 全てのユーザに rwx を許可する ソースからインストールする:  chmod 755 – 所有者に rwx を, グループとその他に rx を許可する ./configure その他のオプションは man chmod を参照すること make SSH make install ssh user@host – host へ user として接続する dpkg -i pkg.deb – パッケージのインストール(Debian) ssh -p port user@host – port 指定で ssh 接続する rpm -Uvh pkg.rpm – パッケージのインストール(RPM) ssh-copy-id user@host – 公開鍵を user@host に登録する ショートカット 検索 Ctrl+C – 現在のコマンドを終了する grep pattern files – files 内の pattern を検索する Ctrl+Z – 現在のコマンドを中断する, fg でフォアグランドジョ grep -r pattern dir – dir 配下の全てのファイル内の ブ、bg でバックグラウンドジョブに切り替える pattern を検索する Ctrl+D – exit と同様に現在のセッションをログアウトする command | grep pattern – command の出力結果から Ctrl+W – 現在行で 1 単語を消す pattern を検索する Ctrl+U – 現在行全体を消す locate file – file というパターンを含む全てのファイルを検 Ctrl+R – 最近実行したコマンドを表示する 索する !! - 最後に実行したコマンドを繰り返す exit – 現在のセッションをログアウトする * 十分注意して使ってくださいね. 翻訳:むとうまさお <mutoh at highway.ne.jp> (http://www.yotabanana.com/)