pugna
全部博文(171)
发布时间:2013-11-22 16:39:01
以前在RHEL下做实验使用的是本地yum源,现在想使用在线源,但redhat的yum源是需要注册缴费才可以使用的。这里我根据前人的文档做了实验,成功在RHEL5.5下使用centos的yum源,整理出来以供学习交流之用。......【阅读全文】
发布时间:2013-11-22 15:19:22
转自 http://space.itpub.net/25313300/viewspace-708509由于 redhat的yum在线更新是收费的,如果没有注册的话不能使用,如果要使用,需将redhat的yum卸载后,重启安装,再配置其他源.本文包括配置本地源及第三方源。第三方源包括:网易,epel,repoforge ,rpmfusion 以下为详细过程: 1.删除redhat原有的y.........【阅读全文】
发布时间:2013-11-22 01:34:38
CentOS安装PostGIS最方便的方法是用PostgreSQL源加上EPEL源,直接yum安装,无痛解决依赖问题(源码安装时遇到的依赖问题会让人抓狂的)。系统环境:CentOS 6.4 x64要求:PostgreSQL安装到 /postgresql 目录,数据目录为 /postgresql/data。1.使用PostgreSQL源参考http://wiki.postgresql..........【阅读全文】
发布时间:2013-11-21 18:23:54
CentOS5/6使用EPEL源CentOS 6.xwget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmwget http://rpms.famillecollet.com/enterprise/remi-release-6.rpmrpm -ivh epel-release-6-8.noarch.rpmrpm -ivh remi-release-6.rpmCentOS 5.xwget http://dl.fedoraproject.org/pub/epel/5/x.........【阅读全文】
发布时间:2013-11-21 15:51:11
在PostgreSQL中建立GIS数据库postgres=# create user gisuser password '123456';CREATE ROLEpostgres=# create tablespace tbs_geo owner gisuser location '/tbs_postgisdb';CREATE TABLESPACEpostgres=# create database postgisdb owner=gisuser tablespace=tbs_geo;CREATE DATABASEpostgres=# \c postgisdb .........【阅读全文】
发布时间:2013-11-21 14:58:55
引用自http://www.pcyyjs.com/sys/win7/2197/开始 > 运行(或者快捷键win+R): services.msc,找到以下服务项,并开启。 UPnP Device Host:允许 UPnP 设备宿主在此计算机上。如果停止此服务,则所有宿主的 UPnP 设备都将停止工作,并且不能添加其他宿主设备。如果禁用此服务,则任何显式依赖于它的服务将都无法启动.........【阅读全文】
发布时间:2013-11-18 12:33:24
没有使用LVM真是伤不起啊加个磁盘都这么蛋疼!!# df -hFilesystem Size Used Avail Use% Mounted on/dev/sda2 9.7G 5.8G 3.5G 63% //dev/sd.........【阅读全文】
发布时间:2013-11-13 14:10:34
scheduler_job管理--查询所有scheduler_jobSELECT job_name, job_type, job_action, to_char(start_date, .........【阅读全文】
发布时间:2013-11-12 17:32:16
import sys;sys.setrecursionlimit(1500);但是,执行完sys.setrecursionlimit(1500);后,测试发现实际递归值会比设定值小20。难道是python运行就使用了20次递归?不明白。测试代码如下:import syssys.setrecursionlimit(1500) # set the maximum depth as 1500 def recursion(n): &nb.........【阅读全文】
发布时间:2013-11-12 14:09:52
SYSAUX表空间中WRH$_LATCH_CHILDREN表的大小达到16G了,如果加上索引占用的12G,那就是28G。在网上google下,有人说这是个bug,没在MOS上核实。只能手动删除过期的AWR信息了。http://mwidlake.wordpress.com/2011/06/02/why-is-my-sysaux-tablespace-so-big-statistics_levelall/我这边这个数据库的参数也与网上的描述.........【阅读全文】
发布时间:2013-11-12 11:20:58
首先说下,为什么想起来要清理sysaux表空间?因为前几天把awr的间隔调整到了15min,保留30天,结果sysaux表空间每天增长1G,没几天空间就不足了。了解到snapshot的数据是保存在sysaux表空间的,故决定删除部分snapshot数据。另外,通过查询sysaux表空间的大对象,发现就只有WRH$_LATCH_CHILDREN表和WRH$_LATCH_CHILDREN.........【阅读全文】
发布时间:2013-11-05 01:39:35
python3下安装pip环境:CentOS 6.3 mini 64bit1.安装依赖包yum -y install zlib zlib-develyum -y install bzip2 bzip2-develyum -y install openssl openssl-devel2.安装Python3tar -jxvf Python-3.3.2.tar.bz2cd Python-3.3.2./configure && make && make installcd ..3.安装pip的安装工具easy_instal.........【阅读全文】
发布时间:2013-11-04 22:47:44
python3添加对zlib的支持在操作系统中安装zlib相关库yum install zlib zlib-devel重新编译安装python3tar -jxvf Python-3.3.2.tar.bz2cd Python-3.3.2./configure && make && make install测试在python3中导入zlib[root@python3_os ~]# python3Python 3.3.2 (default, Nov 4 2013, 20:12:41) [GCC 4.4.6.........【阅读全文】
发布时间:2013-11-03 20:20:13
python3执行shell命令的几种方式1.用os.system(cmd) 可以获取命令执行后的返回值,但是获取不了命令的输出内容import os;return_code=os.system('ls -la');print(return_code);2.用os.popen(cmd) 可以获取命令的输出内容,但是获取不了命令执行后的返回值import os;import sys;ou.........【阅读全文】
发布时间:2013-10-24 21:11:19
python3以特定字符集读写文件>>> import codecs;>>> out.close();>>> out=codecs.open('test2.txt','w','utf-8');>>> out.write("This is 测试写入中文,而且用的是UTF-8字符集.");>>> out.close();>>> import codecs;>>> out=codecs.open('test2.txt','r','utf-8');>>> for line in out:  .........【阅读全文】