仅列出标题 列出摘要
上一页 1 ··· 5 6 7 8 9 10 下一页
2013年1月19日

python 列出指定目录下指定拓展名的文件

摘要: 1 import glob 2 print glob.glob("/tmp/*.py") 阅读全文
posted @ 2013-01-19 15:59 baoyiluo 阅读(241) 评论(0) 推荐(0) 编辑
2013年1月18日

RPM打包

摘要: 经常需要把一些脚本打包到rpm包中去,安装rpm后能把脚本复制到指定位置。这个东西写完就忘了,在这里记一下在rhel5里SPECS和SOURCES目录在/usr/src/redhat/下,rhel6里需要自己创建。yum -y install rpm-buildmkdir -p /root/rpmbuilder/{SPECS,SOURCES}把源码包放到SOURCES目录里,在SPECS里建立一个.spec文件。例如:Name: hpcwebVersion: 1.0Release: 1Summary:this is a hpcweb test rpm! ... 阅读全文
posted @ 2013-01-18 11:28 baoyiluo 阅读(454) 评论(0) 推荐(0) 编辑
2013年1月17日

linux中禁用USB接口

摘要: 最简单的办法就是删除usb模块,或者可以用udev策略来实现插入U盘不相应事件。禁用:mv /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko.bakreboot开启mv /lib/modules/`uname -r`/kernel/drivers/usb/storage/usb-storage.ko.bak /lib/modules/`uname -r`/kernel/drivers 阅读全文
posted @ 2013-01-17 14:53 baoyiluo 阅读(3949) 评论(0) 推荐(0) 编辑

linux 可终断复制

摘要: rsync -av test/ 192.168.8.1:/root/ 当网络中断后在获取链接可继续复制 阅读全文
posted @ 2013-01-17 11:15 baoyiluo 阅读(150) 评论(0) 推荐(0) 编辑

linux 非交互普通用户修改密码

摘要: 1 import pexpect 2 newpasswd = 'www.baoyiluo.com' 3 oldpasswd = 'www.longgeek.com' 4 child = pexpect.spawn('passwd') 5 child.expect('(current).*:') 6 print 'old over' 7 child.sendline(oldpasswd) 8 child.expect('New password.*:') 9 child.sendline(newpas 阅读全文
posted @ 2013-01-17 11:09 baoyiluo 阅读(409) 评论(1) 推荐(0) 编辑
2013年1月16日

django+httpd+mod_pythonurl存在中文路径问题解决

摘要: djangobookIf you get a UnicodeEncodeErrorIf you're taking advantage of the internationalization features of Django (seeInternationalization) and you intend to allow users to upload files, you mustensure that the environment used to start Apache is configured to acceptnon-ASCII file names. If you 阅读全文
posted @ 2013-01-16 16:51 baoyiluo 阅读(352) 评论(0) 推荐(0) 编辑

linux root权限非交互设置用户的密码

摘要: echo password|passwd --stdin username其中password为修改后的用户密码username为修改的用户名 阅读全文
posted @ 2013-01-16 15:45 baoyiluo 阅读(390) 评论(0) 推荐(0) 编辑

linux 设置 vim编辑器显示行号及tab等于四个空格

摘要: 打开/etc/vimrc 添加如下内容:set nu显示行号 set et sta sw=4 sts=4 设置tab键等于4个空格:%s/ *$//gc vim开放中替换行未空格为空 阅读全文
posted @ 2013-01-16 15:39 baoyiluo 阅读(376) 评论(0) 推荐(0) 编辑

Apache配置django

摘要: <VirtualHost *:80>DocumentRoot "/var/www/ieecas/ieecas"ServerName www.blog.com 虚拟主机域名<Location "/">SetHandler python-programPythonHandler django.core.handlers.modpythonSetEnv DJANGO_SETTINGS_MODULE ieecas.settings#PythonOption django.root /PythonDebug OnPythonPath &qu 阅读全文
posted @ 2013-01-16 13:27 baoyiluo 阅读(219) 评论(1) 推荐(0) 编辑

Phpmyadmin的配置

摘要: 1.安装apache服务:yum -y install httpd*2.安装php: yum -y install php*3.修改apache的配置文件:/etc/httpd/conf/httpd.conf在相应位置添加如下:AddType application/x-httpd-php .phpLoadModule php5_module modules/libphp5.soDirectoryIndex一行末尾添加 index.php重启apache。4.在/var/www/html/下建立info.php文件,内容如下:<?phpphpinfo();?>用于检测apache上 阅读全文
posted @ 2013-01-16 12:22 baoyiluo 阅读(289) 评论(1) 推荐(1) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页