<?xml version="1.0" encoding="gb2312" ?>
<rss version="2.0">
<channel>
<title>Linux教程</title>
<link>http://www.xker.com/edu/os/5/</link>
<description>网络学院 / 操作系统 / Linux教程</description>
<language>zh-cn</language>
<generator><![CDATA[新客网 xker.com]]></generator>
<webmaster>mx463@163.com</webmaster>
<item>
    <title><![CDATA[Ubuntu 11.0下配置Web服务器详细教程]]></title>
    <link>http://www.xker.com/page/e2012/0408/112382.html</link>
    <description><![CDATA[近日，有消息爆出Linux桌面已经趋于死亡，众多Linux爱好者感到失望，但令人可喜的是Linux在 服务器 领域表现却尤为喜人，据IDC数据显示，部署了Linux系统的 服务器 占到20%的市场份额。其中Red Hat和Ubuntu在服务器市场表现抢眼，由它们搭建的Web服务器在企]]></description>
    <pubDate>2012-04-08</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux操作系统之缓存机制]]></title>
    <link>http://www.xker.com/page/e2012/0309/110479.html</link>
    <description><![CDATA[Linux运用一个功能广泛的缓冲和缓存框架来提高系统的速度。缓冲和缓存利用一部分系统物理内存，确保最重要、最常使用的块设备数据在操作时可直接从主内存获取，而无需从低速设备读]]></description>
    <pubDate>2012-03-09</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>zol</comments>
</item>
<item>
    <title><![CDATA[新手如何选择Linux发行版?]]></title>
    <link>http://www.xker.com/page/e2012/0309/110476.html</link>
    <description><![CDATA[对于新手如何选择 Linux的发行版，根据我玩Linux 三十几个月的经验可知，主要有如下几点; 1.发行版官方是否有长远的发展规划，是不是今天开业了，明天就关门了?因为张三Linux和李四Linux太多了，所以看是否有长远计划是我们选择发行版来学习Linux是很重要的]]></description>
    <pubDate>2012-03-09</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>zol</comments>
