<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom">
   <title type="text">Mummer&apos;s Story</title>
      <subtitle type="html">올바르게, 생각하고, 판단하고, 실천하라.</subtitle>
      <updated>2012-02-23T14:18:21+09:00</updated>
   <id>http://mummer.kr/index.php?module=rss&amp;act=atom</id>
   <link rel="alternate" type="text/html" hreflang="ko" href="http://www.mummer.kr/"/>
   <link rel="self" type="application/atom+xml" href="http://mummer.kr/index.php?module=rss&amp;act=atom"/>
   <generator uri="http://www.xpressengine.com/" version="1.5.1.3">XpressEngine</generator>
   <entry>
      <title>입춘..</title>
      <id>http://mummer.kr/2510</id>
      <published>2012-02-04T01:19:10+09:00</published>
      <updated>2012-02-04T01:19:31+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2510"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2510#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <summary type="text">
아직 차가운 눈바람 날리지만,오늘 뉴스는 입춘을 알려왔다.</summary>
                  
   </entry>
   <entry>
      <title>[자이언트] 2012 SCR2</title>
      <id>http://mummer.kr/2492</id>
      <published>2012-01-16T20:17:23+09:00</published>
      <updated>2012-01-17T00:27:47+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2492"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2492#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <summary type="text">


&amp;nbsp;
자이언트 &apos;2012 SCR2- 2011년형 SCR3가 2012년형 SCR2로 명칭이 변경.&amp;nbsp;* GIANT SCR ALUX...</summary>
                  
   </entry>
   <entry>
      <title>BMC-SR02</title>
      <id>http://mummer.kr/2483</id>
      <published>2012-01-15T10:09:01+09:00</published>
      <updated>2012-01-15T10:09:01+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2483"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2483#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <summary type="text">


</summary>
                  
   </entry>
   <entry>
      <title>2012.01.15</title>
      <id>http://mummer.kr/2474</id>
      <published>2012-01-15T02:32:24+09:00</published>
      <updated>2012-01-15T02:32:24+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2474"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2474#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <summary type="text">



</summary>
                  
   </entry>
   <entry>
      <title>[우분투]DNS 서버 설치 - Bind9</title>
      <id>http://mummer.kr/2440</id>
      <published>2012-01-11T17:38:21+09:00</published>
      <updated>2012-01-15T01:09:05+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2440"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2440#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;div style=&quot;FONT-SIZE: 9pt&quot; id=&quot;espresso_editor_view&quot;&gt;우분투 리눅스에서 Bind 로 DNS 서버 구축하는 방법입니다.&lt;br /&gt;
&lt;br /&gt;&lt;strong&gt;- Bind 설치&lt;/strong&gt;&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@ruo91 ~]# sudo apt-get install bind9&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;strong&gt;- Bind 설정&lt;/strong&gt;&lt;br /&gt;
- named.conf 설정&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@ruo91 ~]# vi /etc/bind/named.conf&lt;br /&gt;
// 옵션 파일을 불러옵니다.&lt;br /&gt;
include &quot;/etc/bind/named.conf.options&quot;;&lt;br /&gt;
// root 도메인의 정보를 가지고 있는 파일을 지정 해줍니다.&lt;br /&gt;
zone &quot;.&quot; {&lt;br /&gt;
type hint;&lt;br /&gt;
file &quot;/etc/bind/db.root&quot;;&lt;br /&gt;
};&lt;br /&gt;
//----------------------------------------------//&lt;br /&gt;
// 네임 서버로 사용할 도메인을 지정 해줍니다.&lt;br /&gt;
zone &quot;ns.yongbok.com&quot; IN {&lt;br /&gt;
type master;&lt;br /&gt;
file &quot;/etc/bind/db-yongbok&quot;;&lt;br /&gt;
};&lt;br /&gt;
zone &quot;yongbok.com&quot; IN {&lt;br /&gt;
type master;&lt;br /&gt;
file &quot;/etc/bind/db-yongbok&quot;;&lt;br /&gt;
};&lt;br /&gt;
//----------------------------------------------//&lt;br /&gt;
// 리버스 도메인을 설정 합니다.&lt;br /&gt;
// 서버의 아이피 주소를 반대로 적어 주시면 됩니다.&lt;br /&gt;
zone &quot;167.41.116.in-addr.arpa&quot; {&lt;br /&gt;
type master;&lt;br /&gt;
file &quot;/etc/bind/ip-yongbok&quot;;&lt;br /&gt;
};&lt;br /&gt;
zone &quot;0.0.127.in-addr.arpa&quot; {&lt;br /&gt;
type master;&lt;br /&gt;
file &quot;/etc/bind/loopback-yongbok&quot;;&lt;br /&gt;
};&lt;br /&gt;
include &quot;/etc/bind/named.conf.local&quot;;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
- Inverse Zone 파일 생성&lt;br /&gt;
인버스 존파일은 아이피 주소를 문자로 변환 해주는 역할을 담당 합니다.&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@ruo91 ~]# vi /etc/bind/db-yongbok&lt;br /&gt;
; Inverse Zone&lt;br /&gt;
$TTL 604800&lt;br /&gt;
@ IN SOA ns.yongbok.com. root.yongbok.com. (&lt;br /&gt;
2009052723 ; Serial&lt;br /&gt;
604800 ; Refresh&lt;br /&gt;
86400 ; Retry&lt;br /&gt;
2419200 ; Expire&lt;br /&gt;
604800 ) ; Negative Cache TTL&lt;br /&gt;
;&lt;br /&gt;
@ IN NS ns.yongbok.com.&lt;br /&gt;
A 116.41.167.x&lt;br /&gt;
www A 116.41.167.x&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
- Revers Zone 파일 생성&lt;br /&gt;
리버스 존파일은 문자로된 도메인 주소를 아이피로 변환 해주는 역할을 담당합니다.&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@ruo91 ~]# vi /etc/bind/ip-yongbok&lt;br /&gt;
; Revers Zone&lt;br /&gt;
$TTL 604800&lt;br /&gt;
@ IN SOA ns.yongbok.com. root.yongbok.com. (&lt;br /&gt;
2009052723 ; Serial&lt;br /&gt;
604800 ; Refresh&lt;br /&gt;
86400 ; Retry&lt;br /&gt;
2419200 ; Expire&lt;br /&gt;
86400 ) ; Minimum&lt;br /&gt;
;&lt;br /&gt;
@ IN NS ns.yongbok.com.&lt;br /&gt;
5 PTR yongbok.com&lt;br /&gt;
5 PTR www.yongbok.com&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
루프백 리버스 존파일도 만들어 줍니다.&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@ruo91 ~]# vi /etc/bind/loopback-yongbok&lt;br /&gt;
; Loopback zone file&lt;br /&gt;
$TTL 604800&lt;br /&gt;
@ IN SOA ns.yongbok.com. root.yongbok.com. (&lt;br /&gt;
2009052723 ; Serial&lt;br /&gt;
604800 ; Refresh&lt;br /&gt;
86400 ; Retry&lt;br /&gt;
2419200 ; Expire&lt;br /&gt;
86400 ) ; Minimum&lt;br /&gt;
;&lt;br /&gt;
@ IN NS ns.yongbok.com.&lt;br /&gt;
1 PTR localhost.&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;strong&gt;- BIND 재시작&lt;/strong&gt;&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@yongbok ~]# /etc/init.d/bind9 restart&lt;br /&gt;
* Stopping domain name service... bind [ OK ]&lt;br /&gt;
* Starting domain name service... bind [ OK ]&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;strong&gt;- 도메인 정보 확인&lt;/strong&gt;&lt;br /&gt;
nslookup 명령어로 DNS 서버 정보를 확인 합니다.&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@yongbok ~]# nslookup www.yongbok.com&lt;br /&gt;
Server: 168.126.63.1&lt;br /&gt;
Address: 168.126.63.1#53&lt;br /&gt;
&lt;br /&gt;Non-authoritative answer:&lt;br /&gt;
Name: www.yongbok.net&lt;br /&gt;
Address: 116.41.167.x&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
dig 명령어로 확인&lt;br /&gt;

