<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[日日之博ririri.com]]></title> 
<link>http://www.ririri.com/index.php</link> 
<description><![CDATA[]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[日日之博ririri.com]]></copyright>
<item>
<link>http://www.ririri.com/post/222/</link>
<title><![CDATA[将centos的更新源设为(中国科技大学）]]></title> 
<author>dfssaa &lt;a@ririri.com&gt;</author>
<category><![CDATA[LINUX]]></category>
<pubDate>Fri, 14 May 2010 11:46:19 +0000</pubDate> 
<guid>http://www.ririri.com/post/222/</guid> 
<description>
<![CDATA[ 
	CentOS国内更新源 ustc mirror&nbsp;&nbsp;中国科技大学&nbsp;&nbsp;速度很快<br/>CentOS USTC mirror&nbsp;&nbsp; 中国科技大学&nbsp;&nbsp; 这个镜像不错，<br/><br/>大家可以用这个作更新源, 方法如下：<br/><br/>1.打开终端：<br/><br/>2. #cd /etc/yum.repos.d<br/><br/>3. #mv CentOS-Base.repo CentOS-Base.repo.save<br/><br/> 4. #wget http://centos.ustc.edu.cn/CentOS-Base.repo<br/><br/>5.&nbsp;&nbsp;导入官方的Key<br/>#rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5<br/><br/>6.&nbsp;&nbsp;更新<br/>#yum update<br/>Tags - <a href="http://www.ririri.com/tags/centos/" rel="tag">centos</a> , <a href="http://www.ririri.com/tags/%25E6%259B%25B4%25E6%2596%25B0%25E6%25BA%2590/" rel="tag">更新源</a> , <a href="http://www.ririri.com/tags/%25E4%25B8%25AD%25E5%259B%25BD%25E7%25A7%2591%25E6%258A%2580%25E5%25A4%25A7%25E5%25AD%25A6/" rel="tag">中国科技大学</a> , <a href="http://www.ririri.com/tags/ustc/" rel="tag">ustc</a> , <a href="http://www.ririri.com/tags/mirror/" rel="tag">mirror</a> , <a href="http://www.ririri.com/tags/yum/" rel="tag">yum</a> , <a href="http://www.ririri.com/tags/update/" rel="tag">update</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/220/</link>
<title><![CDATA[Centos中的yum安装和卸载软件的使用方法]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[LINUX]]></category>
<pubDate>Wed, 05 May 2010 08:55:32 +0000</pubDate> 
<guid>http://www.ririri.com/post/220/</guid> 
<description>
<![CDATA[ 
	Yum（全称为 Yellow dog Updater, Modified）是一个在Fedora,Redhat,CentOS中的Shell前端软件包管理器。基於RPM包管理，能够从指定的服务器自动下载RPM包并且安装，可以自动处理依赖性关系，并且一次安装所有依赖的软体包，无须繁琐地一次次下载、安装。<br/><br/>安装方法<br/>安装一个软件时<br/>yum -y install httpd<br/>安装多个相类似的软件时<br/>yum -y install httpd*<br/>安装多个非类似软件时<br/>yum -y install httpd php php-gd mysql<br/>卸载一个软件时<br/>yum -y remove httpd<br/>卸载多个相类似的软件时<br/>yum -y remove httpd*<br/>卸载多个非类似软件时<br/>yum -y remove httpd php php-gd mysql<br/><br/>另外还有一个非常棒的用法<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/linux/" rel="tag">linux</a> , <a href="http://www.ririri.com/tags/centos/" rel="tag">centos</a> , <a href="http://www.ririri.com/tags/redhat/" rel="tag">redhat</a> , <a href="http://www.ririri.com/tags/fedora/" rel="tag">fedora</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/219/</link>
<title><![CDATA[CentOS5 上配置pptpd作为VPN服务]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[LINUX]]></category>
<pubDate>Fri, 30 Apr 2010 10:35:29 +0000</pubDate> 
<guid>http://www.ririri.com/post/219/</guid> 
<description>
<![CDATA[ 
	常用的VPN服务器一般分两种，一种是SSL VPN，代表软件有openvpn，这个VPN软件有Windows下的客户端软件；另外一种是pptpd VPN，Windows自带这种VPN的客户端支持。本文记录了在CentOS 5 VPS下安装pptpd VPN服务器的过程。<br/>内核支持<br/>pptpd VPN需要内核支持mppe，我的CentOS 5.4 的内核已经把mppe编译进去了，没有把mppe另外当作内核的模块。<br/><br/>软件安装<br/>要安装pptpd VPN，ppp和iptables这两个软件是必须安装的，安装命令：<br/><br/>yum install -y ppp iptables<br/>然后下载pptpd的rpm包：<br/><br/>32位 http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.i386.rpm<br/>64位 http://poptop.sourceforge.net/yum/stable/packages/pptpd-1.3.4-1.rhel5.1.x86_64.rpm<br/><br/>要注意64位的系统要下载64位的rpm包，32位的系统要下载32位的rpm包，别搞错了<br/><br/>64位系统安装命令：<br/><br/>rpm -ivh pptpd*.x86_64.rpm<br/><br/>32位系统安装命令：<br/><br/>rpm -ivh pptpd*.i386.rpm<br/><br/>编辑配置文件 /etc/ppp/options.pptpd 内容如下：<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/centos/" rel="tag">centos</a> , <a href="http://www.ririri.com/tags/linux/" rel="tag">linux</a> , <a href="http://www.ririri.com/tags/vpn/" rel="tag">vpn</a> , <a href="http://www.ririri.com/tags/pptpd/" rel="tag">pptpd</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/install-ubuntu-ylmfos-partition-method/</link>
<title><![CDATA[安装Ubuntu、YlmfOS的分区方法]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[LINUX]]></category>
<pubDate>Fri, 05 Feb 2010 04:26:55 +0000</pubDate> 
<guid>http://www.ririri.com/install-ubuntu-ylmfos-partition-method/</guid> 
<description>
<![CDATA[ 
	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ubuntu、YlmfOS等LINUX系统的安装方法网上有很多，不过很多教程对LINUX下的磁盘分区讲的很模糊，现在特将方法贴出来。本方法是针对硬盘安装，并且有其它的系统和分区，如，C盘有XP，D盘是NTFS格式，那就可以把最后一个分区删除（在2K、XP、2003系统里有一个“磁盘管理”，从那里就可以删，记得先备份最后一个区的数据），空出来用来分LINUX分区，本例是将E盘删除用来分LINUX分区。<br/><span style="color: #DC143C;">注意</span>：硬盘里有其它系统和分区，千万不要点“新建分区表”这个按钮，切记，不然之前的数据都没了<br/>图1：<br/>............<br/><br/>Tags - <a href="http://www.ririri.com/tags/linux%25E5%2588%2586%25E5%258C%25BA/" rel="tag">linux分区</a> , <a href="http://www.ririri.com/tags/ubuntu%25E5%2588%2586%25E5%258C%25BA/" rel="tag">ubuntu分区</a> , <a href="http://www.ririri.com/tags/ylmfos%25E5%2588%2586%25E5%258C%25BA/" rel="tag">ylmfos分区</a> , <a href="http://www.ririri.com/tags/swap%25E4%25BA%25A4%25E6%258D%25A2%25E5%2588%2586%25E5%258C%25BA/" rel="tag">swap交换分区</a> , <a href="http://www.ririri.com/tags/%25E6%25A0%25B9%25E5%2588%2586%25E5%258C%25BA/" rel="tag">根分区</a>
]]>
</description>
</item><item>
<link>http://www.ririri.com/post/182/</link>
<title><![CDATA[ubuntu9.10安装五笔输入法]]></title> 
<author>sky &lt;&gt;</author>
<category><![CDATA[LINUX]]></category>
<pubDate>Thu, 17 Dec 2009 05:13:43 +0000</pubDate> 
<guid>http://www.ririri.com/post/182/</guid> 
<description>
<![CDATA[ 
	今天把Ubuntu重新装了一下，用的是9.10版本，设置好浏览器的代理后，就到论坛里逛逛，发贴时才发现，ubuntu9.10默认的中文输入法只有一个拼音，晕。用五笔习惯了，拼音还真不习惯了，得装一下五笔输入法才行。<br/><br/>在论坛里找了一下，发现有一个简单的好方法：<br/><br/>系统－>首选项－>iBus－>输入法－>选择输入法－>汉语－>五笔86－>添加<br/><br/>OK，现在可以随心的用五笔了。<br/><a href="http://www.ririri.com/attachment.php?fid=645" target="_blank"><img src="http://www.ririri.com/attachment.php?fid=645" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>Tags - <a href="http://www.ririri.com/tags/ubuntu9.10/" rel="tag">ubuntu9.10</a> , <a href="http://www.ririri.com/tags/%25E4%25BA%2594%25E7%25AC%2594%25E8%25BE%2593%25E5%2585%25A5%25E6%25B3%2595/" rel="tag">五笔输入法</a>
]]>
</description>
</item>
</channel>
</rss>