Memorandums?

This blog is written about technical-discoveries and daily-events.

よく使うLINUXコマンド

備忘録らしく,忘れてはいけないUNIXコマンドをメモします.

command description
sudo apt-get install *** コマンドでのinstallに欠かせない一品
ls -la option "-la"でcurrent-directryの一覧を全て見る
パーミッションも見れる
chmod +x
(xの他にw/rもOK)
パーミッションの権限変更
+xで実行権限を与える(w...write/r...read)


パーミッションとは...

Owner Group All pelple
r w x r w x r w x

ls -la で参照した時,一番左端に載っているr/w/x/-はこの順番で載っています.
※r...読み込み権限 / w...書き込み権限 / x...実行権限