&lt;blockquote class=&quot;quote03&quot;&gt;[root@yongbok ~]# dig ns.yongbok.net NS&lt;br /&gt;
&lt;br /&gt;; &amp;lt;&amp;lt;&amp;gt;&amp;gt; DiG 9.6.1-P1 &amp;lt;&amp;lt;&amp;gt;&amp;gt; ns.yongbok.net NS&lt;br /&gt;
;; global options: +cmd&lt;br /&gt;
;; Got answer:&lt;br /&gt;
;; -&amp;gt;&amp;gt;HEADER&amp;lt;&amp;lt;- opcode: QUERY, status: NOERROR, id: 61983&lt;br /&gt;
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1&lt;br /&gt;
&lt;br /&gt;;; QUESTION SECTION:&lt;br /&gt;
;ns.yongbok.net. IN NS&lt;br /&gt;
&lt;br /&gt;;; ANSWER SECTION:&lt;br /&gt;
ns.yongbok.net. 10 IN NS ns.yongbok.net.&lt;br /&gt;
&lt;br /&gt;;; ADDITIONAL SECTION:&lt;br /&gt;
ns.yongbok.net. 10 IN A 116.41.167.x&lt;br /&gt;
&lt;br /&gt;;; Query time: 5 msec&lt;br /&gt;
;; SERVER: 127.0.0.1#53(127.0.0.1)&lt;br /&gt;
;; WHEN: Wed May 26 18:35:04 2010&lt;br /&gt;
;; MSG SIZE rcvd: 62&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;a style=&quot;COLOR: rgb(0,0,255)&quot; href=&quot;http://ubuntu.or.kr/wiki/doku.php/%EB%84%A4%EC%9E%84%EC%84%9C%EB%B2%84&quot; target=&quot;_blank&quot;&gt;&lt;u&gt;http://ubuntu.or.kr/wiki/doku.php/네임서버&lt;/u&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]Ubuntu 10.04 APM서버 구축</title>
      <id>http://mummer.kr/2439</id>
      <published>2012-01-11T16:46:40+09:00</published>
      <updated>2012-01-12T16:02:23+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2439"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2439#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;br /&gt;
1.APACHE 설치&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo apt-get install apache2&lt;br /&gt;
&lt;/DIV&gt;아파치 설정&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo vi /etc/apache2/apache2.conf&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;br /&gt;2. Mysql 서버,클라이언트 설치&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo apt-get install mysql-server mysql-client&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;br /&gt;3. PHP설치&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo pat-get install php5 libapache2-mod-php5&lt;br /&gt;
&lt;/DIV&gt;설치후 아파치 재시작&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo /etc/init.d/apache2 restart&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;br /&gt;4. APM작동 테스트&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo vi /var/www/info.php&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&amp;lt;?php&lt;br /&gt;
phpinfo();&lt;br /&gt;
?&amp;gt;&lt;/DIV&gt;&lt;/DIV&gt;WQ 로 저장후 vi닫기&lt;br /&gt;
브라우저에서 호출(ex:&lt;A href=&quot;http://localhost/info.php&quot;&gt;http://localhost/info.php&lt;/A&gt; )&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
5. PHP-Mysql 연동&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl&lt;br /&gt;
&lt;/DIV&gt;설치후 아파치 재시작&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo /etc/init.d/apache2 restart&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;br /&gt;6. PhpMyadmin 설치&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;FONT style=&quot;BACKGROUND-COLOR: #ffffff&quot;&gt;sudo apt-get install phpmyadmin&lt;/FONT&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;P&gt;설치과정중에 질의창이 나오면 방향키와 spacce를 이용하여 아래와 같이 설정&lt;br /&gt;
&lt;br /&gt;Web server to reconfigure automatically : &amp;lt;--- &lt;STRONG&gt;[*] apache2&lt;/STRONG&gt;&lt;br /&gt;
Configure database fo phpmyadmin with dbconfig-common? &amp;lt;--- &lt;STRONG&gt;No&lt;br /&gt;
&lt;br /&gt;&lt;/STRONG&gt;아파치에 PhpMyadmin 사용 설정&lt;br /&gt;
&lt;/P&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo vi /etc/apache2/apache2.conf&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;Include /etc/phpmyadmin/apache.conf&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;vi 맨 마지막열에 [Include /etc/phpmyadmin/apache.conf] 삽입후 저장.&lt;br /&gt;
&lt;br /&gt;설치후 아파치 재시작&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo /etc/init.d/apache2 restart&lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
PhpMyadmin 접속&lt;br /&gt;
htpp://localhost/phpmyadmin&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]apt-get 서버 교체</title>
      <id>http://mummer.kr/2438</id>
      <published>2012-01-11T16:10:25+09:00</published>
      <updated>2012-01-12T16:02:23+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2438"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2438#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;우분투 국내 카이스트 서버는 자주 다운현상이 있으므로 다운시에 서버를 교체해줄수 있다.&lt;br /&gt;
&lt;br /&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #c1c1c1 1px dashed; BORDER-LEFT: #c1c1c1 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #eeeeee; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px dashed; BORDER-RIGHT: #c1c1c1 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;sudo&amp;nbsp;vi /etc/apt/sources.list &lt;br /&gt;
&lt;/DIV&gt;&lt;br /&gt;
&lt;SPAN style=&quot;WIDTH: 1px; FLOAT: right; HEIGHT: 1px&quot; id=callbacknesttimectistorycom356161&gt;&lt;/SPAN&gt;&lt;br /&gt;
에서 현재 서버주소를 원하는 서버주소로 교체&lt;br /&gt;
&lt;br /&gt;[국내서버]&lt;br /&gt;
&lt;U&gt;&lt;FONT color=#5c7fb0&gt;&lt;FONT size=+0&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;http://ftp.daum.net/ubuntu&lt;/SPAN&gt;&lt;/FONT&gt;&lt;br /&gt;
&lt;/FONT&gt;&lt;/U&gt;&lt;A href=&quot;http://kr.archive.ubuntu.com/ubuntu&quot;&gt;&lt;U&gt;&lt;FONT color=#5c7fb0&gt;&lt;SPAN style=&quot;FONT-SIZE: 10pt&quot;&gt;http://kr.archive.ubuntu.com/ubuntu&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]우분투10.04+SDK15</title>
      <id>http://mummer.kr/2437</id>
      <published>2011-12-27T23:42:09+09:00</published>
      <updated>2012-01-12T16:02:23+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2437"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2437#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;소프트웨어소스&lt;br /&gt;
추가 : ppa:ferramroberto/java&lt;br /&gt;
&lt;br /&gt;시냅틱관리자&lt;br /&gt;
출처 &amp;gt; LP-PPA &amp;gt; sun-java6-bin, sun-java6-jdk, sun-java6-jre, sun-java6-plugin 선택 및 적용&lt;br /&gt;
&lt;br /&gt;JAVA적용&lt;br /&gt;
터미널 &amp;gt; sudo update-alternatives --config java &amp;gt; &apos;java-6-sun&apos; [*]표시 확인&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
SDK다운로드&lt;br /&gt;
안드로이드SDK : http://developer.android.com/sdk/index.html&lt;br /&gt;
&lt;br /&gt;SDK압축해제&lt;br /&gt;
HOME폴더 위치&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;/android-sdk-linux/tools&apos;경로에 &apos;android&apos;파일을 실행&lt;br /&gt;
옵션 &amp;gt; &apos;Force http;s://...sources to be fetched using http://...&apos;을 선택하고 Close&lt;br /&gt;
&lt;br /&gt;&lt;ol style=&quot;list-style-type: decimal;&quot;&gt;
&lt;li&gt;Android SDk Platform-tools&lt;/li&gt;
&lt;li&gt;Android 2.3.3 (API10)&lt;/li&gt;
&lt;li&gt;Extras&lt;/li&gt;
&lt;li&gt;그밖에 필요한 것들&lt;/li&gt;
&lt;/ol&gt;선택후 설치&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;전원이 켜진 스마트폰을 USB로 연결한 상태에서 &apos;~/android-sdk-linux/platform-tools&apos;로 이동해서 다음 명령어를 입력&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;border: 1px dashed rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
$ ./adb devices&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
여기서 세가지 경우가 발생할 수 있음&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;1. &apos;List of devices attached&apos;라고 표시되고 아래에 장치의 시리얼 넘버도 표시되는 경우&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;
&lt;img src=&quot;http://cfile3.uf.tistory.com/image/18753D334ED8FB8304F2CF&quot; alt=&quot;&quot; height=&quot;102&quot; width=&quot;493&quot;&gt;&lt;/div&gt;
&lt;br /&gt;모든 설치가 완료된 상태입니다.&lt;br /&gt;
하지만 아마도 밑에 2,3번의 경우가 나올 것입니다.&lt;br /&gt;
&lt;br style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;2. &apos;bash: ./adb: 그런 파일이나 디렉터리가 없습니다.&apos;의 경우&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;
&lt;img src=&quot;http://cfile27.uf.tistory.com/image/201CBC474ED8F8E11A261E&quot; alt=&quot;&quot; style=&quot;cursor: pointer;&quot; height=&quot;40&quot; width=&quot;500&quot;&gt;&lt;/div&gt;
&lt;br /&gt;위의 경우에는 아래의 명령어로 다음 패키지를 설치한 후 재시도 합니다.&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;border: 1px dashed rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
$ sudo apt-get install ia32-libs&lt;br style=&quot;font-weight: bold;&quot;&gt;&lt;/div&gt;
&lt;br style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;3. &apos;List of devices attached&apos;라고 표시되지만 아래 아무것도 표시되지 않는 경우&lt;/span&gt;&lt;br style=&quot;font-weight: bold;&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/1344463B4ED8FAE41AB86C&quot; alt=&quot;&quot; height=&quot;98&quot; width=&quot;486&quot;&gt;&lt;/div&gt;
&lt;br /&gt;이 경우에는 USB장치에 대한 설정을 해야 합니다.&lt;br /&gt;
&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); text-align: center; clear: both;&quot;&gt;
&lt;img src=&quot;http://cfile5.uf.tistory.com/image/2044FB424E2E3887214A33&quot; alt=&quot;&quot; style=&quot;border-width: 0px; cursor: pointer;&quot; height=&quot;67&quot; width=&quot;500&quot;&gt;&lt;/div&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(238, 238, 238); border: 1px dashed rgb(193, 193, 193); padding: 10px;&quot;&gt;
$ sudo gedit /etc/udev/rules.d/51-android.rules&lt;br /&gt;
&lt;/div&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;위의 명령어로 &apos;/etc/udev/rules.d/&apos;디렉토리에 &apos;51-android.rules&apos;란 파일이 생성되고 gedit가 실행됩니다.&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); text-align: center; clear: both;&quot;&gt;
&lt;img src=&quot;http://cfile2.uf.tistory.com/image/115A114C4E2E3A7D2BAC70&quot; alt=&quot;&quot; style=&quot;border-width: 0px; cursor: pointer;&quot; height=&quot;145&quot; width=&quot;500&quot;&gt;&lt;/div&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(238, 238, 238); border: 1px dashed rgb(193, 193, 193); padding: 10px;&quot;&gt;
SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;####&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;&lt;br /&gt;
&lt;/div&gt;&lt;br style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&amp;nbsp;&apos;ATTR{idVendor}==&quot;####&quot;&apos;에서 #부분에는 각 제조사별 ID&lt;br /&gt;
&lt;/p&gt;위의 경우는 HTC의 ID이고 아래에 다른 제조사별 ID&lt;br /&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;table style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); border-collapse: collapse;&quot; width=&quot;600&quot; bgcolor=&quot;#ffffff&quot; cellpadding=&quot;1&quot; cellspacing=&quot;1&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;제조사&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;USB Vendor ID&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;제조사&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;USB Vendor ID&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Acer&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0502&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;NEC&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0409&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;ASUS&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0b05&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Nook&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;2080&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Dell&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;413c&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Nvidia&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0955&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Foxconn&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0489&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;OTGV&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;2257&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Garmin-Asus&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;091E&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Pantech&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;10A9&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Google&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;18d1&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Philips&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0471&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;HTC&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0bb4&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;PMC-Sierra&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;04da&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Huawei&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;12d1&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Qualcomm&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;05c6&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;K-Touch&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;24e3&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;SK Telesys&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;1f53&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;KT Tech&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;2116&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Samsung&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;04e8&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Kyocera&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0482&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Sharp&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;04dd&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Lenevo&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;17EF&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Sony Ericsson&lt;br /&gt;
&lt;/td&gt;&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0fce&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;LG&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;1004&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Toshiba&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;0930&lt;/td&gt;
&lt;/tr&gt;&lt;tr&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold; text-align: center;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;Motorola&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;22b8&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218); font-weight: bold;&quot; width=&quot;25%&quot;&gt;&amp;nbsp;ZTE&lt;/td&gt;
&lt;td style=&quot;border: 1px solid rgb(218, 218, 218);&quot; width=&quot;25%&quot;&gt;&amp;nbsp;19D2&lt;/td&gt;
&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;br style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); display: inline ! important; float: none;&quot;&gt;자 위와 같이 완료되었으면 저장&lt;/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); text-align: center; clear: both;&quot;&gt;
&lt;img src=&quot;http://cfile2.uf.tistory.com/image/135A114C4E2E3A7E2C6EFE&quot; alt=&quot;&quot; style=&quot;border-width: 0px; cursor: pointer;&quot; height=&quot;44&quot; width=&quot;500&quot;&gt;&lt;/div&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(238, 238, 238); border: 1px dashed rgb(193, 193, 193); padding: 10px;&quot;&gt;
$ sudo chmod a+r /etc/udev/rules.d/51-android.rules&lt;br /&gt;
$ sudo restart udev&lt;br /&gt;
&lt;/div&gt;&lt;br style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;이제 위와 같이 명령어를 입력&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;ADB경로 추가&lt;/p&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(238, 238, 238); border: 1px dashed rgb(193, 193, 193); padding: 10px;&quot;&gt;
$ sudo geidt ~/.bashrc&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
export PATH=${PATH}:/경로/tools:/경로/platform-tools 추가 저장&lt;br /&gt;
&lt;br /&gt;.bashrc소스 업데이트&lt;br /&gt;
&lt;p style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(255, 255, 255); margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;color: rgb(0, 0, 0); font-family: Dotum,Verdana,AppleGothic,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; background-color: rgb(238, 238, 238); border: 1px dashed rgb(193, 193, 193); padding: 10px;&quot;&gt;
$ source ~/.bashrc&lt;br /&gt;
&lt;/div&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;Eclipse&lt;/p&gt;
&lt;p&gt;eclipse&amp;nbsp;다운 &amp;gt;&amp;nbsp;홈폴더위치&lt;/p&gt;
&lt;p&gt;[help] &amp;gt; [install new software] &amp;gt; [add]&lt;/p&gt;
&lt;p&gt;name : Adroid&lt;/p&gt;
&lt;p&gt;location : https://dl-ssl.google.com/android/eclipse/&lt;/p&gt;
&lt;p&gt;모두설치&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;재시작후&amp;nbsp;windows &amp;gt; preperences &amp;gt; Android &amp;gt; SDK Location : sdk폴더설정&lt;/p&gt;
&lt;p&gt;적용후 ADV Manager&amp;nbsp;실행&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]우분투11.10+SDK15</title>
      <id>http://mummer.kr/2436</id>
      <published>2011-12-26T16:11:01+09:00</published>
      <updated>2012-01-12T16:02:22+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2436"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2436#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;안드로이드 SDK 설치방법&lt;br /&gt;
