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.

radare2 を Ubuntu にインストールする

Posted at

前提

環境 バージョン
OS Ubuntu 22.04
radare2 5.8.2

手順

  1. 必要なパッケージをあらかじめインストールしておく

    sudo apt install make gcc
    
  2. リリースページからあらかじめ Ubuntu マシンに配置しておくか、次のコマンドを実行する

    curl -LkOf https://github.com/radareorg/radare2/archive/refs/tags/5.8.2.tar.gz
    
  3. tar ファイルを展開し、直下のフォルダに移動する

    tar zxf 5.8.2.tar.gz
    cd radare2-5.8.2
    
  4. インストールスクリプトを実行する

    sys/install.sh
    

確認

次のコマンドで起動するかどうか確認する

r2 --

次のようにメッセージと一風変わったプロンプトが表示されていればひとまず起動している。

 -- It's working! Look at the door!
[0x00000000]>

戻る時は q で戻ることができる。

[0x00000000]> q

参考

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?