51dev.com IT技术开发者社区

51dev.com 技术开发者社区

linux  网卡

linux 网卡

eth0,eth1,eth2,代表网卡一,网卡二,网卡三lo代表127.0.0.1,即localhost  hw代表hardware硬件意思  ether代表ethernet以太网的意思ifconfig配置网卡  配置网卡的IP地址  ifconfigeth0192.168.0.1netmask25...

ubuntu14.04, keyboard shortcuts

ubuntu14.04, keyboard shortcuts

...

工控机安装Ubuntu14.04

工控机安装Ubuntu14.04

开机,不停按delete,进入bios进入boot,选择USB启动 重新开机,进入安装向导,下一步即可...

python2安装django

python2安装django

pipinstalldjango==1.8.2...

Ubuntu14.04 terminal添加右键

Ubuntu14.04 terminal添加右键

设置Ubuntu14.04右键终端的方法如下:首先要安装一个包,即可在右键里面添加一个“打开终端”的菜单。sudoapt-getinstallnautilus-open-terminal注销Ubuntu系统或者重启即可....

安装sudo apt-get install nautilus-open-terminal   ,  出现" Unable to locate package nautilus-open-terminal"

安装sudo apt-get install nautilus-open-terminal , 出现" Unable to locate package nautilus-open-terminal"

sudoapt-getupdate...

linux 多进程fork

linux 多进程fork

对于父进程,fork函数返回了子程序的进程号,而对于子程序,fork函数则返回零,这样,对于程序,只要判定fork函数的返回值,就知道自己是处于父进程还是子进程中。 ...

ros 启动launch文件,附带参数

ros 启动launch文件,附带参数

roslaunchcartographer_roscartographer_ref.launchresolution:=0.07 #下面是cartographer_ref.launch的内容<argname="resolution"/><nodename="cartogr...

ubuntu14.04上  nginx启动停止

ubuntu14.04上 nginx启动停止

sudoservicenginxstop 停止 sudonginx  启动...

nginx 80 端口默认被占用

nginx 80 端口默认被占用

/etc/nginx/sites-enabled,修改该目录下的default文件,将默认端口号80改为其他端口号,/etc/nginx/nginx.conf文件配置里的80端口就会生效...

django  接口

django 接口

ajax部分:<html><scripttype="text/javascript"src="./jquery-2.1.4.min.js"></script><scripttype='text/javascript'>functionUpdate(){...

django 接口编写的配置

django 接口编写的配置

一.修改settings文件ALLOWED_HOSTS=['*'] INSTALLED_APPS=['corsheaders']  #加入该app 安装django-cors-headers:pipinstalldjango-cors-headers ...

python 将列表中的字符串转为数字

python 将列表中的字符串转为数字

本文实例讲述了Python中列表元素转为数字的方法。分享给大家供大家参考,具体如下:有一个数字字符的列表:numbers=['1','5','10','8']想要把每个元素转换为数字:numbers=[1,5,10,8]用一个循环来解决:new_numbers=[];forninnumbers:ne...

AttributeError: 'Request' object has no attribute 'json',     cherrypy 无法接收到json字符串,解决方法

AttributeError: 'Request' object has no attribute 'json', cherrypy 无法接收到json字符串,解决方法

    @cherrypy.expose    @cherrypy.tools.accept(media="application/json")  #加入这个装饰器   ...

nginx 跨域解决

nginx 跨域解决

server{ listen8811default_server;   root/opt/bp;   #Makesiteaccessiblefromhttp://localhost/  server_namel...