&lt;br /&gt;우선 자바(Sun Java)를 설치해야 하는데, 이전에 포스팅 했으므로 참고하면 됩니다. ([우분투 11.10] PPA를 통해 Sun Java(자바) 설치하기)&lt;br /&gt;
&lt;br /&gt;이제 안드로이드 SDK를 설치할 것입니다.&lt;br /&gt;
 우선 아래의 링크에서 안드로이드 SDK를 다운 받습니다.&lt;br /&gt;
&lt;br /&gt;http://developer.android.com/sdk/index.html&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;다운받은 파일에 마우스 우클릭 후 &apos;여기에 풀기&apos;를 클릭합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;android-sdk-linux&apos;란 파일이 나오는데 이것을 &apos;내 폴더(/home/사용자명)&apos;의 경로로 옮겨줍니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;/android-sdk-linux/tools&apos;경로에 &apos;android&apos;파일을 실행합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;SDK 매니저(SDK Manager)&apos;가 실행되면 &apos;Tools - Options...&apos;를 클릭합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;Force http;s://...sources to be fetched using http://...&apos;을 선택하고 &apos;Close&apos;를 클릭합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;Android SDK Tools&apos;는 기본적으로 설치되어있고,&lt;br /&gt;
&lt;br /&gt;&apos;Android SDK Platform-tools&apos;와 &apos;Extras&apos;를 선택한 후 원하는 버전의 API정도만 선택합니다.&lt;br /&gt;
&lt;br /&gt;그 후 &apos;Install XX Packages&apos;를 클릭합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&apos;Accept All&apos;을 선택한 후 &apos;Install&apos;을 클릭합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
시간이 꽤 지나고나면 &apos;Done. XX packages installed.&apos;하고 나옵니다.&lt;br /&gt;
 &apos;Close&apos;를 선택합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
USB드라이버 설치 및 스마트폰 연결&lt;br /&gt;
&lt;br /&gt;자, 여기서 중간 확인을 위해 터미널에서 간단한 확인을 해보겠습니다.&lt;br /&gt;
&lt;br /&gt;전원이 켜진 스마트폰을 USB로 연결한 상태에서 &apos;~/android-sdk-linux/platform-tools&apos;로 이동해서 다음 명령어를 입력합니다.&lt;br /&gt;
&lt;br /&gt; $ ./adb devices&lt;br /&gt;
&lt;br /&gt; 여기서 세가지 경우가 발생할 수 있습니다.&lt;br /&gt;
&lt;br /&gt;1. &apos;List of devices attached&apos;라고 표시되고 아래에 장치의 시리얼 넘버도 표시되는 경우&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;모든 설치가 완료된 상태입니다.&lt;br /&gt;
 하지만 아마도 밑에 2,3번의 경우가 나올 것입니다.&lt;br /&gt;
&lt;br /&gt;2. &apos;bash: ./adb: 그런 파일이나 디렉터리가 없습니다.&apos;의 경우&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;위의 경우에는 아래의 명령어로 다음 패키지를 설치한 후 재시도 합니다.&lt;br /&gt;
&lt;br /&gt; $ sudo apt-get install ia32-libs&lt;br /&gt;
&lt;br /&gt;3. &apos;List of devices attached&apos;라고 표시되지만 아래 아무것도 표시되지 않는 경우&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;이 경우에는 USB장치에 대한 설정을 해야 합니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
 $ sudo gedit /etc/udev/rules.d/51-android.rules&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
