logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

解决scp: command not found的问题

在win7的cygwin下用scp向linux虚拟机复制文件,碰到很纠结的问题:$ scpweb.py-0.36.tar.gz root@192.168.2.49:/rootroot@192.168.2.49's password:bash: scp: command not foundlost connection网上查问题原因,都说scp必须在系统PATH变量的路径里,查了一下s

#linux#虚拟机#bash
解决udev:renamed network interface eth0 to eth1

一台rhel 6.2 x64的虚拟机,启动以后发现没有eth0,只有eth1,dmesg的时候看到一句:udev:renamed network interface eth0 to eth1网上查了一下,说是删除/etc/udev/rules.d/70-persistent-net.rules这个文件,重启就好了,我看了一下这个文件的内容:# This file was automatic

#虚拟机
典型的使用继承的程序

网上找到的,转帖学习一下。#!/usr/bin/python# Filename: inherit.pyclass SchoolMember:'''Represents any school member.'''def __init__(self, name, age):self.name = nameself.age = ag

python的存储

代码:#!/usr/bin/python# Filename: pickling.pyimport cPickle as p#import pickle as pshoplistfile = 'shoplist.data'# the name of the file where we will store the objectshoplist = ['apple', 'man

#python
分析一个程序

程序来自http://wiki.woodpecker.org.cn/moin/MiscItems/2011-11-28#!/usr/bin/pythonimport sysimport randomimport timeimport itertoolsimport operatorimport collections# 返回一个包含在指定范围内产生包含随机数的字典

#list
调试一个引发异常的程序

代码:#!/usr/bin/env python# Filename: raising.pyclass ShortInputException(Exception):'''A user-defined exception class.'''def __init__(self,length,atleast):Exception.__init__(self)self.

得到linux平台上ssh或ftp用户

代码#! /usr/bin/env python#-*- coding:utf-8 -*-''' 概述:从/etc/passwd获取系统用户名,以列表形式返回参数:f:获取系统的ftp用户名列表s:获取系统的ssh用户名列表说明:判断依据:ftp用户是指用户id大于等于500且没有shell的用户。ssh用户是指用户id大于等于500且有she

#ssh#linux
使用参数的例子

代码:#!/usr/bin/python# Filename: cat.pyimport sysdef readfile(filename):'''Print a file to the standard output.'''f = file(filename)while True:line = f.readline()

得到linux下用户名、id、shell(分别返回列表和字典)

用笨办法实现(在python 2.4下可以用):返回列表:#! /usr/bin/env python#-*- coding:utf-8 -*-''' 概述:从/etc/passwd获取系统用户名、用户ID、shell,以列表形式返回输出:['root, 0, /bin/bash', 'bin, 1, /sbin/nologin', ...]Create data: 201

#linux#windows#list
到底了