<?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>PHP技术网 &#187; LinuxPHP技术网</title>
	<atom:link href="http://www.phpabout.com/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpabout.com</link>
	<description>前进道路上的点点滴滴</description>
	<lastBuildDate>Tue, 22 Sep 2020 07:28:51 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Linux scp命令用于Linux之间复制文件和目录</title>
		<link>http://www.phpabout.com/335.html</link>
		<comments>http://www.phpabout.com/335.html#comments</comments>
		<pubDate>Thu, 20 Feb 2020 00:52:32 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.ax6x.com/?p=335</guid>
		<description><![CDATA[从180服务器上拷贝test文件夹下的内容到本地testTmp文件夹下 命令如下： scp -r root@1 [...]]]></description>
			<content:encoded><![CDATA[<p>从180服务器上拷贝test文件夹下的内容到本地testTmp文件夹下</p>
<p>命令如下：</p>
<p>scp -r root@127.0.1.180:/data/www/test /data/www/testTmp</p>
<p>&nbsp;</p>
<p>从180服务器上拷贝index.html文件到本地testTmp/index.html</p>
<p>命令如下：</p>
<p>scp root@127.0.1.180:/data/www/index.html /data/www/testTmp/index.html</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/335.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>grep命令几种用法</title>
		<link>http://www.phpabout.com/265.html</link>
		<comments>http://www.phpabout.com/265.html#comments</comments>
		<pubDate>Thu, 19 Dec 2019 06:30:01 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=265</guid>
		<description><![CDATA[1. grep -i &#8220;abc&#8221; demo.log 搜索出含有&#8221;abc&# [...]]]></description>
			<content:encoded><![CDATA[<p>1. grep -i &#8220;abc&#8221; demo.log 搜索出含有&#8221;abc&#8221;字符串(-i:不区分大小)</p>
<p>2. grep -i -n &#8220;abc&#8221; demo.log 搜索出含有&#8221;abc&#8221;字符串(-i:不区分大小,-n:并打印行号)</p>
<p>3. grep -i -n &#8211;color &#8220;abc&#8221; demo.log 搜索出含有&#8221;abc&#8221;字符串(-i:不区分大小)-n:并打印行号,关键字&#8221;abc&#8221;颜色标记</p>
<p>4. grep -I -c &#8220;abc&#8221; demo.log 打印&#8221;abc&#8221;字符串(不区分大小写)显示的次数</p>
<p>5. grep -I -o &#8220;abc&#8221; demo.log 打印&#8221;abc&#8221;字符串(不区分大小写)但不打印整行</p>
<p>6. grep -A5 &#8220;abc&#8221; demo.tlog 打印&#8221;abc&#8221;字符串和它上5行的信息</p>
<p>7. grep -B5 &#8220;abc&#8221; demo.log 打印&#8221;abc&#8221;字符串和它下5行的信息</p>
<p>8. grep -C5 &#8220;abc&#8221; demo.log 打印&#8221;abc&#8221;字符串和它上5行和下5行的信息</p>
<p>9. grep -w &#8220;abc&#8221; demo.log 精确匹配出&#8221;abc&#8221;字符串的</p>
<p>10. grep -v &#8220;abc&#8221; demo.log 匹配出不包含&#8221;abc&#8221;字符串的行</p>
<p>11. grep -e &#8220;abc&#8221; -e &#8220;def&#8221; demo.log 同时匹配&#8221;abc&#8221;和&#8221;def&#8221;字符串</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/265.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos 系统 对应 openssl 默认版本</title>
		<link>http://www.phpabout.com/215.html</link>
		<comments>http://www.phpabout.com/215.html#comments</comments>
		<pubDate>Tue, 23 Jan 2018 08:22:05 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=215</guid>
		<description><![CDATA[CentOS5.5       OpenSSL 0.9.8e    TLSv1.0 CentOS 6.0    [...]]]></description>
			<content:encoded><![CDATA[<p>CentOS5.5       OpenSSL 0.9.8e    TLSv1.0</p>
<p>CentOS 6.0      OpenSSL 1.0.1e     TLSv1.1</p>
<p>CentOS 7.0      OpenSSL 1.0.1e     TLSv1.2</p>
<p>CentOS7.2       OpenSSL 1.0.1        TLSv1.2</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/215.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos  自动获取IP</title>
		<link>http://www.phpabout.com/173.html</link>
		<comments>http://www.phpabout.com/173.html#comments</comments>
		<pubDate>Thu, 19 Jan 2017 02:31:03 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=173</guid>
		<description><![CDATA[dhclient eth0 自动分配ip给eth0 要让它随系统启动后自动获取需要修改 /etc/syscon [...]]]></description>
			<content:encoded><![CDATA[<p>dhclient eth0 自动分配ip给eth0</p>
<p>要让它随系统启动后自动获取需要修改 /etc/sysconfig/network-scripts/ifcfg-eth0</p>
<p>将ONBOOT=&#8221;no&#8221;改为ONBOOT=&#8221;yes&#8221;。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/173.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos7防火墙</title>
		<link>http://www.phpabout.com/156.html</link>
		<comments>http://www.phpabout.com/156.html#comments</comments>
		<pubDate>Mon, 29 Aug 2016 14:22:17 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=156</guid>
		<description><![CDATA[CentOS 7.0默认使用的是firewall作为防火墙。 systemctl start firewall [...]]]></description>
			<content:encoded><![CDATA[<p>CentOS 7.0默认使用的是firewall作为防火墙。<br />
systemctl start firewalld.service          #启动firewall<br />
systemctl stop firewalld.service          #停止firewall<br />
systemctl disable firewalld.service    #禁止firewall开机启动</p>
<p>&nbsp;</p>
<p>查看Linux版本</p>
<p>more /etc/redhat-release</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/156.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux开通账号脚本</title>
		<link>http://www.phpabout.com/130.html</link>
		<comments>http://www.phpabout.com/130.html#comments</comments>
		<pubDate>Fri, 24 Jul 2015 07:25:05 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=130</guid>
		<description><![CDATA[#!/bin/bash if [ $# == 0 ];then exit 1; fi /usr/sbin/us [...]]]></description>
			<content:encoded><![CDATA[<p>#!/bin/bash</p>
<p>if [ $# == 0 ];then<br />
    exit 1;<br />
fi<br />
/usr/sbin/useradd $1<br />
echo &#8220;123456&#8243; |/usr/bin/passwd &#8211;stdin $1 ;/usr/bin/chage -d 0 $1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/130.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>统计查看文件夹内的文件个数</title>
		<link>http://www.phpabout.com/84.html</link>
		<comments>http://www.phpabout.com/84.html#comments</comments>
		<pubDate>Wed, 12 Mar 2014 07:47:57 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=84</guid>
		<description><![CDATA[查看当前目录下文件的个数 ls -l &#124; grep &#8220;^-&#8221; &#124; wc -l 查看当前 [...]]]></description>
			<content:encoded><![CDATA[<p>查看当前目录下文件的个数<br />
ls -l | grep &#8220;^-&#8221; | wc -l</p>
<p>查看当前目录下文件的个数(包括子目录)<br />
ls -lR| grep &#8220;^-&#8221; | wc -l</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/84.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nginx服务器host文件路径</title>
		<link>http://www.phpabout.com/64.html</link>
		<comments>http://www.phpabout.com/64.html#comments</comments>
		<pubDate>Mon, 26 Aug 2013 09:08:31 +0000</pubDate>
		<dc:creator>zhangzhuang</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.php555.com/?p=64</guid>
		<description><![CDATA[/usr/local/nginx/conf/vhosts 做个记录。]]></description>
			<content:encoded><![CDATA[<p>/usr/local/nginx/conf/vhosts  </p>
<p>做个记录。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.phpabout.com/64.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