위의 명령어로 &apos;/etc/udev/rules.d/&apos;디렉토리에 &apos;51-android.rules&apos;란 파일이 생성되고 gedit가 실행됩니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt; SUBSYSTEM==&quot;usb&quot;, ATTR{idVendor}==&quot;####&quot;, MODE=&quot;0666&quot;, GROUP=&quot;plugdev&quot;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
위와 같이 입력합니다. 한가지 주의하실 점은 &apos;ATTR{idVendor}==&quot;####&quot;&apos;에서 #부분에는 각 제조사별 ID가 들어가야합니다.&lt;br /&gt;
&lt;br /&gt;위의 경우는 HTC의 ID이고 아래에 다른 제조사별 ID입니다.&lt;br /&gt;
&lt;br /&gt; 제조사	USB Vendor ID 	 제조사	USB Vendor ID &lt;br /&gt;
 Acer	 0502 	 NEC	 0409&lt;br /&gt;
 ASUS	 0b05 	 Nook	 2080&lt;br /&gt;
 Dell	 413c 	 Nvidia	 0955&lt;br /&gt;
 Foxconn	 0489	 OTGV	 2257&lt;br /&gt;
 Garmin-Asus	 091E	 Pantech	 10A9&lt;br /&gt;
 Google	 18d1	 Philips	 0471&lt;br /&gt;
 HTC	 0bb4	 PMC-Sierra	 04da&lt;br /&gt;
 Huawei	 12d1	 Qualcomm	 05c6&lt;br /&gt;
 K-Touch	 24e3	 SK Telesys	 1f53&lt;br /&gt;
 KT Tech	 2116	 Samsung	 04e8&lt;br /&gt;
 Kyocera	 0482	 Sharp	 04dd&lt;br /&gt;
 Lenevo	 17EF	 Sony Ericsson	 0fce&lt;br /&gt;
 LG	 1004	 Toshiba	 0930&lt;br /&gt;
 Motorola	 22b8	 ZTE	 19D2&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
자 위와 같이 완료되었으면 저장하고 gedit를 닫습니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt; $ sudo chmod a+r /etc/udev/rules.d/51-android.rules&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
이제 위와 같이 명령어를 입력합니다.&lt;br /&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]vsFTP 설치 및 설정</title>
      <id>http://mummer.kr/2435</id>
      <published>2011-12-19T17:56:31+09:00</published>
      <updated>2012-01-12T16:02:22+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2435"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2435#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;1)우분투 vsftp 설치&lt;br /&gt;
    $ sudo apt-get install vsftpd&lt;br /&gt;
&lt;br /&gt;2)설정&lt;br /&gt;
&lt;br /&gt;    $ sudo gedit /etc/vsftpd.conf&lt;br /&gt;
    anonymous_enable=NO&lt;br /&gt;
    local_enable=YES&lt;br /&gt;
    write_enable=YES&lt;br /&gt;
&lt;br /&gt;3)재시작   &lt;br /&gt;
&lt;br /&gt;    $ sudo /etc/init.d/vsftpd restart&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]Apache 설정 관련 명령어</title>
      <id>http://mummer.kr/2434</id>
      <published>2011-12-19T17:47:20+09:00</published>
      <updated>2012-01-12T16:02:22+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2434"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2434#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;font color=&quot;#193da9&quot;&gt;&lt;strong&gt;우분투 아파치 서버 설정파일 :&lt;/strong&gt; &lt;/font&gt;&lt;br /&gt;

설정하기 /etc/apache2/sites-available/default &lt;br /&gt;
&lt;br /&gt;
아파치 재구동 $sudo /etc/init.d/apache2 restart&lt;br /&gt;
&lt;br /&gt;
적용된것을 확인 /etc/apache2/sites-enable/default&amp;nbsp; 
&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[우분투]Apache 설정-접속경로변경</title>
      <id>http://mummer.kr/2433</id>
      <published>2011-12-19T17:45:40+09:00</published>
      <updated>2012-01-12T16:02:22+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2433"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2433#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;div class=&quot;article&quot;&gt;
								&lt;font color=&quot;#193da9&quot;&gt;&lt;strong&gt;우분투 : 아파지 서버의 설정 방법 &lt;br /&gt;
&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;

&lt;div style=&quot;MARGIN-LEFT: 4em&quot;&gt;
일반적으로 아파치의 경우 httpd.conf 파일에서 설정을 해주는걸로 알고
 있었는데, 우분투로 아파치를 설치했더니&amp;nbsp;httpd.conf 에는 아무것도 없었다. 그래서 인터넷 검색을 해봤더니 아래 설명들을 
확인할수 있다. 다음에 같은 실수를 막기 위해서 기록... &lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;font color=&quot;#193da9&quot;&gt;&lt;strong&gt;아파치 서버 설정파일 :&lt;/strong&gt; &lt;/font&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;MARGIN-LEFT: 4em&quot;&gt;
/etc/apache2/sites-available/default &lt;br /&gt;
&lt;br /&gt;
설정 파일을 수정하고 아파치를 재구동해야 한다. &lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
&lt;span id=&quot;callbacknestcitylocktistorycom1691323&quot; style=&quot;width:1px; height:1px; float:right&quot;&gt;&lt;/span&gt;
&lt;br /&gt;
적용된 내용을 아래 내용에서 확인 할수 있다. &lt;br /&gt;
/etc/apache2/sites-enable/default&amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;strong&gt;&lt;font color=&quot;#193da9&quot;&gt;아파치 설정 (/etc/apache2/sites-available/default )&lt;br /&gt;
&lt;/font&gt;&lt;/strong&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;BORDER-RIGHT: #c1c1c1 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: #c1c1c1 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: #c1c1c1 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: #c1c1c1 1px solid; BACKGROUND-COLOR: #eeeeee&quot;&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; ServerAdmin &lt;a href=&quot;mailto:webmaster@localhost&quot;&gt;webmaster@localhost&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; # DocumentRoot /var/www/&lt;br /&gt;
&lt;font color=&quot;#e31600&quot;&gt;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;strong&gt;&lt;font color=&quot;#e31600&quot;&gt;DocumentRoot /home/citylock/programmingSrc/php/&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ( 기본 디렉토리 변경 ) &lt;br /&gt;
&lt;/font&gt;&lt;/strong&gt;&amp;nbsp;&amp;nbsp; &amp;lt;Directory /&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Options FollowSymLinks&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AllowOverride None&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;font color=&quot;#e31600&quot;&gt;&lt;strong&gt;&amp;lt;Directory /home/citylock/programmingSrc/php/&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (기본 디렉토리 변경)&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;

&lt;div&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Options Indexes FollowSymLinks MultiViews&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AllowOverride None&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order allow,deny&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; allow from all&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;Directory &quot;/usr/lib/cgi-bin&quot;&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AllowOverride None&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order allow,deny&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Allow from all&lt;br /&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; ErrorLog /var/log/apache2/error.log&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; # Possible values include: debug, info, notice, warn, error, crit,&lt;br /&gt;
&amp;nbsp;&amp;nbsp; # alert, emerg.&lt;br /&gt;
&amp;nbsp;&amp;nbsp; LogLevel warn&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; CustomLog /var/log/apache2/access.log combined&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Alias /doc/ &quot;/usr/share/doc/&quot;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Directory &quot;/usr/share/doc/&quot;&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Options Indexes MultiViews FollowSymLinks&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AllowOverride None&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order deny,allow&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Deny from all&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Allow from 127.0.0.0/255.0.0.0 ::1/128&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&amp;nbsp;
&lt;br /&gt;
&lt;/div&gt;
							&lt;/div&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[중얼]Panopticon (판옵티콘, 팬옵티콘, 파놉티콘)</title>
      <id>http://mummer.kr/2412</id>
      <published>2011-11-07T19:27:42+09:00</published>
      <updated>2012-01-12T16:02:21+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2412"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2412#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;&lt;U&gt;&lt;SPAN style=&quot;FONT-SIZE: 14pt&quot;&gt;&lt;FONT color=#5c7fb0&gt;&lt;SPAN style=&quot;FONT-SIZE: 18pt&quot;&gt;Panopticon [판옵티콘],[팬옵티콘],[파놉티콘]&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;br /&gt;
