简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
在window7上安装了虚拟机 VMware 6.5.2 build-156735,并安装了一个Linux系统,是red hat的RHEL_5.5,系统可以正常使用,但是过了一段时间后,再在虚拟机里启动这个Linux系统时却出现提示框:The VMware Authorization Service is not running。google一下,发现需要在运行VMware的时候以管理员权限运行
[root@local Python-3.3.4]# ./configure checking build system type... i686-pc-linux-gnuchecking host system type... i686-pc-linux-gnuchecking for --enable-universalsdk... nochecking for --with-
source命令用法:source FileName作用:在当前bash环境下读取并执行FileName中的命令。注:该命令通常用命令“.”来替代。如:source .bash_rc 与 . .bash_rc 是等效的。 source命令(从 C Shell 而来)是bash shell的内置命令。点命令,就是个点符号,(从BourneSh
#!/usr/bin/python#coding:utf-8import loggingimport timedef log(error_msg):#获取时间fm = '%Y-%m-%d %H:%M:%S'YMD = time.strftime(fm,time.localtime())#设置文件的存储路径,及文件save_log_fi
#!/usr/bin/python#coding:utf-8class A(object):#必须是新型类才可以是用super如果是经典类则会报错def __init__(self,a,b):self.a = aself.b = bprint self.aprint self.bclass B(
#!/usr/bin/python#coding:utf-8#类的使用#真的用该好好学习下类的使用(知道今天才恍然大悟)#定义个一个基类class State(object): def __init__(self): self.states = {} def add_state(self,st
#!/usr/bin/python#coding:utf-8# python 操作mysql数据库###########################################################################################一.安装msyql; 1.安装包的下载: 下载地址:
#!/usr/bin/python#coding:utf-8#导入动态加载模块的方法importimpfunc_name 模块名字path 模块的路径#使用方法module = imp.load_source(func_name,path)下面就可以使用函数了module.func_name()也可以是分发函数func= getattr(module,func_n
#!/usr/bin/python#coding:utf-8import stringa = dict()m = 0for i in string.ascii_lowercase:a[i] = mm +=1a.iteritems()print a.items()print len(a.items())tt = a.items()#字典排序算法一#
#!/usr/bin/python#coding:utf8#-------------------------------------------------------------------------------# Name:python中异常的处理与跑抛出# Author:quan# Created:21/09/2013#---------