2
2

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 3 years have passed since last update.

Raspberry Pi OSの起動方法をコマンドラインでセットアップ

Last updated at Posted at 2021-02-23

概要

Raspberry Pi OSの起動方法(CLIブート/GUIブート)をコマンドラインでセットアップする方法について記載します。

手順

CLIブートを有効化

  1. CLIブートを有効化する。

    sudo raspi-config nonint do_boot_behaviour B1
    
  2. リブートする。

    sudo reboot
    

GUIブートを有効化

  1. GUIブートを有効化する。

    sudo raspi-config nonint do_boot_behaviour B3
    
  2. リブートする。

    sudo reboot
    

確認方法

  1. CLIブートかGUIブートか確認する。

    raspi-config nonint get_boot_cli
    
  • CLIブートの場合

    0
    
  • GUIブートの場合

    1
    
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?