<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SolarView.Net</title>
	<atom:link href="http://www.solarview.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.solarview.net</link>
	<description>miscellaneous notes on architectural environment &#38; etc</description>
	<lastBuildDate>Sun, 20 May 2012 13:57:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>학과 홈페이지 재건 &#8211; Samba, FTP</title>
		<link>http://www.solarview.net/archives/445</link>
		<comments>http://www.solarview.net/archives/445#comments</comments>
		<pubDate>Wed, 09 May 2012 11:05:02 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smbd]]></category>
		<category><![CDATA[ubuntu 11.10]]></category>
		<category><![CDATA[vsftpd]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=445</guid>
		<description><![CDATA[[samba 서버]- ubuntu 11.10에서는 기본적으로 설치가 되어 있다.- 실행되고 있는 지를 알려면 다음과 같이 명령을 하면 된다.ps aux &#124; grep smbd- 따라서 설정만 해주면 된다. 다음은 smbd를 설정하는 과정이다.(참고 :FALinux Forum)&#60;목표&#62;architect&#160; 아이디를 사용하는 사용자에 대해,/home/architect 디렉토리를 Archives라는 이름으로 사용하도록 ~$ &#8230; <a href="http://www.solarview.net/archives/445">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>[samba 서버]</strong><br />- ubuntu 11.10에서는 기본적으로 설치가 되어 있다.<br />- 실행되고 있는 지를 알려면 다음과 같이 명령을 하면 된다.<br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">ps aux | grep smbd</span><br />- 따라서 설정만 해주면 된다. 다음은 smbd를 설정하는 과정이다.(참고 :<a href="http://forum.falinux.com/zbxe/?document_srl=518219" target="_blank">FALinux Forum</a>)<br />&lt;목표&gt;<br />architect&nbsp; 아이디를 사용하는 사용자에 대해,<br />/home/architect 디렉토리를 Archives라는 이름으로 사용하도록</p>
<pre class="faterm">~$ sudo vi /etc/samba/smb.conf </pre>
<p>
<pre class="jwlib">[global]
# 윈도우 네트워크 환경의 작업 그룹 이름을 입력했습니다.
workgroup = <span style="color: rgb(255, 0, 0);">Architecture</span>
<span style="color:#990000;">dos charset = CP949
display charset = UTF8
unix charset = UTF8</span>

; load printers = yes
printing = lpmg

# 윈도우 탐색기에 출력할 컴퓨터 이름입니다.
server string = <span style="color: rgb(212, 26, 1);">File Server</span>
printcap name = /etc/printcap
cups options = raw
log file = /var/log/samba/%m.log
max log size = 50

# 사용자 계정으로 설정합니다.
security = <span style="color: rgb(212, 26, 1);">USER</span>
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
dns proxy = no
password server = None
username map = /etc/samba/smbusers
; idmap uid = 16777216-33554431
; idmap gid = 16777216-33554431
; template shell = /bin/false
; guest ok = no
; winbind use default domain = no

# architect 유저에 대한 삼바 공유 폴더 설정입니다.
[<span style="color: rgb(212, 26, 1);">Archives</span>]
comment = <span style="color: rgb(212, 26, 1);">architect's archives</span>
path = <span style="color: rgb(212, 26, 1);">/home/architect</span>
writeable = <span style="color: rgb(212, 26, 1);">yes</span>
guest ok = no
create mask = 0644
directory mask = 0755</pre>
<p>
<p>samba 사용자를 등록하기</p>
<pre class="faterm">~$ sudo smbpasswd -a architect
New SMB password:
Retype new SMB password:
startsmbfilepwent_internal: file /etc/samba/smbpasswd did not exist. File successfully created.
Added user architect.
~$ </pre>
<p>samba 재시작하기
<pre class="faterm">~$ sudo service smbd restart</pre>
<p><strong>[FTP 서버]</strong><br />- ubuntu 11.10에서는 기본적으로 설치가 되어 있지 않다.</p>
<p>- 다음은 vsftp를 설치하고 설정하는 과정이다.(출처 : <a href="http://www.jonathanmoeller.com/screed/?p=3334" target="_blank">Help Desk Screeds</a>)<br />- 설치하기<br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">sudo apt-get install vsftpd</span></p>
<p><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">- 설정 파일 편집하기</span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">sudo vi /etc/vsftpd.conf</span><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">- 편집내용</span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">#write_enable=YES</span><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span>위 내용을 찾아 아래와 같이 주석을 제거한다.<br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">write_enable=YES</span><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span>아무나 접속하지 못하게 하려면 아래 내용은 그대로 둔다.<br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">anonymous_enable=NO</span><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><br /></span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">- vsftpd를 재시작하기</span><br /><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; ">sudo service vsftpd restart</span><span style="line-height: 15px; color: rgb(0, 0, 0); font-family: lucida, verdana, sans-serif; "><strong><br /></strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/445/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>시들어가는 신재생에너지라?</title>
		<link>http://www.solarview.net/archives/444</link>
		<comments>http://www.solarview.net/archives/444#comments</comments>
		<pubDate>Tue, 08 May 2012 11:01:46 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=444</guid>
		<description><![CDATA[한국경제 시들어가는 신재생에너지, 접느냐 버티느냐 `딜레마`]]></description>
			<content:encoded><![CDATA[<p>한국경제<br />
<h1><font size="2"><a href="http://www.hankyung.com/news/app/newsview.php?aid=2012050812371&amp;sid=010401&amp;nid=000&amp;ltype=1" target="_blank">시들어가는 신재생에너지, 접느냐 버티느냐 `딜레마`</a></font></h1>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/444/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>학과 홈페이지 재건 &#8211; XE, GD</title>
		<link>http://www.solarview.net/archives/443</link>
		<comments>http://www.solarview.net/archives/443#comments</comments>
		<pubDate>Thu, 03 May 2012 10:34:08 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[XE]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=443</guid>
		<description><![CDATA[- XE는 zend optimizer가 필요하지 없음 문제 1:  관리자 화면이 백지처럼 하얗게 된다. 처방 1 : 모듈의 권한 변경 xe/module의 권한을 -R 755로 한다. 문제 2: Ubuntu 11.10에는 GD 라이브러리가 없음 처방 : GD 설치 $sudo apt-get install php5-gd $sudo &#8230; <a href="http://www.solarview.net/archives/443">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>- XE는 zend optimizer가 필요하지 없음</p>
<p>문제 1:  관리자 화면이 백지처럼 하얗게 된다.<br />
처방 1 : <a href="http://www.xpressengine.com/qna/20600204" target="_blank">모듈의 권한 변경</a><br />
xe/module의 권한을 -R 755로 한다.</p>
<p>문제 2: Ubuntu 11.10에는 GD 라이브러리가 없음<br />
<span style="color: #808080; font-family: 돋움, arial, sans-serif; line-height: 19px;">처방 : GD 설치<br />
</span><br />
<span style="color: #808080; font-family: 돋움, arial, sans-serif; line-height: 19px;">$sudo apt-get install php5-gd<br />
$sudo /etc/init.d/apache2 restart</span></p>
<p><span style="color: #808080; font-family: 돋움, arial, sans-serif;"><span style="line-height: 19px;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/443/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>학과 홈페이지 재건 &#8211; Apache</title>
		<link>http://www.solarview.net/archives/442</link>
		<comments>http://www.solarview.net/archives/442#comments</comments>
		<pubDate>Wed, 02 May 2012 05:34:17 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=442</guid>
		<description><![CDATA[0.0 서버의 잘못이 아니라, 학교에서 트래픽이 많다고 그냥 네트워크를 잘라 버렸다.그것도 모르고 시스템 문제인줄 알고 새로 설치했다. 왜, 전산망을 끊으면 알려주지 않는 것인지 모르겠다. 0.1. &#8220;테크노트&#8221;를 위해서는 Zend Optimizer가 필요하다.0.2. Zend Optimizer를 위해서는 PHP 5.2.* 버전이 되어야 한다.0.3. Ubuntu 11.10은 &#8230; <a href="http://www.solarview.net/archives/442">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>0.0 서버의 잘못이 아니라, 학교에서 트래픽이 많다고 그냥 네트워크를 잘라 버렸다.<br />그것도 모르고 시스템 문제인줄 알고 새로 설치했다. 왜, 전산망을 끊으면 알려주지 않는 것인지 모르겠다.</p>
<p>0.1. &#8220;테크노트&#8221;를 위해서는 Zend Optimizer가 필요하다.<br />0.2. Zend Optimizer를 위해서는 PHP 5.2.* 버전이 되어야 한다.<br />0.3. Ubuntu 11.10은 PHP 5.3.*이라서 다운그레이드를 해야 한다.<br />==&gt; 현재는 이것을 하지 않았다. &nbsp;왜냐하면 &#8220;텍스트큐브&#8221;는 Zend Optimizer가 필요없다.<br />과거 게시판 테크노트로 되어 있어 접근할 수 없게 된다. (포기부분)</p>
<p>&lt;목표&gt;<br />1. Ubuntu 11.10은 기본적으로 Rewrite 기능이 없다. 이것을 가능하게 해야 한다.<br />2. mySQL의 저장 위치를 바꾸어줘야 한다.</p>
<p><font size="2">[Rewrite문제]</font><br /><font size="2"><span style="line-height: 22px;">1. 아파치 rewrite를 활성화시킨다.</span></font><br /><span style="color: rgb(55, 55, 55); font-family: 'malgun gothic', 'Apple SD Gothic Neo', applegothic, nanumgothic, NanumGothicWeb, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 17px; font-weight: 300; line-height: 26px; ">
<div style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: inherit; font-size: 17px; font-style: inherit; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; vertical-align: baseline; word-break: break-all; ">
<div id="highlighter_312386" class="syntaxhighlighter  plain" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: inherit; font-size: 0.8em !important; font-style: inherit; font-weight: inherit; margin-top: 1em !important; margin-right: 0px !important; margin-bottom: 1em !important; margin-left: 0px !important; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; vertical-align: baseline; word-break: break-all; width: 756px; position: relative !important; overflow-x: auto !important; overflow-y: auto !important; background-color: white !important; ">
<table style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; border-collapse: separate; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; width: 756px; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; box-sizing: content-box !important; min-height: inherit !important; background-position: initial initial !important; background-repeat: initial initial !important; " border="0" cellpadding="0" cellspacing="0">
<tbody style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; background-position: initial initial !important; background-repeat: initial initial !important; ">
<tr style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; background-position: initial initial !important; background-repeat: initial initial !important; ">
<td class="code" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; text-align: left !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; top: auto !important; width: 726px; box-sizing: content-box !important; min-height: inherit !important; background-position: initial initial !important; background-repeat: initial initial !important; ">
<div class="container" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: relative !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; background-position: initial initial !important; background-repeat: initial initial !important; ">
<div class="line number1 index0 alt2" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 1em !important; padding-bottom: 0px !important; padding-left: 1em !important; vertical-align: baseline !important; word-break: break-all; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: white !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; white-space: pre !important; background-position: initial initial !important; background-repeat: initial initial !important; "><code class="plain plain" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; font: normal normal normal 1em/normal Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; color: black !important; background-position: initial initial !important; background-repeat: initial initial !important; ">sudo a2enmod rewrite</code><br /><code class="plain plain" style="border-top-width: 0px !important; border-right-width: 0px !important; border-bottom-width: 0px !important; border-left-width: 0px !important; border-style: initial; border-color: initial; font-family: Consolas, 'Bitstream Vera Sans Mono', 'Courier New', Courier, monospace !important; font-size: 1em !important; font-style: normal !important; font-weight: normal !important; margin-top: 0px !important; margin-right: 0px !important; margin-bottom: 0px !important; margin-left: 0px !important; outline-width: 0px !important; outline-style: initial !important; outline-color: initial !important; padding-top: 0px !important; padding-right: 0px !important; padding-bottom: 0px !important; padding-left: 0px !important; vertical-align: baseline !important; word-break: break-all; font: normal normal normal 1em/normal Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace; background-image: none !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; background-color: initial !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-bottom-right-radius: 0px !important; border-bottom-left-radius: 0px !important; border-style: initial !important; border-color: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; overflow-x: visible !important; overflow-y: visible !important; position: static !important; right: auto !important; text-align: left !important; top: auto !important; width: auto !important; box-sizing: content-box !important; min-height: inherit !important; color: black !important; background-position: initial initial !important; background-repeat: initial initial !important; "><br /></code></div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<p></span>
<div><font size="2"><span style="line-height: 22px;">2. apache2.conf를 수정한다.<br /></span></font>
<div><span style="color: rgb(55, 55, 55); font-family: 'malgun gothic', 'Apple SD Gothic Neo', applegothic, nanumgothic, NanumGothicWeb, 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 17px; font-weight: 300; line-height: 26px; ">
<pre class="brush:plain" style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-family: inherit; font-size: 13px; font-style: inherit; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 1.625em; margin-left: 0px; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0.75em; padding-right: 1.625em; padding-bottom: 0.75em; padding-left: 1.625em; vertical-align: baseline; word-break: break-all; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: rgb(244, 244, 244); font: normal normal normal 13px/normal 'Courier 10 Pitch', Courier, monospace; line-height: 1.5; overflow-x: auto; overflow-y: auto; background-position: initial initial; background-repeat: initial initial; ">&lt;IfModule mod_rewrite.c&gt;
rewriteEngine On
&lt;/IfModule&gt;</pre>
<p></span><font size="2">3. /etc/apache2/site-enabled/000-default 수정한다.</font></div>
<p><font size="2">Options FollowSymLinks</font><br /><font size="2">AllowOverride FileInfo</font><br /><font size="2">를 해줘야 한다.<br />-출처: &nbsp;<span><a href="http://mytory.co.kr/archives/108" target="_blank">아파치 rewrite module 켜서 .htaccess 활성화하기(우분투 기준)</a></span></font><br /><font size="2"><br /></font>PHP파일 문제<br /><font size="2"><span>- <a href="http://blog.simplism.kr/?p=1982" target="_blank">[Ubuntu 11.10 LTS] php파일이 열리지 않고, 다운받아지는 경우</a></span></font></div>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/442/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>우분투 11.10 mysql에서 DB파일의 위치를 변경 방법</title>
		<link>http://www.solarview.net/archives/441</link>
		<comments>http://www.solarview.net/archives/441#comments</comments>
		<pubDate>Tue, 01 May 2012 12:50:42 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=441</guid>
		<description><![CDATA[&#60;개요&#62;데이터베이스의 저장 장소를 별도로 하는 경우가 많다. 그러면 해당 DBMS가 그 위치를 알게 할 필요가 있다. 현재 학과 mySQL를 자료를 /home/mysql 에 보관하고 있다. 자료를 별도의 파티션에 두고 여기를 /home으로 마운트했다. 이렇게 하면 시스템을 소위 엎어도 다시 복구하기가 편하다.우분투 11.10은 &#8230; <a href="http://www.solarview.net/archives/441">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&lt;개요&gt;<br />데이터베이스의 저장 장소를 별도로 하는 경우가 많다. 그러면 해당 DBMS가 그 위치를 알게 할 필요가 있다.<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">현재 학과 mySQL를 자료를 /home/mysql 에 보관하고 있다. 자료를 별도의 파티션에 두고 여기를 /home으로 마운트했다. 이렇게 하면 시스템을 소위 엎어도 다시 복구하기가 편하다.<br />우분투 11.10은 /var/lib/mysql 에 자료를 저장하고 있다. 따라서 이 위치를 변경해줘야 학과 자료를 읽어올 수 있다.</p></blockquote>
<p>&lt;가정&gt;<br />데이터베이스 위치 : /home/mysql</p>
<p>&lt;진행&gt;1. mysql를 정지시킨다<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">sudo /etc/init.d/mysql stop</p></blockquote>
<p>2. /etc/mysql/my.cnf를 다음과 같이 수정한다.<br />변경 전<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">datadir = /var/lib/mysql</p></blockquote>
<p>변경 후<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">datadir = /home/mysql</p></blockquote>
<p>3. /etc/apparmor.d/usr.sbin.mysqld를 수정한다.<br />변경 전<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">/var/lib/mysql/ r,<br />/var/lib/mysql/** rwk,</p></blockquote>
<p>변경 후<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">&nbsp; /home/mysql/ r,<br />&nbsp; /home/mysql/** rwk, </p></blockquote>
<p>4. 변경된 내용을 반영시킨다.<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">sudo /etc/init.d/apparmor restart</p></blockquote>
<p>5. 다시 mySQL를 재시동한다.<br />
<blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">sudo /etc/init.d/mysql start</p></blockquote>
<p>&lt;참고문헌&gt;<br />원문 : <a href="http://suminstory.tistory.com/114" target="_blank">http://suminstory.tistory.com/114</a><br />** 원문에서는 우분투 8.04였으나, 11.10에서도 무난히 작동한다.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/441/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes를 위한 flac, ogg 파일 변환 XLD</title>
		<link>http://www.solarview.net/archives/440</link>
		<comments>http://www.solarview.net/archives/440#comments</comments>
		<pubDate>Thu, 26 Apr 2012 12:38:40 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[aac]]></category>
		<category><![CDATA[flac]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[m4a]]></category>
		<category><![CDATA[ogg]]></category>
		<category><![CDATA[맥]]></category>
		<category><![CDATA[파일변환]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=440</guid>
		<description><![CDATA[1. XLD 내려 받기http://www.macupdate.com/app/mac/23430/x-lossless-decoder 2. XLD 사용법http://mindb.tistory.com/339 이 사이트들을 알게된 것은 아래의 사이트에서http://blog.daum.net/indyworker/34]]></description>
			<content:encoded><![CDATA[<p>1. XLD 내려 받기<br /><a href="http://www.macupdate.com/app/mac/23430/x-lossless-decoder" target="_blank">http://www.macupdate.com/app/mac/23430/x-lossless-decoder</a></p>
<p>2. XLD 사용법<br /><a href="http://mindb.tistory.com/339" target="_blank">http://mindb.tistory.com/339</a></p>
<p>이 사이트들을 알게된 것은 아래의 사이트에서<br /><a href="http://blog.daum.net/indyworker/34" target="_blank">http://blog.daum.net/indyworker/34</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/440/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TextCube&#8217;s &#8220;Rewrite Warning&#8221; On OS X Lion Server</title>
		<link>http://www.solarview.net/archives/439</link>
		<comments>http://www.solarview.net/archives/439#comments</comments>
		<pubDate>Sat, 31 Mar 2012 15:54:35 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=439</guid>
		<description><![CDATA[홈페이지가 제대로 작동하려면 1. 서버에 rewrite 모듈이 설치되고 로드가 되어야 한다.2. 홈페이지 폴더에 대한 설정 중 Options FollowSymLinks와 Allowoverride FileInfo를 해줘야 한다.3. 다음은 Rewrite 경고 메시지이다.4. 수정 후 아파치를 재시작하려면 다음과 같이 입력한다. sudo apachectl restart Rewrite를 사용할 수 없습니다.다음 &#8230; <a href="http://www.solarview.net/archives/439">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>홈페이지가 제대로 작동하려면 <br />1. 서버에 rewrite 모듈이 설치되고 로드가 되어야 한다.<br />2. 홈페이지 폴더에 대한 설정 중 Options FollowSymLinks와 Allowoverride FileInfo를 해줘야 한다.<br />3. 다음은 Rewrite 경고 메시지이다.<br />4. 수정 후 아파치를 재시작하려면 다음과 같이 입력한다.
<pre>sudo apachectl restart</pre>
<p><span style="color: rgb(68, 68, 68); font-size: 13px; line-height: 26px; font-family: AppleGothic; ">
<ul style="color: red; ">
<li>Rewrite를 사용할 수 없습니다.<br /><span style="color: black; ">다음 항목을 확인하십시오.</span></li>
<input id="disableRewrite" type="checkbox" name="disableRewrite">&nbsp;<label for="disableRewrite">rewrite 모듈을 사용하지 않습니다. 만약 rewrite 모듈 설정을 올바르게 했는데도 모듈 사용 여부의 검사에 문제가 있는 경우 rewrite 모듈을 사용하지 않음을 선택하시고 이 부분을 건너 뛰시기 바랍니다. 지금 설정하지 않아도 설치 이후에 관리 패널의 서비스설정-서버 에서 rewrite 관련 설정을 할 수 있습니다.</label>
<ol style="color: blue; ">
<li>웹서버 설정에 <strong>mod_rewrite</strong>의 로딩이 포함되어야 합니다.<br /><samp>예: LoadModule <strong>rewrite_module</strong>&nbsp;modules/<strong>mod_rewrite</strong>.so</samp></li>
<li>웹서버 설정의 이 디렉토리에 대한 <em>Options</em>&nbsp;항목에 <strong>FollowSymLinks</strong>가 포함되거나 <strong>All</strong>이어야 합니다.<samp><br />예: Options <strong>FollowSymLinks</strong></samp>&nbsp;<samp><br />예: Options <strong>All</strong></samp></li>
<li>웹서버 설정의 이 디렉토리에 대한 <em>AllowOverride</em>&nbsp;항목에 <strong>FileInfo</strong>가 포함되거나 <strong>All</strong>이어야 합니다. <samp><br />예: AllowOverride <strong>FileInfo</strong></samp>&nbsp;<samp><br />예: AllowOverride <strong>All</strong></samp></li>
<li><strong>위 2와 3의 문제는 아래 내용을 웹서버 설정에 포함시켜 해결할 수 있습니다.</strong>&nbsp;<samp style="color: black; "><br />&lt;Directory &#8220;/web/scbyun/wwwhome&#8221;&gt;<br />&nbsp; Options FollowSymLinks<br />&nbsp; AllowOverride FileInfo<br />&lt;/Directory&gt;</samp></li>
</ol>
</ul>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/439/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>내가 대학원에 들어왔을 때 알았더라면 좋았을 노하우</title>
		<link>http://www.solarview.net/archives/437</link>
		<comments>http://www.solarview.net/archives/437#comments</comments>
		<pubDate>Tue, 13 Mar 2012 08:15:23 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[연구]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=437</guid>
		<description><![CDATA[http://www.slideshare.net/pelexus/ss-11919783]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.slideshare.net/pelexus/ss-11919783" target="_blank">http://www.slideshare.net/pelexus/ss-11919783</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/437/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firmware v2.00.02 for 3CRWE554G72 fails</title>
		<link>http://www.solarview.net/archives/434</link>
		<comments>http://www.solarview.net/archives/434#comments</comments>
		<pubDate>Wed, 08 Feb 2012 08:55:35 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Facilities]]></category>
		<category><![CDATA[라우터]]></category>
		<category><![CDATA[무선]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=434</guid>
		<description><![CDATA[OfficeConnect Wireless 11g Cable/DSL Gateway 정말 황당한 경험이다.예전에 산 유무선 라우터의 펌웨어를 업그레이드 하려고, 3com 웹사이트에 접속했다. (이제는 HP로 바뀌어 있었다.)모델명 3CRWE554G72 에 대한 드라이버를 검색했더니 v 2.0 있었다. 현재 내 버전은 V1.02.15이다.얼싸 좋다 하고 회원 가입까지 해서 내려 받고 &#8230; <a href="http://www.solarview.net/archives/434">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>OfficeConnect Wireless 11g Cable/DSL Gateway</p>
<p>정말 황당한 경험이다.<br />예전에 산 유무선 라우터의 펌웨어를 업그레이드 하려고, 3com 웹사이트에 접속했다. (이제는 HP로 바뀌어 있었다.)<br />모델명 3CRWE554G72 에 대한 드라이버를 검색했더니 v 2.0 있었다. 현재 내 버전은<br />
	V1.02.15이다.<br />얼싸 좋다 하고 회원 가입까지 해서 내려 받고 설치를 했는데, 계속해서 에러 메시지가 떴다. <br />
<blockquote>Upload Data Error! Please make sure your file is correct!</p></blockquote>
<p>앗, 이런!<br />왜 이러지? 하면서 새로 내려 받아 해보기도 여러 번 했다. <br />다시 구글링!<br />아, 이 페이지를 보고야 말았다.<br />
<h4 style="margin-bottom: 0.5em;"><a href="http://www.broadbandreports.com/forum/remark,12410107" target="_blank">Firmware v2.00.02 for 3CRWE554G72 fails</a></h4>
<p>결론<br />모델명 3CRWE554G72에 대한 펌웨어 업그레이드는 현재까지 없다.<br />그런데, 왜 같은 모델명으로 엉뚱한 파일을 올려놓았는지 생각할수록 괘씸하다.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/434/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 원격 접속</title>
		<link>http://www.solarview.net/archives/430</link>
		<comments>http://www.solarview.net/archives/430#comments</comments>
		<pubDate>Tue, 17 Jan 2012 12:15:26 +0000</pubDate>
		<dc:creator>solarview</dc:creator>
				<category><![CDATA[Server]]></category>
		<category><![CDATA[데스크탑]]></category>
		<category><![CDATA[원격]]></category>
		<category><![CDATA[접속]]></category>

		<guid isPermaLink="false">http://www.solarview.net/wordpress/?p=430</guid>
		<description><![CDATA[윈도우 7 컴퓨터를 원격 접속하여 모든 것을 관리하는 방법은?- 윈7 원격 데스크탑 설정- 원격데스크톱에서 내 컴으로 파일 전송하는 방법]]></description>
			<content:encoded><![CDATA[<p>윈도우 7 컴퓨터를 원격 접속하여 모든 것을 관리하는 방법은?<br />- <a href="http://byseob.blogspot.com/2009/08/%EC%9C%887-%EC%9B%90%EA%B2%A9-%EB%8D%B0%EC%8A%A4%ED%81%AC%ED%83%91-%EC%84%A4%EC%A0%95.html" target="_blank">윈7 원격 데스크탑 설정</a><br />- <a href="http://zauin09.egloos.com/2261971" target="_blank">원격데스크톱에서 내 컴으로 파일 전송하는 방법</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solarview.net/archives/430/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

