Driver installation Nothing has to be done for the APF51Dev, the APF28Dev and the APF6Dev. For the APF27DevFull: $ make linux-menuconfig Networking support ---> <M> CAN bus subsystem support ---> --- CAN bus subsystem support <M> Raw CAN…
检查配置文件时提示:nginx: [warn] duplicate MIME type "text/html" in /home/web/nginx/inc/gzip.conf:9 [root@localhost sbin]# ./nginx -t -c /home/web/nginx/nginx.conf nginx: [warn] duplicate MIME type "text/html" in /home/web/nginx/inc/gzip.conf:9…
把nginx升级到最新以后,发现用原来的配置启动的时候会提示: duplicate MIME type "text/html" in /usr/local/nginx/conf/nginx.conf:37 实际上,text/html根本就不需要写的,gzip默认就会压缩它的,只不过以前的nginx版本不提示这个警告而已,新版本的会出这个警告,所以解决办法很简单:把text/html从你的配置中删除(我把text/html改成text/htm也通过了,不知道有没有区别). [root@s…
1.将 Resource Files 里面的 *.exe.manifest 文件删除 2.右键选择 *.rc 文件,选择 view code,查找并删除所有引用 *.exe.manifest 文件的代码 3.保存后编译,OK!…
测试zynq+ramdisk平台时发现自带的busybox无法通过ip命令配置can接口,执行can配置命令 ip link set can0 type can bitrate 会出现以下报错: ip: either "dev" is duplicate, or "type" is garbage 查看ip命令: BusyBox v1.-- :: CST) multi-call binary. Usage: ip [OPTIONS] {address | route…
1.duplicate declaration checking /** Check that variable does not hide variable with same name in * immediately enclosing local scope. * * e.g * public void m1(boolean a){ * int a = 3; * boolean a = true; // 不调用checkTransparentVar()方法,因为调用checkUnique…
学习 Neutron 系列文章: (1)Neutron 所实现的虚拟化网络 (2)Neutron OpenvSwitch + VLAN 虚拟网络 (3)Neutron OpenvSwitch + GRE/VxLAN 虚拟网络 (4)Neutron OVS OpenFlow 流表 和 L2 Population (5)Neutron DHCP Agent (6)Neutron L3 Agent (7)Neutron LBaas (8)Neutron Security Group (9)Neutro…
docker是一个lxc升级版的容器类虚拟环境,具有快速部署,灵活,易迁移的虚拟机模式,现在各大公司已经开始广泛使用为了自己方便学习linux,需要多台虚拟机环境,但是vmware开启多台虚拟机时需要花费大量内存,所以研究了一下docker,操作方便,真的很好用发现好多文章都是使用ubuntu的,但是在真实环境中,使用centos居多(国内形势......) 使用环境:Centos6.8 x64 1.安装eprl yum -y install http://dl.fedoraproject.or…
INSERT INTO osc_visit_stats(stat_date,type,id,view_count) VALUES (?,?,?,?) ON DUPLICATEKEY UPDATE view_count=view_count+? INSERT INTO osc_space_visit_records(space,user,visit_count,ip,visit_time) VALUES(?,?,?,?,?) ON DUPLICATE KEY UPDATE visit_count=…
本文介绍两种方便获取主机动态IP的方式(DDNS,IP报告网页),并给出相应的代码实现. shell脚本获取本机IP,执行上传操作和更新DNS操作.定期执行通过crontab或者systemd等服务. 应用场景 远程访问具有动态IP的公网或内网主机时,如果通过ip进行访问,由于公网IP总是在变化,我们不得不每次去查看新的ip地址,往往这个重复的过程比较麻烦. 远程主机联网的方式有所不同,主要有以下几种情形: 远程主机是通过PPPoE拨号上网,通常获取到动态的私有网络(内网)地址 远程主机直接获取…