0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

覚えておきたい便利コマンド集(随時更新)

Posted at

はじめに

覚えておくと便利なコマンドを教えて頂いたので、PCのメモ書きに埋もれてしまわないように残しておきたいと思います。今後も便利そうなコマンドをここに追記していき、使いこなしていきたいと思います。

システム情報を確認するコマンド

1.自分の使っているOSの種類とバージョンを調べる

cat /etc/os-release

以下、出力内容の例です。

➜  ~ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.5 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.5 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy

2. OSのカーネルバージョンを調べる

uname -a

以下、出力内容の例です。

Linux DESKTOP-QO2B4CF 5.15.153.1-microsoft-standard-WSL2 #1 SMP Fri Mar 29 23:14:13 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux

ネットワーク関連

1.自分のグローバルIPアドレスを調べる

curl ifconfig.me

グローバルIPアドレスが表示されます。

履歴やプロセス管理

1. コマンド履歴を確認する

history

今まで叩いたコマンドの履歴がずらーっと表示されます。長いコマンドなどを確認したい時に便利そうです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?