<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>무한루프</title>
    <link>https://skcha.tistory.com/</link>
    <description>주변에 흰 백조만 있었다.
어디를 보아도 흰색 백조뿐......
도대체 몇 마리를 확인해야 &amp;quot;백조는 흰색이다.&amp;quot;라고 정의할 수 있을까?
과연 모든 백조는 흰색일까?</description>
    <language>ko</language>
    <pubDate>Sat, 27 Jun 2026 22:44:04 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>달리만듦</managingEditor>
    <image>
      <title>무한루프</title>
      <url>https://t1.daumcdn.net/cfile/tistory/1442594B4F8B6DA909</url>
      <link>https://skcha.tistory.com</link>
    </image>
    <item>
      <title>루팅하지않고 안드로이드 백업 및 복원하는 방법</title>
      <link>https://skcha.tistory.com/205</link>
      <description>&lt;p&gt;대부분 안드로이드 백업 앱은 루팅을 요구한다.&lt;br /&gt; 하지만, adb를 이용하면 루팅하지않고도 백업과 복원을 할 수 있다.&lt;/p&gt;&lt;p&gt;adb는 구글에서 제공하는 개발자를 위한 툴이지만 이를 사용하면 백업, 복원을 쉽게(?) 할 수 있다.&lt;/p&gt;&lt;p&gt;먼저 adb를 설치해야 하는데. 이는 구글의 Android SDK에 포함되어있다.&lt;/p&gt;&lt;p&gt;&lt;a title=&quot;Android SDK&quot; href=&quot;http://developer.android.com/sdk/index.html&quot; target=&quot;_blank&quot; data-mce-href=&quot;http://developer.android.com/sdk/index.html&quot;&gt;Adnroid SDK&lt;/a&gt;에서 자신의 시스템에 맞는 SDK를 받아 설치한다.&lt;/p&gt;&lt;p&gt;SDK를 설치한 후 설치 디렉토리 아래 platform-tools 디렉토리에 보면, adb 실행파일이 들어있다. 이는 커맨드라인으로 실행되는 실행파일이므로 터미널에서 실행한다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;adb로 백업할 때의 명령형식은 다음과 같다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;adb backup [-f &amp;lt;file&amp;gt;] [-apk|-noapk] [-shared|-noshared] [-all] [-system|-nosystem] [&amp;lt;packages...&amp;gt;]&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;line-height: 16px;&quot; data-mce-style=&quot;line-height: 16px;&quot;&gt;-f &amp;lt;file&amp;gt; : 백업을 저장할 파일을 지정한다.&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;line-height: 16px;&quot; data-mce-style=&quot;line-height: 16px;&quot;&gt;이 옵션을 생략하면 현재 디렉토리에 backup.ab라는 파일로 백업한다.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;-apk|-noapk : .apk 파일을 백업할 것인지를 설정한다.&lt;/li&gt;&lt;li&gt;-shared|-noshared : 장치의 shared 저장장치 / SD 카드의 콘텐츠를 백업할 것인지를 설정한다. 지정하지않으면 백업하지않는다.&lt;/li&gt;&lt;li&gt;-all : 설치된 모든 어플리케이션을 백업한다.&lt;/li&gt;&lt;li&gt;-system|-nosystem : 시스템 어플리케이션을 포함할 것인지를 설정한다. -all 은 시스템 어플리케이션을 포함한다. 지정하지않으면 시스템 어플리케이션을 포함한다.&lt;/li&gt;&lt;li&gt;&amp;lt;packages...&amp;gt; : 백업할 어플리케이션의 리스트를 적는다. 패키지 리스트를 적으면 -all, -shred 플래그는 무시된다. -nosystem을 지정했더라도 명시적으로 이곳에 적으면 백업된다.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;그러면 예를 들어서 내 안드로이드 폰 또는 태블릿에 설치한 모든 프로그램과 데이터를 백업하려한다면. 폰을 usb로 연결한 상태에서 다음과 같이 입력하면 된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;adb backup -f backup.ab -apk -shared -all&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;이제 폰 화면에는 다음과 같이 백업을 확인하는 화면이 나타난다. 여기서 백업을 확인해주면 바로 백업 작업이 시작된다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;복원할 때의 명령형식은 다음과 같다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;adb restore backup.ab&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style=&quot;line-height: 16px;&quot; data-mce-style=&quot;line-height: 16px;&quot;&gt;ᅟbackup.ab는 백업했을 때 백업을 저장한 파일이름이다.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;이제 굳이 루팅하지않고도 설치한 어플리케이션과 데이터를 백업하고 복원할 수 있다. 비싼 백업 어플리케이션을 구매하지않아도 된다. 다만 커맨드라인 UI가 생소하겠지만 말이다.&lt;/p&gt;</description>
      <category>모바일</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/205</guid>
      <comments>https://skcha.tistory.com/205#entry205comment</comments>
      <pubDate>Wed, 12 Jun 2013 16:29:13 +0900</pubDate>
    </item>
    <item>
      <title>공짜로 ucloud server사용하기</title>
      <link>https://skcha.tistory.com/204</link>
      <description>&lt;p&gt;KT의 ucloud biz에서 작년, 그러니까 2012년 10월부터 ucloud Free Pack을 제공한다. ucloud biz에 신규로 가입하는 고객에 한하여 1년동안 Server, DB 그리고 Storage를 무료로 이용할 수 있는 서비스다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 700px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/11603B47510B7E7E0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F11603B47510B7E7E0A&quot; width=&quot;700&quot; height=&quot;790&quot; filename=&quot;ucloud_freepack.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;안내 페이지에는 서버는 CPU 0.5vCore, Memory 512MB, Disk 20GB로 되어있는데, &lt;br /&gt;&lt;/p&gt;&lt;p&gt;실제로는 1 vCore CPU에 1GB Memory, 20 GB 용량의 디스크를 할당해주었다.&lt;/p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 700px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/195E9F4C510B816013&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F195E9F4C510B816013&quot; width=&quot;700&quot; height=&quot;314&quot; filename=&quot;ucloud_server.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;일단 Ubuntu Server 버전을 선택하였다.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;DB는 무려 40GB나 할당해주었다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center; clear: none; float: none;&quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block; width: 700px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/020B264A510B818B25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F020B264A510B818B25&quot; width=&quot;700&quot; height=&quot;304&quot; filename=&quot;ucloud_db.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;DB는 CentOS에 MySQL를 선택할 수 있었다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;거기에 트래픽 20GB까지 무료!!!&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;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;가비아의 실버 Plus란 상품은 웹 9G, DB는 무제한, 트래픽은 20GB로 월 5만원, 년 50만원이다.&lt;/p&gt;&lt;p&gt;거기에 설치비와 VAT는 별도이니...&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;하지만, ucloud server는 가상서버이니 직접적인 비교는 직접 사용해보고나서 하도록......&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;</description>
      <category>클라우드</category>
      <category>MySQL</category>
      <category>ubuntu</category>
      <category>Ucloud</category>
      <category>데이터베이스</category>
      <category>비즈</category>
      <category>서버</category>
      <category>우분투</category>
      <category>유클라우드</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/204</guid>
      <comments>https://skcha.tistory.com/204#entry204comment</comments>
      <pubDate>Fri, 1 Feb 2013 17:51:53 +0900</pubDate>
    </item>
    <item>
      <title>웹 호스팅 가격 비교</title>
      <link>https://skcha.tistory.com/203</link>
      <description>&lt;p&gt;웹 호스팅 가격을 비교해보았다.&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;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;리눅스 호스팅&lt;/li&gt;&lt;li&gt;하드 용량 10G&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;table class=&quot;txc-table&quot; style=&quot;border: medium none; border-collapse: collapse; font-family: 돋움; font-size: 12px; width: 681px; height: 184px;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204); border-top: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;카페24&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;오늘과내일 &lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;가비아 &lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&amp;nbsp;아이네임즈&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;파란 &lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&amp;nbsp;후이즈&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;정보넷&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;GoDaddy&lt;/p&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;하드디스크&lt;br /&gt;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;10G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;10G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;12.5G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;10G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;10G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;10G&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;50G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;10G&lt;/p&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&amp;nbsp;트래픽&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;30G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;10G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;30G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;300G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;15G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;9G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;1000G/월&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;무제한&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;DB&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204);&quot;&gt;&amp;nbsp;무제한&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;300M&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;1G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;1G&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;800M&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;무제한&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;10G&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&lt;p&gt;&amp;nbsp;설치비&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;11,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;30,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;20,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;50,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;30,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&amp;nbsp;&lt;/td&gt;

