<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>记忆也需回忆</title>
	<atom:link href="http://blog.bc8.com.cn/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bc8.com.cn</link>
	<description>网络　-&#62;　程序　-&#62;　生活</description>
	<lastBuildDate>Fri, 09 Dec 2011 03:22:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>LINUX中启动 rsync server</title>
		<link>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%ad%e5%90%af%e5%8a%a8-rsync-server/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%ad%e5%90%af%e5%8a%a8-rsync-server/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 03:22:09 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Rsync]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=530</guid>
		<description><![CDATA[在LINUX中想要启动 rsync server 修改 /etc/xinetd.d/rsync 中的 disable = yes 改成 disable = no 然后下service xinetd restart 就启动了 或者 rsync &#8211;daemon 也可以。 示例：/usr/bin/rsync &#8211;daemon &#8211;config=/etc/rsyncd.conf 创建安全验证文件 echo &#8216;root:123456&#8242; &#62; /etc/rsyncd.secrets chmod 400 /etc/rsyncd.secrets]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%ad%e5%90%af%e5%8a%a8-rsync-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux下文件的切割与合并</title>
		<link>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%8b%e6%96%87%e4%bb%b6%e7%9a%84%e5%88%87%e5%89%b2%e4%b8%8e%e5%90%88%e5%b9%b6/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%8b%e6%96%87%e4%bb%b6%e7%9a%84%e5%88%87%e5%89%b2%e4%b8%8e%e5%90%88%e5%b9%b6/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 21:26:52 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[文件切割]]></category>
		<category><![CDATA[文件合并]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=527</guid>
		<description><![CDATA[切割合并文件在linux用split和cat就可以完成。下面举些实例进行说明。 1.文件切割 文件切割模式分为两种： 文本文件； 二进制模式。 1.1文本模式 文本模式只适用于文本文件，用这种模式切割后的每个文件都是可读的；而文本文件如果用二进制模式进行切割，则无法保证可读性。文本模式又分为两种： 按最大文件大小切割； 按文本行数切割。 1.1.1最大文件大小切割 split -C 5k duanxin split 将文本文件duanxin按每块最大5k的大小进行切割，不打碎行。输出文件名类似splitaa, splitab…… 1.1.2 按文本行数切割 split -l 100 duanxin split 每个分块100行，不考虑大小。日志分析时应该有用。 1.2 二进制模式 split -b 5k duanxin split 每个分块（当然，最后一个不保证）大小都是5k，基本不可读。任何类型文件都可以用这种切割模式。 2.文件合并 cat split* &#62;newduanxin 不管用什么方式切割，合并方法不变。 3.其它 split可以用-a选项指定输出文件名的长度。如 split -l 100 -a 3 duanxin split 则输出文件出类似于splitaaa,splitaab。不指定时默认为2。 用-b或-C指定分块大小时，可用的单位有，b for 512bytes, k for 1Kbytes, m [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/12/09/linux%e4%b8%8b%e6%96%87%e4%bb%b6%e7%9a%84%e5%88%87%e5%89%b2%e4%b8%8e%e5%90%88%e5%b9%b6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决Linux磁盘空间快满10招</title>
		<link>http://blog.bc8.com.cn/index.php/2011/12/04/%e8%a7%a3%e5%86%b3linux%e7%a3%81%e7%9b%98%e7%a9%ba%e9%97%b4%e5%bf%ab%e6%bb%a110%e6%8b%9b/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/12/04/%e8%a7%a3%e5%86%b3linux%e7%a3%81%e7%9b%98%e7%a9%ba%e9%97%b4%e5%bf%ab%e6%bb%a110%e6%8b%9b/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 04:15:24 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[磁盘]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=523</guid>
		<description><![CDATA[1． 定期对重要文件系统扫描，并作对比，分析那些文件经常读写 　　#ls –lR /home &#62;;files.txt 　　#diff filesold.txt files.txt 　　通过分析预测空间的增长情况，同时可以考虑对不经常读写文件进行压缩，以减少占用空间。 2． 查看空间满的文件系统的inodes消耗 　　#df – i /home 　　如果还有大量inode可用，说明大文件占用空间，否则是可能大量小文件占用空间。 3． 找出占用空间较大的目录 　　查看/home 占用的空间 　　#du –hs /home 　　查看/home 下占用空间超过1000m 　　#du &#124;awk &#8216;{GetProperty(Content)}&#62;;2000&#8242; 4． 找出占用空间较大的文件 　　#find /home –size +2000k &#160; 5． 找出最近修改或创建的文件 　　先touch一个你想要的时间的文件如下： 　　# touch -t 08190800 test 　　#find /home -newer test -print 6． 删除系统日志等 　　删除生成 core,mbox等文件 　　 #find [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/12/04/%e8%a7%a3%e5%86%b3linux%e7%a3%81%e7%9b%98%e7%a9%ba%e9%97%b4%e5%bf%ab%e6%bb%a110%e6%8b%9b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux下的文件结构</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/23/linux%e4%b8%8b%e7%9a%84%e6%96%87%e4%bb%b6%e7%bb%93%e6%9e%84/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/23/linux%e4%b8%8b%e7%9a%84%e6%96%87%e4%bb%b6%e7%bb%93%e6%9e%84/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 16:16:33 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=520</guid>
		<description><![CDATA[/bin 二进制可执行命令 /dev 设备特殊文件 /etc 系统管理和配置文件 /etc/rc.d 启动的配置文件和脚本 /home 用户主目录的基点，比如用户user的主目录就是/home/user，可以用~user表示 /lib 标准程序设计库，又叫动态链接共享库，作用类似windows里的.dll文件 /sbin 系统管理命令，这里存放的是系统管理员使用的管理程序 /tmp 公用的临时文件存储点 /root 系统管理员的主目录（呵呵，特权阶级） /mnt 系统提供这个目录是让用户临时挂载其他的文件系统。 /lost+found 这个目录平时是空的，系统非正常关机而留下“无家可归”的文件（windows下叫什么.chk）就在这里 /proc 虚拟的目录，是系统内存的映射。可直接访问这个目录来获取系统信息。 /var 某些大文件的溢出区，比方说各种服务的日志文件 /usr 最庞大的目录，要用到的应用程序和文件几乎都在这个目录。其中包含： /usr/X11R6 存放X window的目录 /usr/bin 众多的应用程序 /usr/sbin 超级用户的一些管理程序 /usr/doc linux文档 /usr/include linux下开发和编译应用程序所需要的头文件 /usr/lib 常用的动态链接库和软件包的配置文件 /usr/man 帮助文档 /usr/src 源代码，linux内核的源代码就放在/usr/src/linux里 /usr/local/bin 本地增加的命令 /usr/local/lib 本地增加的库 根文件系统 通常情况下，根文件系统所占空间一般应该比较小，因为其中的绝大部分文件都不需要 经常改动，而且包括严格的文件和一个小的不经常改变的文件系统不容易损坏。 除了可能的一个叫/ v m [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/23/linux%e4%b8%8b%e7%9a%84%e6%96%87%e4%bb%b6%e7%bb%93%e6%9e%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux安装rar解压</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/22/linux%e5%ae%89%e8%a3%85rar%e8%a7%a3%e5%8e%8b/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/22/linux%e5%ae%89%e8%a3%85rar%e8%a7%a3%e5%8e%8b/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 08:31:48 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux管理]]></category>
		<category><![CDATA[rar]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=516</guid>
		<description><![CDATA[wget http://www.rarsoft.com/rar/rarlinux-4.1.b4.tar.gz tar zxvf rarlinux-4.1.b4.tar.gz cd rar make make install 如果报/lib/libc.so.6: version `GLIBC_2.7&#8242; not found (required by unrar) cp -f rar_static /usr/local/bin/rar 测试是否正常： rar --help 解压文件到当前目录： unrar e xx.rar  rar的用法 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 用法:  rar &#60;命令&#62;-&#60;开关 1&#62; -&#60;开关 N&#62; &#60;压缩文件&#62; &#60;文件…&#62; &#60;@列表文件…&#62; &#60;解压路径\&#62; &#60;命令&#62; a 添加文件到压缩文件 c 添加压缩文件注释 cf 添加文件注释 cw 写入压缩文件注释到文件 d 删除压缩文件中的文件 e 解压压缩文件到当前目录 f [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/22/linux%e5%ae%89%e8%a3%85rar%e8%a7%a3%e5%8e%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/dev/stm建个tmp文件夹与实际/tmp绑定</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/22/devstm%e5%bb%ba%e4%b8%aatmp%e6%96%87%e4%bb%b6%e5%a4%b9%e4%b8%8e%e5%ae%9e%e9%99%85tmp%e7%bb%91%e5%ae%9a/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/22/devstm%e5%bb%ba%e4%b8%aatmp%e6%96%87%e4%bb%b6%e5%a4%b9%e4%b8%8e%e5%ae%9e%e9%99%85tmp%e7%bb%91%e5%ae%9a/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 07:58:41 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[/dev/shm]]></category>
		<category><![CDATA[linux管理]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=514</guid>
		<description><![CDATA[/dev/shm建个tmp文件夹与实际/tmp绑定 =============================================== 　　mkdir /dev/shm/tmp 　　chmod 1777 /dev/shm/tmp 　　mount --bind /dev/shm/tmp /tmp 重新mount /dev/shm使之生效： # mount -o remount /dev/shm 将/dev/shm的大小增加到1GB，修改/etc/fstab的这行：默认的： none /dev/shm tmpfs defaults 0 0 改成： none /dev/shm tmpfs defaults,size=1024M 0 0 size参数也可以用G作单位：size＝1G。]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/22/devstm%e5%bb%ba%e4%b8%aatmp%e6%96%87%e4%bb%b6%e5%a4%b9%e4%b8%8e%e5%ae%9e%e9%99%85tmp%e7%bb%91%e5%ae%9a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql错误解决方法整理</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/21/mysql%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95%e6%95%b4%e7%90%86/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/21/mysql%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95%e6%95%b4%e7%90%86/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 03:28:42 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[MySql]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=511</guid>
		<description><![CDATA[Manager of pid-file quit without updating file ================================================ 1、mysql.sock路径不对或路径没有写权限 2、my.cnf配置有错误 3、数据库所在目录mysql不可读写 4、删除了二进制日志，需要删除 &#160; 日志索引文件 General error: 3 Error writing file &#8216;/tmp/MYhJ0mvo&#8217; (Errcode: 28) ================================================= tmp文件夹满了写入不了 解决：使用tmpdir指定新的空闲目录，或清理目录]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/21/mysql%e9%94%99%e8%af%af%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95%e6%95%b4%e7%90%86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux命令：top命令</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/15/linux%e5%91%bd%e4%bb%a4%ef%bc%9atop%e5%91%bd%e4%bb%a4/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/15/linux%e5%91%bd%e4%bb%a4%ef%bc%9atop%e5%91%bd%e4%bb%a4/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 10:56:32 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux命令]]></category>
		<category><![CDATA[top]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=506</guid>
		<description><![CDATA[top命令是Linux下常用的性能分析工具，能够实时显示系统中各个进程的资源占用状况，类似于Windows的任务管理器。下面详细介绍它的使用方法。 top &#8211; 01:06:48 up    1:22,    1 user,    load average: 0.06, 0.60, 0.48 Tasks:    29 total,     1 running,    28 sleeping,     0 stopped,     0 zombie Cpu(s):    0.3% us,    1.0% sy,    0.0% ni, 98.7% id,    0.0% wa,    0.0% hi,    0.0% si Mem:      191272k total,     173656k used,      17616k free,      22052k buffers Swap:     192772k total,          0k used,     192772k free,     [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/15/linux%e5%91%bd%e4%bb%a4%ef%bc%9atop%e5%91%bd%e4%bb%a4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu下CoreSeek快速安装</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/12/ubuntu%e4%b8%8bcoreseek%e5%bf%ab%e9%80%9f%e5%ae%89%e8%a3%85/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/12/ubuntu%e4%b8%8bcoreseek%e5%bf%ab%e9%80%9f%e5%ae%89%e8%a3%85/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 18:08:53 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sphinx]]></category>
		<category><![CDATA[coreseek]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[分词]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=504</guid>
		<description><![CDATA[&#160; coreseek安装需要预装的软件：apt-get install make gcc g++ automake libtool mysql-client libmysqlclient15-dev libxml2-dev libexpat1-dev CoreSeek快速安装： ##下载coreseek：coreseek 3.2.14：点击下载、coreseek 4.0.1：点击下载、coreseek 4.1：点击下载 $ wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.14.tar.gz $ 或者 http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.0.1-beta.tar.gz $ 或者 http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.1-beta.tar.gz $ tar xzvf coreseek-3.2.14.tar.gz 或者 coreseek-4.0.1-beta.tar.gz 或者 coreseek-4.1-beta.tar.gz $ cd coreseek-3.2.14 或者 coreseek-4.0.1-beta 或者 coreseek-4.1-beta ##前提：需提前安装操作系统基础开发库及mysql依赖库以支持mysql数据源和xml数据源 ##安装mmseg $ cd mmseg-3.2.14 $ ./bootstrap    #输出的warning信息可以忽略，如果出现error则需要解决 $ ./configure &#8211;prefix=/usr/local/mmseg3 $ make [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/12/ubuntu%e4%b8%8bcoreseek%e5%bf%ab%e9%80%9f%e5%ae%89%e8%a3%85/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>unrar使用帮助</title>
		<link>http://blog.bc8.com.cn/index.php/2011/11/11/unrar%e4%bd%bf%e7%94%a8%e5%b8%ae%e5%8a%a9/</link>
		<comments>http://blog.bc8.com.cn/index.php/2011/11/11/unrar%e4%bd%bf%e7%94%a8%e5%b8%ae%e5%8a%a9/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 01:56:33 +0000</pubDate>
		<dc:creator>风吹过的沙</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux命令]]></category>
		<category><![CDATA[unrar]]></category>

		<guid isPermaLink="false">http://blog.bc8.com.cn/?p=501</guid>
		<description><![CDATA[unrar使用帮助 用法:     unrar &#60;命令&#62; -&#60;开关 1&#62; -&#60;开关 N&#62; &#60;压缩文件&#62; &#60;文件&#8230;&#62; &#60;@列表文件&#8230;&#62; &#60;解压路径\&#62; &#60;注释&#62; e             解压压缩文件到当前目录 l[t,b]        列出压缩文件[技术信息,简洁] p             打印文件到标准输出设备 t             测试压缩文件 v[t,b]        详细列出压缩文件[技术信息,简洁] x             用绝对路径解压文件 &#60;开关&#62; -             停止扫描 ac            压缩或解压后清除存档属性 ad            添加压缩文件名到目标路径 ap&#60;路径&#62;      添加路径到压缩文件中 av-           禁用用户身份校验 c-            禁用注释显示 cfg-          禁用读取配置 cl            名称转换为小写 cu            名称转换为大写 dh            打开共享文件 ep            从名称中排除路径 ep3           扩展路径为包含盘符的完全路径 f             刷新文件 id[c,d,p,q]   禁止信息显示 ierr          [...]]]></description>
		<wfw:commentRss>http://blog.bc8.com.cn/index.php/2011/11/11/unrar%e4%bd%bf%e7%94%a8%e5%b8%ae%e5%8a%a9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

