Lean 的 LEDE 源码仓库 https://github.com/coolsnowwolf/lede 视频安装教程https://www.youtube.com/watch?v=yQoKpL4p06E luci app 列表https://www.right.com.cn/forum/thread-344825-1-1.html
首先装好 Ubuntu 64bit,推荐 Ubuntu 20.04 LTS x64 https://ubuntu.com/download/desktop
命令行输入 1 2 3 4 5 6 7 8 9 sudo apt update -y sudo apt full-upgrade -y sudo apt install -y ack antlr3 asciidoc autoconf automake autopoint binutils bison build-essential \ bzip2 ccache cmake cpio curl device-tree-compiler fastjar flex gawk gettext gcc-multilib g++-multilib \ git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libfuse-dev libglib2.0-dev libgmp3-dev \ libltdl-dev libmpc-dev libmpfr-dev libncurses5-dev libncursesw5-dev libpython3-dev libreadline-dev \ libssl-dev libtool lrzsz mkisofs msmtp ninja-build p7zip p7zip-full patch pkgconf python2.7 python3 \ python3-pyelftools python3-setuptools qemu-utils rsync scons squashfs-tools subversion swig texinfo \ uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev
使用 git clone https://github.com/coolsnowwolf/lede 命令下载好源代码,然后,进入目录
缝合一些其他插件 原地址:https://github.com/kenzok8/openwrt-packages 添加下面代码复制到 lede 源码根目录 feeds.conf.default
文件
1 2 src-git kenzo https://github.com/kenzok8/openwrt-packages src-git small https://github.com/kenzok8/small
更新包 1 2 ./scripts/feeds update -a ./scripts/feeds install -a
编译设置
下载 dl 库,编译固件 (-j 后面是线程数,第一次编译推荐用单线程) 1 2 make download -j8 make V=s -j1
二次编译: 1 2 3 4 5 6 7 cd lede git pull ./scripts/feeds update -a ./scripts/feeds install -a make defconfig make download -j8 make V=s -j$(nproc)
如果需要重新配置:
1 2 3 rm -rf .config make menuconfig make V=s -j$(nproc)
更改 LAN 口的默认 IP 地址
1 2 3 cd lede vim package/base-files/files/bin/config_generate // 大概在 99 行找到我们默认的原 IP 地址(192.168.1.1),按 “i” 把对应的 IP 更改即可
修改固件其他信息 编译丰富插件时,建议修改下面两项默认大小,留足插件空间。( x86/64 )!!! Target Images —> (16) Kernel partition size (in MB) # 默认是 (16) 建议修改 (256) Target Images —> (160) Root filesystem partition size (in MB) # 默认是 (160) 建议修改 (512)
如果需要 Cloudflare DDNS 组件 默认情况下 OpenWrt 中并没有 Cloudflare DDNS 功能,就算勾选了 DDNS 也不包含 cloudflare 运营商。所以需要在编译时选择相应的组件,其位置在 Network
→IP Addresses and Names
→ddns-scripets_cloudflare.com-v4
更改固件版本信息
1 sed -i "s/OpenWrt /$(date +%Y.%m.%d) 2022/xx/xx /g" package/lean/default-settings/files/zzz-default-settings
环境配置 编译环境搭建 How to install python3-distutils on ubuntu 24.04
1 sudo apt install python3-setuptools
Ubuntu 24.04 LTS 安装 Python2 失败解决
安装 Ubuntu 24.04 之后,安装 python2 会提示:
1 2 3 4 5 6 7 8 9 10 11 ~/$ sudo apt install python2 Reading package lists... Done Building dependency tree... Done Reading state information... Done Package python2 is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source E: Package 'python2' has no installation candidate
解决方式:
1 2 3 4 5 6 7 8 9 10 11 wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz sudo tar xzf Python-2.7.9.tgz cd Python-2.7.9 sudo ./configure --enable-optimizations sudo make altinstall // 安装之后 python2.7 -V ~ Python 2.7.9 sudo ln -sfn '/usr/local/bin/python2.7' '/usr/bin/python2' sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1
设置可选择 python 版本:
1 2 3 4 5 6 7 8 sudo update-alternatives --config python There are 2 choices for the alternative python (providing /usr/bin/python). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/bin/python3 2 auto mode 1 /usr/bin/python2 1 manual mode 2 /usr/bin/python3 2 manual mode Press to keep the current choice[*], or type selection number: 1
1 2 3 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2 sudo update-alternatives --config python (选择切换Python版本) python --version (查看Python版本)