Ubuntu 21.10にターミナルエディタoxをインストールする
環境情報
# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=21.10
DISTRIB_CODENAME=impish
DISTRIB_DESCRIPTION="Ubuntu 21.10″
1.gccをインストールします
# sudo apt install -y gcc
2.rustをインストールします
# curl https://sh.rustup.rs -sSf | sh 略 default host triple: x86_64-unknown-linux-gnu default toolchain: stable (default) profile: default modify PATH variable: yes 1) Proceed with installation (default) 2) Customize installation 3) Cancel installation > 1 略 To get started you may need to restart your current shell. This would reload your PATH environment variable to include Cargo's bin directory ($HOME/.cargo/bin). To configure your current shell, run: source $HOME/.cargo/env
3.環境パスを通す
# source $HOME/.cargo/env
4.ターミナルエディタoxをインストールします
# cargo install --git https://github.com/curlpipe/ox 略 Compiling ron v0.6.6 Compiling ox v0.2.7 (/root/.cargo/git/checkouts/ox-4001c41b4fbbd7bf/086f665) Finished release [optimized] target(s) in 4m 19s Installing /root/.cargo/bin/ox Installed package `ox v0.2.7 (https://github.com/curlpipe/ox#086f6653)` (executable `ox`)
5.ターミナルエディタoxを起動します
# ox
使い方
Ctrl + Z: 戻る
Ctrl + Y: 進む
Ctrl + S: 保存
Ctrl + Q: 終了