&lt;/tr&gt;
&lt;tr&gt;&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;border-left:1px solid #ccc;;&quot;&gt;&amp;nbsp;월 사용료&lt;br /&gt;&lt;/td&gt;
&lt;td style=&quot;width: 67px; height: 24px; border-bottom: 1px solid rgb(204, 204, 204); border-right: 1px solid rgb(204, 204, 204);&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;22,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;25,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;100,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;50,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;33,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;59,700&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;70,000&lt;/p&gt;&lt;/td&gt;
&lt;td style=&quot;width:66;height:24;border-bottom:1px solid #ccc;border-right:1px solid #ccc;;&quot;&gt;&lt;p style=&quot;text-align: right;&quot;&gt;&amp;nbsp;4.24$&lt;/p&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;도메인 연결이나 이메일 계정 등 세부 사항에 대해서도 차이가 있겠지만 단순하게 용량을 위주로만 비교하였다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;국내에서는 카페24(www.cafe24.com)가 저렴하다. 물론 더 조사하면 더 저렴한 곳도 있을 것이다.&lt;br /&gt;정보넷(www.jungbo.net)은 10G 상품은 없고, 50G 상품인데 트래픽은 월 1000G DB는 무제한 이용할 수 있다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;해외는 GoDaddy(www.godaddy.com)를 비교삼아 조사해보았는데 트래픽 무제한에 DB 10G 그러고도 월 5$ 안쪽에서 이용할 수 있다니! 하드디스크 무제한, 트래픽 무제한, DB 무제한을 이용하더라도 월 10$ 안쪽에서 이용할 수 있다. 얘들 호스팅 비용은 왜 이리 싸지?&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>웹 서비스</category>
      <category>GoDaddy</category>
      <category>ㅎ</category>
      <category>가비아</category>
      <category>아이네임즈</category>
      <category>오늘과내일</category>
      <category>웹호스팅</category>
      <category>정보넷</category>
      <category>카페24</category>
      <category>파란</category>
      <category>호스팅</category>
      <category>후이즈</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/203</guid>
      <comments>https://skcha.tistory.com/203#entry203comment</comments>
      <pubDate>Fri, 6 Apr 2012 10:31:09 +0900</pubDate>
    </item>
    <item>
      <title>우분투에서 나는 꼼수다를 듣는 방법</title>
      <link>https://skcha.tistory.com/202</link>
      <description>&lt;span style=&quot;font-size: 14pt; font-weight: bold;&quot;&gt;요즘 나는 꼼수다가 장안의 화제다.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;나는 꼼수다는 팟캐스트로 방송되는 정치 평론 방송이다.&lt;br /&gt;
