FAEP复现
使用WSL2安装Ubuntu-20.04,环境配置,并复现项目Zyhlibrary/FAEP 作业报告PDF版见FAEP/智能机器人课程作业报告 安装WSL与Ubuntu-20.04可以参考官方文档:适用于 Linux 的 Windows 子系统文档 | Microsoft Learn 如果是第一次安装WSL,我们可以直接在在Powershell中执行命令来完成安装 系统中自带的Powershell是旧版,可以参考PowerShell 文档 - PowerShell | Microsoft Learn来安装新版Powershell(装不装都行,只是提一嘴) 注意,在安装Linux发行版前,最好关闭可能修改hosts文件的软件,比如Watt Toolkit的Hosts加速 因为这可能会让你的新系统的hosts文件变成一坨,如果这已经发生了,那么修改hosts文件就好 1sudo nano /etc/hosts 使用管理员身份运行Powershell 执行命令 12# 安装WSL,但不安装Linux发行版wsl --install...
编译OpenWrt
以openwrt-23.05分支为例,编译适用于Cudy TR3000的OP系统 安装WSL教程详见:FAEP复现的第一部分,最好也修改一下软件包源,当然不同的是这次我们安装Ubuntu 22.04 编译前准备 安装依赖,此处适用于Ubuntu 22.04,其他系统命令详见:install-buildsystem 12sudo apt updatesudo apt install build-essential clang flex bison g++ gawk gcc-multilib g++-multilib gettext git libncurses-dev libssl-dev python3-distutils python3-setuptools rsync swig unzip zlib1g-dev file wget 拉取openwrt-23.05分支代码 1git clone https://github.com/openwrt/openwrt -b openwrt-23.05 openwrt 添加其他软件包源 12345#...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment