上一页 1 ··· 5 6 7 8 9

2012年5月22日

摘要: VI帮助文档 http://vimdoc.sourceforge.net/htmldoc/usr_toc.html1) ================================set nocompatible " 不使用vi默认键盘布局set number " 显示行号set autoindent " 自动对齐set smartindent " 智能对齐set showmatch " 括号匹配模式set ruler ... 阅读全文
posted @ 2012-05-22 15:25 bluebbc 阅读(300) 评论(0) 推荐(0) 编辑

2012年5月21日

摘要: 1 自动安装 samba #sudo apt-get install samba #sudo apt-get install smbclient #sudo apt-get install system-config-samba (如果需要图形界面的话,最好还是装,方便操作)2 增加共享文件夹在文件/etc/samba/smb.conf结尾添加如下行:[workroom]comment=this is Linux share directorypath=/home/mao/disk1/workroompublic=yeswritable=yes3 问题如果用windows访问samba,... 阅读全文
posted @ 2012-05-21 18:26 bluebbc 阅读(783) 评论(0) 推荐(0) 编辑
摘要: 问题:我将别人的vmware 之 ubuntu拷贝到我的机器之后,网络就连接不上了,重启后它自己又生成了一个eth*;解决: 将所有的eth*删除, 删除rm /etc/udev/rules.d/70-persistent-net.rules , 重启vmware, 添加一个eth*;参考http://www.cnblogs.com/bg4cpx/archive/2009/09/24/1573148.html另外:又遇到ssh连接不上问题,参考 阅读全文
posted @ 2012-05-21 15:18 bluebbc 阅读(270) 评论(0) 推荐(0) 编辑

2012年5月20日

摘要: 1“认识upnp服务”,“UPNP.0-Chinese_UPNP中文版”,“UPNP_UnderstandingUPNP”;2用upnp如何实现NAT穿越? 希望能详细的讲解原理 网关打开UPNP功能.终端运行支持UPNP的软件.软件需要什么端口就向网关发送UPNP映射请求.网关就自动帮他弄个映射..最简单的例子,迅雷.你试试买个TPLINK打开UPNP,再打开迅雷或者酷狗下载.你会看到很多端口会被映射了出去.如果想详细清楚.请自行安装wirshark软件抓包.3关于ipcam的UPnP或NAT的知识http://blog.chinaunix.net/uid-23883288-id-30381 阅读全文
posted @ 2012-05-20 22:07 bluebbc 阅读(600) 评论(0) 推荐(0) 编辑
摘要: http://www.gnu.org/software/bash/manual/Bash Reference ManualBash Reference ManualTable of ContentsBash Features1 Introduction1.1 What is Bash?1.2 What is a shell?2 Definitions3 Basic Shell Features3.1 Shell Syntax3.1.1 Shell Operation3.1.2 Quoting3.1.2.1 Escape Character3.1.2.2 Single Quotes3.1.2.3 阅读全文
posted @ 2012-05-20 14:11 bluebbc 阅读(562) 评论(0) 推荐(0) 编辑
摘要: http://www.chinaunix.net/jh/23/408225.html 阅读全文
posted @ 2012-05-20 12:00 bluebbc 阅读(161) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash var=`find .`for i in $vardo if [ -f "$i" ] then echo $i iconv -f GB2312 -t UTF-8 $i > tmp rm $i mv tmp $i fidone 阅读全文
posted @ 2012-05-20 09:53 bluebbc 阅读(864) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9

导航