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用于修复软件包,但是偶尔出现不响应的情况,运行后一直卡在那里

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

在VPS创建open vpn指南

无评论

2011 年 11 月 25 日 at 下午 3:41分类:仅仅转载

首先在面板激活tup或找客服开启tup

以下命令均在root账户下执行:
一、安装openvpn,iptables
代码:

apt-get install openvpn iptables

更多…

perl: warning: Falling back to the standard locale (“C”).

无评论

2011 年 11 月 25 日 at 下午 12:50分类:仅仅转载

perl: warning: Falling back to the standard locale ("C").
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = (unset),
        LC_ALL = (unset),
        LANG = "zh_CN.GB2312;zh_CN.UTF-8;en_US;en_US.UTF-8" 更多…