&lt;/U&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;P style=&quot;TEXT-ALIGN: center; MARGIN: 0px&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/412/002/800px-Presidio-modelo2.jpg&quot; alt=&quot;800px-Presidio-modelo2.jpg&quot; style=&quot;&quot; /&gt;&lt;/P&gt;
&lt;P style=&quot;TEXT-ALIGN: center; MARGIN: 0px&quot;&gt;파놉티콘이 적용된 프레시디오 모델로 감옥의 내부(쿠바).&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[요약]&lt;br /&gt;
&lt;/STRONG&gt;
&lt;P&gt;&lt;B&gt;파놉티콘&lt;/B&gt; 또는 &lt;B&gt;판옵티콘&lt;/B&gt;, &lt;B&gt;패놉티콘&lt;/B&gt;, &lt;B&gt;팬옵티콘&lt;/B&gt;은 영국의 철학자이자 법학자인 &lt;A title=&quot;제러미 벤담&quot; href=&quot;http://ko.wikipedia.org/wiki/%EC%A0%9C%EB%9F%AC%EB%AF%B8_%EB%B2%A4%EB%8B%B4&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;제러미 벤담&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;이 제안한 일종의 감옥 건축양식을 말한다. 파놉티콘의 어원은 그리스어로 &apos;모두&apos;를 뜻하는 &apos;pan&apos;과 &apos;본다&apos;를 뜻하는 &apos;opticon&apos;을 합성한 것으로 벤담이 소수의 감시자가 모든 수용자를 자신을 드러내지 않고 감시할 수 있는 형태의 감옥을 제안하면서 이 말을 창안했다.&lt;/P&gt;
&lt;P&gt;벤담은 자신의 제안서에서 이 감옥의 본질적인 장점을 한 단어로 표현하기 위해, &quot;진행되는 모든 것을 한눈에 파악할 수 있는 능력&quot;을 의미하는 &quot;파놉티콘&quot; 이라고 부를 것...&lt;SUP id=cite_ref-0 class=reference&gt;&lt;A href=&quot;http://ko.wikipedia.org/wiki/%ED%8C%8C%EB%86%89%ED%8B%B0%EC%BD%98#cite_note-0&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;[1]&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;/SUP&gt;이라고 하였다&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[제안의 배경과 역사]&lt;br /&gt;
&lt;/STRONG&gt;
&lt;P&gt;벤담은 1785년에서 1788년 사이 유럽 곳곳을 여행하고 당시 러시아에서 일하던 동생 새뮤얼 벤담을 만나기 위해 러시아로 갔는데 그때 파놉티콘의 최초 구상을 완성했다고 전해진다. 최소한의 비용으로 노동자를 감시하고 통제하기 위한 시설을 고안하던 중 파논티콘의 개념을 감옥으로 확장한 것이다. 1786년 벤담은 파놉티콘의 개념을 담은 21통의 편지를 썼고 나중에 더블린의 출판사에서 한 권의 책으로 간행되었다. 1791년 벤담은 영국에서 단행본 출판과 거의 동시에 프랑스 의회에 파놉티콘을 제안하고 프랑스 의회는 제안서를 인쇄하는 등 거의 실현될 것처럼 보였다. 그러나 이듬해 &lt;A title=&quot;루이 16세&quot; href=&quot;http://ko.wikipedia.org/wiki/%EB%A3%A8%EC%9D%B4_16%EC%84%B8&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;루이 16세&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;가 실각하고 그의 제안은 폐기되었다.&lt;/P&gt;
&lt;P&gt;벤담은 그의 생애와 전 재산의 대부분을 이 파티놉콘 계획을 실현하는 데 바쳤다. &lt;A title=1794년 href=&quot;http://ko.wikipedia.org/wiki/1794%EB%85%84&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;1794년&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt; 그의 제안이 영국에서 받아들여져 런던 근교에 감옥 부지를 마련하고 토지를 매입하지만 런던 의회가 보상금을 너무 적게 주는 바람에 벤담은 파산하고 말았으며 그에 따라 감옥 건축 계획도 성과 없이 지연되고 말았다.&lt;/P&gt;
&lt;P&gt;&lt;A title=1811년 href=&quot;http://ko.wikipedia.org/wiki/1811%EB%85%84&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;1811년&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;과 &lt;A title=1813년 href=&quot;http://ko.wikipedia.org/wiki/1813%EB%85%84&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;1813년&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt; 사이 다시 한 번 영국에서 감옥 개혁안이 대두되자 벤담의 계획안이 세상의 빛을 받고 벤담은 감옥 부지에 대한 토지보상금을 받게 되었지만 감옥의 건축 양식 자체는 벤담의 파놉티콘 형식이 아니라 미국 펜실베이니아식으로 결정되었다. 이써 벤담이 그토록 실현하고자 했던 파놉티콘 계획은 벤담의 생전에는 실현되지 못했다.&lt;br /&gt;
&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[파놉티콘의 개념]&lt;br /&gt;
&lt;/STRONG&gt;&lt;br /&gt;

&lt;P style=&quot;MARGIN: 0px&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/412/002/250px-Panopticon.jpg&quot; alt=&quot;제러미 벤담의 파놉티콘 청사진, (1791년).&quot; style=&quot;&quot; /&gt;&lt;/P&gt;파놉티콘의 개념은 일종의 이중 원형건물이다. 
&lt;P style=&quot;MARGIN: 0px&quot;&gt;감옥 둘레에는 원형의 6층(또는 4층) 건물이 있고 수용자들의 수용시설은 이 건물에 배치된다. 수용실의 문은 내부가 들여다 보이도록 만들어지고 그 앞에는 좁은 복도가 설치된다.&lt;br /&gt;
&amp;nbsp;중앙에는 역시 원형의 감시 탑이 있는데 이곳에 감시자들이 머물게 된다. 감시탑에서는 각 구석구석 수용실을 훤히 볼 수 있지만 수용자들은 감시자가 있는지 없는지, 감시하는지 하지 않는지 알 수가 없다. 그 결과 수용자들은 감시자가 없어도 수용자가 감시자의 부재를 인식하지 못하기 때문에 실제로 감시자가 있는 것과 같은 효과를 낸다.&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
이처럼 파놉티콘은 중앙의 원형감시탑에서 각 수용실을 단번에 파악할 수 있고 감시 권력이 자신을 드러내지는 않지만 수용자가 항상 감시당하고 있는 상태, 즉 감시자의 존재가 드러나지 않지만 끊임없이 감시되는 상태를 그 핵심 개념으로 한다.&lt;br /&gt;
&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[개념의확장]&lt;/STRONG&gt;&lt;br /&gt;
벤담은 판옵티콘의 개념을 감옥과 같은 감시시설에만 국한하지 않았다. 파놉티콘의 개념은 군대의 병영, 병원, 수용소, 학교, 공장 등으로 확대될 수 있다고 보았다. 공리주의자인 벤담의 입장에서 최소한의 비용, 최소한의 감시로 최대의 효과를 누릴 수 있는 파놉티콘은 이상적인 사회의 축소판으로 보았다.&lt;br /&gt;
&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[1. 푸코의 파놉티콘]&lt;/STRONG&gt;&lt;br /&gt;
&lt;br /&gt;벤덤의 개념은 실제 감옥 건축에서 보다 철학적으로 더 고찰의 대상이 되었다. 프랑스 철학자 &lt;A class=mw-redirect title=&quot;미셀 푸코&quot; href=&quot;http://ko.wikipedia.org/wiki/%EB%AF%B8%EC%85%80_%ED%91%B8%EC%BD%94&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;미셀 푸코&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;는 그의 저서 《&lt;I&gt;&lt;A class=mw-redirect title=&quot;감시와 처벌&quot; href=&quot;http://ko.wikipedia.org/wiki/%EA%B0%90%EC%8B%9C%EC%99%80_%EC%B2%98%EB%B2%8C&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;감시와 처벌&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;/I&gt;》(Surveiller et punir, 1975)에서 벤담의 파놉티콘 개념을 다시 부활시키고 고찰하였다. 푸코에게 있어서 파놉티콘은 벤덤이 상상했던 사설 감옥의 의미를 훨씬 뛰어넘는 것이었다. 그것은 새로운 근대적 감시의 원리를 체화한 건축물이었고, 군중이 한 명의 권력자를 우러러보는 &apos;스펙터클의 사회&apos;에서 한 명의 권력자가 다수를 감시하는 &apos;규율 사회&apos;로의 변화를 상징하고 동시에 이런 변화를 추동한 것이었다. 푸코의 파놉티콘은 현재 정보화 시대의 &apos;전자 감시&apos;와 많이 흡사하다. 1970년대 중반 이후 다양한 감시와 통제의 방법이 컴퓨터 데이터베이스, 폐쇄 카메라, 신용카드와 같은 전자 결재나 인터넷을 통한 소비자 정보의 수집이라는 형태로 널리 사용되었다. 푸코에게 파놉티콘은 근대 &quot;권력&quot;을 아주 잘 설명해주는 장치다. 파놉티콘을 통해 새로운 권력행사 방식을 알 수 있다고 보았다. 파놉티콘에서 고찰한 푸코의 권력은 소유하는 것이 아니라 &quot;작용&quot;하는 것이며 억압하는 것이 아니라 &quot;생산&quot;하는 것으로 보았다.&lt;br /&gt;
&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #79a5e4 1px dashed; BORDER-LEFT: #79a5e4 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #79a5e4 1px dashed; BORDER-RIGHT: #79a5e4 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[2. 정보 파놉티콘]&lt;br /&gt;
&lt;/STRONG&gt;
&lt;P&gt;정보 파놉티콘이란 전자 기기를 이용한 감시 체계를 가리키는 말로써 전자 파놉티콘이라고도 불린다. 여기서 말하는 &apos;정보&apos;란 벤담의 파놉티콘에서의 &apos;시선&apos;을 대신해서 규율과 통제의 기제로 작동하는 것을 말한다. 시대가 변하면서 감옥의 통제와 규율의 기제는 &apos;시선&apos;에서 &apos;정보&apos;로 진화했다. 이러한 측면에서 정보 감시는 시선에 근거한 감시 &lt;A class=mw-redirect title=메커니즘 href=&quot;http://ko.wikipedia.org/wiki/%EB%A9%94%EC%BB%A4%EB%8B%88%EC%A6%98&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;메커니즘&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;의 연장선상에 있다고 볼 수 있다.&lt;/P&gt;
&lt;P&gt;또 벤담의 파놉티콘과 정보 파놉티콘은 &apos;불확실성&apos;에서도 공통점이 있다.파놉티콘에 갇힌 죄수가 자신이 감시를 당하는지 아닌지 모르듯이, 전자 파놉티콘의 정보망에 노출된 사람들은 자신의 행동이 다른이에 의해 열람될 지 확신할 수 없기 때문에 자신의 행동이나 작업에 주의를 기울이곤 한다.&lt;/P&gt;
&lt;P&gt;그렇지만 파놉티콘과 정보 파놉티콘 사이에는 뚜렷한 차이가 있다. 파놉티콘의 감시기제인 시선은 그 영향범위에 한계가 있지만 정보 파놉티콘의 감시기제인 &apos;정보&apos;는 컴퓨터를 통해 국가적이고 전지구적으로 수집된다. 철학자 &lt;A class=mw-redirect title=들뢰즈 href=&quot;http://ko.wikipedia.org/wiki/%EB%93%A4%EB%A2%B0%EC%A6%88&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;들뢰즈&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;(Gilles Deleuze)는 이러한 인식을 한 단계 더 추상적인 차원으로 일반화시켜서 지금 우리가 살고 있는 사회가 푸코의 규율 사회를 벗어난 새로운 &quot;통제 사회&quot;(control society)라고 주장했다. 그에 의하면, 규율사회는 증기 기관과 공장이 지배하며 요란한 구호에 의해 통제되는 사회였지만, 통제 사회는 컴퓨터와 기업이 지배하고 숫자와 &lt;A title=코드 href=&quot;http://ko.wikipedia.org/wiki/%EC%BD%94%EB%93%9C&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;코드&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;(code)에 의해 통제되는 사회이다. 벤담의 파놉티콘이 규율 사회에 적합한 감시의 메커니즘이라면 정보 파놉티콘은 통제사회에 적합한 감시의 메커니즘이다.&lt;/P&gt;
&lt;P&gt;파놉티콘과 정보 파놉티콘 사이에는 다른 질적인 차이도 있다. 파놉티콘에는 죄수를 감시하는 간수가 &apos;중앙&apos;에 있는 탑에 숨어서 주변의 감방을 감시했지만, 정보 파놉티콘의 경우에는 이러한 &apos;중앙&apos;의 위치가 뚜렷하지 않은 경우가 많다. 예를 들어 &lt;A title=CCTV href=&quot;http://ko.wikipedia.org/wiki/CCTV&quot;&gt;&lt;U&gt;&lt;FONT color=#0066cc&gt;CCTV&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;의 경우 우리를 감시하는 모든 CCTV는 독립적으로 분산되어 존재한다. 또 이런 경우에 감시자가 피감시자를 일일이 알아서 규율을 강제할 수 있는 것도 아니며, 많은 경우 사람들은 CCTV가 자신을 찍고 있다는 것도 모르고 지낸다. 전자 감시는 벤담의 감옥이라는 제한된 공간을 뛰어넘어 도시, 국가, 세계로 그 관장 영역을 넓혔지만 동시에 이를 관장하는 권력자가 위치하던 중앙의 감시탑과 같은 공간도 다양한 네트워크의 그물망으로 분산시켰다.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #7293fa 1px dashed; BORDER-LEFT: #7293fa 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #7293fa 1px dashed; BORDER-RIGHT: #7293fa 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[관련도서]&lt;br /&gt;

