LoginSignup
2
0

More than 5 years have passed since last update.

Raspbian Jessi Lite にCMakeをインストール

Posted at

概要

Raspberry Pi Model 3 を自宅サーバ化すべくMariaDBをインストールする準備として、
CMakeをインストールします。

準備

ソースファイルのダウンロード

ダウンロードしてきたファイルをRaspberryPiに転送

scp ~/downloads/cmake-3.7.2.tar pi@rapberrypi:/home/pi/

CMakeインストール

GUIは使う予定が一切ないので除外する。

$ tar xf cmake-3.7.2.tar
$ cd cmake-3.7.2
$ ./configure --no-qt-gui
$ make
$ sudo porg -lD make install

以上、簡単ですがこれだけです。

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