摘要: 参考:http://cuiqingcai.com/993.html 贴吧地址:https://tieba.baidu.com/p/3138733512?see_lz=1&pn=1 阅读全文
posted @ 2017-06-21 19:08 大都比2号 阅读(5764) 评论(0) 推荐(0) 编辑
摘要: 参考 http://www.cnblogs.com/xin-xin/p/4297852.html 阅读全文
posted @ 2017-06-20 10:33 大都比2号 阅读(241) 评论(0) 推荐(0) 编辑
摘要: python 对系统资源的监控 http://www.centoscn.com/python/2015/0521/5487.html Python学习论坛(包含了上个链接,太厉害了,后续继续研究) http://www.centoscn.com/python/ 阅读全文
posted @ 2017-05-27 20:03 大都比2号 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 1、pip安装(pip 是“A tool for installing and managing Python packages.”,也就是说pip是python的软件安装工具)yum -y install epel-releaseyum -y install python-pipyum -y in 阅读全文
posted @ 2017-05-27 20:01 大都比2号 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 #coding: utf-8 import time import commands import os import smtplib import email.MIMEMultipart import email.MIMEText import email.MIMEBase import mimetypes import email.MIMEIm... 阅读全文
posted @ 2017-05-26 21:02 大都比2号 阅读(1952) 评论(0) 推荐(0) 编辑
摘要: 请注意附件内容 阅读全文
posted @ 2017-05-25 20:52 大都比2号 阅读(3117) 评论(0) 推荐(0) 编辑
摘要: 一.cherrytree的安装1.下载软件[root@localhost guorongman-software]# lftp 10.0.2.253 登录ftp服务器10.0.2.253lftp 10.0.2.253:~> cd software/ 进入software文件夹lftp 10.... 阅读全文
posted @ 2015-02-01 17:12 大都比2号 阅读(1262) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash#auther:acf#!/bin/basha=$1b=$2sum(){# echo $(($1 + $2))read -p "first num " num1read -p "second num " num2let c=$num1+... 阅读全文
posted @ 2015-02-01 16:32 大都比2号 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 一====================================================#!/bin/bash#Author wenyu#Edit date 2014 11 21#This shell script will add a userSYSUSER=`cat /etc/... 阅读全文
posted @ 2015-02-01 16:31 大都比2号 阅读(462) 评论(0) 推荐(0) 编辑
摘要: Shell入门到精通 第2章 文件置换1、使用*号 可以使用*号匹配文件中的任意字符串# cd /root/# ls *.log# ls i*# ls *.sys*2、使用?号?号可以匹配任意的单个字符# ls ??stall.log... 阅读全文
posted @ 2015-02-01 16:30 大都比2号 阅读(129) 评论(0) 推荐(0) 编辑