Wake Me Up When September Ends.

A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.

👨‍🍼openwrt24.10安装oh-my-zsh

openwrt24.10安装oh-my-zsh遇到一些问题记录如下:

1. 更新软件包列表

1
opkg update

2. 安装Zsh和oh-my-zsh

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
opkg install zsh

# 如果没有curl或wget则需要安装其中一个
opkg install wget
# 或者
opkg install curl

# 下载oh-my-zsh
wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O - | zsh
# 或者
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# 可能出现的错误“git: 'remote-https' is not a git command. See 'git --help'.”
# 需要移除默认git使用git-http替代

opkg remove git
opkg install git-http

3. 配置Zsh

后续补充!