ImportError: No module named setuptools 解决方案

无评论

2011 年 12 月 10 日 at 上午 1:10分类:仅仅转载

shell中输入:

wget http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz
tar zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
python setup.py build
python setup.py install

linux下deluge屏蔽校外v4及伪v6

7 条评论

2011 年 12 月 9 日 at 下午 12:09分类:原创

原创内容发表辛苦,转载请注明出处http://www.xdty.org/?p=400

 

  • 安装deluge

通过软件中心或者终端apt-get install deluge安装

1.先通过deluge的blocklist功能过滤ipv4地址

更多…

ubuntu 10.10官方源

无评论

2011 年 11 月 30 日 at 下午 8:05分类:学习笔记

/etc/apt/sources.list

ubuntu 10.10官方源 更多…

转换文件名中空格为下划线

无评论

2011 年 11 月 30 日 at 下午 1:11分类:仅仅转载

#!/bin/bash  
find . -name "* *" |  
while read name; do  
    na=$(echo $name | tr ' ' '_')  
    mv "$name" $na  
done
#!/bin/bash  
#Replace all spaces in the files in current directory and subfolder with  
#underline.  
for x in `ls -R`; do mv "$x" `echo -n $x | tr " " "_"`; done

原文地址 http://blog.csdn.net/qazplm12_3/article/details/565093

bash下处理包含空格的文件名

无评论

2011 年 11 月 30 日 at 下午 1:03分类:仅仅转载

今天在处理文件时遇到个问题,当文件名包含空格时,for循环就出问题了。

例如,我在当前文件夹下建立3个文件名包含空格的文件:
更多…

关于dpkg was interrupted, you must manually run ‘dpkg –configure -a’

无评论

2011 年 11 月 28 日 at 下午 10:04分类:仅仅转载

dpkg –configure -a用于修复软件包,但是偶尔出现不响应的情况,运行后一直卡在那里

通过以下命令跳过这个步骤。 更多…