이미 애플 아이폰이나 아이패드를 이용하여 듣는 분들은 많이 있을 것이고,&lt;br /&gt;
안드로이드를 이용하여 듣는 방법도 많이 알려져있다.&lt;br /&gt;
&lt;br /&gt;여기서는 리눅스, 특히 우분투를 이용하는 사람들이 들을 수 있는 방법을 설명한다.&lt;br /&gt;
리눅스는 아마 윈도우즈보다도 팟캐스트를 이용하는데 더 훌륭한 OS일 것이다.&lt;br /&gt;
&lt;br /&gt;윈도우즈에서는 아이폰이나 아이패드가 없어도 무거운 iTunes를 설치해야겠지만, &lt;br /&gt;
우분투 같은 데스크톱 리눅스에는 거의 기본으로 설치되는 미디어 어플리케이션으로 팟캐스트가 지원된다.&lt;br /&gt;
거기에 팟캐스트 배포 URL만 적어넣으면 방송을 들을 수 있다.&lt;br /&gt;
&lt;br /&gt;우분투 11.04부터는 Banshee가 기본으로 설치된다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2035E7434E53863F24&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2035E7434E53863F24&quot; width=&quot;676&quot; height=&quot;482&quot; alt=&quot;&quot; filename=&quot;Selection_001.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;Podcasts를 오른쪽 마우스 버튼으로 선택하고, Add Podcast 메뉴를 선택하면, 다음과 같이 팟캐스트 주소를 입력하는 창이 나타난다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/124B493D4E5386B90E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F124B493D4E5386B90E&quot; width=&quot;687&quot; height=&quot;491&quot; alt=&quot;&quot; filename=&quot;Selection_002.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;URL을 입력하는 곳에 &quot;나는 꼼수다&quot;의 팟캐스트 주소인 &lt;br /&gt;
&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: arial, sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 18px; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255); &quot;&gt;&lt;a href=&quot;http://old.ddanzi.com/appstream/ddradio.xml&quot; class=&quot;ot-anchor&quot; style=&quot;color: rgb(51, 102, 204); cursor: pointer; text-decoration: none; &quot;&gt;http://old.ddanzi.com/appstream/ddradio.xml&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;을 입력하고, 옵션으로 Download new episodes를 선택하고, subscribe 버튼을 누르면 끝이다.&lt;br /&gt;
&lt;br /&gt;바로 새로운 방송을 다운로드하기 시작할 것이다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/147BE8364E5387690C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F147BE8364E5387690C&quot; width=&quot;686&quot; height=&quot;491&quot; alt=&quot;&quot; filename=&quot;Selection_003.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
이제 우분투에서도 &quot;나는 꼼수다&quot;를 열심히 청취할 수 있다.&lt;br /&gt;
&lt;br /&gt;근데 이거 너무 재미있는거 아닙니까....&lt;br /&gt;
&lt;br /&gt;</description>
      <category>유용한 소프트웨어</category>
      <category>Banshee</category>
      <category>나는 꼼수다</category>
      <category>리눅스</category>
      <category>우분투</category>
      <category>팟캐스트</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/202</guid>
      <comments>https://skcha.tistory.com/202#entry202comment</comments>
      <pubDate>Tue, 23 Aug 2011 19:59:12 +0900</pubDate>
    </item>
    <item>
      <title>클라우드를 중첩되게 설치하여 데이터를 안전하게 백업.</title>
      <link>https://skcha.tistory.com/201</link>
      <description>&lt;br /&gt;
