发布时间:2013-12-05 17:56:18
django install安装django之前一定要先安装python 版本相差不要太高 python setup.sh install #django安装 >>python import django #把django导入进去django-admin.py startproject web #创建一个叫web的项目#在项目中有产生这三个文件__init__.py .........【阅读全文】
发布时间:2013-12-04 15:30:41
#!/usr/bin/pythonimport reimport urllibdef getHtml(url): page=urllib.urlopen(url) html=page.read() return htmldef getImg(html): reg=r'src="(.*?\.jpg)"width' imgre=re.compile(reg)  .........【阅读全文】
发布时间:2013-11-13 17:56:12
NFS 挂载文件出错mount.nfs: an incorrect mount option was specified是这样挂载的:mount -t nfs 192.168.30.162:/web_data/file /mnt -o proto=tcp -o noclok解决方法是:mount -t nfs -o nolock,nfsvers=3,vers=3 -o proto=tcp 192.168.30.162:/web_data/file /mnt......【阅读全文】