&lt;P style=&quot;MARGIN: 0px&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/412/002/8970133313_f.jpg&quot; alt=&quot;파놉티콘 - 정보사회 정보감옥&quot; style=&quot;&quot; /&gt;&lt;/P&gt;&lt;/STRONG&gt;
&lt;P style=&quot;MARGIN: 0px&quot;&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;&lt;STRONG&gt;[책 - 파놉티콘, 정보사회 정보감옥]&lt;br /&gt;
&lt;br /&gt;&lt;FONT color=#5c7fb0&gt;정보사회, 개인의 정보와 인권은 안전한가&lt;/FONT&gt;&lt;/STRONG&gt; &lt;br /&gt;
이제 우리 사회는 본격적으로 정보사회에 들어섰다. 1995년에 추진되었던 전자주민카드, 2001년 진료 기록 전부를 담고 신용카드 기능까지 겸하려던 전자건강보험증 사업 등이 이를 증명한다. 개인에 대한 모든 정보를 전자화하려는 데에는 그것이 갖는 편리성의 효과가 그만큼 크기 때문이라고 생각해볼 수 있다. 그러나 그 두 사업은 여론의 반대에 부딪혀 무산된 사업이라는 점도 기억할 필요가 있다. 그것은 사생활 침해, 개인 정보 주권 침해, 정보기관에 의한 국민 감시체계 구축의 위험성 등의 문제를 본질적으로 해결하지 못했기 때문이다. 한편으로 그것은 정보사회의 한 특징인 인권 의식의 실종을 드러내 보이기도 했다. &lt;br /&gt;
&lt;br /&gt;이렇듯 정보사회는 &apos;편리성&apos;이라는 최대의 이점을 갖고 있음에도 불구하고 끊임없이 개인의 인권을 침해하는 메커니즘임을 유념할 필요가 있다. 이에 대해서는 일찍이 프랑스 철학자 푸코가 설명한 바, 정보사회는 감시와 규율이 지배하는 사회이기도 하다. 푸코가 정보화 사회를 이렇게 정의한 배경에는 영국의 공리주의 철학자 벤담의 파놉티콘panopticon이 자리 잡고 있다. &apos;최대 다수, 최대 행복&apos;의 기치를 내걸었던 벤담의 공리주의는 아이러니컬하게도 파놉티콘이라고 하는 감시의 메커니즘을 배태하고 있는 것이다. &lt;br /&gt;
&lt;br /&gt;&lt;STRONG&gt;&amp;lt;파놉티콘 - 정보사회 정보감옥&amp;gt;&lt;/STRONG&gt;은 벤담이 설계한 파놉티콘에 구현된 감시의 메커니즘과 이에 대한 푸코의 해석을 비판적으로 검토함으로써 지금 우리가 살고 있는 세상에 만연되어 있는 전자 감시와 프라이버시 침해, 그리고 감시의 역학관계를 뒤집는 역감시의 가능성을 모색하고자 한다. &lt;br /&gt;
&lt;br /&gt;&lt;FONT color=#5c7fb0&gt;&lt;STRONG&gt;원형감옥 파놉티콘에 구현된 감시의 메커니즘&lt;/STRONG&gt; &lt;/FONT&gt;&lt;br /&gt;
1791년 제레미 벤담은 죄수를 교화할 수 있는 시설로 원형감옥 파놉티콘 건축을 제안했다. 그의 제안에 따르면 파놉티콘 바깥쪽 원주를 따라서 죄수의 방이 들어서고 중앙 원형 공간에 감시탑이 높게 들어선다. 죄수의 방은 늘 밝게 유지되어 언제든 감시가 가능하나 중앙의 감시 공간은 늘 어둡게 유지되어 감시자의 시선이 어디를 향하고 있는지 또 감시자가 지금 죄수를 감시하고 있는지 아닌지를 알 수 없다. 그러나 바로 이 점이 죄수들로 하여금 늘 그들이 감시받고 있다고 여기게끔 만든다. 즉 규율과 감시의 시선을 &apos;내면화&apos;하여 스스로 자신을 감시하게끔 만드는 것이다. &lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
파놉티콘에 담긴 벤담의 이러한 생각에 주목한 푸코는 《감시와 처벌》을 통해 파놉티콘이라는 원형 건물에 구현된 감시의 원리가 사회 전반으로 스며들면서 규율 사회의 기본 원리인 파놉티시즘panopticism으로 탈바꿈했음을 지적했다. 푸코는 원형감옥에 나타난 감시를 다음과 같이 말하고 있다. &quot;감시는 보편적이었고, 영구했으며, 포괄적이었고&quot;, 이러한 의미에서 파놉티콘은 감시의 원리를 체화한 &quot;자동기계&quot;이다. &lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
따라서 &quot;누가 권력을 행사하는가는 중요하지 않다. 아무렇게나 선택된 누구라도 이 기계를 작동시킬 수 있다.&quot; 그렇기 때문에 파놉티콘은 감옥에만 국한되지 않고, 그것의 적용 가능성은 거의 무한하다고 역설하는 푸코는, 1960년대부터 부상한 전자 감시나 정보 감시에 대한 우려의 분위기 속에서 파놉티콘에 대한 관심을 2백 년 만에 부활시켰다. &lt;/DIV&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;TEXT-ALIGN: right&quot;&gt;&lt;STRONG&gt;&amp;lt;파놉티콘 - 정보사회 정보감옥&amp;gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;BORDER-BOTTOM: #7293fa 1px dashed; BORDER-LEFT: #7293fa 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #e6ecfe; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #7293fa 1px dashed; BORDER-RIGHT: #7293fa 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;
&lt;DIV style=&quot;BORDER-BOTTOM: #cbcbcb 1px dashed; BORDER-LEFT: #cbcbcb 1px dashed; PADDING-BOTTOM: 10px; BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 10px; PADDING-RIGHT: 10px; BORDER-TOP: #cbcbcb 1px dashed; BORDER-RIGHT: #cbcbcb 1px dashed; PADDING-TOP: 10px&quot; class=txc-textbox&gt;[출처] 위키백과 - &lt;A title=&quot;[http://ko.wikipedia.org/wiki/%ED%8C%8C%EB%86%89%ED%8B%B0%EC%BD%98]로 이동합니다.&quot; href=&quot;http://ko.wikipedia.org/wiki/%ED%8C%8C%EB%86%89%ED%8B%B0%EC%BD%98&quot; target=_blank&gt;파놉티콘&lt;/A&gt;&lt;br /&gt;
&lt;/DIV&gt;&lt;/DIV&gt;&lt;/div&gt;</content>
                  <category term="Panopticon"/>
            <category term="시놉티콘"/>
            <category term="정보감옥"/>
            <category term="정보사회"/>
            <category term="제러미벤담"/>
            <category term="파놉티콘"/>
            <category term="판옵티콘"/>
            <category term="팬옵티콘"/>
            
   </entry>
   <entry>
      <title>[중얼]티스토리API – Microsoft Office Word로 블로깅 방법</title>
      <id>http://mummer.kr/2410</id>
      <published>2011-11-07T14:53:12+09:00</published>
      <updated>2012-01-12T16:02:21+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2410"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2410#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse; background: #dbe5f1&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:637px&quot;/&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  dashed 0.5pt; border-left:  dashed 0.5pt; border-bottom:  dashed 0.5pt; border-right:  dashed 0.5pt&quot;&gt;&lt;p&gt;
 &lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse; background: white&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:622px&quot;/&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr&gt;&lt;td vAlign=&quot;middle&quot; style=&quot;padding-left: 7px; padding-right: 7px; border-top:  dashed 0.5pt; border-left:  dashed 0.5pt; border-bottom:  dashed 0.5pt; border-right:  dashed 0.5pt&quot;&gt;&lt;p style=&quot;text-align: center&quot;&gt;&lt;span style=&quot;color:#4f81bd; font-size:16pt&quot;&gt;&lt;strong&gt;Microsoft Office Word 로 티스트로 블로깅 방법&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
 &lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse; background: white&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:622px&quot;/&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  dashed 0.5pt; border-left:  dashed 0.5pt; border-bottom:  dashed 0.5pt; border-right:  dashed 0.5pt&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;Microsoft Office Word 2007 이상 버전부터 프로그램으로 티스토리에 블로깅을 할 수 있게되었다.
