CentOS Stream 9にBunをインストールする

環境
CentOS Stream release 9

操作方法
1.Bunをインストールします

# curl https://bun.sh/install | bash
略
Manually add the directory to ~/.bashrc (or similar):
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"

To get started, run:

bun --help

2.環境PATHを設定します
# nano $HOME/.bashrc
以下の内容を記述します

export BUN_INSTALL="/home/arkuser/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"

変更内容を反映します

# source $HOME/.bashrc

3.Firewallを設定します

# sudo firewall-cmd --add-port=3000/tcp --zone=public --permanent
success

# sudo firewall-cmd --reload
success

 

CentOS Stream 9

Posted by arkgame