随笔分类 -  Linux系统

摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/15021365.html ###安装依赖 sudo apt-get install tftp-hpa tftpd-hpa sudo apt-get install xinetd ## 阅读全文
posted @ 2021-07-16 18:06 妖影8023 阅读(1818) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/15016081.html ###交叉编译环境下载地址 http://releases.linaro.org/components/toolchain/binaries/ ###软件包 阅读全文
posted @ 2021-07-15 16:15 妖影8023 阅读(810) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/15015614.html ###安装SSH服务 sudo apt-get install openssh-server SSH配置文件为 /etc/ssh/sshd_config , 阅读全文
posted @ 2021-07-15 14:59 妖影8023 阅读(289) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/15015601.html #【Linux系统】开启NFS服务 ###安装NFS服务 sudo apt-get install nfs-kernel-server rpcbind ## 阅读全文
posted @ 2021-07-15 14:57 妖影8023 阅读(525) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/15015549.html ###安装 FTP 服务 sudo apt-get install vsftpd ###修改配置文件 sudo vim /etc/vsftpd.conf # 阅读全文
posted @ 2021-07-15 14:50 妖影8023 阅读(377) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/12167789.html #Makefile的编写规范 main.c 主程序入口 #include <stdio.h> #include "a.h" int main() { pri 阅读全文
posted @ 2020-06-16 17:24 妖影8023 阅读(696) 评论(0) 推荐(0)
摘要:版权声明:本文为博主原创文章,转载请注明出处。 https://www.cnblogs.com/YaoYing/p/12738128.html #为什么需要交叉编译 1、交叉编译的目标系统没有能力进行本地编译。 2、源代码编译的平台(CPU架构或操作系统)与目标平台不一致,会导致在目标平台无法运行。 阅读全文
posted @ 2020-04-20 15:35 妖影8023 阅读(565) 评论(0) 推荐(0)