<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>緣ːtodayis</title>
<link>http://todayis.net/vSix/index.php</link>
<description>쓸쓰릈ㄹ슬ㄻ</description>
<language>ko</language>
<pubDate>Sat, 27 Feb 2010 21:45:29 +0900</pubDate>
<item>
<title>라데온 HD 4890</title>
<link>http://todayis.net/vSix/index.php?pl=859</link>
<description><![CDATA[ 약 1개월전에 30여만원주고 구입한걸로 기억한다.<br />
<br />
너무 많은 리소스를 잡아먹고 체감성능 또한 만족스럽지 못하다.<br />
<br />
몇만원짜리 지포스 9600GT와 비슷비슷.<br />
<br />
그래서 오늘 쓰레기통에 버려버렸다.]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Sat, 27 Feb 2010 21:35:20 +0900</pubDate>
</item>
<item>
<title>비즈하드 파일유실</title>
<link>http://todayis.net/vSix/index.php?pl=858</link>
<description><![CDATA[ <div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;">ooo 고객님, <br />
파일유실 문제로 인하여 확인이 필요한 파일/폴더 목록은 아래와 같습니다.<br />
(중략...)<br />
해당 파일을 확인하신 다음 삭제 후 재업로드 부탁드립니다. <br />
추후 다음과 같은 문제가 재현되지 않도록 시스템 안정화에 최선을 다하겠습니다.<br />
문의사항은 비즈하드 고객센터(1544-3152)로 연락 주시면 상세히 안내해 드리도록 하겠습니다. <br />
감사합니다.</div><br />
전화해서는 뜬끔없이 복구가 안된다고 떠들어댄다.<br />
<br />
백업은 왜 안한거냐 물었더만. 그런거 없다고 한다.<br />
<br />
최초 가입시 주어지는 1개월 무료기간 및 유료만료 이후의 무료기간에는<br />
<br />
백업도 안되고 안정성 제로의 형편없는 서버로 데이터를 이전시키는듯 하다.<br />
<br />
고객의 소중한 자료를 한방에 깔끔히 날려주는 정성스런 비즈하드.<br />
<br />
진리는. 웹하드.]]></description>
<category>일상다반사</category>
<category>비즈하드</category>
<category>파일유실</category>
<category>복구불가</category>
<author>daydream</author>
<pubDate>Thu, 14 Jan 2010 15:37:12 +0900</pubDate>
</item>
<item>
<title>Vincent Baguerre, Aurelien Baguerre</title>
<link>http://todayis.net/vSix/index.php?pl=856</link>
<description><![CDATA[ Altitudes<br />
<br />
응?]]></description>
<category>일상다반사</category>
<category>vincent baguerre</category>
<category>aurelien baguerre</category>
<category>atmospheric ambient</category>
<category>new age</category>
<author>daydream</author>
<pubDate>Mon, 10 Aug 2009 19:13:20 +0900</pubDate>
</item>
<item>
<title>prototypejs dom:ready 충돌</title>
<link>http://todayis.net/vSix/index.php?pl=855</link>
<description><![CDATA[ <div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;"><b>priority :</b><br />
1. gnginteractive.js.Event.ready<br />
2. jQuery<br />
3. Prototypejs</div><br />
프로토타입은 안쓰려고 했지만.<br />
역시 짬뽕은 곤란하다.<br />
<br />
<div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;"><code>/**<br />
&nbsp;* Support for the DOMContentLoaded event is based on work by Dan Webb,<br />
&nbsp;* Matthias Miller, Dean Edwards and John Resig. <br />
&nbsp;*<br />
&nbsp;* <font color="red">REMOVED</font> BY KIM HYEONG SEOP &lt;HSKIM_AT_GNGINTERACTIVE.COM&gt; @ 2009-06-01<br />
&nbsp;* Caused by <font color="red">clash or conflict</font> with the <font color="red">gnginteractive.js.Event.ready</font><br />
&nbsp;*/<br />
<br />
<font color="#999999">/* (function() {<br />
  var timer;<br />
<br />
  function fireContentLoadedEvent() {<br />
&nbsp;&nbsp; if (document.loaded) return;<br />
&nbsp;&nbsp; if (timer) window.clearInterval(timer);<br />
&nbsp;&nbsp; document.fire("dom:loaded");<br />
&nbsp;&nbsp; document.loaded = true;<br />
  }<br />
<br />
  if (document.addEventListener) {<br />
&nbsp;&nbsp; if (Prototype.Browser.WebKit) {<br />
&nbsp;&nbsp;&nbsp;&nbsp;timer = window.setInterval(function() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;  if (/loaded|complete/.test(document.readyState))<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fireContentLoadedEvent();<br />
&nbsp;&nbsp;&nbsp;&nbsp;}, 0);<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;Event.observe(window, "load", fireContentLoadedEvent);<br />
<br />
&nbsp;&nbsp; } else {<br />
&nbsp;&nbsp;&nbsp;&nbsp;document.addEventListener("DOMContentLoaded",<br />
&nbsp;&nbsp;&nbsp;&nbsp;  fireContentLoadedEvent, false);<br />
&nbsp;&nbsp; }<br />
<br />
  } else {<br />
&nbsp;&nbsp; document.write("&lt;script id=__onDOMContentLoaded defer src=//:gt;&lt;\/script&gt;");<br />
&nbsp;&nbsp; $("__onDOMContentLoaded").onreadystatechange = function() {<br />
&nbsp;&nbsp;&nbsp;&nbsp;if (this.readyState == "complete") {<br />
&nbsp;&nbsp;&nbsp;&nbsp;  this.onreadystatechange = null;<br />
&nbsp;&nbsp;&nbsp;&nbsp;  fireContentLoadedEvent();<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp; };<br />
  }<br />
})(); */</font></code></div>]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Sun, 09 Aug 2009 18:49:43 +0900</pubDate>
</item>
<item>
<title>access iframe @ jquery with prototypejs</title>
<link>http://todayis.net/vSix/index.php?pl=854</link>
<description><![CDATA[ <code>jQuery.noConflict();<br />
<br />
var $j = jQuery;<br />
<br />
function uploadAttachFile()<br />
{<br />
&nbsp;&nbsp; //todo<br />
}<br />
<br />
function setAttachMode(attachMode)<br />
{<br />
&nbsp;&nbsp; //todo<br />
}<br />
<br />
function addUploadIframeButton(attachMode)<br />
{<br />
&nbsp;&nbsp; var attIfrbtn = $('file_click_iframe');<br />
<br />
&nbsp;&nbsp; $j(attIfrbtn).ready(function()<br />
&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp;&nbsp;  var attIfrbtnWin = attIfrbtn.contentWindow;<br />
&nbsp;&nbsp;&nbsp;&nbsp;  var attIfrbtnDoc = attIfrbtnWin.document;<br />
&nbsp;&nbsp;&nbsp;&nbsp;  var bodyCss = <br />
&nbsp;&nbsp;&nbsp;&nbsp;  {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;margin:'0 0 0 0', <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;padding:'0 0 0 0', <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fontSize:'12px',<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;backgroundColor:'#fff'<br />
&nbsp;&nbsp;&nbsp;&nbsp;  };<br />
&nbsp;&nbsp;&nbsp;&nbsp;  var btnHtml = '&lt;img src="/images/btn_add.gif" ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp; border="0" ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp; align="middle" ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp; style="cursor:pointer;" ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp; onclick="parent.$(\'attach\').click(); ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;parent.setAttachMode(' + attachMode + '); ' +<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;parent.uploadAttachFile();" /&gt;';<br />
<br />
<br />
&nbsp;&nbsp;&nbsp;&nbsp;  $j(attIfrbtnDoc).find('body').css(bodyCss).html(btnHtml);<br />
&nbsp;&nbsp; });<br />
<br />
&nbsp;&nbsp; /*<br />
&nbsp;&nbsp; // 성공 1 !!<br />
&nbsp;&nbsp; var attIfrbtn = $('file_click_attIfrbtname');<br />
&nbsp;&nbsp; var attIfrbtnDoc = attIfrbtn.contentWindow.document;<br />
&nbsp;&nbsp; alert( attIfrbtnDoc.getElementById );<br />
&nbsp;&nbsp; alert( $j(attIfrbtnDoc).find('body').html() );<br />
<br />
&nbsp;&nbsp; // 성공 2 !!<br />
&nbsp;&nbsp; var attIfrbtn = $('file_click_attIfrbtname');<br />
&nbsp;&nbsp; $j(attIfrbtn).ready(function()<br />
&nbsp;&nbsp; {<br />
&nbsp;&nbsp;&nbsp;&nbsp;  var attIfrbtnDoc = attIfrbtn.contentWindow.document;<br />
&nbsp;&nbsp;&nbsp;&nbsp;  alert( attIfrbtnDoc.getElementById );<br />
&nbsp;&nbsp;&nbsp;&nbsp;  alert( $j(attIfrbtnDoc).find('body').html() );<br />
&nbsp;&nbsp; });<br />
&nbsp;&nbsp; */<br />
}</code>]]></description>
<category>자바스크립트</category>
<category>$프로그래밍</category>
<author>daydream</author>
<pubDate>Tue, 28 Jul 2009 22:45:55 +0900</pubDate>
</item>
<item>
<title>Jetbrains IntelliJ IDEA v9 EAP</title>
<link>http://todayis.net/vSix/index.php?pl=851</link>
<description><![CDATA[ 메이저 버전업 될때마다 기대치가 꽤나 컸었고 결과 또한 만족스러웠다.<br />
<br />
하지만 EAP 릴리즈 노트엔 그다지 눈에 들어올만한 항목은 없다.<br />
<br />
쓸데없이 구성요소 버전업은 하지말고 편의성과 안정성에 보다 중점을 두었으면 한다.<br />
<br />
플러그인도 그렇고...<br />
<br />
그래도 파일명 길고 버그도 많고 파일도 많은 이클립스보단 좋다.<br />
<br />
^^*]]></description>
<category>일상다반사</category>
<category>intellij</category>
<category>idea</category>
<author>daydream</author>
<pubDate>Mon, 29 Jun 2009 21:59:56 +0900</pubDate>
</item>
<item>
<title>ERwin r7.3.3</title>
<link>http://todayis.net/vSix/index.php?pl=850</link>
<description><![CDATA[ 버그 짱이다<br />
<br />
돌아버린다 진짜룽^^<br />
<br />
이건 뭐 나타났다 사라졌다 지워졌다 옮겨졌다 난리두 아니다<br />
<br />
7.3.4 패치가 올라왔던데 일단 함 깔아나보자<br />
<br />
궁시렁 궁시렁<br />
<br />
------------------------------------------------------------<br />
<br />
7.3.4 버전도 마찬가지]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Fri, 19 Jun 2009 19:25:03 +0900</pubDate>
</item>
<item>
<title>로스팅 - 코스타리카 스프링밸리 마운틴 SHB</title>
<link>http://todayis.net/vSix/index.php?pl=849</link>
<description><![CDATA[ 컨벡션 켜고 230도에서 20분.<br />
<br />
신맛과 쓴맛이 가까이 느껴진다.<br />
<br />
컨벡션 켜고 230도에서 25분.<br />
<br />
끝맛이 사라진듯 밍밍하다.<br />
<br />
전체적으로 깔끔하고 싱겁고 씁쓸함.<br />
<br />
초보의 길은 멀고도 험하다.<br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505055856906719/583832.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505055856906719/861662.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center>]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:58:56 +0900</pubDate>
</item>
<item>
<title>로스팅 - 도미니카 라미레즈</title>
<link>http://todayis.net/vSix/index.php?pl=848</link>
<description><![CDATA[ 컨벡션 켜고 230도에서 25분.<br />
<br />
12~14분쯤에 가벼운 1차팝핑.<br />
<br />
그리고 20분 후부터 시끄럽게.<br />
<br />
첨 듣는 커피라 사봤다.<br />
<br />
잘 모르겠다ㅋ<br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505054218933362/840237.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505054218933362/398540.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center>]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:42:18 +0900</pubDate>
</item>
<item>
<title>로스팅 - 과테말라 안티구아 SHB</title>
<link>http://todayis.net/vSix/index.php?pl=846</link>
<description><![CDATA[ 문 조금열고 컨벡션 켜고 230도에서 30분.<br />
<br />
너무 볶았다ㅋ 쪼메 스모키함..<br />
<br />
문 조금열고 컨벡션 켜고 230도 20분 + 100도 10분.<br />
<br />
보기에도 먹기에도 딱 적당해 보인다.<br />
<br />
20분쯤 지나서는 2차팝핑 소리에 상당히 시끄러워진다.<br />
<br />
항상 딴짓하느라 1차 시기는 매번 못듣는다.<br />
<br />
근데 난 이 커피가 싫다.<br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505052643295781/993926.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505052643295781/603726.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center>]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:26:43 +0900</pubDate>
</item>
<item>
<title>로스팅 - 탄자니아 킬리만자로 AA</title>
<link>http://todayis.net/vSix/index.php?pl=843</link>
<description><![CDATA[ 내용 정리되면 다시 올림]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:24:45 +0900</pubDate>
</item>
<item>
<title>로스팅 - 인도네시아 만델링 G1</title>
<link>http://todayis.net/vSix/index.php?pl=840</link>
<description><![CDATA[ 커피에서 개기름이 좔좔<br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505051204379603/664145.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505051204379603/181479.png" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center>]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:12:04 +0900</pubDate>
</item>
<item>
<title>원두커피 홈로스팅 &amp; 에스프레소</title>
<link>http://todayis.net/vSix/index.php?pl=839</link>
<description><![CDATA[ 오븐으로 볶았더니.. 맛은 그닥<br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505051200253171/463310.jpg" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505051200253171/868430.jpg" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center><br />
<br />
<center><table><tr><td><center><img src="http://todayis.net/vSix/attach/0505/090505051200253171/969994.jpg" width="600" height="450" alt=""></center></td></tr><tr><td class=cap1></td></tr></table></center>]]></description>
<category>원두커피</category>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Tue, 05 May 2009 05:12:00 +0900</pubDate>
</item>
<item>
<title>썬을 인수한 오라클, 오픈소스 자산 복병</title>
<link>http://todayis.net/vSix/index.php?pl=837</link>
<description><![CDATA[ <table align=left><tr><td style=padding-right:5><center><img src="http://todayis.net/vSix/attach/0425/090425113912237527/030151.jpg" width="247" height="137" alt=""></center></td></tr><tr><td class=cap1></td></tr></table>- 기존 자산들과 달리 기술관련 커뮤니티 유지 중요<br />
- 경쟁 소프트웨어 잠식 차원 `유력`..균형잡힌 운용 열쇠<br />
<br />
<a href="http://news.naver.com/main/read.nhn?mode=LS2D&mid=sec&sid1=105&sid2=230&oid=018&aid=0002100318" target="_blank">기사내용보기</a>]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Sat, 25 Apr 2009 11:39:12 +0900</pubDate>
</item>
<item>
<title>오라클, 선마이크로시스템즈 79억달러에 인수</title>
<link>http://todayis.net/vSix/index.php?pl=836</link>
<description><![CDATA[ <table align=left><tr><td style=padding-right:5><center><img src="http://todayis.net/vSix/attach/0421/090421231644600818/702742.jpg" width="185" height="137" alt=""></center></td></tr><tr><td class=cap1></td></tr></table>오라클이 썬마이크로시스템즈 인수를 선언하자 '이변이 연출됐다'는 반응이 지배적이다.SW사업만 삼켰다면 그럴만했다고 볼 수 있겠느나 통째로 먹었다는 점에서 '쇼킹했다'는 얘기까지 나왔다. '강심장'으로 알려진 스티브 발머 마이크로소프트(MS) 회장이 순간적으로 할말을 잃었을 정도다. 그만큼 오라클의 썬 인수는 쉽게 예상하지 못한 결과물이었다. <br />
<br />
오라클의 썬 인수에 대한 전체적인  반응은 합리적인 선택이란 것과 무리수였다는 것으로 엇갈리고 있다. 긍정론과 회의론이 맞선 형국이다.<br />
<br />
오라클이 74억달러란 거액을 들여 썬을 인수하는데는 그럴만한 이유가 있을 것이다. <br />
<br />
두가지 키워드가 눈에 띈다. 하나는 '시스템'이고 다른 하나는 자바다.<br />
<br />
<a href="http://www.zdnet.co.kr/ArticleView.asp?artice_id=20090421170655" target="_blank">기사내용보기</a>]]></description>
<category>일상다반사</category>
<category>오라클</category>
<category>썬</category>
<category>솔라리스</category>
<category>자바</category>
<author>daydream</author>
<pubDate>Tue, 21 Apr 2009 23:16:44 +0900</pubDate>
</item>
<item>
<title>Internet Explorer 8 정식 릴리즈</title>
<link>http://todayis.net/vSix/index.php?pl=835</link>
<description><![CDATA[ 허나 IE의 고질병인 프리징 현상은 예나 지금이나 여전하다.<br />
<br />
그래도 느려터진 7보단 낫다.<br />
<br />
호환성이야 뭐 시간이 해결해줄 문제이고...]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Mon, 20 Apr 2009 20:15:49 +0900</pubDate>
</item>
<item>
<title>Enigma - Sleep</title>
<link>http://todayis.net/vSix/index.php?pl=831</link>
<description><![CDATA[ 아래 동영상 재생전에 ESC 한번 눌러주는 센스<br />
<br />
<center><object width="445" height="364"><param name="movie" value="http://www.youtube.com/v/lxBsmJULngo&hl=ko&fs=1&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lxBsmJULngo&hl=ko&fs=1&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="445" height="364"></embed></object></center>]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Sun, 12 Apr 2009 04:11:02 +0900</pubDate>
</item>
<item>
<title>Fujitsu OmniPass 지문인식 유틸리티</title>
<link>http://todayis.net/vSix/index.php?pl=827</link>
<description><![CDATA[ 후지쯔 자료실에는 OmniPass의 다운로드를 제공하지 않는다. (업데이트만 있음)<br />
<br />
그래서 XNOTE의 것을 받아 설치...<br />
<br />
<a href="http://www.lge.co.kr/search_b2c/searchMain.jsp?kwd=OmniPass&pageNum=1&category=SUPPORT&categoryPrd=&prd1Count=0&prd2Count=0&prd3Count=0&categorySupport=SUPPORT4&support1Count=0&support2Count=0&support3Count=0&support4Count=10&support5Count=0&categoryInfo=&info1Count=0&info2Count=0&info3Count=0&categoryCompany=&company1Count=0&company2Count=0&company3Count=0&categoryCommunity=&community1Count=0&categoryMedia=&media1Count=0&media2Count=0&categoryBest4u=&best4u1Count=0&categorySetSample=&setsample1Count=0&reSrchFlag=false&brandCd=XNOTE&detailFlag=false&mCtgrID=&orderMethod=&sCtgrID=&spec1=&spec2=&spec3=&spec4=&spec5=&spec6=&specOX=&catdepth=TOTAL&preKwd=OmniPass" target="_blank">XNOTE용 OmniPass 프로그램 검색</a>]]></description>
<category>일상다반사</category>
<author>todayis</author>
<pubDate>Fri, 06 Feb 2009 02:40:15 +0900</pubDate>
</item>
<item>
<title>error while loading shared libraries : libresolv.so.2</title>
<link>http://todayis.net/vSix/index.php?pl=826</link>
<description><![CDATA[ <b>OS정보</b><br />
<br />
운영체제  Cent OS 5.2<br />
커널버젼: 2.6.18<br />
<br />
===============================================================================================<br />
<br />
<b>증상</b><br />
<br />
부팅할때도 빨간글씨가 많이 보이고 이런저런 명령어 날려도 에러가 많이 보인다..<br />
<br />
<div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;"># startx<br />
<br />
<br />
eth0 인터페이스 활성화중<br />
[OK]<br />
<br />
<br />
auditd 시작중: auditd: error while loading shared libraries: libpthread.so.0<br />
: cannot open shared object: No such file or directory <br />
[실패]<br />
<br />
<br />
restorecond 시작중: /usr/sbin/restorecond: libselinux.so.1<br />
: failed to map segment from shared object: Permission denied <br />
[실패]<br />
<br />
<br />
시스템 기록 시작중: syslogd: error while loading shared libraries: libc.so.6<br />
: cannot open shared object: No such file or directory <br />
[실패]<br />
<br />
<br />
irqbalance 시작중: irqbalance: error while loading shared libraries: libglib-2.0.so.0<br />
: cannot open shared object: No such file or directory <br />
[실패]<br />
<br />
<br />
mcstransd 시작중: mcstransd: error while loading shared libraries: libselinux.so.1<br />
: cannot open shared object: No such file or directory <br />
[실패]<br />
<br />
<br />
portmap 시작중: portmap: error while loading shared libraries: libnsl.so.1<br />
: cannot open shared object: No such file or directory <br />
[실패]</div><br />
등등...<br />
<br />
<div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;"># /etc/init.d/network restart<br />
<br />
<br />
인터페이스 eth0 종료중 <br />
[OK]<br />
<br />
<br />
loopback 인터페이스 종료중 <br />
[OK]<br />
<br />
<br />
loopback 인터페이스 활성화중: arping: error while loading shared libraries: libresolv.so.2<br />
: cannot open shared object: No such file or directory <br />
[OK]<br />
<br />
<br />
eth0 인터페이스 활성화중: arping: error while loading shared libraries: libresolv.so.2<br />
: cannot open shared object: No such file or directory<br />
에러발생, 다른 호스트에서 192.168.0.200을 사용하고 있음 <br />
[실패]</div><br />
<div style="padding:10; background-color:#F0F0F0; font-family:courier new; font-size:11px; letter-spacing:-1px;"># ping 192.168.0.100<br />
<br />
<br />
ping: error while loading shared libraries: libresolv.so.2<br />
: cannot open shared object: No such file or directory</div><br />
등등..<br />
<br />
===============================================================================================<br />
<br />
<b>해결</b><br />
<br />
<span style="color:#FFFFFF;background-color:#0000FF;padding:3 1 0 1">12시간동안 삽질했다. 난 이에 대한 해답을 찾기위해 영등포역 노숙자 김모씨를 찾아가 물었보려 했지만... ㅁㄹ아ㅣㅁ라ㅣ어 결론은 selinux가 강제로 잡혀있어서 그런거다. 원격에서 쉘로 setup을 하면 설정창이 깨져보이는데 그때 아마도 selinux가 켜졌던게 아닐까 생각된다. 끄니깐 잘 돌아간다. c8</span>]]></description>
<category>$운영체제</category>
<author>daydream</author>
<pubDate>Tue, 03 Feb 2009 16:54:44 +0900</pubDate>
</item>
<item>
<title>ASP.NET RadioButton Control</title>
<link>http://todayis.net/vSix/index.php?pl=825</link>
<description><![CDATA[ 참견할일은아니지만<br />
<br />
백번천번생각해봐도<br />
<br />
<b>불편하다</b>]]></description>
<category>일상다반사</category>
<author>daydream</author>
<pubDate>Mon, 02 Feb 2009 02:33:48 +0900</pubDate>
</item>
</channel>
</rss>