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?

Linux Tips

Last updated at Posted at 2024-09-30

CPU

使用してるCPU数が知りたい

$ lscpu
...(省略)
CPU:                                   20
  オンラインになっている CPU のリスト: 0-19
...(省略)

以下でも可能

$ cat /proc/cpuinfo

使用するCPU数を変更したい

$ sudo echo 0 > /sys/devices/system/cpu/cpuX/online

cpuXのXは数字で、onlineに0を書き込むと無効、1を書き込むと有効

各プロセスのスケジューリングポリシーが知りたい

$ chrt -p <PID>

installコマンド

ファイルコピー

  • ディレクトリが存在しない場合は作成(-D)
  • 複数ファイルをコピー(-t)。ワイルドカード使える
  • 権限変更(-m)
$ install -D -t install_dir -m0644 *.txt

参考

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?