<?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>THE SIMPLE LIVE &#187; Linux</title>
	<atom:link href="http://simplelive.org/html/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://simplelive.org</link>
	<description>木秀于林 风必摧之</description>
	<lastBuildDate>Fri, 30 Jul 2010 02:21:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>AIX下自动执行Oracle中的sql语句</title>
		<link>http://simplelive.org/html/2010/1585.html</link>
		<comments>http://simplelive.org/html/2010/1585.html#comments</comments>
		<pubDate>Mon, 12 Jul 2010 03:21:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[AIX]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[自动执行]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1585</guid>
		<description><![CDATA[在日常的工作中，我们经常要使用crontab计划自动执行shell程序。例如：数据备份、日志清理、机器重启等等。前些时候，有朋友问：为什么使用crontab自动执行oracle的sql语句不能实现。下面我就讲述一下如何自动执行oracle的sql语句。 首先，建立一个sql文件，并且在sqlplus中测试，手工运行这个sql文件看是否能够成功： test.sql文件内容： select count(*) from test; 然后进入sqlplus： sqlplus  scott/tiger 运行test.sql文件： SQL&#62;start test.sql 如果显示了sql语句的结果，则表示此sql文件能够正常执行。 其次，我们建立一个shell文件，要注意的是这个shell文件中必须将oracle的初始环境设置加上去，才能让unix系统能够执行sqlplus程序，下面给出一个shell例子(文件名test.sh)： ORACLE_OWNER=oracle ORACLE_TERM=vt100 DISPLAY=`hostname`:0.0 ORACLE_SID=test ORACLE_USER=$HOME ORACLE_BASE=/disk01/oracle ORACLE_HOME=$ORACLE_BASE/product/8.1.7 ORACLE_DOC=$ORACLE_HOME/doc NLS_LANG=AMERICAN_AMERICA.ZHS16CGB231280 ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/ccs/lib PATH=$PATH:$ORACLE_HOME/bin:/bin:/usr/ccs/bin:/usr/local/bin TEMP=/tmp TMPDIR=/tmp export ORACLE_OWNER ORACLE_TERM DISPLAY ORACLE_SID ORACLE_USER ORACLE_BASE ORACLE_HOME ORACLE_DOC NLS_LANG ORA_NLS33 LD_LIBRARY_PATH PATH TEMP TMPDIR cd /usr/test/sql /disk01/oracle/product/8.1.7/bin/sqlplus scott/tiger &#60;&#60;EOF @ test.sql exit EOF 最后，我们建立一个crontab计划，让unix定期执行： 00 20 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1585.html">AIX下自动执行Oracle中的sql语句</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>在日常的工作中，我们经常要使用crontab计划自动执行shell程序。例如：数据备份、日志清理、机器重启等等。前些时候，有朋友问：为什么使用crontab自动执行oracle的sql语句不能实现。下面我就讲述一下如何自动执行oracle的sql语句。</p>
<p>首先，建立一个sql文件，并且在sqlplus中测试，手工运行这个sql文件看是否能够成功：<br />
test.sql文件内容：<br />
select count(*) from test;<br />
然后进入sqlplus：<br />
sqlplus  scott/tiger<br />
运行test.sql文件：<br />
SQL&gt;start test.sql<br />
如果显示了sql语句的结果，则表示此sql文件能够正常执行。<br />
其次，我们建立一个shell文件，要注意的是这个shell文件中必须将oracle的初始环境设置加上去，才能让unix系统能够执行sqlplus程序，下面给出一个shell例子(文件名test.sh)：</p>
<blockquote><p>ORACLE_OWNER=oracle<br />
ORACLE_TERM=vt100<br />
DISPLAY=`hostname`:0.0<br />
ORACLE_SID=test<br />
ORACLE_USER=$HOME<br />
ORACLE_BASE=/disk01/oracle<br />
ORACLE_HOME=$ORACLE_BASE/product/8.1.7<br />
ORACLE_DOC=$ORACLE_HOME/doc<br />
NLS_LANG=AMERICAN_AMERICA.ZHS16CGB231280<br />
ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data<br />
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:/usr/ccs/lib<br />
PATH=$PATH:$ORACLE_HOME/bin:/bin:/usr/ccs/bin:/usr/local/bin<br />
TEMP=/tmp<br />
TMPDIR=/tmp<br />
export ORACLE_OWNER ORACLE_TERM DISPLAY ORACLE_SID ORACLE_USER ORACLE_BASE ORACLE_HOME ORACLE_DOC NLS_LANG ORA_NLS33 LD_LIBRARY_PATH PATH TEMP TMPDIR</p></blockquote>
<blockquote><p>cd /usr/test/sql<br />
/disk01/oracle/product/8.1.7/bin/sqlplus scott/tiger &lt;&lt;EOF<br />
@ test.sql<br />
exit<br />
EOF</p></blockquote>
<p>最后，我们建立一个crontab计划，让unix定期执行：<br />
00 20 * * *　／usr/test/sql/test.sh<br />
就此，一个自动执行sql语句的crontab就建成了。大家可以通过mail检查crontab的执行情况。（<a title="http://blog.chinaunix.net/u/4779/showart_160203.html" href="http://blog.chinaunix.net/u/4779/showart_160203.html" target="_blank">via</a>）（<a title="http://blog.chinaunix.net/u/31547/showart_438018.html" href="http://blog.chinaunix.net/u/31547/showart_438018.html" target="_blank">Crontab实例</a>）（<span style="font-weight: normal;"><a title="http://www.dbanotes.net/techmemo/crontab_tips.html" href="http://www.dbanotes.net/techmemo/crontab_tips.html" target="_blank">Crontab 笔记</a></span><span style="font-weight: normal; font-size: 13px;">）</span></p>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1585.html">AIX下自动执行Oracle中的sql语句</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1399.html" title="Oracle中导入TXT并进行处理">Oracle中导入TXT并进行处理</a> (3)</li><li><a href="http://simplelive.org/html/2007/222.html" title="Microsoft SQL Server 2008 November CTP">Microsoft SQL Server 2008 November CTP</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1585.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vim使用简介</title>
		<link>http://simplelive.org/html/2010/1415.html</link>
		<comments>http://simplelive.org/html/2010/1415.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 00:10:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Vim使用简介]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1415</guid>
		<description><![CDATA[&#8220;工欲善其事,必先利其器&#8221;《论语》 写在前头：vim是Linux下最常用的编辑工具，一般认为vim是Vi IMproved（增强的vi）的缩写，很多时候我们也把vim称为vi。vi是一个上手比较难，但是一旦掌握，就能大大提高效率的工具。本文仅介 绍一些Vim使用的基本概念，读者可以根据本文给出参考文献继续深入了解Vim。 1. 认识Vi 直接使用vi（或者vim）命令，有时会看到如下的内容： 建议用户向荷兰ICCF捐款, 用于帮助乌干达的艾滋病患者，可以通过键入命令:help iccf查看更多细节。 你可以使用如下命令开始编辑一个文本： 2. Vim中的模式 Vi和Windows下的编辑器最大的一个不同是Vi有多种模式：Normal模式，编辑模式，命令模式。 使用命令(如 vi dota.txt)后，首先进入Normal模式（这个模式下，可以移动光标的位置）；如果准备开始编辑了，按下a（或者i）就可以进入编辑模式，这时， 和普通的编辑器就差不多了；完成编辑希望保存并退出文本时，你可以先按Esc进入Normal模式，然后按:wq保存并退出。（还是有点点复杂的:）事实 上还有Ex Select Visual等模式） 3. Vim中的一些功能 这里将罗列一些Vi的功能，本文将不详述，因为只要你知道她有这些功能，Google大神会告诉你具体操作。 语法高亮：当你编写 shell代码时，高亮可以帮你发现一些明显的语法错误；录制、播放：当你在成百次的重复一些复杂的vi操作时，录制会帮你大忙；列 编辑：据我知道，很多人之所以使用破解版的UE，就是因为这个；搜索、替换：这也是 编辑器基本的功能。编程函数自动补齐：还在等什么，Have a try（欢迎补充） 4. ctrl+s冻结Vim的问题 刚开始使用vim的人，会习惯性地使用ctrl+s保存，这将会导致Linux终端被冻结。事实上，ctrl+s会锁住Linux终端的输入和输 出。可以使用crtl+q解除锁定，恢复正常。 参考手册： sourceforge.net 上的中文文档 &#124; 滇狐大作viki &#124; Vim the editor &#124; 善用佳软 介绍vim 来源：一个故事@MySQL DBA  http://www.orczhou.com/index.php/2010/03/vim-recording/ 作者的doat.txt好像应当是dota.txt，一游戏地图名？ ﻿ Vim使用简介 originally appeared on [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1415.html">Vim使用简介</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;">&#8220;工欲善其事,必先利其器&#8221;《论语》</span><br />
写在前头：vim是<strong>Linux</strong>下最常用的编辑工具，一般认为vim是Vi IMproved（增强的vi）的缩写，很多时候我们也把vim称为vi。vi是一个上手比较难，但是一旦掌握，就能大大提高效率的工具。本文仅介 绍一些Vim使用的基本概念，读者可以根据本文给出参考文献继续深入了解Vim。</p>
<p><span style="color: #ff0000;">1. 认识Vi</span></p>
<p>直接使用vi（或者vim）命令，<strong>有时</strong>会看到如下的内容：</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/1.png"><img class="aligncenter size-full wp-image-1416" title="1" src="http://simplelive.org/wp-content/uploads/2010/03/1.png" alt="" width="600" height="80" /></a></p>
<p>建议用户向荷兰<a href="http://iccf-holland.org/index.html" target="_blank">ICCF</a>捐款, 用于帮助乌干达的艾滋病患者，可以通过键入命令:help iccf查看更多细节。</p>
<p>你可以使用如下命令开始编辑一个文本：</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/2.png"><img class="aligncenter size-full wp-image-1417" title="2" src="http://simplelive.org/wp-content/uploads/2010/03/2.png" alt="" width="600" height="32" /></a></p>
<p><span style="color: #ff0000;">2. Vim中的模式</span></p>
<p>Vi和Windows下的编辑器最大的一个不同是Vi有多种模式：<span style="color: #0000ff;">Normal模式，编辑模式，命令模式</span>。 使用命令(如 vi dota.txt)后，首先进入Normal模式（这个模式下，可以移动光标的位置）；如果准备开始编辑了，按下a（或者i）就可以进入编辑模式，这时， 和普通的编辑器就差不多了；完成编辑希望保存并退出文本时，你可以先按Esc进入Normal模式，然后按:wq保存并退出。（还是有点点复杂的:）事实 上还有Ex Select Visual等模式）</p>
<p><span style="color: #ff0000;">3. Vim中的一些功能</span></p>
<p>这里将罗列一些Vi的功能，本文将不详述，因为只要你知道她有这些功能，Google大神会告诉你具体操作。</p>
<p><span style="color: #0000ff;">语法高亮</span>：当你编写 shell代码时，高亮可以帮你发现一些明显的语法错误；<span style="color: #0000ff;">录制、播放</span>：当你在成百次的重复一些复杂的vi操作时，录制会帮你大忙；<span style="color: #0000ff;">列 编辑</span>：据我知道，很多人之所以使用破解版的UE，就是因为这个；<span style="color: #0000ff;">搜索、替换</span>：这也是 编辑器基本的功能。<span style="color: #0000ff;">编程函数自动补齐</span>：还在等什么，Have a try（欢迎补充）</p>
<p><span style="color: #ff0000;">4. ctrl+s冻结Vim的问题</span></p>
<p>刚开始使用vim的人，会习惯性地使用ctrl+s保存，这将会导致Linux终端被冻结。事实上，ctrl+s会锁住Linux终端的输入和输 出。可以使用crtl+q解除锁定，恢复正常。</p>
<p>参考手册：</p>
<p><a href="http://vimcdoc.sourceforge.net/doc/intro.html" target="_blank">sourceforge.net 上的中文文档</a> | <a href="http://edyfox.codecarver.org/html/vim_edit_tips.html" target="_blank">滇狐大作viki</a> | <a href="http://www.vim.org/" target="_blank">Vim the editor</a> | <a href="http://blog.sina.com.cn/s/blog_46dac66f010005kw.html" target="_blank">善用佳软 介绍vim</a></p>
<blockquote><p>来源：一个故事@MySQL DBA  http://www.orczhou.com/index.php/2010/03/vim-recording/<br />
作者的doat.txt好像应当是dota.txt，一游戏地图名？<br />
﻿</p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1415.html">Vim使用简介</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1465.html" title="人渐渐成熟的15个迹象">人渐渐成熟的15个迹象</a> (3)</li><li><a href="http://simplelive.org/html/2010/1664.html" title="Windows下Android开发环境搭建">Windows下Android开发环境搭建</a> (0)</li><li><a href="http://simplelive.org/html/2009/893.html" title="CCIE Distribution Table">CCIE Distribution Table</a> (0)</li><li><a href="http://simplelive.org/html/2007/50.html" title="国产军旅题材<无懈可击>bt种子">国产军旅题材<无懈可击>bt种子</a> (0)</li><li><a href="http://simplelive.org/html/2008/656.html" title="PHP 5.3.0 Alpha 2">PHP 5.3.0 Alpha 2</a> (0)</li><li><a href="http://simplelive.org/html/2008/528.html" title="Emesene 1.0.1">Emesene 1.0.1</a> (0)</li><li><a href="http://simplelive.org/html/2010/1643.html" title="延迟加载图片的 jQuery 插件：Lazy Load">延迟加载图片的 jQuery 插件：Lazy Load</a> (1)</li><li><a href="http://simplelive.org/html/2007/39.html" title="Nbtstat">Nbtstat</a> (0)</li><li><a href="http://simplelive.org/html/2008/492.html" title="Mozilla FireFox 3.0.1 build 1">Mozilla FireFox 3.0.1 build 1</a> (0)</li><li><a href="http://simplelive.org/html/2007/249.html" title="拒绝浮躁,谁的高招">拒绝浮躁,谁的高招</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1415.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle中导入TXT并进行处理</title>
		<link>http://simplelive.org/html/2010/1399.html</link>
		<comments>http://simplelive.org/html/2010/1399.html#comments</comments>
		<pubDate>Wed, 10 Mar 2010 05:47:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[导入TXT]]></category>
		<category><![CDATA[进行处理]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1399</guid>
		<description><![CDATA[Oracle数据库工作中常会遇到将TXT文件导入到Oracle中进行处理的问题，这样可以对TXT中数据进行分析处理。下面就将完整的导入及处理方法列出，当做参照吧。 大多来自其他部门的数据都是以.xls形式存在的，首先我们需要将其中的列数据进行处理，存入TXT中。 可以直接将这列数据复制到Notepad++之类的文本编辑器中，这样的目的是为了防止产生DOS下的换行符的存在，否则在导入Oracle数据库的时候不会成功。 复制进来的这列数据的最后一行总会是空行，需要将其删除。 生成一个TXT文件，我们生成的是1.txt。 现在将1.txt通过FTP上传到Linux你所使用的脚本目录下，以方便我们的导入。 在导入的时候我们需要使用两个程序，一个是导入脚本daoru.sh一个是导入控制文件daoru.ctl。上图为导入脚本文件的全部程序，我们导入的列只有一个，所以只需要建立一列TABLE PHONE_NO，就可满足我们的需求，若是列数更多，可以自行添加。 上图为控制文件daoru.ctl。我们需要做的是执行daoru.sh脚本，以生成临时表hh_tmp1，并插入一列PHONE_NO char(11)的字段，手机号码为11位，我们取char(11)即可。 执行之后，很快，我们的1.txt文件已经导入到了数据库的临时表hh_tmp1中，由于在daoru.sh脚本中，我们已经对导入的数据进行了剔除重复的操作，所以下面只要按照我们的需要来提取出来我们想要的数据即可。 我们使用的是PLSQL Developer，PLSQL Developer所登录的数据库用户必须与你在脚本中所使用的数据库用户一致，通过于原有数据库表进行连接，以实现获取我们所需要的数据。 提取出两列分别为PHONE_NO，BELONG_CODE，其中BELONG_CODE升序排列，以区分来自区域。 还有一句就是想把1.txt转换为excel格式，然后在windows打开。但是在linux环境下执行的语句。 cat exp_imp_report.list&#124;sed 's/&#124;/\t/g' &#62;1.xls Oracle中导入TXT并进行处理 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. 相关日志AIX下自动执行Oracle中的sql语句 (3)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1399.html">Oracle中导入TXT并进行处理</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p>Oracle数据库工作中常会遇到将TXT文件导入到Oracle中进行处理的问题，这样可以对TXT中数据进行分析处理。下面就将完整的导入及处理方法列出，当做参照吧。</p>
<p>大多来自其他部门的数据都是以.xls形式存在的，首先我们需要将其中的列数据进行处理，存入TXT中。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/801.png"><img class="aligncenter size-full wp-image-1400" title="801" src="http://simplelive.org/wp-content/uploads/2010/03/801.png" alt="" width="564" height="180" /></a></p>
<p>可以直接将这列数据复制到Notepad++之类的文本编辑器中，这样的目的是为了防止产生DOS下的换行符的存在，否则在导入Oracle数据库的时候不会成功。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/802.png"><img class="aligncenter size-full wp-image-1401" title="802" src="http://simplelive.org/wp-content/uploads/2010/03/802.png" alt="" width="564" height="98" /></a></p>
<p>复制进来的这列数据的最后一行总会是空行，需要将其删除。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/803.png"><img class="aligncenter size-full wp-image-1402" title="803" src="http://simplelive.org/wp-content/uploads/2010/03/803.png" alt="" width="564" height="83" /></a></p>
<p>生成一个TXT文件，我们生成的是1.txt。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/804.png"><img class="aligncenter size-full wp-image-1403" title="804" src="http://simplelive.org/wp-content/uploads/2010/03/804.png" alt="" width="564" height="131" /></a></p>
<p>现在将1.txt通过FTP上传到Linux你所使用的脚本目录下，以方便我们的导入。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/805.png"><img class="aligncenter size-full wp-image-1404" title="805" src="http://simplelive.org/wp-content/uploads/2010/03/805.png" alt="" width="564" height="186" /></a></p>
<p>在导入的时候我们需要使用两个程序，一个是导入脚本daoru.sh一个是导入控制文件daoru.ctl。上图为导入脚本文件的全部程序，我们导入的列只有一个，所以只需要建立一列TABLE PHONE_NO，就可满足我们的需求，若是列数更多，可以自行添加。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/806.png"><img class="aligncenter size-full wp-image-1405" title="806" src="http://simplelive.org/wp-content/uploads/2010/03/806.png" alt="" width="564" height="160" /></a></p>
<p>上图为控制文件daoru.ctl。我们需要做的是执行daoru.sh脚本，以生成临时表hh_tmp1，并插入一列PHONE_NO char(11)的字段，手机号码为11位，我们取char(11)即可。</p>
<p>执行之后，很快，我们的1.txt文件已经导入到了数据库的临时表hh_tmp1中，由于在daoru.sh脚本中，我们已经对导入的数据进行了剔除重复的操作，所以下面只要按照我们的需要来提取出来我们想要的数据即可。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/807.png"></a><a href="http://simplelive.org/wp-content/uploads/2010/03/8031.png"><img class="aligncenter size-full wp-image-1411" title="803" src="http://simplelive.org/wp-content/uploads/2010/03/8031.png" alt="" width="558" height="179" /></a></p>
<p>我们使用的是PLSQL Developer，PLSQL Developer所登录的数据库用户必须与你在脚本中所使用的数据库用户一致，通过于原有数据库表进行连接，以实现获取我们所需要的数据。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/809.png"><img class="aligncenter size-full wp-image-1413" title="809" src="http://simplelive.org/wp-content/uploads/2010/03/809.png" alt="" width="564" height="139" /></a></p>
<p>提取出两列分别为PHONE_NO，BELONG_CODE，其中BELONG_CODE升序排列，以区分来自区域。</p>
<p>还有一句就是想把1.txt转换为excel格式，然后在windows打开。但是在linux环境下执行的语句。</p>
<blockquote><p><code>cat  exp_imp_report.list|sed 's/|/\t/g' &gt;1.xls</code></p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1399.html">Oracle中导入TXT并进行处理</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2010/1585.html" title="AIX下自动执行Oracle中的sql语句">AIX下自动执行Oracle中的sql语句</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1399.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>三个网站让你成为 Linux 命令行高手</title>
		<link>http://simplelive.org/html/2010/1398.html</link>
		<comments>http://simplelive.org/html/2010/1398.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 01:56:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Linux 命令行]]></category>
		<category><![CDATA[三个网站]]></category>
		<category><![CDATA[命令行高手]]></category>

		<guid isPermaLink="false">http://simplelive.org/html/2010/1398.html</guid>
		<description><![CDATA[http://linuxcommand.org/ LinuxCommand是一个学习Linux命令 行最好的网站之一。网站分为：学习Shell、写Shell脚本、脚本库、超级MAN页面。 http://oreilly.com/linux/command-directory/ O’Reilly的 Linux命令指南目录是一个极好的快速参考指南，列出了大量的内部指令，并且告诉用户这是什么命令，以及如何使用它，这对于初学者或更高级用户 来说是非常好的学习地方。 Linux手册适 合Shell的学习和Shell脚本编写。这里是学习Linux命令的最好资源，当你学习了一些命令之后，你想知道如何去编辑一个文件，那么Linux手 册就介绍了文本编辑。 以上便是Linux命令学习的三个网站，可能唯一美中不足的地方，便是语言。因为是全英文，对于那么英文不好的爱好者来说是一件比较痛苦的事。 不过庆幸的是，这些英文都比较基础。祝你们学习愉快。 文章来自：http://osss.cn/news/2009/11/18/三个网站让你成为linux命令行高手/ 三个网站让你成为 Linux 命令行高手 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsF#成为Visual Studio的上等公民 (0)黑龙江江边一行 (9)更新到wordpress V 2.3.3 (0)感恩的心 (1)思念是一种病 (1)WordPress 2.7及中文版 (0)住有变故 (1)欺骗.闭嘴 (4)博客基调低沉了？ (2)2009 新年快乐 (8)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1398.html">三个网站让你成为 Linux 命令行高手</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://simplelive.org/wp-content/uploads/2010/03/2_12586981327cAT.png"><img class="aligncenter size-full wp-image-1395" title="2_12586981327cAT" src="http://simplelive.org/wp-content/uploads/2010/03/2_12586981327cAT.png" alt="" width="570" height="443" /></a></p>
<p><a href="http://linuxcommand.org/">http://linuxcommand.org/</a><br />
<a href="http://linuxcommand.org/">LinuxCommand</a>是一个学习Linux命令 行最好的网站之一。网站分为：学习Shell、写Shell脚本、脚本库、超级MAN页面。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/2_1258698132x8IF.png"><img class="aligncenter size-full wp-image-1396" title="2_1258698132x8IF" src="http://simplelive.org/wp-content/uploads/2010/03/2_1258698132x8IF.png" alt="" width="570" height="357" /></a><a href="http://oreilly.com/linux/command-directory/">http://oreilly.com/linux/command-directory/</a> <a href="http://oreilly.com/linux/command-directory/">O’Reilly的 Linux命令指南目录</a>是一个极好的快速参考指南，列出了大量的内部指令，并且告诉用户这是什么命令，以及如何使用它，这对于初学者或更高级用户 来说是非常好的学习地方。</p>
<p><a href="http://simplelive.org/wp-content/uploads/2010/03/2_1258698135ClZu.png"><img class="aligncenter size-full wp-image-1397" title="2_1258698135ClZu" src="http://simplelive.org/wp-content/uploads/2010/03/2_1258698135ClZu.png" alt="" width="570" height="356" /></a></p>
<p><a href="http://www.dsl.org/cookbook/cookbook_toc.html">Linux手册</a>适 合Shell的学习和Shell脚本编写。这里是学习Linux命令的最好资源，当你学习了一些命令之后，你想知道如何去编辑一个文件，那么Linux手 册就介绍了文本编辑。</p>
<p>以上便是Linux命令学习的三个网站，可能唯一美中不足的地方，便是语言。因为是全英文，对于那么英文不好的爱好者来说是一件比较痛苦的事。 不过庆幸的是，这些英文都比较基础。祝你们学习愉快。</p>
<blockquote><p>文章来自：http://osss.cn/news/2009/11/18/三个网站让你成为linux命令行高手/</p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2010/1398.html">三个网站让你成为 Linux 命令行高手</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2008/503.html" title="静寂喧闹">静寂喧闹</a> (1)</li><li><a href="http://simplelive.org/html/2008/823.html" title="来自黑莓的输入风暴">来自黑莓的输入风暴</a> (1)</li><li><a href="http://simplelive.org/html/2008/321.html" title="3号回家">3号回家</a> (0)</li><li><a href="http://simplelive.org/html/2009/1042.html" title="无名花－网络部">无名花－网络部</a> (5)</li><li><a href="http://simplelive.org/html/2007/164.html" title="当你离开的时候">当你离开的时候</a> (0)</li><li><a href="http://simplelive.org/html/2009/1250.html" title="又疯癫了&#8230;">又疯癫了&#8230;</a> (0)</li><li><a href="http://simplelive.org/html/2008/516.html" title="Mozilla SeaMonkey 1.1.11">Mozilla SeaMonkey 1.1.11</a> (0)</li><li><a href="http://simplelive.org/html/2007/117.html" title="ASP 中常见的错误 80004005 信息">ASP 中常见的错误 80004005 信息</a> (0)</li><li><a href="http://simplelive.org/html/2007/119.html" title="越来越不懂-蔡健雅(Tsai, Chien Ya Tanya) ">越来越不懂-蔡健雅(Tsai, Chien Ya Tanya) </a> (0)</li><li><a href="http://simplelive.org/html/2007/101.html" title="收到8tt.org的电子邮件">收到8tt.org的电子邮件</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2010/1398.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OPhone SDN</title>
		<link>http://simplelive.org/html/2009/1336.html</link>
		<comments>http://simplelive.org/html/2009/1336.html#comments</comments>
		<pubDate>Tue, 15 Dec 2009 03:22:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[OPhone SDN]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1336</guid>
		<description><![CDATA[什么是OPhone OPhone是基于Linux、面向移动互联网的终端基础软件及系统解决方案。 OPhone SDK是专为OPhone平台设计的软件开发套件，它包括OPhone API，OPhone模拟器，开发工具，示例代码和帮助文档。 为了探究OPhone SDN，在我的window 7上折腾了一番，可折腾了大半天我还是没配置好开发环境，真是怀疑我怎么这么笨呢？不是怀疑，是我就这笨样了吧。 CMCC的用户数量非常庞大，这么有钱的CMCC，咱要是做OPhone SDN的开发，没准会淘点金呢。喜欢折腾的朋友们，赶紧上吧。 OPhone SDN [OPhone 开发者网络] http://www.ophonesdn.com/ 平台 包名 大小 Windows OPhone-sdk_windows-1.5.beta-setup.jar 124 MB Mac OPhone-sdk_mac-1.5.beta-setup.jar 115 MB Linux (i386) OPhone-sdk_linux-1.5.beta-setup.jar 118 MB OPhone SDN originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random PostsWindows Live OneCare v2.0.2500.10 [...]<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1336.html">OPhone SDN</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1335" title="home_title" src="http://simplelive.org/wp-content/uploads/2009/12/home_title.png" alt="home_title" width="451" height="305" /></p>
<div>
<h3><span>什么是OPhone</span></h3>
<ul>
<li><em>OPhone</em>是基于Linux、面向移动互联网的终端基础软件及系统解决方案。</li>
<li><em>OPhone SDK</em>是专为OPhone平台设计的软件开发套件，它包括OPhone API，OPhone模拟器，开发工具，示例代码和帮助文档。</li>
</ul>
</div>
<div>为了探究OPhone SDN，在我的window 7上折腾了一番，可折腾了大半天我还是没配置好开发环境，真是怀疑我怎么这么笨呢？不是怀疑，是我就这笨样了吧。 <img src='http://simplelive.org/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  CMCC的用户数量非常庞大，这么有钱的CMCC，咱要是做OPhone SDN的开发，没准会淘点金呢。喜欢折腾的朋友们，赶紧上吧。</div>
<blockquote>
<div>OPhone SDN [OPhone 开发者网络] <a href="http://www.ophonesdn.com/" target="_blank">http://www.ophonesdn.com/</a></div>
</blockquote>
<blockquote>
<div>
<table style="height: 88px;" border="0" width="431">
<thead>
<tr>
<th>平台</th>
<th>包名</th>
<th>大小</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Windows</td>
<td><a onclick="javascript:return checkterms();" href="http://dl.ophonesdn.com/sdk/OPhone-sdk_windows-1.5.beta-setup.jar" target="_blank">OPhone-sdk_windows-1.5.beta-setup.jar</a></td>
<td>124 MB</td>
<td></td>
</tr>
<tr>
<td>Mac</td>
<td><a onclick="javascript:return checkterms();" href="http://dl.ophonesdn.com/sdk/OPhone-sdk_mac-1.5.beta-setup.jar" target="_blank">OPhone-sdk_mac-1.5.beta-setup.jar</a></td>
<td>115 MB</td>
<td></td>
</tr>
<tr>
<td>Linux (i386)</td>
<td><a onclick="javascript:return checkterms();" href="http://dl.ophonesdn.com/sdk/OPhone-sdk_linux-1.5.beta-setup.jar" target="_blank">OPhone-sdk_linux-1.5.beta-setup.jar</a></td>
<td>118 MB</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1336.html">OPhone SDN</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2007/245.html" title="购买了bluehost合租空间">购买了bluehost合租空间</a> (3)</li><li><a href="http://simplelive.org/html/2008/464.html" title="Cisco借RedHat拉拢开源">Cisco借RedHat拉拢开源</a> (0)</li><li><a href="http://simplelive.org/html/2007/110.html" title="看看你的网站在不同地区的连接情况">看看你的网站在不同地区的连接情况</a> (0)</li><li><a href="http://simplelive.org/html/2008/375.html" title="WordPress 2.5.1">WordPress 2.5.1</a> (0)</li><li><a href="http://simplelive.org/html/2008/739.html" title="U.S. presidential election">U.S. presidential election</a> (1)</li><li><a href="http://simplelive.org/html/2008/411.html" title="陕西师范学术报告精确预言四川地震">陕西师范学术报告精确预言四川地震</a> (0)</li><li><a href="http://simplelive.org/html/2007/177.html" title="优化asp数据访问代码">优化asp数据访问代码</a> (0)</li><li><a href="http://simplelive.org/html/2008/744.html" title="少有人走的路">少有人走的路</a> (6)</li><li><a href="http://simplelive.org/html/2008/430.html" title="病的很重">病的很重</a> (4)</li><li><a href="http://simplelive.org/html/2007/161.html" title="&#8216;好男当家&#8217;片尾曲-碎片">&#8216;好男当家&#8217;片尾曲-碎片</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2009/1336.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10</title>
		<link>http://simplelive.org/html/2009/1296.html</link>
		<comments>http://simplelive.org/html/2009/1296.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 07:42:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Ubuntu 9.10]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1296</guid>
		<description><![CDATA[什么是 Ubuntu? Ubuntu 是一个由全球化的专业开发团队建造的操作系统。它包含了所有您需要的应用程序：浏览器、Office 套件、多媒体程序、即时消息等。 Ubuntu 是一个 Windows 和 Office 的开源替代品。 这次的Ubuntu 9.10很是热闹，工作忙，一直没有下载，今天得以尝试一下。看似很好，还是得使用才知道适合不适合你自己。记得Ubuntu 9.04的时候，就觉得很好，这次的新版本，值得体验。 Download Now Ubuntu 9.10 Ubuntu 9.10 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. Random Posts深切哀悼 (1)BlueHost被盾 (4)周六瞎想 (1)会漫步的iPhone (4)当你离开的时候 (0)Visual Studio 2008 Service Pack 1 (0)住有变故 (1)百度最近的思想 (0)怎样填补内心的空洞？ (0)CHM文件打不开的解决方法 (0)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1296.html">Ubuntu 9.10</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1297" title="ubuntu-910-browser-internet" src="http://simplelive.org/wp-content/uploads/2009/11/ubuntu-910-browser-internet.jpg" alt="ubuntu-910-browser-internet" width="581" height="260" /><img class="aligncenter size-full wp-image-1298" title="ubuntu-910-software-center" src="http://simplelive.org/wp-content/uploads/2009/11/ubuntu-910-software-center.jpg" alt="ubuntu-910-software-center" width="571" height="273" /></p>
<blockquote>
<h2>什么是 Ubuntu?</h2>
<p>Ubuntu 是一个由全球化的专业开发团队建造的操作系统。它包含了所有您需要的应用程序：浏览器、Office 套件、多媒体程序、即时消息等。</p>
<p>Ubuntu 是一个 Windows 和 Office 的开源替代品。</p>
<p>这次的<a href="http://www.ubuntu.com.cn/products/whatisubuntu/910features/" target="_blank">Ubuntu 9.10</a>很是热闹，工作忙，一直没有下载，今天得以尝试一下。看似很好，还是得使用才知道适合不适合你自己。记得<a href="http://simplelive.org/html/2009/1170.html" target="_blank">Ubuntu 9.04</a>的时候，就觉得很好，这次的新版本，值得体验。 <img src='http://simplelive.org/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p></blockquote>
<ul>
<li><a href="http://www.ubuntu.com.cn/getubuntu/download/" target="_blank"><strong>Download Now</strong></a></li>
<li><a href="http://www.ubuntu.com.cn/products/whatisubuntu/910features/" target="_blank"><strong>Ubuntu 9.10</strong></a></li>
</ul>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1296.html">Ubuntu 9.10</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/1027.html" title="中国移动通信网站">中国移动通信网站</a> (2)</li><li><a href="http://simplelive.org/html/2008/842.html" title="Google Chrome 1.0.154.36 Final">Google Chrome 1.0.154.36 Final</a> (0)</li><li><a href="http://simplelive.org/html/2007/222.html" title="Microsoft SQL Server 2008 November CTP">Microsoft SQL Server 2008 November CTP</a> (0)</li><li><a href="http://simplelive.org/html/2008/346.html" title="Gtalk机器人大全">Gtalk机器人大全</a> (0)</li><li><a href="http://simplelive.org/html/2008/857.html" title="带 Internet Explorer Mobile 6 的Touch Hd 定制 ROM">带 Internet Explorer Mobile 6 的Touch Hd 定制 ROM</a> (0)</li><li><a href="http://simplelive.org/html/2010/1614.html" title="OPhone 2.0原创技术征文大赛">OPhone 2.0原创技术征文大赛</a> (0)</li><li><a href="http://simplelive.org/html/2008/319.html" title="蓝牙技术最强应用:蓝牙假肢">蓝牙技术最强应用:蓝牙假肢</a> (1)</li><li><a href="http://simplelive.org/html/2008/290.html" title="混蛋的人">混蛋的人</a> (0)</li><li><a href="http://simplelive.org/html/2009/1128.html" title="胜山要塞之旅（7.1）">胜山要塞之旅（7.1）</a> (4)</li><li><a href="http://simplelive.org/html/2008/467.html" title="Talk将与YM实现互联互通">Talk将与YM实现互联互通</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2009/1296.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux 桌面分享</title>
		<link>http://simplelive.org/html/2009/1177.html</link>
		<comments>http://simplelive.org/html/2009/1177.html#comments</comments>
		<pubDate>Mon, 27 Jul 2009 03:15:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>
		<category><![CDATA[桌面分享]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1177</guid>
		<description><![CDATA[Ubuntu Linux下的桌面截图，给大家分享下我的壁纸吧。其实收集了很多，还是看都这个比较有个性，单位电脑的话就注意着使用吧，免得被路过的MM误解你的人品。 图片地址：http://simplelive.org/wp-content/uploads/up/ubuntu linux.jpg Ubuntu Linux 桌面分享 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. 相关日志Ubuntu Linux 9.04 (5)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1177.html">Ubuntu Linux 桌面分享</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1176" title="Screenshot" src="http://simplelive.org/wp-content/uploads/2009/07/Screenshot.png" alt="Screenshot" width="592" height="444" /></p>
<p>Ubuntu Linux下的桌面截图，给大家分享下我的壁纸吧。其实收集了很多，还是看都这个比较有个性，单位电脑的话就注意着使用吧，免得被路过的MM误解你的人品。</p>
<blockquote><p>图片地址：<a href="http://simplelive.org/wp-content/uploads/up/ubuntu linux.jpg" target="_blank">http://simplelive.org/wp-content/uploads/up/ubuntu linux.jpg</a></p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1177.html">Ubuntu Linux 桌面分享</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/1170.html" title="Ubuntu Linux 9.04">Ubuntu Linux 9.04</a> (5)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2009/1177.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux 9.04</title>
		<link>http://simplelive.org/html/2009/1170.html</link>
		<comments>http://simplelive.org/html/2009/1170.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 06:24:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>

		<guid isPermaLink="false">http://simplelive.org/?p=1170</guid>
		<description><![CDATA[自Ubuntu Linux 9.04正式版发行以来，由于这个版本的评价很高，所以自己也就一直在看Linux的文章，自己对Linux系统的了解不多，一直也没尝试安装体验一下，但是最近看到了YLMF Linux1.0的发布，又对Linux系统有了新的兴趣，了解的愿望，战胜了我不想折腾的心思， 就这样，我开始了Linux系统的使用。 自YLMF Linux 1.0系统发布以来，看了若干关于该系统的评论，了解到也实修改于一发行版（不是Ubuntu Linux），自然很快就下载了下来，看了一下，原来1G多，还真是大啊，刻盘只可以刻DVD的，浪费了点，虽说都是单位的资源，可也没必要这样浪费嘛，所以，找到了Ubuntu Linux 9.04下载了下来，700M以内，CD搞定，虽说第一次安装Linux系统，但是，发行版做的，真是傻瓜的可以，安装极其简单，一切顺利的进入了系统，长久使用Windows系统的人，肯定会想，要是有Windows下的软件的Linux版本就好了，自己也是这样想的，所以就开始了一场折腾，细节不说了，总之，Windows有的，我的Linux也一定得有，习惯了这么多年的Windows系统，不是随便可以改的吧？ 首先遭殃的是闲置的一台DELL D430笔记本电脑，做了回小白鼠，确认一切正常后，接着安装在了我的DELL D630笔记本上，这个本子，主要为我平时网络维护工作中使用，类似Telnet等终端模拟软件之类的常用，测试可用，其他的没发现问题，也就确认可以用她工作，开始折腾其他软件和设置了。下班后，有了一个想法，在浏览一些IT博客时，博主总是说自己在用Ubuntu Linux系统办公生活，我也想试试，哎，干脆，直接将自家台式机也换成了Ubuntu Linux系统，一顿折腾，已经安全的过了一个晚上，我想我得坚持下去，一直用，看我的耐力如何吧？ 我是下了决心要学Linux的，之所以没把单位的台式机换成Linux系统，是因为，我们公司再用的PORTAL系统，是依托微软IE浏览器建立起来的，还了之后，公文的处理，会受到影响，工作第一嘛，暂时放弃了，不过中午在wine中找到了类似的功能，可惜没在PORTAL系统中测试，这个可以日后再说。现在的情况是工作的笔记本是Ubuntu Linux、家里的台式机也是这个，问题正在逐一解决中，用上Ubuntu Linux之后，惊喜不断，好在我还没有被微软彻底洗脑。 Ubuntu Linux：http://www.ubuntu.org.cn/ Ubuntu中文论坛：http://forum.ubuntu.org.cn/ Ubuntu Linux 9.04 originally appeared on THE SIMPLE LIVE @Time began: 2007-08-23 .Powered version of WordPress 3.0. Proposed CHROME browse. 相关日志Ubuntu Linux 桌面分享 (2)<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1170.html">Ubuntu Linux 9.04</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1168" title="ubuntu" src="http://simplelive.org/wp-content/uploads/2009/07/ubuntu.jpg" alt="ubuntu" width="506" height="313" /><img class="aligncenter size-full wp-image-1169" title="main" src="http://simplelive.org/wp-content/uploads/2009/07/main.jpg" alt="main" width="506" height="313" /></p>
<blockquote><p>自Ubuntu Linux 9.04正式版发行以来，由于这个版本的评价很高，所以自己也就一直在看Linux的文章，自己对Linux系统的了解不多，一直也没尝试安装体验一下，但是最近看到了YLMF Linux1.0的发布，又对Linux系统有了新的兴趣，了解的愿望，战胜了我不想折腾的心思， <img src='http://simplelive.org/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' />  就这样，我开始了Linux系统的使用。</p></blockquote>
<blockquote><p>自YLMF Linux 1.0系统发布以来，看了若干关于该系统的评论，了解到也实修改于一发行版（不是Ubuntu Linux），自然很快就下载了下来，看了一下，原来1G多，还真是大啊，刻盘只可以刻DVD的，浪费了点，虽说都是单位的资源，可也没必要这样浪费嘛，所以，找到了Ubuntu Linux 9.04下载了下来，700M以内，CD搞定，虽说第一次安装Linux系统，但是，发行版做的，真是傻瓜的可以，安装极其简单，一切顺利的进入了系统，长久使用Windows系统的人，肯定会想，要是有Windows下的软件的Linux版本就好了，自己也是这样想的，所以就开始了一场折腾，细节不说了，总之，Windows有的，我的Linux也一定得有，习惯了这么多年的Windows系统，不是随便可以改的吧？</p></blockquote>
<blockquote><p>首先遭殃的是闲置的一台DELL D430笔记本电脑，做了回小白鼠，确认一切正常后，接着安装在了我的DELL D630笔记本上，这个本子，主要为我平时网络维护工作中使用，类似Telnet等终端模拟软件之类的常用，测试可用，其他的没发现问题，也就确认可以用她工作，开始折腾其他软件和设置了。下班后，有了一个想法，在浏览一些IT博客时，博主总是说自己在用Ubuntu Linux系统办公生活，我也想试试，哎，干脆，直接将自家台式机也换成了Ubuntu Linux系统，一顿折腾，已经安全的过了一个晚上，我想我得坚持下去，一直用，看我的耐力如何吧？</p></blockquote>
<blockquote><p>我是下了决心要学Linux的，之所以没把单位的台式机换成Linux系统，是因为，我们公司再用的PORTAL系统，是依托微软IE浏览器建立起来的，还了之后，公文的处理，会受到影响，工作第一嘛，暂时放弃了，不过中午在wine中找到了类似的功能，可惜没在PORTAL系统中测试，这个可以日后再说。现在的情况是工作的笔记本是Ubuntu Linux、家里的台式机也是这个，问题正在逐一解决中，用上Ubuntu Linux之后，惊喜不断，好在我还没有被微软彻底洗脑。</p></blockquote>
<blockquote><p>Ubuntu Linux：<a href="http://www.ubuntu.org.cn/" target="_blank">http://www.ubuntu.org.cn/</a></p>
<p>Ubuntu中文论坛：<a href="http://forum.ubuntu.org.cn/" target="_blank">http://forum.ubuntu.org.cn/</a></p></blockquote>
<p><br>
<a href="http://www.vjia.com/WebSource/WebSource.aspx?source=tioner&url=http://www.vjia.com/" target="_blank"><img src="http://union.vjia.com/adpic.aspx?w=560&h=100" border="0" /></a>
<p style="padding:5px;background:#ddd;border:1px solid #ccc;clear:both">
<a href="http://simplelive.org/html/2009/1170.html">Ubuntu Linux 9.04</a> originally appeared on <a title="http://simplelive.org/" href="http://simplelive.org/" target="_blank">THE SIMPLE LIVE</a><br>
@Time began: 2007-08-23 .Powered version of <a title="WordPress.org" href="http://wordpress.org/" target="_blank">WordPress 3.0</a>. Proposed <a title="http://www.google.com/chrome" href="http://www.google.com/chrome" target="_blank">CHROME</a> browse.</p></p>
<h3  class="related_post_title">相关日志</h3><ul class="related_post"><li><a href="http://simplelive.org/html/2009/1177.html" title="Ubuntu Linux 桌面分享">Ubuntu Linux 桌面分享</a> (2)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://simplelive.org/html/2009/1170.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
