﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-A++U-随笔分类-杂文</title><link>http://www.blogjava.net/linyuelei/category/23508.html</link><description>珍惜一切的经历，在时间里每个人会获得公平的成长和对待。 </description><language>zh-cn</language><lastBuildDate>Thu, 16 Sep 2010 11:36:45 GMT</lastBuildDate><pubDate>Thu, 16 Sep 2010 11:36:45 GMT</pubDate><ttl>60</ttl><item><title>在网络邻居里面隐藏</title><link>http://www.blogjava.net/linyuelei/archive/2010/09/16/332200.html</link><dc:creator>A++</dc:creator><author>A++</author><pubDate>Thu, 16 Sep 2010 08:38:00 GMT</pubDate><guid>http://www.blogjava.net/linyuelei/archive/2010/09/16/332200.html</guid><wfw:comment>http://www.blogjava.net/linyuelei/comments/332200.html</wfw:comment><comments>http://www.blogjava.net/linyuelei/archive/2010/09/16/332200.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/linyuelei/comments/commentRss/332200.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/linyuelei/services/trackbacks/332200.html</trackback:ping><description><![CDATA[<pre>net config server /hidden:yes</pre>
<img src ="http://www.blogjava.net/linyuelei/aggbug/332200.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/linyuelei/" target="_blank">A++</a> 2010-09-16 16:38 <a href="http://www.blogjava.net/linyuelei/archive/2010/09/16/332200.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>表拷贝</title><link>http://www.blogjava.net/linyuelei/archive/2009/05/31/279260.html</link><dc:creator>A++</dc:creator><author>A++</author><pubDate>Sun, 31 May 2009 10:28:00 GMT</pubDate><guid>http://www.blogjava.net/linyuelei/archive/2009/05/31/279260.html</guid><wfw:comment>http://www.blogjava.net/linyuelei/comments/279260.html</wfw:comment><comments>http://www.blogjava.net/linyuelei/archive/2009/05/31/279260.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/linyuelei/comments/commentRss/279260.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/linyuelei/services/trackbacks/279260.html</trackback:ping><description><![CDATA[要看这两个表的字段是否一致阿， &nbsp; <br />
&nbsp; 如果是象插到另以个空表，还不入建一个新的， &nbsp; <br />
&nbsp; create &nbsp; table &nbsp; newtable &nbsp; as &nbsp; select &nbsp; * &nbsp; from &nbsp; oldtable; &nbsp; <br />
&nbsp; 有数据的话就用 &nbsp; <br />
&nbsp; insert &nbsp; into &nbsp; newtable(select &nbsp; * &nbsp; from &nbsp; oldtable);
<img src ="http://www.blogjava.net/linyuelei/aggbug/279260.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/linyuelei/" target="_blank">A++</a> 2009-05-31 18:28 <a href="http://www.blogjava.net/linyuelei/archive/2009/05/31/279260.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>新建用户并添加到管理组</title><link>http://www.blogjava.net/linyuelei/archive/2009/05/12/270146.html</link><dc:creator>A++</dc:creator><author>A++</author><pubDate>Tue, 12 May 2009 01:23:00 GMT</pubDate><guid>http://www.blogjava.net/linyuelei/archive/2009/05/12/270146.html</guid><wfw:comment>http://www.blogjava.net/linyuelei/comments/270146.html</wfw:comment><comments>http://www.blogjava.net/linyuelei/archive/2009/05/12/270146.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.blogjava.net/linyuelei/comments/commentRss/270146.html</wfw:commentRss><trackback:ping>http://www.blogjava.net/linyuelei/services/trackbacks/270146.html</trackback:ping><description><![CDATA[<p><font color="green">用recovery mode模式启动后，进入命令行模式，提示符应该是 #</font>
</p>
<p><font color="green">1、输入用户管理的命令，新建用户（以test为例）：<br />
useradd test</font>
</p>
<p><font color="green">修改 test 用户的密码：<br />
passwd test</font>
</p>
<p><font color="green">2、将新用户添加到管理组：<br />
gpasswd -a test admin</font>
</p>
<p><font color="green">3、给 test 用户创建自己的目录：<br />
cd /home</font>
</p>
<p><font color="green">mkdir test</font>
</p>
<p><font color="green">chown test /home/test</font>
</p>
<p><font color="green">4、重新启动，<br />
reboot</font>
</p>
<p><font color="green">然后用 test 登录，</font>
</p>
<p><font color="green">登录以后，点菜单&#8220;系统－系统管理－用户和组&#8221;，进去选中你的用户，点右边的&#8220;属性&#8221;按钮，到用户权限里打勾需要的；</font>
</p>
<img src ="http://www.blogjava.net/linyuelei/aggbug/270146.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/linyuelei/" target="_blank">A++</a> 2009-05-12 09:23 <a href="http://www.blogjava.net/linyuelei/archive/2009/05/12/270146.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>