</item>
<item>
    <title><![CDATA[linux vi保存退出命令]]></title>
    <link>http://www.xker.com/page/e2012/0114/106423.html</link>
    <description><![CDATA[有很多方法： 退出Vi 当编辑完文件，准备退出Vi返回到shell时，可以使用以下几种方法之一。 在命令模式中，连按两次大写字母Z，若当前编辑的文件曾被修改过，则Vi保存该文件后退出，返回到shell；若当前编辑的文件没被修改过，则Vi直接退出, 返回到shell。 在]]></description>
    <pubDate>2012-01-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[centos 5.5 配置vnc，开启linux远程桌面教程（完整正确版）]]></title>
    <link>http://www.xker.com/page/e2012/0114/106422.html</link>
    <description><![CDATA[如何远程控制centOS桌面? 如何使用windows远程控制centOS桌面? 1.查看本机是否有安装vnc（centOS5默认有安装vnc） rpm -q vnc vnc-server 如果显示结果为： package vnc is not installed vnc-server-4.1.2-14.e15_3.1 那恭喜你，机器上已经安装了vnc，如果]]></description>
    <pubDate>2012-01-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[以超级用户的身份在linux中用命令创建新的用户]]></title>
    <link>http://www.xker.com/page/e2011/0929/102872.html</link>
    <description><![CDATA[以超级用户的身份创建新的用户 （1）用useradd命令创建用户创建用户：语法 useradd [所要创建的用户名] ，回车 （2）用passwd命令为该用户创建密码：语法：passwd [用户名]，回车 （3）输入密码：一般密码至少要有六个字符，这里输入的密码是看不见的，所以]]></description>
    <pubDate>2011-09-30</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[五个步骤教会你在SentOS Linux下安装MongoDB数据库服务器]]></title>
    <link>http://www.xker.com/page/e2011/0927/102808.html</link>
    <description><![CDATA[第一步： 从网站上下载MongoDB到本机，为安装做好准备curl -O linux/mongodb-linux-i686-1.8.1.tgzhttp://fastdl.mongodb.org/linux/mongodb-linux-i686-1.8.1.tgz 第二步： 设置MongoDB运行目录，并将其解压缩到目录下 1.创建目录Apps作为MongoDB的运行目录]]></description>
    <pubDate>2011-09-28</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解Linux设备驱动中的阻塞与非阻塞]]></title>
    <link>http://www.xker.com/page/e2011/0927/102807.html</link>
    <description><![CDATA[「阻塞与非阻塞定义」阻塞操作是指，在执行设备操作时，若不能获得资源，则进程挂起直到满足可操作的条件再进行操作。被挂起的进程进入sleep 状态，被从调度器的运行队列移走，直到等待的条件被满足。 非阻塞操作的进程在不能进行设备操作时，并不挂起。 「阻]]></description>
    <pubDate>2011-09-28</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你用linux命令查看文件系统类型]]></title>
    <link>http://www.xker.com/page/e2011/0927/102806.html</link>
    <description><![CDATA[功能：检查文件系统的磁盘空间占用情况。可以利用该命令来获取硬盘被占用了多少空间，目前还剩下多少空间等信息。 语法：df [选项] 说明：df命令可显示所有文件系统对i节点和磁盘块的使用情况。 该命令各个选项的含义如下： -a 显示所有文件系统的磁盘使用情]]></description>
    <pubDate>2011-09-28</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[讲一讲Linux的一些常用基本命令]]></title>
    <link>http://www.xker.com/page/e2011/0926/102759.html</link>
    <description><![CDATA[一些常用的基本命令: uname -a 查看内核版本 ls -al 显示所有文件的属性 pwd 显示当前路径 cd - 返回上一次目录 cd ~ 返回主目录 date s 设置时间、日期 cal 显示日历 cal 2006 bc 计算器具 man info 帮助手册 locale 显示当前字体 locale -a 所有可用字体 /]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解RedHat Linux的常用命令和常见的日志文件]]></title>
    <link>http://www.xker.com/page/e2011/0926/102758.html</link>
    <description><![CDATA[成功地管理任何系统的关键之一，是要知道系统中正在发生什么事。Linux 中提供了异常日 志，并且日志的细节是可配置的。Linux 日志都以明文形式存储，所以用户不需要特殊的工具就可以搜索和阅读它们。还可以编写脚本，来扫描这些日志，并 基于它们的内容去自]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在Linux用命令查看Apache的并发请求数及其TCP连接状态]]></title>
    <link>http://www.xker.com/page/e2011/0926/102757.html</link>
    <description><![CDATA[查看Apache的并发请求数及其TCP连接状态： Linux命令： netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' （这条语句是从 新浪互动社区事业部技术总监王老大那儿获得的，非常不错） 返回结果示例： LAST_ACK 5 (正在等待处理的请求数)]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在linux下用命令查看httpd进程数]]></title>
    <link>http://www.xker.com/page/e2011/0926/102756.html</link>
    <description><![CDATA[查看httpd进程数（即prefork模式下Apache能够处理的并发请求数）： Linux 命令： ps -ef | grep httpd | wc -l 返回结果示例： 1388 表示Apache能够处理1388个并发请求，这个值Apache可根据负载情况自动调整，我这组服务器中每台的峰值曾达到过2002。]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在linux下用top命令查看cpu使用情况]]></title>
    <link>http://www.xker.com/page/e2011/0926/102755.html</link>
    <description><![CDATA[top命令和ps命令的基本作用是相同的，显示系统当前的进程和其它状况；但是top是 一个动态显示过程，即可以通过用户按键来不断刷新当前状态。如果在前台执行该命令，它将独占前台，直到用户终止该程序为止。比较准确的说，top命令提供 了实时的对系统处理器的]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:Linux系统主要的8个特点]]></title>
    <link>http://www.xker.com/page/e2011/0926/102754.html</link>
    <description><![CDATA[Linux系统在短短的几年之内就得到了非常迅猛的发展，这与Linux系统的良好特性是分不开的。Linux系统包含了UNIX系统的全部功能和特性，简单地说，Linux系统具有以下主要特性。 一．开放性 是指系统遵循世界标准规范，特别是遵循开放系统互连（OSI）国际标准。]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:Linux系统主要的4个组成部分]]></title>
    <link>http://www.xker.com/page/e2011/0926/102753.html</link>
    <description><![CDATA[Linux系统一般有4个主要部分：内核、shell、文件系统和应用程序。内核、shell和文件系统一起形成了基本的操作系统结构，它们使得用户可以运行程序、管理文件并使用系统。 一．Linux内核 内核是操作系统的核心，具有很多最基本功能，如虚拟内存、多任务、共享]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:在centos6.0下构建lamp环境]]></title>
    <link>http://www.xker.com/page/e2011/0926/102752.html</link>
    <description><![CDATA[1、确认搭建LAMP所需要的环境是否已经安装 [root@centos6 ~]# rpm -q make gcc gcc-c++ zlib-devel libaio 备注：安装libpng时候需要zlib-devel 安装 mysql时候需要libaio 2、如果没安装则yum安装 [root@centos6 ~]# yum install make gcc gcc-c++ zlib-deve]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你不再为Linux系统无法正常启动而烦恼]]></title>
    <link>http://www.xker.com/page/e2011/0926/102750.html</link>
    <description><![CDATA[Linux在启动过程中会出现一些故障，导致系统无法正常启动，本文列举了几个应用单用户模式、GRUB命令操作、Linux救援模式的典型故障修复案例帮助读者了解此类问题的解决。 一、单用户模式 Linux提供了单用户模式(类似Windows安全模式)，可以在最小环境中进行]]></description>
    <pubDate>2011-09-26</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解linux下4种远程传输文件的方式]]></title>
    <link>http://www.xker.com/page/e2011/0923/102719.html</link>
    <description><![CDATA[1、scp: scp 命令是 SSH 中最方便有用的命令了，scp就是secure copy，是用来进行远程文件拷贝的。数据传输使用 ssh，并且和ssh 使用相同的认证方式，提供相同的安全保证 。 与rcp 不同的是，scp 在需要进行验证时会要求你输入密码或口令。 scp [options] [本]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:linux daemon守护进程]]></title>
    <link>http://www.xker.com/page/e2011/0923/102718.html</link>
    <description><![CDATA[Daemon程序简介 Daemon是长时间运行的进程，通常在系统启动后就运行，在系统关闭时才结束。一般说Daemon程序在后台运行，是因为它没有控制终端，无法和前台的用户交互。Daemon程序一般都作为服务程序使用，等待客户端程序与它通信。我们也把运行的Daemon程序]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:Linux Sed命令的应用]]></title>
    <link>http://www.xker.com/page/e2011/0923/102717.html</link>
    <description><![CDATA[1. （含字符22）在当前行上面插入文本 koko = gggggggggggggg sed -i '/22/i\koko = gggggggggggggg' /root/soft/iptables 2. （含字符22）在当前行下面插入文本 koko = gggggggggggggg sed -i '/22/a\koko = gggggggggggggg' /root/soft/iptables 3. （含字]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在Linux中安装rsync]]></title>
    <link>http://www.xker.com/page/e2011/0923/102716.html</link>
    <description><![CDATA[1. 下载安装 mkdir -p /root/soft cd /root/soft wget -c ftp://ftp.samba.org/pub/rsync/rsync-3.0.8.tar.gz tar -zxvf rsync-3.0.8.tar.gz cd rsync-3.0.8 ./configure --prefix=/usr/local/rsync make make install ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:linux中raid的配置方法]]></title>
    <link>http://www.xker.com/page/e2011/0923/102715.html</link>
    <description><![CDATA[最近学习了一下linux中raid的配置方法,如下: 1.前期工作 修改分区的system id为fd 2.做raid mdadm -C /dev/md2 -l 5 -n 3 /dev/sdb8 /dev/sdb9 /dev/sdb10 -C是创建raid卷 指定名称 /dev/md2 -l 指定raid的级别也是raid的类型 -n 指定用几个设备（分区或硬盘]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在Linux5下安装oracle]]></title>
    <link>http://www.xker.com/page/e2011/0923/102713.html</link>
    <description><![CDATA[1、 选择语言，最好选择ENGLISH。 一切从英文开始，是个很好的习惯。其实也省了乱码问题。 2、 磁盘分区。 如果你磁盘很大，而且不用考虑机器崩溃后的修复，你可以选择自动分区。我虚拟机的磁盘也就20G，所以分7.9G给根分区，1G给/boot，2G给交换分区，剩下1]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解:Linux中磁盘配额]]></title>
    <link>http://www.xker.com/page/e2011/0923/102712.html</link>
    <description><![CDATA[1.查看系统内核是否支持配额 #dmesg |grep quota 2.查看系统中支持配额的软件是否安装 #rpm -qa |grep quota 3.开启已挂载的分区的配额功能 #mount -o usrquota,remount /dev/sda1 /quota //这仅仅是临时开启，需要重启后还能开启配额 ，需要修改/etc/fstab #]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[linux下简单的rsync同步方法]]></title>
    <link>http://www.xker.com/page/e2011/0923/102711.html</link>
    <description><![CDATA[rsync是一个数据镜像及备份工具，具有可使本地和远程两台的文、目录之间，快速同步镜像，远程数据备份等功能。在同步过程中，rsync是根据自己独特的算法，只同步有变化的文件，甚至在一个文件里只同步有变化的部分，所以可以实现快速的同步数据的功能。（下面]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在linux环境下搭建Dhcp服务器]]></title>
    <link>http://www.xker.com/page/e2011/0923/102710.html</link>
    <description><![CDATA[在linux环境下搭建 Dhcp服务器 (1) 首先配置 dhcp 服务器端 --- 安装 dhcp 服务： dhcp-3.0.5-23.el5.i386.rpm （ dhcp 主要配置包） dhcpv6-1.0.10-18.el5.i386.rpm （ dhcp 工具包） rpm-ivhdhcp-3.0.5-23.el5.i386.rpm（可以使用rpm或者yum安装） （2）]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[完成linux下生成动态链接库和使用动态链接库]]></title>
    <link>http://www.xker.com/page/e2011/0923/102709.html</link>
    <description><![CDATA[一、创建动态链接库1、创建工程new-project-c++ project选择Shared Library-Empty Project.输入工程名a，点击finish，完成工程的创建。 2、编写代码在windows下封装动态链接库时对要封的函数要用__declspec(dllexport)来标明，在linux下不用，在linux下只需要]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[如何用screen指令解决跑后台服务的尴尬]]></title>
    <link>http://www.xker.com/page/e2011/0923/102708.html</link>
    <description><![CDATA[Linux系统中强大的screen命令可能很多用户还没感受到，下面介绍的就是Linux系统中强大的screen命令，具体内容如下所述。 因为做二代测序分析的原因，经常需要运行很长时间的程序。由于时间很长，一直都没什么太好的办法。当有了screen，这一切便都迎刃而解了]]></description>
    <pubDate>2011-09-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你用SELinux来保护你的Apache]]></title>
    <link>http://www.xker.com/page/e2011/0920/102667.html</link>
    <description><![CDATA[你的Web服务器确实有可能遭受攻击，但是SELinux可以用来确保你的网站不用承受真正的伤害。 你可以运用SELinux类型来创建一个确切定义：一个服务可以做什么和它在哪里完成要做的事情。默认情况下，httpd_sys_content类型被设为/var/www，它规定httpd进程可以]]></description>
    <pubDate>2011-09-20</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[教你在linux下配置servlet]]></title>
    <link>http://www.xker.com/page/e2011/0919/102623.html</link>
    <description><![CDATA[linux下设置servlet，安装的是tomcat6，手动的。 在windows下直接用netbeans很简单，直接设置好了。。 但在linux下比较麻烦。所有的配置得自己去写。。 弄了一个晚上，还是没有整好。。 后来btw弄好了。 其实也很简单的。。 都知道jsp是在以/lib/var/tomcat6/]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[关于Linux的简单字符设备驱动程序]]></title>
    <link>http://www.xker.com/page/e2011/0919/102622.html</link>
    <description><![CDATA[一、重要知识点 1. 主次设备号 dev_t dev_t是内核中用来表示设备编号的数据类型; int MAJOR(dev_t dev) int MINOR(dev_t dev) 这两个宏抽取主次设备号。 dev_t MKDEV(unsigned int major, unsignedint minor) 这个宏由主/次设备号构造一个dev_t结构。 2. 分配]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[详解Linux文件系统]]></title>
    <link>http://www.xker.com/page/e2011/0919/102621.html</link>
    <description><![CDATA[1. Linux 磁盘分区和目录 Linux 发行版本之间的差别很少，差别主要表现在系统管理的特色工具以及软件包管理方式的不同。目录结构基本上都是一样的。 Windows 的文件结构是多个并列的树状结构，最顶部的是不同的磁盘（分区），如： C ， D ， E ， F 等。 Linu]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[实例——Linux信号]]></title>
    <link>http://www.xker.com/page/e2011/0919/102620.html</link>
    <description><![CDATA[SA_RESTART ----------------------------------------- 设置信号S的SA_RESTART属性, 如果系统调用被信号S中断, 当信号处理函数返回后, 将自动恢复该系统调用 #include signal.h #include stdio.h #include stdlib.h #include error.h #include string.h void]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[ubuntu 9.10创建samba错误的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0919/102617.html</link>
    <description><![CDATA[新建一个文件夹，右键选择属性，并选择share，选择share this folder，点击create按钮，得到如下错误： Failed to execute child process testparm (No such file or directory) 解决方法如下： sudo cp /usr/bin/testparm.samba3 /usr/bin/testparm sudo cp]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[在linux下增加分区及查看swap分区]]></title>
    <link>http://www.xker.com/page/e2011/0919/102616.html</link>
    <description><![CDATA[Java代码 1.查看系统Swap空间使用 [root@jumper usr]# free total used free shared buffers cached Mem: 513980 493640 20340 0 143808 271780 -/+ buffers/cache: 78052 435928 Swap: 1052248 21256 1030992 2.在空间合适处创建swap文件 [root@jumper usr]]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Fedora 15上安装NVIDIA显卡驱动——详解]]></title>
    <link>http://www.xker.com/page/e2011/0919/102615.html</link>
    <description><![CDATA[在笔记本(集成显卡)上装好fc15之后，体验了把gnome3，感觉挺爽，又在台式机(有显卡)上装了个，但进入桌面到时候，提示说未检测到显卡驱动，不能启动gnome3，在网上找了下安装方式，大致记录并传播下。 各个显卡生产厂商基本都不提供linux下到驱动，所以可以]]></description>
    <pubDate>2011-09-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux中增加软路由的两个方法]]></title>
    <link>http://www.xker.com/page/e2011/0915/102577.html</link>
    <description><![CDATA[Linux中增加软路由的方法一: route add -net 172.16.6.0 netmask 255.255.255.0 gw 172.16.2.254 dev eth0/* 增加一条网络172.16.6.0/24 经过172.16.2.254 eth0 *//* -net增加网络 -host增加主机、netmask 子网掩码、gw 网关、dev 装置,设备,这里是你的网卡]]></description>
    <pubDate>2011-09-15</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[kubuntu桌面升级到KDE 4.7]]></title>
    <link>http://www.xker.com/page/e2011/0802/102055.html</link>
    <description><![CDATA[如果你是kubuntu 11.04用户，已经可以将桌面升级到KDE 4.7了。Kubuntu 官方网站已经提供了升级源。 可以直接输入命令进行升级： sudo add-apt-repository ppa:kubuntu-ppa/backports sudo apt-get update 官方提示KDE PIM 4.7将不附带KDE SC 4.7包在一起，直]]></description>
    <pubDate>2011-08-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux建立ad-hoc实现Wifi共享 类似Connectify功能]]></title>
    <link>http://www.xker.com/page/e2011/0802/102054.html</link>
    <description><![CDATA[最近在 Ubuntu 里找了很久，也找不到一个可以将无线网卡作 AP 的软件，试了网上很多方法都不行，有些是可以搜到热点，但我的 Android 手机连上去的时候获取不了 ip 地址。研究了几天，昨晚花了一晚时候，去写个脚本，成功的连上了。希望我这个脚本能帮到大家]]></description>
    <pubDate>2011-08-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux服务器zsh和bash对比]]></title>
    <link>http://www.xker.com/page/e2011/0620/101606.html</link>
    <description><![CDATA[使用默认指令列模式(bash shell)的管理员可能想仔细看看zshell或是zsh。由于它于bash相似，功能又有所加强，zsh在Linux社区获得了关注。 那么zsh有什么不同之处呢?首先，zsh在感觉和功能上都和bash相似。但是一些增强功能让zsh变成一个有趣的选择。下面是一]]></description>
    <pubDate>2011-06-20</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[使用SUSE管理器管理多平台Linux服务器教程]]></title>
    <link>http://www.xker.com/page/e2011/0620/101605.html</link>
    <description><![CDATA[一旦你在虚拟环境中安装配置了SUSE管理器(SUSE Manager)，就是时候学习它的实用功能来管理红帽企业级Linux和SUSE Linux企业级服务器的物理机和虚拟机了。SUSE管理器支持的客户端包括SLES 10及11 SP1和RHEL4、5及6.使用基于网络的SUSE管理器界面，管理员可以]]></description>
    <pubDate>2011-06-20</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[sudo使用的四个技巧]]></title>
    <link>http://www.xker.com/page/e2011/0620/101604.html</link>
    <description><![CDATA[Ubuntu用户应该对sudo很熟悉啦。当我们在安装软件、删除软件、更新系统等情况下都需要取得管理员密码来执行相应操作。sudo 允许授权的用户作为管理员来执行操作。在本篇文章中给大家介绍使用sudo的4个技巧。 1)sudo !! 用法：想要作为root授权来运行一个命令]]></description>
    <pubDate>2011-06-20</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux服务器集群负载均衡解说]]></title>
    <link>http://www.xker.com/page/e2011/0618/101589.html</link>
    <description><![CDATA[有些公司是做宣传网站或资讯类网站的，服务器均置于国内，他们对集群这块了解的并不深，而且要求也很简单，只要求1+2架构。在初期我使用的是Nginx作为负载均衡器，后期发现HAProxy更加稳定，而且它自带强大的监控页面功能，所以我全部换成了HAproxy作为最前端]]></description>
    <pubDate>2011-06-18</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[LINUX系统grub常见错误分析]]></title>
    <link>http://www.xker.com/page/e2011/0602/101464.html</link>
    <description><![CDATA[1 : Filename must be either an absolute filename or blocklist 解释 ：1号错误表示文件名格式错误。在 GRUB 中要么是以绝对路径给出文件 例子 ： grub kernel vmlinuz root=label=/ Error 1: Filename must be either an absolute pathname or blocklist]]></description>
    <pubDate>2011-06-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[linux系统telnet乱码]]></title>
    <link>http://www.xker.com/page/e2011/0602/101463.html</link>
    <description><![CDATA[local 是 utf-8 的时候 telnet gbk编码的bbs 会出现乱码 解决方法 : 使用 luit luit -encoding gbk telnet bbs.xjtu.edu.cn]]></description>
    <pubDate>2011-06-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[rhythmbox 乱码的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0602/101462.html</link>
    <description><![CDATA[先，需要有软件包mid3iconv。如果你的系统中没有安装它，可以通过如下代码自动安装：sudo apt-get install python-mutagen 然后转到你的MP3目录，执行以全命令进行转换：mid3iconv -e GBK *.mp3 如果需要包含子目录，可以将后缀改成如下格式：打命令的时候文]]></description>
    <pubDate>2011-06-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[tar.gz 和tar.bz2详解]]></title>
    <link>http://www.xker.com/page/e2011/0602/101461.html</link>
    <description><![CDATA[大多以tar.gz 和tar.bz2打包软件，大多是通过 ./configure ;make ;make install 来安装的；有的软件是直接make;make install ； 我们可以通过./configure --help 来查看配置软件的功能；大多软件是提供./configure 配置软件的功能的；少数的也没有，如果没有]]></description>
    <pubDate>2011-06-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[在浏览器中使用Linux系统]]></title>
    <link>http://www.xker.com/page/e2011/0518/101329.html</link>
    <description><![CDATA[喜欢Linux操作系统的朋友现在对在PC、服务器、Mac以及在虚拟机上使用Linux都已经是非常熟悉了，但是你在Web浏览器中使用过Linux吗?可能你看到这里并不相信在浏览器中也能使用Linux吧，其实我也不敢相信在浏览器中也可以使用Linux操作系统。不相信，你就往下]]></description>
    <pubDate>2011-05-19</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Suse 9 安装Nagios过程]]></title>
    <link>http://www.xker.com/page/e2011/0328/100702.html</link>
    <description><![CDATA[Suse 9 安装Nagios过程如下： 下载需要的程序 先搬一套源程序库过来，得到源程序代码库： ls一下，有七个包： zlib-1.2.3.tar.gz libpng-1.2.8-config.tar.gz gd-2.0.33.tar.gz nagios-2.0rc2.tar.gz nagios-plugins-1.4.2.tar.gz nrpe-2.3.tar.gz nsca-2.5.t]]></description>
    <pubDate>2011-03-28</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.10下Memcached1.4.5安装过程]]></title>
    <link>http://www.xker.com/page/e2011/0328/100698.html</link>
    <description><![CDATA[Ubuntu 10.10下Memcached是高性能的分布式内存缓存服务器。一般通过缓存数据库查询结果，减少数据库访问次数，以提高动态Web应用的速度、提高可扩展性。Memcached常用于存放对数据库操作的结果集以及session信息。所以这个也要装备。 安装libevent2.0.10 这]]></description>
    <pubDate>2011-03-28</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[动手改设置让Ubuntu像Windows 7]]></title>
    <link>http://www.xker.com/page/e2011/0323/100640.html</link>
    <description><![CDATA[Ubuntu自身拥有相当不错的主题系统、视觉效果和养眼的画面，但你可能喜欢windows 7的Aero效果、透明度或者是开始菜单。今天我们将为你展示如何把ubuntu改造成windows 7的样子。 当然这并是完全意义上的改造成windows 7，但是当你乍看的时候会觉得很像。继续]]></description>
    <pubDate>2011-03-23</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu系统5大看图软件]]></title>
    <link>http://www.xker.com/page/e2011/0322/100612.html</link>
    <description><![CDATA[本文向你介绍Ubuntu下5大图像查看软件。 Gwenview 是较好的一项应用，支持几乎所有图片格式，可进行基本的编辑、标签、缩略图、全屏、幻灯显示功能等等。 安装 sudo apt-get install gwenview Eye of GNOME 是GNOME环境下较好的图片查看器，支持JPG, PNG, BM]]></description>
    <pubDate>2011-03-22</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下安装Oracle Instant Client步骤]]></title>
    <link>http://www.xker.com/page/e2011/0322/100611.html</link>
    <description><![CDATA[最近需要写一个数据迁移脚本，将单一Oracle中的数据迁移到MySQL Sharding集群，刚好最近在学习python，就用它来练手。 很快搞定了MySQL，只需要安装一个MySQLdb的python模块就可以了。但是对于Oracle客户端，不只需要安装相应的python模块(这里我用了Oracle]]></description>
    <pubDate>2011-03-22</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.10下U盘在不自动播放的设置方法]]></title>
    <link>http://www.xker.com/page/e2011/0321/100607.html</link>
    <description><![CDATA[在Ubuntu 10.04中，系统发现U盘，只是一个提示，需要用户到计算机中打开U盘。。但是Ubuntu 10.10中只要U盘一插入电脑。系统就直接打开U盘了。如何修改才能使系统不自动打开U盘。而是由用户到计算机中双击U盘磁盘打开。 下面就把我自己的做法说一下： 有两种]]></description>
    <pubDate>2011-03-22</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu Linux下10个快捷键]]></title>
    <link>http://www.xker.com/page/e2011/0321/100599.html</link>
    <description><![CDATA[在本文中，我将说的是ubuntu下的快捷键。对linux不太熟悉的同学，我稍微说明一下，ubuntu是最流行的linux发行版之一。 使用ubuntu除了经常使用的Ctrl + C (复制) and Ctrl + V (粘帖)，其实还有一些不常用但很有用的快捷键。如果你现在正搜罗更多的快捷键，]]></description>
    <pubDate>2011-03-21</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[修改grub.cfg让Ubuntu屏幕打印开机信息]]></title>
    <link>http://www.xker.com/page/e2011/0314/100483.html</link>
    <description><![CDATA[# # DO NOT EDIT THIS FILE # # It is automatically generated by /usr/sbin/grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub #由 /usr/sbin/grub-mkconfig读取 /etc/default/grub中的配置信息，并采用/etc/grub.d]]></description>
    <pubDate>2011-03-15</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.04下移植QtE]]></title>
    <link>http://www.xker.com/page/e2011/0314/100482.html</link>
    <description><![CDATA[最近弄QTE的移植，真是不胜其烦。现在把他整理出来，作为分享。 首先是软件包的各个版本 Ubuntu 10.04 qt-everywhere-opensource-src-4.6.3.tar.gz arm-linux-gcc-3.4.1.tar.bz2 qt-sdk-linux-x86-opensource-2010.04.bin tslib-1.4.tar.gz 一.选择交叉编译]]></description>
    <pubDate>2011-03-15</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.04安装交叉编译器]]></title>
    <link>http://www.xker.com/page/e2011/0314/100481.html</link>
    <description><![CDATA[开发环境：Ubuntu 10.04，linux-2.6.26.5 开发步骤： 1.安装和下载可能用到的软件包。 sudo apt-get install bison flex build-essential patch libncurese5-dev //libncurese5-dev在10.04中似乎apt-get找不到，但是新力得里看得到的 也可以把这些软件的deb]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 安装后不能进入bios的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0314/100480.html</link>
    <description><![CDATA[前几天老师让在实验室那台老神州电脑上搭建个FTP服务器。作为一个还不正式的linuxer，当然不能随随便便装个XP完事。于是就拿起了身边的Ubuntu Server 10.04安装盘。使用老联想的光驱帮老神州做系统。神州电脑有一块硬盘80G。所以我选择了一下分区方案。 /boo]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[最小化安装Ubuntu技巧]]></title>
    <link>http://www.xker.com/page/e2011/0314/100479.html</link>
    <description><![CDATA[如果按部就班的一步一步安装Ubuntu，可能对有的同学来说并不是最理想的。现在，给大家介绍一种方法，实现Ubuntu最小化安装。只需两步命令。 且看思路如下: 1，安装过程中选择文本模式安装Ubuntu。 2，进入文本模式下，运行命令 sudo apt-get update sudo apt]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.04上搭建iPhone开发环境]]></title>
    <link>http://www.xker.com/page/e2011/0314/100478.html</link>
    <description><![CDATA[1. 准备Ubuntu环境 Ubuntu 10.04 sudo apt-get install git-core libxar-dev bison flex patch openssl libbz2-dev libssl-dev autoconf sudo apt-get install build-essential gnustep gobjc gnustep-make libgnustep-base-dev gnustep-devel uuid gcc, g++]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[自定义Ubuntu系统引导菜单]]></title>
    <link>http://www.xker.com/page/e2011/0314/100477.html</link>
    <description><![CDATA[grub2是Ubuntu的默认引导工具,但是却不是最漂亮的引导工具.我们知道Ubuntu是可以高度自定义化的,这次我们就要教你怎么让你的引导工具更漂亮. 我们需要利用一个叫做BURG的附加工具,它是一款由Bean制作的基于grub的创新性的通用型引导工具.它有很多漂亮但GUI,]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.10 取消交换设备方法]]></title>
    <link>http://www.xker.com/page/e2011/0314/100475.html</link>
    <description><![CDATA[我的Thinkpad E40加了块内存，现在是4G。对于这样的配置还使用交换设备必然有点浪费硬盘。为了减少硬盘耗损，决定取消交换设备。Windows7取消虚拟内存通过系统里的高级就可以设置了，这里主要说Ubuntu 10.10下如何取消交换设备。 交换设备包括交换分区和交换]]></description>
    <pubDate>2011-03-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux RPM命令详解]]></title>
    <link>http://www.xker.com/page/e2011/0312/100450.html</link>
    <description><![CDATA[rpm 常用命令 1.安装一个包 # rpm -ivh 2.升级一个包 # rpm -Uvh 3.移走一个包 # rpm -e 4.安装参数 --force 即使覆盖属于其它包的文件也强迫安装 --nodeps 如果该RPM包的安装依赖其它包，即使其它包没装，也强迫安装。 5.查询一个包是否被安装 # rpm -q rpm]]></description>
    <pubDate>2011-03-12</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 11.04声音管理菜单添加麦克风功能]]></title>
    <link>http://www.xker.com/page/e2011/0309/100412.html</link>
    <description><![CDATA[继Ubuntu 10.10在声音管理菜单中加入对播放器的支持后再次加强该菜单。 这次添加的是麦克风的声音调整条。喜欢用Skype的不能错过。]]></description>
    <pubDate>2011-03-09</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>麦克风</comments>
</item>
<item>
    <title><![CDATA[CentOS 5.3 快速配置VNC Server教程]]></title>
    <link>http://www.xker.com/page/e2011/0306/100359.html</link>
    <description><![CDATA[CentOS 5.3默认已经安装了VNC Server软件包，只要在服务列表中选中启动一下就可以。通过编辑文件~HOME/.vnc/xstartup来启动你喜欢的窗口管理器。使用startkde 来启动KDE，使用 gnome-session 来启动GNOME。 一、启动VNC Server服务:使用vncserver命令（在当]]></description>
    <pubDate>2011-03-06</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>韦少乾博客</comments>
</item>
<item>
    <title><![CDATA[Ubuntu上arm-linux-gcc交叉环境搭建问题]]></title>
    <link>http://www.xker.com/page/e2011/0302/100319.html</link>
    <description><![CDATA[How to install: cd /usr/local mkdir arm cd arm tar Ixvf cross- .tar.bz2 Add /usr/local/arm/ /bin to your path to use the cross compiler. 1，出现找不到stdio.h，证明解压缩后的包放置路径有问题; 2，出现cannot found lgcc_s 时候说明gcc的版本和ar]]></description>
    <pubDate>2011-03-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu因环境变量少个$PATH无法登录的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0302/100318.html</link>
    <description><![CDATA[登录Ubuntu界面ctrl+alt+f2，由于我是虚拟机，还需要把虚拟机的热键改一下才能管用。管用以后，就进入命令行模式。 进入以后，尝试修改/etc/profile和/etc/environment两个文件，但是命令需要用这种方式才行： /usr/bin/sudo /usr/bin/vi /etc/profile 原因]]></description>
    <pubDate>2011-03-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu访问局域网服务器设置]]></title>
    <link>http://www.xker.com/page/e2011/0302/100317.html</link>
    <description><![CDATA[首先安装samba： sudo apt-get install samba 我的是Ubuntu 10.04 ，没有文件浏览时候的地址栏，所以需要更改一些设置： ALT+F2打开 运行应用程序 输入gconf-editor 切换到/apps/nautilus/preferences/ 勾选always_use_location_entry 设置成功后，打开位置-]]></description>
    <pubDate>2011-03-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu安装媒体中心XBMC方法]]></title>
    <link>http://www.xker.com/page/e2011/0302/100316.html</link>
    <description><![CDATA[XBMC是一免费开源的媒体中心，支持Win，Mac和Linux平台。 目前，该软件可以播放多数流行的音频和视频格式文件。 Ubuntu安装 sudo apt-add-repository ppa:team-xbmc/ppa sudo apt-get update sudo apt-get install xbmc 安装完成后，可从应用程序影音XBMC媒]]></description>
    <pubDate>2011-03-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu系统Gnome图形界面重启命令]]></title>
    <link>http://www.xker.com/page/e2011/0302/100315.html</link>
    <description><![CDATA[Ubuntu是一个以桌面应用为主的Linux操作系统，其名称来自非洲南部祖鲁语或豪萨语的Ubuntu一词(译为吾帮托或乌班图)，意思是人性、我的存在是因为大家的存在，是非洲传统的一种价值观，类似华人社会的仁爱思想。Ubuntu基于Debian发行版和GNOME桌面环境，与Deb]]></description>
    <pubDate>2011-03-02</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux清除用户登录记录和命令历史方法]]></title>
    <link>http://www.xker.com/page/e2011/0225/100288.html</link>
    <description><![CDATA[清除登陆系统成功的记录，也就是last命令看到的记录 [root@localhost root]# echo /var/log/wtmp 此文件默认打开时乱码的，里面可以看到ip等等信息 [root@localhost root]# echo /var/log/wtmp [root@localhost root]# last 此时即看不到用户登录信息 清除登]]></description>
    <pubDate>2011-02-25</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux安装php-5.3.4.tar.bz2教程]]></title>
    <link>http://www.xker.com/page/e2011/0225/100287.html</link>
    <description><![CDATA[安装php-5.3.4.tar.bz2首先要安装libxml2而且版本不低于2.6.11，这里我选择的libxml2-2.6.30.tar.bz2 [root@localhost root]# tar xjvf libxml2-2.6.31.tar.bz2 [root@localhost root]# cd libxml2-2.6.31 [root@localhost libxml2-2.6.31]# ./configure --p]]></description>
    <pubDate>2011-02-25</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux 删除文件 rm 命令使用实例]]></title>
    <link>http://www.xker.com/page/e2011/0225/100286.html</link>
    <description><![CDATA[使用这个rm -rf删除文件的时候一定要格外小心，linux没有回收站的。 直接rm就可以了，不过要加个参数-f 即：rm -f 文件路径 -f 就是直接强行删除，不作任何提示的意思 删除文件使用实例： rm -f /var/log/httpd/access.log 将会强制删除/var/log/httpd/acces]]></description>
    <pubDate>2011-02-25</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[安装Windows后丢失Ubuntu启动引导项的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0217/100214.html</link>
    <description><![CDATA[当你顺顺利利安装完Ubuntu后，正准备舒舒服服的把玩一番，你机子上的Windows系统时不时的崩溃总是会给你带来不小的麻烦。当你重装Windows系统的时候，安装程序会覆盖先前的启动菜单，将Ubuntu的启动选项给移除，这使得你无法进入到Ubuntu系统中。 如何才能够]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[在32位Ubuntu 10.04上编译Android 2.3]]></title>
    <link>http://www.xker.com/page/e2011/0217/100213.html</link>
    <description><![CDATA[本人在Ubuntu 10.04系统 32位机上安装编译Android2.3源码，其步骤和注意事项如下： 1.安装JDK6 对于Android2.3系统，不要安装JDK5，应该安装最新的JDK6。 如果安装了JDK6，Android会自动按64位编译，如果系统是32位的，会有编译错误，后面会说如何修改这个错]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下安装照片处理应用Darktable]]></title>
    <link>http://www.xker.com/page/e2011/0217/100212.html</link>
    <description><![CDATA[Darktable 可以被称之为 Linux 版的 Lightroom ，这是一款帮助专业摄影师的进行照片管理及后期处理的图形工具，也可以称之为暗房软件。通它你可以用来调整及渲染你的数码照片，使之更加漂亮。Darktable 使用 gtk+/cairo 构建，后台数据库使用 sqlite3 。 安]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>Linux社区</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.10下MySQL 5.1集群配置]]></title>
    <link>http://www.xker.com/page/e2011/0217/100211.html</link>
    <description><![CDATA[一、环境 server1:192.85.1.5 server2:192.85.1.4 server3:192.85.1.9 二、集群方案 1.管理节点:server1 2.存储节点:server2,server3 3.SQL节点:server2,server3 三、在这里下载mysql-cluster-gpl-7.1.9a-linux-i686-glibc23.tar.gz，将该文件上传到服务器上]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu 10.04下安装PHP5.2教程]]></title>
    <link>http://www.xker.com/page/e2011/0217/100210.html</link>
    <description><![CDATA[原因 Ubuntu 10.04的PHP版本是5.3，兼容性问题一堆，要换回稳定的5.2，这里的方法是安装9.10的PHP 5.2包，其他方法参考底部链接。 操作 sudo gedit /etc/apt/sources.list.d/karmic.list deb http://archive.Ubuntu.com/ubuntu/ karmic main restricted univ]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下Nginx安装及WEB服务配置教程]]></title>
    <link>http://www.xker.com/page/e2011/0217/100209.html</link>
    <description><![CDATA[Ubuntu下安装nginx sudo apt-get install nginxUbuntu安装之后的文件结构大致为： 所有的配置文件都在/etc/nginx下，并且每个虚拟主机已经安排在了/etc/nginx/sites-available下 程序文件在/usr/sbin/nginx 日志放在了/var/log/nginx中 并已经在/etc/init.d/]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Lutris :Linux下多平台游戏安装器]]></title>
    <link>http://www.xker.com/page/e2011/0217/100205.html</link>
    <description><![CDATA[Lutris是一与PlayOnLinux和DJL类似的游戏平台，致力于支持GNU/Linux尽可能多的游戏。 Lutris支持原生的Linux游戏，包括商业游戏和开源游戏，也支持用wine模拟安装windows游戏。Lutris几乎支持所有平台的游戏，支持列表包括 Many arcade based games Amiga 50]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux新手需知的12个基础命令]]></title>
    <link>http://www.xker.com/page/e2011/0217/100203.html</link>
    <description><![CDATA[天的用户可以根据自己的意愿选择是否使用作为Linux象征的命令行，确切的证明了Linux已经有了很大的发展。现在很多Linux发行版的图形用户界面已经非常强大，不再需要命令行。 但是命令行在Linux中能实现更高效的操作，事实上通常比在菜单中点来点去更简单，更]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux下Mysql和Apache添加为系统服务]]></title>
    <link>http://www.xker.com/page/e2011/0217/100202.html</link>
    <description><![CDATA[Linux下注册Apache与MySQL为系统服务 Apache加入到系统服务里面: cp /安装目录下/apache/bin/apachectl /etc/rc.d/init.d/httpd 修改httpd 在文件头部加入如下内容： ### # Comments to support chkconfig on RedHat Linux # chkconfig: 2345 90 90 # descri]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[CentOS防火墙开启、关闭以及开放指定端口方法]]></title>
    <link>http://www.xker.com/page/e2011/0217/100201.html</link>
    <description><![CDATA[之前有讲过公司新买的服务器使用的是CentOS 5.5，部署好Tomcat之后却发现输入114.80.*.*:8080(即ip:8080)却无法显示Tomcat默认的首页。因为以前部署在Win Server的VPS，Linux开发时也只用到localhost，所以就有点头大。 好吧，G一下网上有说是防火墙的问题，]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[CentOS puppet foreman 安装教程]]></title>
    <link>http://www.xker.com/page/e2011/0217/100200.html</link>
    <description><![CDATA[puppet是一种Linux、Unix平台的集中配置管理系统,，可管理配置文件、用户、cron任务、软件包、系统服务等。puppet的设计目标是简化对这些资源的管理以及妥善处理资源间的依赖关系。 foreman是一个puppet的生命周期管理系统，类似puppet-dashboard，通过它可]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下Emacs不能使用输入法的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0217/100196.html</link>
    <description><![CDATA[执行以下操作： sudo add-apt-repository ppa:irie/elisp sudo apt-get update and install ibus-el package: sudo apt-get install ibus-el emacs配置文件中加 (require 'ibus) ;; Turn on ibus-mode automatically after loading .emacs (add-hook 'after-]]></description>
    <pubDate>2011-02-17</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu10.10搭建Time Machine备份服务器]]></title>
    <link>http://www.xker.com/page/e2011/0216/100184.html</link>
    <description><![CDATA[Apple Mac OSX 系统自带了一款简单易用的备份软件 Time Machine，Time Machine 可自动保存 Mac 中所有内容的最新版本，包括照片、音乐、视频、文档，应用程序和设置等。只要需要，你就可以轻松让时光倒流，恢复任何文件。，要使用 Time Machine 你必须使用一]]></description>
    <pubDate>2011-02-16</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu系统的VPS的安装deluge以及远程控制]]></title>
    <link>http://www.xker.com/page/e2011/0216/100183.html</link>
    <description><![CDATA[1, 升级Ubuntu系统 apt-get update apt-get install python-software-properties 2.安装deluge add-apt-repository ppa:deluge-team/ppa apt-get update sudo apt-get install deluged deluge-web 3.开机启动 cd /etc nano rc.local 将 deluge-web加入进去(]]></description>
    <pubDate>2011-02-16</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下安装wine+utorrent+VNC介绍]]></title>
    <link>http://www.xker.com/page/e2011/0216/100181.html</link>
    <description><![CDATA[Utorrent 澶у閮藉啀鐔熸倝涓嶈繃浜嗭紝鍙儨鍚勫ぇ pt 绔欑偣閮戒笉鏀寔鐩墠 linux 涓嬬殑 utorrent server 鐗堟湰]]></description>
    <pubDate>2011-02-16</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux系统关于用户权限、组解析]]></title>
    <link>http://www.xker.com/page/e2011/0214/100161.html</link>
    <description><![CDATA[文件权限除了r、w、x外还有s、t、i、a权限： s：文件属主和组设置SUID和GUID，文件在被设置了s权限后将以root身份执行。在设置s权限时文件属主、属组必须先设置相应的x权限，否则s权限并不能正真生效(c h m o d命令不进行必要的完整性检查，即使不设置x权限]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux应用程序开机自动启动设置方法]]></title>
    <link>http://www.xker.com/page/e2011/0214/100160.html</link>
    <description><![CDATA[本文将详细介绍在登录Linux系统时如何自动运行应用程序，如同在windows下设置开机自动启动QQ一样。 本文将以：登录系统后，自动运行QQ应用程序为例。此文建立在您已安装Linux QQ的基础上，如果没有安装，则可以使用别的应用程序实验。 一、Linux应用程序开机]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux下几种进程间通信详细分析]]></title>
    <link>http://www.xker.com/page/e2011/0214/100159.html</link>
    <description><![CDATA[Linux下进程间通信大致有以下几种： 1.socket 2.管道(包括匿名管道适用于父子进程，命名管道) 3.信号量 4.共享内存 5.消息队列 1.socket socket可以用于本地进程间通信也可以用于远程间，是最常用的。 2.管道--匿名管道 一般用pipe创建，在父子间通信。在父]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux目录和文件的基本操作方法和命令]]></title>
    <link>http://www.xker.com/page/e2011/0214/100158.html</link>
    <description><![CDATA[1、文件查看和连接命令 将文件连接到一起，用》操作将几个文件组合成一个新的文件，或者是用》》把文件追加到已存文件的后面。 语法： cat[参数]filelist -b或--number-nonblank：和n相似，但对空行不编号 -s：遇到两行空白，替换为一行空白 -v：显示不可打]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux 基本概念及linux常用命令]]></title>
    <link>http://www.xker.com/page/e2011/0214/100157.html</link>
    <description><![CDATA[无意间搜索LINUX 看到网上有很多LINUX的概念和常用的一些命令，整理出来让供大家参考。 什么是Linux终端 键盘和现实器合称为终端，也称控制台，一台计算机的IO设备就是一个物理控制台;在一台机器上用软件方法实现多个乡互不干扰、独立工作的控制台界面，就是]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Linux解压缩命令和详细用法]]></title>
    <link>http://www.xker.com/page/e2011/0214/100156.html</link>
    <description><![CDATA[一、解压缩命令简介 tar命令 -c: 建立压缩档案 -x：解压 -t：查看内容 -r：向压缩归档文件末尾追加文件 -u：更新原压缩包中的文件 这五个是独立的命令，压缩解压都要用到其中一个，可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu Server 10.04 搭建JSP环境教程]]></title>
    <link>http://www.xker.com/page/e2011/0214/100155.html</link>
    <description><![CDATA[1 安装java sudo apt-get install sun-java6-jdk sun-java6-fonts sun-java6-plugin 可能会先要求装jre，装就是了 sudo update-java-alternatives -s java-6-sun 2 环境变量 sudo vim /etc/environment 加入 JAVA_HOME=/usr/lib/jvm/java-6-openjdk/ PATH改]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下编译的第一个内核模块]]></title>
    <link>http://www.xker.com/page/e2011/0214/100154.html</link>
    <description><![CDATA[内核模块是Linux内核向外部提供的一个插口，其全称为动态可加载内核模块(Loadable Kernel Module，LKM)，我们简称为模块。Linux内核之所以提供模块机制，是因为它本身是一个单内核(monolithic kernel)。单内核的最大优点是效率高，因为所有的内容都集成在一]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu自动启动命令写法例子]]></title>
    <link>http://www.xker.com/page/e2011/0214/100152.html</link>
    <description><![CDATA[位置 /etc/rc.local rc.local #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will exit 0 on success or any other # value on error. # # In order to enable or disable th]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>
<item>
    <title><![CDATA[Ubuntu下vi编辑器方向键变字母问题的解决方法]]></title>
    <link>http://www.xker.com/page/e2011/0214/100150.html</link>
    <description><![CDATA[只需2步，完美解决Ubuntu下vi编辑器方向键变字母的问题。 一.执行命令 sudo apt-get remove vim-common 二.执行命令 sudo apt-get install vim]]></description>
    <pubDate>2011-02-14</pubDate>
    <category>Linux教程</category>
    <author>秩名</author>
    <comments>新客网</comments>
</item>

</channel>
</rss>

