10
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ターミナルでLinuxを使っていて表示が右端で折り返されないとき

Last updated at Posted at 2018-02-17

ターミナルでLinuxを使っていると、表示が右端で折り返されないときがある。

折り返す方法について記載する。

psコマンド

ps aux実行時(赤線の箇所、右端で折り返されていない)
2018-02-17_15h45_11.png

【対処法】wオプションを2回つけると右端で折り返されるようになる。
pw auxww実行時(→折り返されている)
2018-02-17_15h57_34.png

journalctlコマンド

journalctl実行時(赤線の箇所、右端で折り返されていない)
2018-02-17_16h01_58.png

【対処法1】パイプでlessに渡す
journalctl | less実行時(→折り返されるが色はつかなくなる)
2018-02-17_16h08_18.png

【対処法2】環境変数 SYSTEMD_LESS にページャへのオプションを指定する
export SYSTEMD_LESS=FRXMKで環境変数を設定してからjournalctl実行した時(→折り返されるし、色もつく)
2018-02-17_16h07_28.png

10
7
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
10
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?