上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 95 下一页
摘要: 两步,先开启扩展,才能在网络里看到ipv6相关选项。 一、回到lede目录,输入make menuconfig命令。 $ make menuconfig 二、开启扩展extra packages——ipv6helper 选择extra packages选项,回车进入 这里按Y勾选,N取消勾选,M编译 阅读全文
posted @ 2022-04-07 06:55 悟透 阅读(6824) 评论(0) 推荐(0)
摘要: 1.卸载安装单个软件包 ./scripts/feeds uninstall luci ./scripts/feeds install luci 2.更新及安装所有软件包 ./scripts/feeds update -a ./scripts/feeds install -a 3.卸载及安装feeds 阅读全文
posted @ 2022-04-06 20:55 悟透 阅读(618) 评论(0) 推荐(0)
摘要: 1.执行feeds update命令,会根据feeds.conf.default文件,下载依赖包到feeds文件夹2.此时还没有放到和feeds目录同级的 $(TOPDIR)/package文件夹里3.第一次feeds install会先扫描package目录,然后再把 feeds文件夹里的依赖包, 阅读全文
posted @ 2022-04-06 20:38 悟透 阅读(2281) 评论(0) 推荐(0)
摘要: 显示当前Makefile所在目录。 Makefile文件内容: all: @echo $(CURDIR) $(CURDIR)为make自带的函数 阅读全文
posted @ 2022-04-05 22:39 悟透 阅读(1093) 评论(0) 推荐(0)
摘要: 来源:《跟我一起写Makefile》作者:陈皓 第15页 默认的情况下,make 命令会在当前目录下按顺序找寻文件名为“GNUmakefile”、 “makefile”、“Makefile”的文件,找到了解释这个文件。在这三个文件名中,最好使用 “Makefile”这个文件名,因为,这个文件名第一个 阅读全文
posted @ 2022-04-05 22:35 悟透 阅读(153) 评论(0) 推荐(0)
摘要: hello.c文件: #include <stdio.h> int main() { printf("Hello Word!!!\n"); return 0; } Makefile文件: 执行顺序, 1.hello:hello.o中的hello是要生成的执行文件,谁来生成呢? 就是hello.o。 阅读全文
posted @ 2022-04-05 12:58 悟透 阅读(461) 评论(0) 推荐(0)
摘要: 路由器刷入了OPENWRT,结果发现刷入的固件没有带Luci,以下是本人手动安装Luci的方法, #开始安装Luci所需的依赖包 opkg install http://192.168.1.2/uhttpd_27_brcm47xx.ipk opkg install http://192.168.1. 阅读全文
posted @ 2022-04-04 05:40 悟透 阅读(3157) 评论(0) 推荐(0)
摘要: 查找软件包'nmap' $ ./scripts/feeds search nmap 来源: http://www.360doc.com/content/17/0518/23/1832721_655135021.shtml 阅读全文
posted @ 2022-03-30 22:15 悟透 阅读(224) 评论(0) 推荐(0)
摘要: 默认IP & 子网掩码配置文件在package/base-files/files/bin/config_generate # 设置默认IP为 192.168.199.1 sed -i 's/192.168.1.1/192.168.199.1/g' package/base-files/files/b 阅读全文
posted @ 2022-03-29 20:27 悟透 阅读(2318) 评论(0) 推荐(0)
摘要: 以下链接是克隆(下载)源码,并把源码下载到当前目录下的package/OpenAppFilter文件夹里(也可以写绝对路径) git clone https://github.com/destan19/OpenAppFilter package/OpenAppFilter git clone 远程g 阅读全文
posted @ 2022-03-29 20:24 悟透 阅读(380) 评论(0) 推荐(0)
上一页 1 ··· 76 77 78 79 80 81 82 83 84 ··· 95 下一页