1、Ubuntu新建用户,不使用root
sudo useradd -m vibit -d /home/vibit -s /bin/bash #新建账户指定文件夹
sudo passwd vibit #创建密码
2、回到root,赋予vibit账户管理权限
(1)为sudoers增加写入权限
sudo chmod +w /etc/sudoers
sudo vim /etc/sudoers
(2)为用户XXX添加读写权限
root ALL=(ALL:ALL) ALL
vibit ALL=(ALL:ALL) ALL // 这一行为新添加的代码
(3)将sudoers文件的操作权限改为只读模式
sudo chmod -w /etc/sudoers
3、系统更新,安装组件,配置固件
sudo apt-get update
sudo apt-get -y install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch python3 python2.7 unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint device-tree-compiler g++-multilib antlr3 gperf wget curl swig rsync #安装必要组件
su vibit #更换用户名
cd /home/vibit
git clone https://github.com/coolsnowwolf/lede.git
cd lede
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
4、下载dll库,开始编译
make -j8 download V=s 下载dl库(国内请尽量全局科学上网)
make -j1 V=s (-j1 后面是线程数。第一次编译推荐用单线程)
5、查找固件和插件
lede/bin/targets/路由器架构/64/目录下查看固件
bin/packages/路由器架构/base/目录下查看插件
参考:
https://github.com/coolsnowwolf/lede
https://imgki.com/archives/openwrt-lean.html
没有评论:
发表评论