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?

More than 1 year has passed since last update.

SHARP Brain に Linux を入れて遊ぶ(4) - tty あれこれ

Posted at

目次

概要

フレームバッファが使えるようになったので、それ以外の雑多な画面周り関連です。
※特に Brainux に限った話ではありません。

やりたいこと

フレームバッファのアプリを起動に対して

  • ログメッセージがうっとうしい
  • コンソールのカーソルの点滅を消したい
    tty.png

ログメッセージがうっとうしい

dmesg で無効化する

sudo dmesg -D

再び有効にしたい場合は -E する

sudo dmesg -E

コンソールのカーソルの点滅を消したい

エスケープ シーケンスで消す。

echo -e "\033[?25l"

再び表示させたい場合は

echo -e "\033[?25h"
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?