<?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>LINUXQQ</title>
	<atom:link href="http://www.linuxqq.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxqq.net</link>
	<description>LINUXQQ狂人时代</description>
	<lastBuildDate>Thu, 17 May 2012 03:05:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>mysql LINUXQQ</title>
		<link>http://www.linuxqq.net/archives/844.html</link>
		<comments>http://www.linuxqq.net/archives/844.html#comments</comments>
		<pubDate>Mon, 14 May 2012 10:53:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=844</guid>
		<description><![CDATA[二 . MySql中的SQL语句 1 . 数据库创建 : Create database db_name; 数据库删除 : Drop database db_name; 删除时可先判断是否存在，写成 : drop database if exits db_name 2 . 建表 : 创建数据表的语法 : create table table_name (字段1 数据类型 , 字段2 数据类型); 例 : create table mytable (id int , username char(20)); 删表 : drop table table_name; 例 : drop table [...]]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/844.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>django FORM 提交数据</title>
		<link>http://www.linuxqq.net/archives/840.html</link>
		<comments>http://www.linuxqq.net/archives/840.html#comments</comments>
		<pubDate>Tue, 01 May 2012 10:53:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[django]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=840</guid>
		<description><![CDATA[哎 运维的搞编程 学习都记录下吧 努力PYTHON 努力DJANGO 写下DJANGO FORM 提交保存数据 先写MODEL model.py from django.db import models from django.forms import ModelForm class ficlass(models.Model): date = models.DateTimeField(verbose_name=&#8221;创建时间&#8221;,auto_now=True) idclass = models.CharField(verbose_name=&#8221;分类名称&#8221;,max_length=50) class finance(models.Model): date = models.DateTimeField(verbose_name=&#8221;创建时间&#8221;,auto_now=True) income = models.BigIntegerField(verbose_name=&#8221;收入&#8221;) spending = models.BigIntegerField(verbose_name=&#8221;支出&#8221;) idclass = models.ForeignKey(ficlass) class ficlassForm(ModelForm): class Meta: model = ficlass 下面是FROM.PY from django import forms class ficlass(forms.Form): idclass [...]]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/840.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql 外键（转载)</title>
		<link>http://www.linuxqq.net/archives/837.html</link>
		<comments>http://www.linuxqq.net/archives/837.html#comments</comments>
		<pubDate>Sat, 03 Mar 2012 10:41:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[乱7八糟]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=837</guid>
		<description><![CDATA[假如某个电脑生产商，它的数据库中保存着整机和配件的产品信息。用来保存整机产品信息的表叫做pc；用来保存配件供货信息的表叫做parts。 在pc表中有一个字段，用来描述这款电脑所使用的CPU型号；在parts表中相应有一个字段，描述的正是CPU的型号，我们可以把它想成是全部CPU的型号列表。 很显然，这个厂家生产的电脑，其使用的CPU一定是供货信息表(parts)中存在的型号。这时，两个表中就存在一种约束关系(constraint)——pc表中的CPU型号受到parts表中型号的约束。 首先我们来创建parts表： CREATE TABLE parts ( &#8230; 字段定义 &#8230;, model VARCHAR(20) NOT NULL, &#8230; 字段定义 &#8230; ); 接下来是PC表： CREATE TABLE pc ( &#8230; 字段定义 &#8230;, cpumodel VARCHAR(20) NOT NULL, &#8230; 字段定义 &#8230; }; 设置索引 若要设置外键，在参照表 (referencing table，即pc表) 和被参照表(referenced table，即parts表)中，相对应的两个字段必须都设置索引(index)。 对parts表： ALTER TABLE parts ADD INDEX idx_model (model); 这句话的意思是，为parts表增加一个索引，索引建立在model字段上，给这个索引起个名字叫idx_model。 对pc表也类似： ALTER TABLE pc ADD [...]]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/837.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos下DJANGO 安装MYSQLDB</title>
		<link>http://www.linuxqq.net/archives/835.html</link>
		<comments>http://www.linuxqq.net/archives/835.html#comments</comments>
		<pubDate>Fri, 02 Mar 2012 08:07:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[乱7八糟]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=835</guid>
		<description><![CDATA[首先是下载之：http://sourceforge.net/projects/mysql-python/ 然后解压之，找到mysql_config的位置（至少在CentOS里，在/usr/bin/里面，这样找一下：ls /usr/bin/ &#124; grep &#8220;mysql&#8221;） 再然后将mysql_config的路径添加进MySQLdb文件夹的site.cfg文件中，如下： mysql_config = /usr/bin/mysql_config 然后安装setuptools http://pypi.python.org/pypi/setuptools#files http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c11.tar.gz 解压后进入setuptools的目录中，安装 python setup.py build python setup.py install 最后安装MySQLdb python setup.py build python setup.py install 转载注明(LINUXQQ)]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/835.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nginx 502 Bad Gateway</title>
		<link>http://www.linuxqq.net/archives/833.html</link>
		<comments>http://www.linuxqq.net/archives/833.html#comments</comments>
		<pubDate>Mon, 20 Feb 2012 02:28:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=833</guid>
		<description><![CDATA[解决：[WARNING] fpm_children_bury(), line 215: child 2736 (pool default) exited on signal 15 SIGTERM after 59.588363 seconds from start试用Nginx + PHP FastCGI 做WEB服务器，运行了几个月的时间，烦恼的是经常碰到Nginx 502 Bad Gateway 这个问题。 参考了很多修改办法，这个502的问题一直存在，今天打算重装PHP FastCGI到PHP的安装目录里一看，发现PHP的日志文件已经有几十M的大小，打开一看，结果基本全部都是一下的错误： Jan 11 08:54:01.164292 [NOTICE] fpm_children_make(), line 352: child 10088 (pool default) started Jan 11 08:54:01.164325 [WARNING] fpm_children_bury(), line 215: child 7985 (pool default) exited on signal 15 [...]]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/833.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINUX查找PHP WEBSHELL</title>
		<link>http://www.linuxqq.net/archives/829.html</link>
		<comments>http://www.linuxqq.net/archives/829.html#comments</comments>
		<pubDate>Mon, 20 Feb 2012 02:15:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=829</guid>
		<description><![CDATA[find /var/www -name &#8220;*.php&#8221; -mtime -10 找出10天内修改的PHP文件 find /var/www -name &#8220;*.php&#8221; &#124;xargs grep &#8220;eval&#8221;&#124;more 找到文件中包含eval的字符串 find /var/www -name &#8220;*.php&#8221; &#124;xargs grep &#8220;shell_exec&#8221; &#124;more 找到文件中包含shell_exec的字符串 find /var/www -name &#8220;*.php&#8221; &#124;xargs grep &#8220;passthru&#8221; &#124;more 找到文件包含passthru的字符串 转载注明(LINUXQQ)]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/829.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINUX /usr/sbin/httpd发包检测进行方法</title>
		<link>http://www.linuxqq.net/archives/827.html</link>
		<comments>http://www.linuxqq.net/archives/827.html#comments</comments>
		<pubDate>Sat, 11 Feb 2012 06:37:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=827</guid>
		<description><![CDATA[服务器不停的像外发包~检查PHP文件修改记录，并无发现异常~纠结中。 于是netstat -anp 查看到/usr/sbin/httpd 不断的往一个IP地址发送SYN_SEND 判断此进程可能有问题。 于是停止APACHE 但是此进程并未能结束。于是kill掉。但是kill掉 发现马上进程又出来。那估计是还有潜在的父进程。 但是ps aux 并没看到异常进程。 于是lsof -i:PID 查看进程文件交互信息。还是未发现具体问题 在试strace PID 查看内核交互信息。也并未发现具体问题 最后ps ef 查看所有进程的子进程的父进程 .发现此进程的父进程为1。而1的进程居然是init 5。如果没错的话。可能是LINUX图形界面被人黑了。 算了 反正我也不图形界面. vi /etc/inittab 将默认启动改为3。重启服务器。一切OK~~ 转载注明(LINUXQQ)]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/827.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed. 安装不上的解决办法</title>
		<link>http://www.linuxqq.net/archives/825.html</link>
		<comments>http://www.linuxqq.net/archives/825.html#comments</comments>
		<pubDate>Tue, 10 Jan 2012 04:39:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[乱7八糟]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=825</guid>
		<description><![CDATA[[01/09/12,22:49:43] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.安装不上的解决办法 由于恢复系统安装了 所以就卸载了系统的.net 2.0 3.0 3.5 。但是再安装发觉除了2.0 其他版本都无法安装 全部报[01/09/12,22:49:43] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed. 解决办法：先用微软自带的.net framework_clean_up 卸载掉所有版本 然后把.net 1.0 2.0 安装上 接下打来windows update更新所有相关的.net framework 的补丁 然后重启 哈哈 自动就把.NET 3.0 3.5 安装好了 转载注明(LINUXQQ)]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/825.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012年新提权大杀器 绝对无毒</title>
		<link>http://www.linuxqq.net/archives/821.html</link>
		<comments>http://www.linuxqq.net/archives/821.html#comments</comments>
		<pubDate>Sat, 07 Jan 2012 07:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[乱7八糟]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=821</guid>
		<description><![CDATA[网上搜索到的 不错哦 :下载地址 免杀版 比PR牛B啊 但是新版360 默认禁止添加用户 正在研究]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/821.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos 5 安装usb qf9700驱动</title>
		<link>http://www.linuxqq.net/archives/816.html</link>
		<comments>http://www.linuxqq.net/archives/816.html#comments</comments>
		<pubDate>Fri, 23 Dec 2011 03:59:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.linuxqq.net/?p=816</guid>
		<description><![CDATA[我先提供下驱动包吧:vk-qf9700驱动要做数据监听和封IP的工作 2块网卡不够 所以多加了个USB网卡 但是系统无法识别，以下是我安装网卡驱动的步骤 我的系统内核是2.6.18 但是此驱动需要2.6.28或者2.6.29的内核 所以先升级内核，可以远程升级，按步骤操作是不会断网的 一、下载最新内核源码。 从内核官网下载至当前目录下 wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.28.tar.gz 注：大小为64M。其实现在最新版本已经达到2.6.30.5，如需，仅修改最后的版本号即可。如， wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.5.tar.gz 二、解压内核源码，移动到合适的位置。 tar zxvf linux-2.6.28.tar.gz mv linux-2.6.28 /usr/src/kernel 注：如果你之前从未编译安装过源码，则/usr/src下没有kernel文件夹，只需新建一个即可。 三、编译安装内核源码(共五步) 1，make mrproper 用来消除原来编译的影响，对之前没编译过内核的可以跳过此步，但建议使用一下这条命令 。 2，make menuconfig 如果不定制模块，可跳过这一步。 这里有三种方式可以选择： (1)make config 单行模式 (2)make menuconfig 图形模式 (3)make xconfig 基于xwindows模式 在此强烈推荐新手使用make menuconfig方式， 修改后，在图形界面的最后有这样两行： Load an Alternate Configuration File Save an Alternate Configuration File 现在选Save&#8230;那一行，并按回车。 在弹出的保存修改对话框会提示你，为以.config结尾的文件命名，你可以任意命名为xx.config [...]]]></description>
		<wfw:commentRss>http://www.linuxqq.net/archives/816.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

