• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

bottom(btm)

date: 2022-06-30 excerpt: bottom(btm)の使い方

tag: rustbuttomtophtop


bottom(btm)の使い方

概要

  • rustで作られたtop, htopのalternative
  • bottomという名前が長いからか、btmがコマンド名になる
  • CLIでありながら、マウスに一部対応している
  • ディスクアクセスを表示できる
    • snapデバイスを除外する設定が必要

インストール

nix

$ nix profile install nixpkgs#bottom

cargo

$ cargo install bottom

macOS

$ brew install bottom

動作例

設定

  • ~/.config/bottom/bottom.toml
[flags]
dot_marker = false
temperature_type = "c"

[disk_filter]
is_list_ignored = true
list = ["/dev/loop.*"]
regex = true
whole_word = true

[mount_filter]
is_list_ignored = true
list = ["/var/snap/.*", "/boot"]
regex = true
case_sensitive = false
whole_word = true


rustbuttomtophtop Share Tweet