클라우드의 홍수(?)다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/186399444DE883B50A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F186399444DE883B50A&quot; width=&quot;170&quot; height=&quot;297&quot; alt=&quot;&quot; filename=&quot;올레ucloud.PNG&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/176399444DE883B308&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F176399444DE883B308&quot; width=&quot;331&quot; height=&quot;205&quot; alt=&quot;&quot; filename=&quot;네이버N드라이브.PNG&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/196399444DE883B409&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F196399444DE883B409&quot; width=&quot;307&quot; height=&quot;210&quot; alt=&quot;&quot; filename=&quot;다음클라우드.PNG&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;br /&gt;
이전부터 사용하던 드롭박스 Dropbox는 기본 2GB 부터 노력여하에 따라서 8GB까지 무료로 사용할 수 있었다.&lt;br /&gt;
&lt;br /&gt;
이제 국내 포탈, 통신사에서 클라우드를 제공하기 시작하면서, &lt;br /&gt;
&lt;br /&gt;
용량은 다음 클라우드 50GB, 네이버 N드라이브 30GB, KT olleh Ucloude 50GB 등이다.&lt;br /&gt;
&lt;br /&gt;
이들을 모두 합치면 무려 130GB나 된다.&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;div&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;사무실에서 데스크톱 PC - Window 7&lt;/li&gt;
&lt;li&gt;사무실, 집에서 노트북 - Ubuntu 11.04 (Linux)&lt;/li&gt;
&lt;li&gt;집에서 데스크톱 PC - Window 7&lt;/li&gt;
&lt;li&gt;그리고 모바일기기로 Nexus One (Android)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
일단 모든 디바이스에서 사용할 수 있는 것은 DropBox, 다음 클라우드다. 이 둘은 Windows, Mac, Linux, 그리고 모바일용 클라이언트를 지원한다.&lt;br /&gt;
네이버의 N드라이브는 Windows, Mac, 모바일용 클라이언트는 제공하지만, Linux용은 없다.&lt;br /&gt;
KT olleh cloude 역시 windows, Mac, 모바일용 클라이언트까지만 제공되고 Linux용은 없다.&lt;br /&gt;
&lt;br /&gt;
&lt;table style=&quot;border-collapse:collapse&quot; width=&quot;690&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 #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;용량&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;Windows&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;Mac&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;Linux&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;Mobile&lt;br /&gt;
&amp;nbsp;(iOS, Android)&lt;br /&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;DropBox&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;2GB ~ 8GB&lt;br /&gt;
&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;다음 클라우드&lt;br /&gt;
&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;50GB&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;네이버 N드라이브&lt;br /&gt;
&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;30GB&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;X&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;KT olleh ucloude&lt;br /&gt;
&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;50GB&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;X&lt;/td&gt;
&lt;td style=&quot;border:1px solid #dadada&quot; width=&quot;16%&quot;&gt;&amp;nbsp;O&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
사무실과 집 모두 KT회선을 사용하고 있고, 모바일 역시 KT를 사용하고 있으므로 KT ollhe ucloude가 속도가 가장 잘 나올 것이라 믿고, 데스크톱의 주 클라우드는 KT olleh ucloude로 낙점.&lt;br /&gt;
거기에 아주 중요하고, 자주 보는 파일에 대해서는 DropBox를 추가로 이용하여 리눅스, 모바일에서 동시에 ......&lt;br /&gt;
&lt;br /&gt;
그림으로 표현하면 다음과 같은 구성이 될 것이다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1969053F4DE8840604&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1969053F4DE8840604&quot; width=&quot;660&quot; height=&quot;521&quot; alt=&quot;&quot; filename=&quot;구성.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;br /&gt;
olleh ucloud를 먼저 설치하고 - 순서는 큰 차이가 없지만... - 클라우드 디렉토리를 설정한다.&lt;br /&gt;
이제부터 해당 디렉토리에 파일관련 작업을 하면, olleh ucloud에 자동으로 싱크된다.&lt;br /&gt;
&lt;br /&gt;
이제 DropBox를 설치하고, 디렉토리를 olleh ucloud 디렉토리 내부에 설정한다.&lt;br /&gt;
그렇게 해야 DropBox 디렉토리에 파일작업을 하면, olleh uCloud에도 같이 반영된다.&lt;br /&gt;
&lt;br /&gt;
싱크가 필요한 다른 디바이스에도 같은 방식으로 각각의 클라우드 클라이언트를 설치한다.&lt;br /&gt;
&lt;br /&gt;
이제 내가 작업한 파일을 굳이 USB로 복사해서 들고 다니지 않아도 4개의 서로 다른 디바이스에서 열어보고, 작업할 수 있게 되었다.&lt;br /&gt;
&lt;br /&gt;
물론 각 클라우드는 클라이언트를 따로 설치하지않고, 웹 환경에서도 사용할 수 있다. 웹 브라우저를 사용할 수 있는 디바이스에서는 어디서든 사용할 수 있을 것이다.&lt;br /&gt;
&lt;br style=&quot;font-weight: bold;&quot;&gt;&lt;a style=&quot;font-weight: bold;&quot; title=&quot;[http://db.tt/X7tcn8f]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://db.tt/X7tcn8f&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;DropBox에 아직 가입하지 않았다면 이 링크를 통해서 가입할 수 있답니다.&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;</description>
      <category>웹 서비스</category>
      <category>dropbox</category>
      <category>N드라이브</category>
      <category>Olleh</category>
      <category>uCloude</category>
      <category>네이버</category>
      <category>다음</category>
      <category>드롭박스</category>
      <category>클라우드</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/201</guid>
      <comments>https://skcha.tistory.com/201#entry201comment</comments>
      <pubDate>Fri, 3 Jun 2011 13:26:49 +0900</pubDate>
    </item>
    <item>
      <title>우분투 11.10 Oneiric Ocelot 소식</title>
      <link>https://skcha.tistory.com/200</link>
      <description>우분투 11.10. 코드명은 Oneiric Ocelot이고, 10월 13일 릴리즈 예정입니다.&lt;br /&gt;
&lt;br /&gt;데스크톱 버전에서는&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;Linux Kernel 2.6.40&lt;/li&gt;
&lt;li&gt;GNOME 3&lt;/li&gt;
&lt;li&gt;GTK 3&lt;/li&gt;
&lt;li&gt;LightDM을 기본 로그인 매니저로 사용.&lt;/li&gt;
&lt;li&gt;X.org 1.10&lt;/li&gt;
&lt;li&gt;Unity의 버그를 많이 고치겠지요.&lt;/li&gt;
&lt;li&gt;Mozilla thunderbird를 기본 메일 클라이언트로&lt;/li&gt;
&lt;li&gt;Software Center에 리뷰, 점수 등의 기능을 추가할 예정&lt;/li&gt;
&lt;li&gt;새로운 artwork&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
Kubuntu 버전에서는&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;KDE Software compilation 4.7.2&lt;/li&gt;
&lt;li&gt;Qt 4.8&lt;/li&gt;
&lt;li&gt;Plasma, Rekonq, Muon Software Center, KMix 등을 기본 어플리케이션으로 포함&lt;/li&gt;
&lt;li&gt;Qt 접근성 개선&lt;/li&gt;
&lt;li&gt;일반적인 접근성 개선&lt;/li&gt;
&lt;li&gt;Kubuntu 모바일&lt;/li&gt;
&lt;li&gt;Kubuntu 태블릿&lt;br /&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;서버 버전에서는&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;Orchestra를 더 발전시킬 것이고,&lt;/li&gt;
&lt;li&gt;OpenStack을 우분투 엔터프라이즈 클라우드로 채용&lt;/li&gt;
&lt;li&gt;MySQL 5.5&lt;/li&gt;
&lt;li&gt;Percona Server&lt;/li&gt;
&lt;li&gt;MariaDB&lt;/li&gt;
&lt;li&gt;Jenkis&lt;/li&gt;
&lt;li&gt;Ensemble(PPA)&lt;/li&gt;
&lt;li&gt;Cloudera Hadoop&lt;/li&gt;
&lt;li&gt;서버 설치의 테스트 자동화 도입&lt;/li&gt;
&lt;/ul&gt;릴리즈 스케줄&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;&lt;li&gt;2011년 6월 2일 - 첫 알파 버전 릴리즈&lt;/li&gt;
&lt;li&gt;2011년 6월 30일 - 두번째 알파 버전 릴리즈&lt;/li&gt;
&lt;li&gt;2011년 8월 4일 - 세번째 알파 버전 릴리즈&lt;/li&gt;
&lt;li&gt;2011년 9월 1일 - 첫 베타 버전 릴리즈&lt;/li&gt;
&lt;li&gt;2011년 9월 22일 - 두번째 베타 버전 릴리즈&lt;/li&gt;
&lt;li&gt;2011년 10월 13일 - 우분투 11.10 Oneiric Ocelot 정식 버전 릴리즈&lt;br /&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <category>리눅스</category>
      <category>Oneiric Ocelot</category>
      <category>ubuntu 11.10</category>
      <category>우분투 11.10</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/200</guid>
      <comments>https://skcha.tistory.com/200#entry200comment</comments>
      <pubDate>Sat, 21 May 2011 10:11:26 +0900</pubDate>
    </item>
    <item>
      <title>KT 순정 넥서스원 2.3.3 OTA 시작되다. - 올레!!!</title>
      <link>https://skcha.tistory.com/198</link>
      <description>지난번 KT 발매 넥서스원 2.3.3 OTA에서 누락되었던 구글 맵 라이브러리를 포함한 업그레이드 OTA가 오늘 오전부터 시작되었다는 소식&lt;br /&gt;
&lt;br /&gt;나는 이미 CM7을 사용하고 있기에 가볍게 패스.&lt;br /&gt;
&lt;br /&gt;그나저나 해외 T-Mobile 넥서스원은 2.3.4 OTA가 진행되고 있다는데, KT에서 2.3.4를 기대하려면, 여름 휴가 때나 가능할까?&lt;br /&gt;
&lt;br /&gt;푸흡...&lt;br /&gt;</description>
      <category>모바일/넥서스원</category>
      <category>KT</category>
      <category>OTA</category>
      <category>넥서스원</category>
      <category>안드로이드</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/198</guid>
      <comments>https://skcha.tistory.com/198#entry198comment</comments>
      <pubDate>Fri, 6 May 2011 19:42:12 +0900</pubDate>
    </item>
    <item>
      <title>우분투 데스크톱 11.04에 한글환경 설치</title>
      <link>https://skcha.tistory.com/196</link>
      <description>&lt;br /&gt;
앞서도 썼지만, 나는 OS는 영문환경 그대로 사용하고, 필요할 때마다 한글 입력기로 한글을 입력할 수 있도록 설정한다.&lt;br /&gt;
굳이 OS 환경까지 한글을 표시하지 않아도된다고 생각하기 때문이다.&lt;br /&gt;
&lt;br /&gt;그러면 앞서 설치한 영문환경의 우분투 11.04에 한글 입력기를 설치하도록 하겠다.&lt;br /&gt;
&lt;br /&gt;System &amp;gt; Administration &amp;gt; Language Support를 선택하여 언어 지원 설정 소프트웨어를 실행시킨다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/193E1B384DBFD2EB0E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F193E1B384DBFD2EB0E&quot; width=&quot;700&quot; height=&quot;492&quot; alt=&quot;&quot; filename=&quot;image-010.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
아래쪽의 Install/Remove Language... 버튼을 눌러 Korean을 선택하고 Apply changes 버튼을 누르면 한글 환경과 폰트가 설치된다.&lt;br /&gt;
&lt;br /&gt;설치를 마치면, 바로 아래의 자판 입력 시스템을 설정한다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/186EF7404DBFD80313&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F186EF7404DBFD80313&quot; width=&quot;517&quot; height=&quot;451&quot; alt=&quot;&quot; filename=&quot;image-011.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
nabi, ibus 등을 선택할 수 있는데 여기서는 ibus를 선택하도록 하겠다.&lt;br /&gt;
&lt;br /&gt;선택을 마쳤으면 close 버튼을 눌러 언어 지원을 마친다.&lt;br /&gt;
&lt;br /&gt;언어 지원을 활성화하기 위해서는 gnome 세션을 다시 시작해야한다. logout 했다가 다시 login 하면 상단 상태바에 키보드 아이콘이 새로 나타나있는 것을 볼 수 있다.&lt;br /&gt;
&lt;br /&gt;이 키보드 아이콘을 눌러 몇 가지 환경을 설정해야 한다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1652DA4F4DBFDB6C1C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1652DA4F4DBFDB6C1C&quot; width=&quot;463&quot; height=&quot;528&quot; alt=&quot;&quot; filename=&quot;image-012.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;br /&gt;General 탭에서는 핫키와 폰트, 입력시스템의 시스템 트레이 표시 등을 지정할 수 있다.&lt;br /&gt;
Keyboard Shortcuts 에서는 입력 시스템을 선택하는 핫키를 바꿀 수 있다.&lt;br /&gt;
현재 Ctrl-space로 지정되어 있다.&lt;br /&gt;
&lt;br /&gt;Font &amp;amp; Style의 Show language panel을 When active로 바꾸면, 각 입력 방법이 선택되었을 때 별도의 설정 판넬을 보인다. 한글의 경우 자판을 설정하거나 한자를 입력할 수 있으므로 이를 When active로 바꾸어 놓는다.&lt;br /&gt;
&lt;br /&gt;Input Method 탭에서는 입력 방법을 설치할 수 있다. &lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/20592C4E4DBFDA3728&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F20592C4E4DBFDA3728&quot; width=&quot;463&quot; height=&quot;530&quot; alt=&quot;&quot; filename=&quot;image-013.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;Korean을 선택하여 Add 버튼을 눌러 한글 입력기를 설치해야 한다.&lt;br /&gt;
설정이 끝났으면 Close 버튼을 눌러 설정을 마친다.&lt;br /&gt;
&lt;br /&gt;이제 입력화면에서 Ctrl-Space를 누르면 한글 입력상태로 바뀌고 다시한번 Ctrl-space를 누르면 영문 입력상태로 돌아간다.&lt;br /&gt;
한글 입력상태에서는 시스템 트레이에 키보드 아이콘이 태극 아이콘으로 바뀔것이다. 그리고 화면 오른쪽 아래에 다음과 같은 판넬이 나타난다.&lt;br /&gt;
&lt;br /&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/197C57474DBFDC5C13&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F197C57474DBFDC5C13&quot; width=&quot;187&quot; height=&quot;37&quot; alt=&quot;&quot; filename=&quot;image-014.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;설정 아이콘을 눌러 한글 자판을 선택하거나, 한자 입력키를 선택할 수 있다.&lt;/p&gt;
&lt;p style=&quot;margin: 0pt;&quot;&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2001924C4DBFDCD409&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2001924C4DBFDCD409&quot; width=&quot;331&quot; height=&quot;222&quot; alt=&quot;&quot; filename=&quot;image-015.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;</description>
      <category>리눅스</category>
      <category>iBus</category>
      <category>Natty Narwhal</category>
      <category>리눅스</category>
      <category>우분투 11.04</category>
      <category>한글 입력기</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/196</guid>
      <comments>https://skcha.tistory.com/196#entry196comment</comments>
      <pubDate>Tue, 3 May 2011 19:46:53 +0900</pubDate>
    </item>
    <item>
      <title>우분투 데스크톱 11.04 버전 설치</title>
      <link>https://skcha.tistory.com/195</link>
      <description>항상 4월, 10월이면 어김없이 발표되는 우분투의 새로운 버전.&lt;br /&gt;
이번에는 4월 29일 발표되었다. 일찌감치 받아놓긴했지만, 이런저런 이유로 이제야 제대로 설치해본다.&lt;br /&gt;
&lt;br /&gt;
먼저 준비할 것은 우분투 데스크톱 11.04 버전이다.&lt;br /&gt;
&lt;br /&gt;
다음의 우분투 홈 페이지에 가면, 가장 최근의 우분투 데스크톱 버전을 다운받을 수 있다.&lt;br /&gt;
&lt;a title=&quot;[http://www.ubuntu.com/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.ubuntu.com/&quot;&gt;http://www.ubuntu.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
준비된 우분투 CD를 넣고 부팅하면, 몇 가지 스텝만으로 우분투 데스크톱 버전을 설치할 수 있다.&lt;br /&gt;
&lt;br /&gt;
CD로 부팅이되면, 다음과 같은 화면이 나타난다. &lt;br /&gt;
나는 OS는 영문으로 설치하여 사용하고, &lt;br /&gt;
한글 입력기를 따로 설치하여 필요한 곳에서 한글이 입력되도록 사용하는 것을 선호한다.&lt;br /&gt;
&lt;br /&gt;
이번에도 역시 그렇게 설치하도록 하겠다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/112BF44B4DBFC96916&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F112BF44B4DBFC96916&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-001.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
영문 그대로 두고 Install Ubuntu 버튼을 눌러 설치를 계속 진행한다.&lt;br /&gt;
&lt;br /&gt;
설치 프로그램이 하드디스크 용량, 인터넷 연결 등을 검사한다.&lt;br /&gt;
설치 환경이 제대로 되어있다면, 다음과 같은 화면을 볼 수 있을 것이다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/124DE64C4DBFCA0A1E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F124DE64C4DBFCA0A1E&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-002.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
업데이트는 설치 후에 한번에 처리할 수 있으니 선택하지않는다.&lt;br /&gt;
3rd 파피 소프트웨어 역시 설치 후에 필요한 것을 선택하여 설치할 수 있으니 여기서는 선택하지않는다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/156EB5454DBFCAC224&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F156EB5454DBFCAC224&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-003.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
하드 디스크를 전체를 지우고 우분투만 사용한다면 위 쪽을 선택해도 된다. 설치프로그램이 하드디스크 전체를 하나의 파티션으로 만들기 때문에 나중에 업그레이드나, 재 설치 때에 데이터를 백업 받아야 하는 번거로움이 있다.&lt;br /&gt;
아래쪽을 선택하면 파티션을 사용자가 나눌 수 있다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1371D8434DBFCB750B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1371D8434DBFCB750B&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-004.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
boot 파티션에 100MB&lt;br /&gt;
swap 파티션은 2048MB&lt;br /&gt;
시스템이 설치될 root 파티션에는 9GB&lt;br /&gt;
데이터 파티션인 /home 파티션에는 10GB를 할당하였다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/125B3D434DBFCBE936&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F125B3D434DBFCBE936&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-005.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
위치를 지정하고,&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/16104D3D4DBFCC0601&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F16104D3D4DBFCC0601&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-006.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
사용할 자판을 지정한다. &lt;br /&gt;
영문 환경으로 설치하더라도 한글을 입력할 것이고, 자판 규격은 한글 104키 규격이므로 제대로 선택한다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/114AF13F4DBFCC4C1A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F114AF13F4DBFCC4C1A&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-007.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
사용자를 등록하고, 암호를 확인한다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1134AA464DBFCC6E0F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1134AA464DBFCC6E0F&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-008.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
보면 알겠지만, 아까 파티션 작업이 끝나면 이미 파일 복사가 진행되고 있다.&lt;br /&gt;
이제 조금만 지나면, 설치가 끝나고 우분투 11.04 버전의 화면을 볼 수 있을 것이다.&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/132216484DBFCD0233&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F132216484DBFCD0233&quot; width=&quot;700&quot; height=&quot;525&quot; alt=&quot;&quot; filename=&quot;image-009.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
리부팅을 하면 깔끔하게 설치된 우분투 데스크톱 11.04 버전의 화면을 볼 수 있다.&lt;br /&gt;
&lt;br /&gt;</description>
      <category>리눅스</category>
      <category>Linux</category>
      <category>Natty Narwhal</category>
      <category>Ubuntu 11.04</category>
      <category>리눅스</category>
      <category>우분투 11.04</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/195</guid>
      <comments>https://skcha.tistory.com/195#entry195comment</comments>
      <pubDate>Tue, 3 May 2011 18:39:54 +0900</pubDate>
    </item>
    <item>
      <title>넥서스원 KT 프로요를 T-Mobile 진저브레드로 업그레이드</title>
      <link>https://skcha.tistory.com/197</link>
      <description>재 넥서스원을 내 것과 지인 것 두 대를 관리(?)하고 있다.&lt;br /&gt;
&lt;br /&gt;
물론 하나는 내가 직접 사용하는 것이고, 다른 하나는 거의 컴맹(?)인 지인 것을 관리만 해주는 정도이다. 여자이고 컴퓨터에 관심이 별로 없다보니 스마트폰을 사용하는 것 까지는 잘 하는데, 업그레이드하고 하는 등의 일은 쫌 어려운 듯 싶다. 이런 분들에게는 애플 아이폰이 답일까?&lt;br /&gt;
&lt;br /&gt;
여튼 내 폰은 이미 오래전에 루팅도 하고, 이런 저런 롬도 올려보고, 다시 정발 롬으로 돌아가기도 했었고, 지금은 CyanogetMod 7을 사용하고 있다.&lt;br /&gt;
&lt;br /&gt;
오늘은 지인의 폰 - 아직 KT 프로요 상태 -을 일단 T-Mobile 진저브레드로 업그레이드하고, 그 과정을 기록한다.&lt;br /&gt;
&lt;br /&gt;
먼저 KT 정식 프로요 롬을 T-Mobile 진저브레드 롬으로 업그레이드 하기 위해서 필요한 것들을 정리하자면,&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;준비&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: 11pt; font-weight: bold;&quot;&gt;KT 정식 프로요 롬 &lt;br /&gt;
&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;업그레이드 실패시 다시 KT 정식 프로요 롬으로 돌아오기 위해서 필요하다.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.shipped-roms.com/shipped/Passion%20%28Nexus%20One%29/&quot;&gt;http://www.shipped-roms.com/shipped/Passion%20(Nexus%20One)/&lt;/a&gt; &lt;span style=&quot;font-family: monospace;&quot;&gt;PASSIMG_KR_KT_2.2.1_FRG83.zip 파일을 다운받아 passimg.zip 이란 이름으로 변경하여 SD 카드의 루트에 복사해넣어둔다.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc; font-weight: bold;&quot;&gt;&lt;li&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;T-Mobile 진저브레드 롬&lt;/span&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;ul&gt;&lt;li&gt;현재 아래에서 받을 수 있습니다.&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.filestube.com/4ytje0paJ3Tj7LCHDrSOpP/Nexus-One-GRI40-unrooted.html&quot;&gt;http://www.filestube.com/4ytje0paJ3Tj7LCHDrSOpP/Nexus-One-GRI40-unrooted.html&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/ul&gt;
&lt;br /&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;/ul&gt;

&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;&lt;span style=&quot;font-size: 11pt; font-weight: bold;&quot;&gt;z4root 1.3.0&lt;/span&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;안드로이드 프로요 이하 버전에서 루팅을 간단하게 할 수 있도록 지원하는 앱이다.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;현재는 마켓에서는 찾을 수 없다.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=833953&quot;&gt;http://forum.xda-developers.com/showthread.php?t=833953&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;z4root.1.3.0.zpk를 다운받는다.&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;ROM Manager 설치&lt;/span&gt;&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;마켓에서 ROM Manager를 검색하여 설치한다.&lt;/li&gt;
&lt;/ul&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;z4root를 사용하여 루팅&lt;/span&gt;&lt;/span&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;z4root를 실행하면 바로 Temporary, Permernant 루팅을 선택할 수 있다.&lt;/li&gt;
&lt;li&gt;Temporary Root을 선택하면 폰을 다시 부팅하기 전까지 루팅 상태로 동작한다.&lt;/li&gt;
&lt;li&gt;Permanent Root를 선택하면 폰을 리부팅하여도 계속 루팅 상태로 동작한다.&lt;/li&gt;
&lt;li&gt;여기서는 Permanent Root를 선택한다.&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/206D2F4E4DC3AF5529&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F206D2F4E4DC3AF5529&quot; width=&quot;320&quot; height=&quot;526&quot; alt=&quot;&quot; filename=&quot;루팅_z4root.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p style=&quot;margin: 0pt;&quot;&gt;루팅이 성공하면 자동으로 재부팅이 될 것이다.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;재부팅 후 z4root를 다시 실행하면, Superuser Request라는 화면이 보인다.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/166B5C4A4DC3AF6B1B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F166B5C4A4DC3AF6B1B&quot; width=&quot;320&quot; height=&quot;533&quot; alt=&quot;&quot; filename=&quot;z4root_루팅1.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;해당 앱이 root user로 활동할 수 있도록 허락할 것인지를 확인하는 창이다.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;Allow를 선택하면 이제 해당 앱은 root 사용자 권한으로 활동한다.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p style=&quot;margin: 0pt;&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1873C34E4DC3AF820A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1873C34E4DC3AF820A&quot; width=&quot;320&quot; height=&quot;533&quot; alt=&quot;&quot; filename=&quot;z4root_루팅2.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size: 12pt;&quot;&gt;ROM Manager를 이용한 ClockworkMod 복구모드 설치&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;앞서 설치해둔 ROM Manager를 실행&lt;/li&gt;
&lt;li&gt;Superuser Request 창이 뜨면, Allow 버튼을 누른다.&lt;/li&gt;
&lt;li&gt;가장 아래쪽의 ClockworkMod 버전 목록에서 2.5.1.4 버전을 선택&lt;/li&gt;
&lt;li&gt;무슨 이유인지는 모르겠지만, 저의 경우 최신 버전은 잘 동작하지 않았고, 2.5.1.4 버전일 때 잘 동작하더군요.&lt;/li&gt;
&lt;/ul&gt;&lt;p style=&quot;margin:0&quot;&gt;&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/172E93444DC3C7401B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F172E93444DC3C7401B&quot; width=&quot;240&quot; height=&quot;400&quot; alt=&quot;&quot; filename=&quot;롬매니저-1.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;&lt;p&gt;&lt;/p&gt;
&lt;br /&gt;&lt;ul style=&quot;list-style-type: disc;&quot;&gt;
&lt;li&gt;ClockworkMod 복구모드가 설치되면 대체 복구모드의 설치에는 RA Recovery v2.2.1이 보인다.&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size: 11pt;&quot;&gt;T-Mobile ROM 설치&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;ul style=&quot;list-style-type: disc; &quot;&gt;&lt;li&gt;ROM Manager에서 SD Card에서 ROM 설치를 선택하여 앞서 다운받은 T-Mobile 진저브레드 롬을 설치한다.&lt;/li&gt;
&lt;li&gt;SD 카드에서 T-Mobile 롬을 저장한 디렉토리를 선택하고, ROM 파일을 선택하면&lt;/li&gt;
&lt;li&gt;재부팅되면서 ClockworkMod Recovery가 실행된다.&lt;/li&gt;
&lt;li&gt;트랙볼을 움직여서&lt;/li&gt;
&lt;ul&gt;&lt;li&gt;wipe data/factory reset&lt;/li&gt;
&lt;li&gt;install zip from sdcard &amp;gt; choose zip from sdcard&lt;/li&gt;
&lt;/ul&gt;&lt;li&gt;이제 지루한 화면이 지나면, 설치가 완료된다.&lt;br /&gt;
 &lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;/p&gt;</description>
      <category>모바일/넥서스원</category>
      <category>ClockworkMod</category>
      <category>KT 순정</category>
      <category>ROM Manager</category>
      <category>T-mobile</category>
      <category>z4root</category>
      <category>넥서스원</category>
      <category>안드로이드</category>
      <category>진저브레드</category>
      <author>달리만듦</author>
      <guid isPermaLink="true">https://skcha.tistory.com/197</guid>
      <comments>https://skcha.tistory.com/197#entry197comment</comments>
      <pubDate>Fri, 25 Mar 2011 17:19:00 +0900</pubDate>
    </item>
  </channel>
</rss>