&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;기존의 웹에서의 블로깅을 위지웍에디터너 HTML소스를 통하여 작성하여야 했지만, 이 방법은 누가 쉽게 사용할 수 있는 워드프로세서 프로그램으로 좀더 사용자가 편하게 블로깅을 할 수 있게해준다.&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
 &lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse; background: white&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:622px&quot;/&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  dashed 0.5pt; border-left:  dashed 0.5pt; border-bottom:  dashed 0.5pt; border-right:  dashed 0.5pt&quot;&gt;&lt;p style=&quot;text-align: center&quot;&gt;&lt;span style=&quot;color:#4f81bd; font-size:12pt&quot;&gt;&lt;strong&gt;[목차]
&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;ol style=&quot;margin-left: 38pt&quot;&gt;&lt;li&gt;티스토리 API 발급
&lt;/li&gt;&lt;li&gt;Microsoft Word설정
&lt;/li&gt;&lt;li&gt;게시글 올리기
&lt;/li&gt;&lt;/ol&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
 &lt;/p&gt;&lt;div&gt;&lt;table style=&quot;border-collapse:collapse; background: white&quot; border=&quot;0&quot;&gt;&lt;colgroup&gt;&lt;col style=&quot;width:622px&quot;/&gt;&lt;/colgroup&gt;&lt;tbody valign=&quot;top&quot;&gt;&lt;tr&gt;&lt;td style=&quot;padding-left: 7px; padding-right: 7px; border-top:  dashed 0.5pt; border-left:  dashed 0.5pt; border-bottom:  dashed 0.5pt; border-right:  dashed 0.5pt&quot;&gt;&lt;ol style=&quot;margin-left: 38pt&quot;&gt;&lt;li&gt;&lt;span style=&quot;color:#4f81bd&quot;&gt;&lt;strong&gt;티스토리 Api발급
&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul style=&quot;margin-left: 38pt&quot;&gt;&lt;li&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;설정에 앞서서 먼저 티스토리에서 제공하는 블로그API를 사용할수 있게 설정해야한다.
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;그림과 같이 티스토리 블로그 관리 페이지에서 [글설정] -&amp;gt; [BlogAPI] -&amp;gt; [API 사용] 탭에서 [사용]에 체크후 저장을 해준다.
&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p style=&quot;margin-left: 20pt&quot;&gt;
 &lt;/p&gt;&lt;p style=&quot;text-align: center&quot;&gt;&lt;img src=&quot;./files/attach/images/1414/410/002/110711_0553_APIM1.png&quot; alt=&quot;&quot;/&gt;
											&lt;/p&gt;&lt;p style=&quot;text-align: center&quot;&gt;
 &lt;/p&gt;&lt;ul style=&quot;margin-left: 38pt&quot;&gt;&lt;li&gt;&lt;span style=&quot;font-size:10pt&quot;&gt;이제 블로그 API를 사용 할 수 있는 설정이 완료 되었다. 다음으로 Microsoft Word에서 게시글을 올릴 수 있게 설정이 필요하다.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;p&gt;
 &lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;</content>
                  
   </entry>
   <entry>
      <title>[중얼]투자자국가소송제도(ISD) 무엇이 문제인가?</title>
      <id>http://mummer.kr/2392</id>
      <published>2011-11-02T18:46:33+09:00</published>
      <updated>2012-01-12T16:02:20+09:00</updated>
      <link rel="alternate" type="text/html" href="http://mummer.kr/2392"/>
      <link rel="replies" type="text/html" href="http://mummer.kr/2392#comment"/>
      <author>
         <name>Mummer</name>
               </author>
            <content type="html">&lt;div class=&quot;xe_content&quot;&gt;&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(121, 165, 228); border-right-color: rgb(121, 165, 228); border-bottom-color: rgb(121, 165, 228); border-left-color: rgb(121, 165, 228); background-color: rgb(230, 236, 254); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;span style=&quot;font-size: 14pt&quot;&gt;&lt;strong&gt;&lt;u&gt;투자자국가소송제도(ISD) 무엇이 문제인가?&lt;/u&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;
&lt;font color=&quot;#5c7fb0&quot;&gt;-투자유치국의 합리적인 공공정책 무력화, 사법주권 침해&lt;/font&gt;&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;strong&gt;&amp;nbsp;[내용] 모든 내용은 &lt;a href=&quot;http://www.seoprise.com&quot; target=&quot;_blank&quot; title=&quot;[http://www.seoprise.com]로 이동합니다.&quot;&gt;서프라이즈&lt;/a&gt; [&lt;a href=&quot;http://www.seoprise.com/board/view.php?table=seoprise_13&amp;amp;uid=76664&quot; target=&quot;_blank&quot; title=&quot;[http://www.seoprise.com/board/view.php?table=seoprise_13&amp;amp;uid=76664]로 이동합니다.&quot;&gt;원문&lt;/a&gt;]에서 발췌한 내용입니다.&lt;/strong&gt;&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
(서프라이즈 / 독고탁 / 2011-10-31)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ISD(투자자국가소송제도, Investor-State Dispute Settlement)는 외국인투자자가 투자유치국의 협정의무 위반 등으로 피해를 입을 경우 투자유치국 정부를 상대로 직접 별도의 중재기관에 손해배상을 청구할 수 있는 분쟁해결 절차입니다. &lt;br /&gt;
&lt;br /&gt;
즉, 한미 FTA 투자 분야에 규정되어 있는 각종 의무, 투자계약 및 투자인가 등을 투자유치국 정부가 위반한 경우에 투자자는 국제중재를 통하여 손해를 배상받을 수 있도록 하자는 취지이므로 일견 투자자의 손실을 보호하기 위한 합리적인 제도로 보이는 측면이 있습니다. &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;그러나 이 제도는 그 근본 취지와는 달리 투자자에게만 일방적으로 유리한 조건을 명시하고 있는 반면 투자유치국에게는 가혹하리만큼 불리한 내용을 담고 있어서 투자유치국의 사법주권을 거의 사멸시키는 수준이라는 비판을 받고 있는 것이 현실입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/392/002/50111031143906.jpg&quot; alt=&quot;50111031143906.jpg&quot; style=&quot;&quot; /&gt;&lt;/p&gt;
▲ 한미 자유무역협정(FTA) 비준을 놓고 핵심 쟁점인 투자자-국가 소송제(ISD)를 놓고 여야가 대립 중이다. 왜 오스트레일리아를 비롯한 외국은 ISD를 거부하는가? ⓒ프레시안&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
1. 투자의 특정 및 보장 범위&lt;br /&gt;
&lt;br /&gt;
ISD에서 정의하는 투자는 투자자가 직·간접적으로 소유하거나 지배하는 모든 자산 중에서 투자의 특징을 지닌 것을 의미하며, 자본 또는 그 밖의 자원의 약속, 이득 또는 이윤에 대한 기대, 위험의 감수 등을 모두 포괄하게 됩니다. &lt;br /&gt;
&lt;br /&gt;
또한 직접 투자를 완료하여 사업을 시행하고 있는 단계가 아닌 투자를 준비하는 단계에서의 손실까지를 포괄하게 되어 있어서 만약 몇 년간 사업을 준비하다가 한국의 국내법으로 인하여 사업을 할 수 없다고 주장하며 사업을 접을 경우라 하더라도 손실에 대한 배상을 요구할 수 있게 되는 것입니다.&lt;br /&gt;
&lt;br /&gt;
이러한 경우는 실제로 사업의 의사가 없거나 다른 사업을 하다가 잘 되지 않았을 경우 얼마든지 명분을 만들어 제소할 수 있는 것이므로 악의적으로 악용될 여지가 얼마든지 있는 것입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. 투자유치국의 합리적인 공공 정책을 무력화&lt;br /&gt;
&lt;br /&gt;
FTA 합의 이후 투자자는 투자유치국의 법률, 제도, 정책으로 인하여 손실을 보았다고 판단되는 경우 그것을 국제중재기관에 제소할 수 있게 되며 판결이 날 경우 전액 현금으로 보상해 주어야 합니다.   &lt;br /&gt;
&lt;br /&gt;
이때 투자자가 손실을 보았다고 주장하는 상황과 여건이 투자자의 투자 내용이나 전략이 국내법에 저촉이 된 경우라 하더라도 FTA 합의사항이 우선시되므로 국제중재기관에서는 우리나라의 국내법을 개정토록 요구할 것은 물론 그 손실에 대해 전액 배상토록 판결하게 된다는 것입니다. &lt;br /&gt;
&lt;br /&gt;
예를 들어 우리나라에서 중소상인들을 보호하기 위해 SSM 규제법을 만든다 하더라도 외국인이 대형마트를 설립한 후 한국의 SSM 규제법으로 인하여 자신이 손실을 보았다고 주장을 하면 그 손을 들어주는 것은 물론 손실액을 전액 배상해야 한다는 것을 의미합니다. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. 투자유치국의 사법주권을 침해&lt;br /&gt;
&lt;br /&gt;
투자자가 손실을 보았다고 주장할 경우 국내의 사법기관을 통해 이의를 제기하고 판단을 구하는 것이 아니라 국제중재기관에 요청하게 되므로 절대적으로 미국 측 투자자에게 유리한 재판이 될 수밖에 없는 것은 불보듯 뻔한 이치입니다. &lt;br /&gt;
&lt;br /&gt;
이렇듯 ISD는 공공정책과 사법주권까지 침해할 소지가 많아 미국 내 법조계, 학계, 정치권 일부의 비판이 끊이지 않고 있으며 호주는 최근 신통상정책에서 ISD 폐기를 선언한 바 있습니다.&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/392/002/1320052652.jpg&quot; alt=&quot;1320052652.jpg&quot; style=&quot;&quot; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
4. 중재 판정부의 중립성 여부 &lt;br /&gt;
&lt;br /&gt;
중재 판정부는 한국과 미국이 각각 임명하는 중재인 2인과 양국이 합의하는 1인으로 구성되도록 되어 있습니다. &lt;br /&gt;
&lt;br /&gt;
하지만 사실상 의장 중재인의 판단에 좌우되기 때문에 양국이 합의하기 어렵고, 합의하지 못하는 경우 워싱턴에 소재하고 미국의 강력한 영향력 하에 있는 세계은행 산하에 있는 국제투자분쟁해결센터(ICSID)의 사무총장이 1인의 의장 중재인을 임명하도록 되어 있어 절대적으로 미국 측에 유리한 셈입니다. &lt;br /&gt;
&lt;br /&gt;
또한 중재절차 경험자가 제한되어 있고 중재인은 오로지 금융이나 상업 등에 관련된 법전문가일 것만 요구하며, 어느 특정 투자기업의 중재심판에서 변호사로 일했던 법률가를 바로 그 기업의 중재 심판에서 중재인으로 맞닥뜨리는 일이 비일비재한 것도 중립성을 심각히 저해시키는 요소가 되고 있습니다. &lt;br /&gt;
&lt;br /&gt;
그럴 경우 법률가들로서 중재심판 시장에서 인맥과 평판을 쌓으며 계속 비즈니스를 하기 위해서는 기업 쪽 눈치를 보지 않을 수 없을 뿐만아니라 중재심판에 선임될 법률가들에 대한 정보와 인맥에 있어 국가보다는 초국적기업이 더 많이 가질 수밖에 없는 것이 현실입니다. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. 국제 중재기관에서 활동하는 변호사&lt;br /&gt;
&lt;br /&gt;
국제 중재기관에서 활동하고 있는 변호사들의 국적별 현황을 보더라도 한국의 현실이 얼마나 열악한지 알 수 있습니다.&lt;br /&gt;
&lt;br /&gt;
국제 중재기관에서 활동하는 한국 국적 변호사는 현재 ICSID 중재인단에 정영진 교수(KDI 국제정책대학원), 김갑유 변호사(법무법인 태평양), 신희택 교수(서울대), 윤병철 변호사(김앤장), ICSID 조정인단에 홍성필 교수(연세대), 이경근 변호사, 박은영 변호사, 윤용석 변호사가 등재되어 있는 데 불과한 반면 외국의 경우는 다음과 같습니다.&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;img src=&quot;http://www.mummer.kr/files/attach/images/1414/392/002/제목 없음.png&quot; alt=&quot;제목 없음.png&quot; class=&quot;iePngFix&quot; style=&quot;&quot; /&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(203, 203, 203); border-right-color: rgb(203, 203, 203); border-bottom-color: rgb(203, 203, 203); border-left-color: rgb(203, 203, 203); background-color: rgb(255, 255, 255); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;div style=&quot;text-align: right&quot;&gt;
독고탁&lt;/div&gt;
&lt;div style=&quot;text-align: center&quot;&gt;--------------------------------------------------------------------------&lt;/div&gt;
&lt;div style=&quot;text-align: center&quot;&gt;&amp;nbsp;
&amp;lt;이상 서프라이즈 발췌&amp;gt;&lt;/div&gt;
&lt;div style=&quot;text-align: right&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
원문 주소 - http://www.seoprise.com/board/view.php?table=seoprise_13&amp;amp;uid=76664&lt;br /&gt;
&amp;nbsp;http://www.seoprise.com/etc/u2/394151&lt;br /&gt;
&lt;/div&gt;
&lt;div class=&quot;txc-textbox&quot; style=&quot;border-top-style: dashed; border-right-style: dashed; border-bottom-style: dashed; border-left-style: dashed; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(121, 165, 228); border-right-color: rgb(121, 165, 228); border-bottom-color: rgb(121, 165, 228); border-left-color: rgb(121, 165, 228); background-color: rgb(230, 236, 254); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px&quot;&gt;
&lt;div style=&quot;text-align: center&quot;&gt;
[원문]&lt;a href=&quot;http://www.seoprise.com&quot; target=&quot;_blank&quot; title=&quot;[http://www.seoprise.com]로 이동합니다.&quot;&gt;서프라이즈&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;</content>
                  <category term="FTA"/>
            <category term="FTA강행"/>
            <category term="FTA강행처리"/>
            <category term="ISD"/>
            <category term="ISD란"/>
            <category term="투자자국가소송제도"/>
            <category term="한미FTA"/>
            
   </entry>
</feed> 

