<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>기록이 기억이 되는 곳, JOAU의 공간</title>
    <link>https://hanmini.tistory.com/</link>
    <description>이곳은 거창한 프로젝트나 화려한 디자인을 위한 곳이 아닙니다. 빠르게 흘러가는 일상 속에서 잊고 싶지 않은 순간들을 붙잡아두기 위해 만든 지극히 개인적인 아카이브입니다.

때로는 기술적인 공부 기록이, 때로는 빗소리를 들으며 쓴 일기가 올라옵니다. 방문해주신 분들에게도 제 기록이 작은 쉼표가 되기를 바랍니다.</description>
    <language>ko</language>
    <pubDate>Wed, 8 Apr 2026 10:30:39 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>JOAU</managingEditor>
    <item>
      <title>LXC 업데이트문제</title>
      <link>https://hanmini.tistory.com/226</link>
      <description>&lt;h2 data-ke-size=&quot;size26&quot;&gt;  해결 순서 요약 (정리)&lt;/h2&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;1. LXC 네트워크 확인&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;먼저 컨테이너에 접속해서 IP가 할당됐는지 확인:&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;pct exec 109 &amp;ndash; ip a&lt;/p&gt;
&lt;pre class=&quot;routeros&quot;&gt;&lt;code&gt;pct exec 109 -- ip a
&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컨테이너가 192.168.1.xxx 형식의 IP를 받아야 합니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;  만약 &lt;b&gt;아예 IP가 없거나 169.x.x.x&lt;/b&gt; 이면 DHCP 실패입니다.&lt;/p&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;2. 컨테이너에 고정 IP 및 DNS 설정 (예시)&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컨테이너 내부에서 설정:&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;pct exec 109 &amp;ndash; bash&lt;/p&gt;
&lt;pre class=&quot;ada&quot;&gt;&lt;code&gt;pct exec 109 -- bash
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;/etc/netplan/50-cloud-init.yaml 또는 /etc/netplan/00-installer-config.yaml (Ubuntu 기준):&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;network: version: 2 ethernets: eth0: dhcp4: false addresses:&lt;/p&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;192.168.1.210/24 nameservers: addresses:&lt;/li&gt;
&lt;li&gt;8.8.8.8&lt;/li&gt;
&lt;li&gt;1.1.1.1 routes:&lt;/li&gt;
&lt;li&gt;to: default via: 192.168.1.1&lt;/li&gt;
&lt;/ul&gt;
&lt;pre class=&quot;yaml&quot;&gt;&lt;code&gt;network:
  version: 2
  ethernets:
    eth0:
      dhcp4: false
      addresses:
        - 192.168.1.210/24
      nameservers:
        addresses:
          - 8.8.8.8
          - 1.1.1.1
      routes:
        - to: default
          via: 192.168.1.1
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;저장 후 적용:&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;sudo netplan apply&lt;/p&gt;
&lt;pre class=&quot;coq&quot;&gt;&lt;code&gt;sudo netplan apply
&lt;/code&gt;&lt;/pre&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;✅ 테스트&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;ping -c 3 8.8.8.8 ping -c 3 &lt;a href=&quot;http://archive.ubuntu.com&quot;&gt;archive.ubuntu.com&lt;/a&gt; sudo apt update&lt;/p&gt;
&lt;pre class=&quot;routeros&quot;&gt;&lt;code&gt;ping -c 3 8.8.8.8
ping -c 3 archive.ubuntu.com
sudo apt update
&lt;/code&gt;&lt;/pre&gt;</description>
      <category>민's STORY/컴퓨터</category>
      <category>Proxmox</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/226</guid>
      <comments>https://hanmini.tistory.com/226#entry226comment</comments>
      <pubDate>Wed, 4 Feb 2026 11:22:27 +0900</pubDate>
    </item>
    <item>
      <title>Proxmox s-tui설치</title>
      <link>https://hanmini.tistory.com/225</link>
      <description>&lt;h2 data-ke-size=&quot;size26&quot;&gt;✅ &lt;b&gt;방법 1: -break-system-packages 옵션 사용&lt;/b&gt; (가장 간단)&lt;/h2&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
sudo pip3 install s-tui --break-system-packages

&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote data-ke-style=&quot;style1&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;주의: 시스템 파이썬 환경을 손상시킬 수 있다는 경고가 있지만, s-tui는 비교적 안전하므로 일반적으로 문제 없습니다.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;✅ &lt;b&gt;방법 2: pipx를 이용한 격리 설치 (권장)&lt;/b&gt;&lt;/h2&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;pipx 설치:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
sudo apt install pipx

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;pipx 초기화:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;armasm&quot;&gt;&lt;code&gt;bash
복사편집
pipx ensurepath

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;s-tui 설치:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
pipx install s-tui

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;실행:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;armasm&quot;&gt;&lt;code&gt;bash
복사편집
~/.local/bin/s-tui

&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;또는&lt;/p&gt;
&lt;pre class=&quot;dockerfile&quot;&gt;&lt;code&gt;bash
복사편집
pipx run s-tui

&lt;/code&gt;&lt;/pre&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;✅ &lt;b&gt;방법 3: Python venv로 격리 설치&lt;/b&gt;&lt;/h2&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;python3-venv 설치:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
sudo apt install python3-venv

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;가상 환경 생성 및 활성화:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;armasm&quot;&gt;&lt;code&gt;bash
복사편집
python3 -m venv ~/s-tui-venv
source ~/s-tui-venv/bin/activate

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;s-tui 설치:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
pip install s-tui

&lt;/code&gt;&lt;/pre&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;실행:&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;armasm&quot;&gt;&lt;code&gt;bash
복사편집
s-tui

&lt;/code&gt;&lt;/pre&gt;
&lt;blockquote data-ke-style=&quot;style1&quot;&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;가상환경을 나가려면: deactivate&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;  추가적으로 센서 도구 설치 (온도 확인 위해 필수)&lt;/h2&gt;
&lt;pre class=&quot;armasm&quot;&gt;&lt;code&gt;bash
복사편집
sudo apt install lm-sensors stress
sudo sensors-detect

&lt;/code&gt;&lt;/pre&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 data-ke-size=&quot;size26&quot;&gt;✅ 추천&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;가장 간단한 방법은:&lt;/p&gt;
&lt;pre class=&quot;mipsasm&quot;&gt;&lt;code&gt;bash
복사편집
sudo pip3 install s-tui --break-system-packages

&lt;/code&gt;&lt;/pre&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;그러나 장기적으로는 pipx 방식이 더 안전합니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&amp;nbsp;&lt;/p&gt;</description>
      <category>민's STORY/컴퓨터</category>
      <category>Proxmox</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/225</guid>
      <comments>https://hanmini.tistory.com/225#entry225comment</comments>
      <pubDate>Wed, 4 Feb 2026 11:19:53 +0900</pubDate>
    </item>
    <item>
      <title>소방안전관리자</title>
      <link>https://hanmini.tistory.com/222</link>
      <description>&lt;h2 data-ke-size=&quot;size26&quot;&gt;건설현장 소방안전관리자 법령 핵심 요약&lt;/h2&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;2022년 12월 1일부터 시행된 「화재의 예방 및 안전관리에 관한 법률」에 따라 일정 규모 이상의 건설현장에는 소방안전관리자를 의무적으로 선임해야 합니다. 이는 건설현장의 특수성을 고려하여 화재 위험을 체계적으로 관리하고 인명 및 재산 피해를 방지하기 위한 조치입니다.&lt;/p&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;1. 선임 의무 주체 및 대상&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;선임 의무자:&lt;/b&gt; 건설공사 시공자 (건설산업기본법 제2조제4호에 따른 건설공사를 하는 자)&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;선임 대상 건설현장:&lt;/b&gt; 아래 어느 하나에 해당하는 건설현장 (소방시설공사 착공신고 대상)&lt;/p&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;신축&amp;middot;증축&amp;middot;개축&amp;middot;재축&amp;middot;이전&amp;middot;용도변경 또는 대수선하려는 부분의 연면적 합계가 &lt;b&gt;15,000㎡ 이상&lt;/b&gt;인 경우&lt;/li&gt;
&lt;li&gt;연면적이 &lt;b&gt;5,000㎡ 이상&lt;/b&gt;이면서 다음 중 하나에 해당하는 경우
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;지하층의 층수가 2개 층 이상인 경우&lt;/li&gt;
&lt;li&gt;지상층의 층수가 11층 이상인 경우&lt;/li&gt;
&lt;li&gt;냉동창고, 냉장창고, 냉동&amp;middot;냉장창고&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;2. 소방안전관리자 자격 및 선임 시기&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;자격 요건:&lt;/b&gt; 다음 두 가지 요건을 모두 충족해야 합니다.&lt;/p&gt;
&lt;ol style=&quot;list-style-type: decimal;&quot; data-ke-list-type=&quot;decimal&quot;&gt;
&lt;li&gt;소방안전관리자 자격증 (특급, 1급, 2급, 3급 중 하나) 보유&lt;/li&gt;
&lt;li&gt;한국소방안전원에서 실시하는 &lt;b&gt;건설현장 소방안전관리자 강습교육&lt;/b&gt; 수료&lt;/li&gt;
&lt;/ol&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;&lt;b&gt;선임 시기 및 신고:&lt;/b&gt;&lt;/p&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;&lt;b&gt;선임 기간:&lt;/b&gt; 소방시설공사 착공신고일부터 건축물 사용승인일까지&lt;/li&gt;
&lt;li&gt;&lt;b&gt;신고:&lt;/b&gt; 선임한 날로부터 14일 이내에 한국소방안전원에 신고&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;3. 주요 업무&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;건설현장 소방안전관리자는 다음과 같은 중요한 업무를 수행합니다.&lt;/p&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;&lt;b&gt;소방계획서 작성:&lt;/b&gt; 건설현장의 특성을 반영한 소방계획 수립&lt;/li&gt;
&lt;li&gt;&lt;b&gt;임시소방시설 설치 및 관리 감독:&lt;/b&gt; 소화기, 간이소화장치, 비상경보장치 등 임시소방시설의 적정 설치 및 관리 상태 감독&lt;/li&gt;
&lt;li&gt;&lt;b&gt;피난안전구역 및 피난로 확보&amp;middot;관리:&lt;/b&gt; 공사 진행 단계별 피난 경로 확보 및 장애물 제거 등 관리&lt;/li&gt;
&lt;li&gt;&lt;b&gt;작업자 소방안전 교육 및 훈련:&lt;/b&gt; 현장 근로자를 대상으로 정기적인 화재 예방 교육 및 대피 훈련 실시&lt;/li&gt;
&lt;li&gt;&lt;b&gt;초기대응체계 구성 및 운영:&lt;/b&gt; 화재 발생 시 신속한 초기 대응을 위한 자위소방대 조직 및 운영&lt;/li&gt;
&lt;li&gt;&lt;b&gt;화기취급 감독 및 위험작업 허가&amp;middot;관리:&lt;/b&gt; 용접&amp;middot;용단 등 화재 위험이 높은 작업의 허가 및 안전조치 확인&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;4. 위반 시 처벌 규정&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;&lt;b&gt;미선임:&lt;/b&gt; 300만원 이하의 벌금&lt;/li&gt;
&lt;li&gt;&lt;b&gt;기간 내 미신고:&lt;/b&gt; 200만원 이하의 과태료&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;5. 겸직 금지&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;건설현장 소방안전관리자는 해당 현장의 소방안전 업무에 전념해야 하므로, 「소방시설공사업법」에 따른 &lt;b&gt;소방기술자와 겸직할 수 없습니다.&lt;/b&gt; 다만, 다른 법령에서 제한하지 않는 경우 타 분야 안전관리자와의 겸직은 가능할 수 있으나, 소방안전관리 업무 수행에 지장이 없어야 합니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;건설현장 관계자는 관련 법령을 숙지하여 소방안전관리자를 기한 내에 선임하고, 그 직무가 원활히 수행될 수 있도록 적극 협조해야 합니다.&lt;/p&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;6. 임시소방시설 설치 책임&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;법령상 임시소방시설의 설치 책임은 건설회사(공사 시공자)에 있습니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;「화재의 예방 및 안전관리에 관한 법률」 및 하위 법령에 따르면, 건설 현장의 화재 안전을 총괄하는 주체는 '공사 시공자'로 명시되어 있습니다. 여기서 &lt;b&gt;공사 시공자&lt;/b&gt;는 일반적으로 원도급사인 &lt;b&gt;건설회사&lt;/b&gt;를 의미합니다.&lt;/p&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h3 data-ke-size=&quot;size23&quot;&gt;## 법적 근거 및 책임 주체&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc;&quot; data-ke-list-type=&quot;disc&quot;&gt;
&lt;li&gt;&lt;b&gt;설치 의무자:&lt;/b&gt; 법령은 '공사 시공자'에게 임시소방시설을 설치하고 유지&amp;middot;관리할 의무를 부여하고 있습니다. 이는 건설 현장에서 이루어지는 용접 등 화재위험작업 전반에 대한 안전관리 책임이 건설회사에 있기 때문입니다.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;소방시설 시공회사의 역할:&lt;/b&gt; 소방시설 시공회사는 계약에 따라 최종적으로 건축물에 설치될 '소방시설'을 공사하는 전문 업체입니다. 임시소방시설은 공사 기간 동안 한시적으로 사용하는 안전 설비이므로, 영구 설치되는 소방시설과는 별개로 취급됩니다.&lt;/li&gt;
&lt;li&gt;&lt;b&gt;감독 및 처벌:&lt;/b&gt; 소방관서는 임시소방시설이 제대로 설치되거나 관리되지 않을 경우, 소방시설 시공회사가 아닌 **공사 시공자(건설회사)**에게 시정 조치를 명령하며, 위반 시 과태료(300만 원 이하)도 건설회사에 부과됩니다.&lt;/li&gt;
&lt;/ul&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;결론적으로, 소방시설 시공회사는 영구적인 소방시설 공사를 담당하며, 공사 현장의 임시소방시설 설치 및 관리 책임은 전적으로 &lt;b&gt;건설회사&lt;/b&gt;에 있습니다.&lt;/p&gt;</description>
      <category>민's STORY/공부</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/222</guid>
      <comments>https://hanmini.tistory.com/222#entry222comment</comments>
      <pubDate>Wed, 21 Jan 2026 11:19:42 +0900</pubDate>
    </item>
    <item>
      <title>PLOXMOX LXC 업데이트문제</title>
      <link>https://hanmini.tistory.com/217</link>
      <description>&lt;h2 id=&quot;clipboard-해결-순서-요약-정리&quot; data-ke-size=&quot;size26&quot;&gt;  해결 순서 요약 (정리)&lt;/h2&gt;
&lt;h3 id=&quot;1-lxc-네트워크-확인&quot; data-ke-size=&quot;size23&quot;&gt;1. LXC 네트워크 확인&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;먼저 컨테이너에 접속해서 IP가 할당됐는지 확인:&lt;/p&gt;
&lt;div&gt;
&lt;pre class=&quot;routeros&quot; data-joplin-source-close=&quot;&amp;#96;&amp;#96;&amp;#96;&quot; data-joplin-source-open=&quot;&amp;#96;&amp;#96;&amp;#96;bash&quot; data-joplin-language=&quot;bash&quot;&gt;&lt;code&gt;pct exec 109 -- ip a&lt;/code&gt;&lt;/pre&gt;
&lt;pre class=&quot;routeros&quot;&gt;&lt;code&gt;pct exec 109 -- ip a&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컨테이너가 192.168.1.xxx 형식의 IP를 받아야 합니다.&lt;/p&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;  만약 &lt;b&gt;아예 IP가 없거나 169.x.x.x&lt;/b&gt; 이면 DHCP 실패입니다.&lt;/p&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h3 id=&quot;2-컨테이너에-고정-ip-및-dns-설정-예시&quot; data-ke-size=&quot;size23&quot;&gt;2. 컨테이너에 고정 IP 및 DNS 설정 (예시)&lt;/h3&gt;
&lt;p data-ke-size=&quot;size16&quot;&gt;컨테이너 내부에서 설정:&lt;/p&gt;
&lt;div&gt;
&lt;pre class=&quot;ada&quot; data-joplin-source-close=&quot;&amp;#96;&amp;#96;&amp;#96;&quot; data-joplin-source-open=&quot;&amp;#96;&amp;#96;&amp;#96;bash&quot; data-joplin-language=&quot;bash&quot;&gt;&lt;code&gt;pct exec 109 -- bash&lt;/code&gt;&lt;/pre&gt;
&lt;pre class=&quot;ada&quot;&gt;&lt;code&gt;pct exec 109 -- bash&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&quot;etcnetplan50-cloud-inityaml-또는-etcnetplan00-installer-configyaml-ubuntu-기준&quot; data-ke-size=&quot;size23&quot;&gt;/etc/netplan/50-cloud-init.yaml 또는 /etc/netplan/00-installer-config.yaml (Ubuntu 기준):&lt;/h3&gt;
&lt;div&gt;
&lt;pre class=&quot;yaml&quot; data-joplin-source-close=&quot;&amp;#96;&amp;#96;&amp;#96;&quot; data-joplin-source-open=&quot;&amp;#96;&amp;#96;&amp;#96;yaml&quot; data-joplin-language=&quot;yaml&quot;&gt;&lt;code&gt;network:
  version: 2
  ethernets:
    eth0:
      dhcp4: false
      addresses:
        - 192.168.1.210/24
      nameservers:
        addresses:
          - 8.8.8.8
          - 1.1.1.1
      routes:
        - to: default
          via: 192.168.1.1&lt;/code&gt;&lt;/pre&gt;
&lt;pre class=&quot;bash&quot; data-ke-language=&quot;bash&quot;&gt;&lt;code&gt;network:
  version: 2
  ethernets:
    eth0:
      dhcp4: false
      addresses:
        - 192.168.1.210/24
      nameservers:
        addresses:
          - 8.8.8.8
          - 1.1.1.1
      routes:
        - to: default
          via: 192.168.1.1&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;h3 id=&quot;저장-후-적용&quot; data-ke-size=&quot;size23&quot;&gt;저장 후 적용:&lt;/h3&gt;
&lt;div&gt;
&lt;pre class=&quot;coq&quot; data-joplin-source-close=&quot;&amp;#96;&amp;#96;&amp;#96;&quot; data-joplin-source-open=&quot;&amp;#96;&amp;#96;&amp;#96;bash&quot; data-joplin-language=&quot;bash&quot;&gt;&lt;code&gt;sudo netplan apply&lt;/code&gt;&lt;/pre&gt;
&lt;pre class=&quot;coq&quot;&gt;&lt;code&gt;sudo netplan apply&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;hr data-ke-style=&quot;style1&quot; /&gt;
&lt;h2 id=&quot;white_check_mark-테스트&quot; data-ke-size=&quot;size26&quot;&gt;✅ 테스트&lt;/h2&gt;
&lt;div&gt;
&lt;pre class=&quot;routeros&quot; data-joplin-source-close=&quot;&amp;#96;&amp;#96;&amp;#96;&quot; data-joplin-source-open=&quot;&amp;#96;&amp;#96;&amp;#96;bash&quot; data-joplin-language=&quot;bash&quot;&gt;&lt;code&gt;ping -c 3 8.8.8.8
ping -c 3 archive.ubuntu.com
sudo apt update&lt;/code&gt;&lt;/pre&gt;
&lt;pre class=&quot;routeros&quot;&gt;&lt;code&gt;ping -c 3 8.8.8.8
ping -c 3 archive.ubuntu.com
sudo apt update&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;</description>
      <category>민's STORY/컴퓨터</category>
      <category>lxc</category>
      <category>ploxmox</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/217</guid>
      <comments>https://hanmini.tistory.com/217#entry217comment</comments>
      <pubDate>Wed, 25 Jun 2025 10:17:17 +0900</pubDate>
    </item>
    <item>
      <title>소방시설의내진설계기준 검토내용</title>
      <link>https://hanmini.tistory.com/213</link>
      <description>&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2523D75058B8B2E233&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2523D75058B8B2E233&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_01.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215AAC4F58B8B2E63B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215AAC4F58B8B2E63B&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_02.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2238544358B8B2EB0B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2238544358B8B2EB0B&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_03.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/215F4C4758B8B2EE10&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F215F4C4758B8B2EE10&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_04.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2604C33358B8B31410&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2604C33358B8B31410&quot; width=&quot;900&quot; height=&quot;1274&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_05.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2501F04D58B8B31935&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2501F04D58B8B31935&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_06.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2360943458B8B31C0A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2360943458B8B31C0A&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_07.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/232A4C3658B8B31E0B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F232A4C3658B8B31E0B&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_08.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 885px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/223FFC3858B8B32013&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F223FFC3858B8B32013&quot; width=&quot;885&quot; height=&quot;1252&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_09.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/270BCA3C58B8B3240D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F270BCA3C58B8B3240D&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_10.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/243F4B3458B8B32816&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F243F4B3458B8B32816&quot; width=&quot;900&quot; height=&quot;1269&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_11.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2515673F58B8B32D3A&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2515673F58B8B32D3A&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_12.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/214C4C4B58B8B33308&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F214C4C4B58B8B33308&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_13.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/267CB23B58B8B33712&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F267CB23B58B8B33712&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_14.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2477C63658B8B33A12&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2477C63658B8B33A12&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_15.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/216CC94C58B8B33C05&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F216CC94C58B8B33C05&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_16.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/265EBD3E58B8B33F11&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F265EBD3E58B8B33F11&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_17.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2378BF3858B8B3421B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2378BF3858B8B3421B&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_18.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2703C23E58B8B34602&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2703C23E58B8B34602&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_19.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/220A593C58B8B34903&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F220A593C58B8B34903&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_20.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2315304258B8B34C0B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2315304258B8B34C0B&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_21.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2260CA3458B8B34E18&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2260CA3458B8B34E18&quot; width=&quot;900&quot; height=&quot;1272&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_22.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/241FFA3458B8B35112&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F241FFA3458B8B35112&quot; width=&quot;900&quot; height=&quot;1280&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_23.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2117613D58B8B3540E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2117613D58B8B3540E&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_24.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/233F7D3A58B8B3560F&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F233F7D3A58B8B3560F&quot; width=&quot;900&quot; height=&quot;1263&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_25.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2263FA4058B8B35B01&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2263FA4058B8B35B01&quot; width=&quot;900&quot; height=&quot;1272&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_26.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/254E994758B8B35F0C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F254E994758B8B35F0C&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_27.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2336B63558B8B36315&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2336B63558B8B36315&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_28.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/264A373758B8B3660D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F264A373758B8B3660D&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_29.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2612C74F58B8B36A02&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2612C74F58B8B36A02&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_30.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2201773458B8B36E1C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2201773458B8B36E1C&quot; width=&quot;900&quot; height=&quot;1276&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_31.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&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: 900px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2351044C58B8B37207&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2351044C58B8B37207&quot; width=&quot;900&quot; height=&quot;1273&quot; filename=&quot;붙임3 소방시설의 내진설계기준 검토내용, 질의내용_Page_32.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/216A3A4A58B8B37B0E&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/pdf.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;붙임3 소방시설의 내진설계기준 검토내용, 질의내용.pdf&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>민's STORY/공부</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/213</guid>
      <comments>https://hanmini.tistory.com/213#entry213comment</comments>
      <pubDate>Fri, 3 Mar 2017 09:07:57 +0900</pubDate>
    </item>
    <item>
      <title>[법규] 설계도서의해석우선순위</title>
      <link>https://hanmini.tistory.com/212</link>
      <description>&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;1. 관계법령&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;① 설계도서 작성기준(건설교통부고시 제1996-130호, '96.5.18) 9. 설계도서 해석의 우선&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;순위&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;② 주택의 설계도서 작성기준(건설교통부고시 제1997-9호, '97.1.18) 제10조 설계도서의&lt;span style=&quot;font-size: 9pt; line-height: 1.5;&quot;&gt;해석&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;③ 공사계약일반조건 제19조의2제2항 제4호&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;- 설계도면과 공사시방서가 상이한 경우로서 물량내역서가 설계도면과 상이하거나 공사시방서와 상이한 경우에는 설계도면과 공사시방서중 최선의 공사시공을 위하여 우선되어야 할 내용으로 설계도면 또는 공사시방서를 확정한 후 그 확정된 내용에 따라 물량내역서를 일치&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;④ 공사계약일반조건 제19조의2제3항&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;- 제19조제2항의 규정에 정한 공사(총액입찰공사II,수의계약,턴키,대안부분)의 경우로서 설계도면과 공사시방서가 상호모순되는 경우에는 관련 법령 및 입찰에 관한 서류 등에 정한 내용에 따라 우선 여부를 결정하여야 한다.&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;2. 설계도서 해석의 우선순위 (설계도서 작성기준 9.설계도서 해석)&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;설계도서. 법령해석.감리자의 지시 등이 서로 일치하지 아니하는 경우에 있어 계약으로 그 적용의 우선 순위를 정하지 아니한 때는 다음의 순서를 원칙으로 한다.&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;① 특기시방서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;② 설계도면&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;③ 일반시방서, 표준시방서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;④ 산출내역서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;⑤ 승인된 시공도면&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;⑥ 관계 법령의 유권 해석&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;⑦ 감리자의 지시사항&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;3. 설계도서의 해석(주택의 설계도서 작성기준 제10조)&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;① 설계도서의 내용이 서로 일치하지 아니하는 경우에는 관계 법령의 규정에 적합한 범위 내에서 감리자의 지시에 따라야 하며 그 내용이 설계상 주요한 사항인 경우에 감리자는 설계자와 협의하여 지시 내용을 결정하여야 한다.&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;② 제1항의 경우로서 감리자 및 설계자의 해석이 곤란한 경우에는 당해 공사 계약의 내용에 따라 적용 우선 순위 등을 결정하여야 하며 계약 서류 등에 특별히 명기되어 있지 아니한 경우 설계 도서의 적용 우선 순위는 다음과 같다.&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;① 특별시방서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;② 설계도면&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;③ 일반시방서, 표준시방서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;④ 수량산출내역서&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px;&quot;&gt;⑤ 승인된 시공도면&lt;/p&gt;&lt;div style=&quot;margin: 30px 0px 0px; padding: 0px; color: rgb(102, 102, 102); font-family: &amp;quot;Spoqa Han Sans&amp;quot;, sans-serif; font-size: 14px; width: 1539.42px; clear: both; height: 30px;&quot;&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;margin: 0px; padding: 0px; float: right; height: 0px;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>민's STORY/공부</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/212</guid>
      <comments>https://hanmini.tistory.com/212#entry212comment</comments>
      <pubDate>Fri, 3 Mar 2017 08:45:49 +0900</pubDate>
    </item>
    <item>
      <title>2013년 달라지는 건설제도</title>
      <link>https://hanmini.tistory.com/208</link>
      <description>&lt;p&gt;먼놈의 바뀌는게 이리많아&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/184F93415166BD3D2B&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/pdf.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;2013년 달라지는 건설제도.pdf&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>민's STORY/공부</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/208</guid>
      <comments>https://hanmini.tistory.com/208#entry208comment</comments>
      <pubDate>Thu, 11 Apr 2013 22:40:20 +0900</pubDate>
    </item>
    <item>
      <title>에너지절약계획서(2013.9월시행)법규</title>
      <link>https://hanmini.tistory.com/207</link>
      <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;시행은 9월부터&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;/font&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; &quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/2454373D5166BC820E&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/hwp.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;★건축물의_에너지절약_설계기준_전문_최종.hwp&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; &quot;&gt;&lt;span class=&quot;imageblock&quot; style=&quot;display: inline-block;   height: auto; max-width: 100%;&quot;&gt;&lt;a href=&quot;https://t1.daumcdn.net/cfile/tistory/2431783D5166BC832B&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;https://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/hwp.gif&quot; style=&quot;vertical-align: middle;&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;★에너지절약계획서_양식_최종.hwp&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;</description>
      <category>민's STORY/공부</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/207</guid>
      <comments>https://hanmini.tistory.com/207#entry207comment</comments>
      <pubDate>Thu, 11 Apr 2013 22:37:18 +0900</pubDate>
    </item>
    <item>
      <title>연봉협상</title>
      <link>https://hanmini.tistory.com/206</link>
      <description>&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: 400px;  height: auto; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/11182F455166BB4816&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F11182F455166BB4816&quot; width=&quot;400&quot; height=&quot;4004&quot; filename=&quot;1361410006_dball_pay.jpg&quot; filemime=&quot;image/jpeg&quot; style=&quot;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>민's STORY/이야기.</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/206</guid>
      <comments>https://hanmini.tistory.com/206#entry206comment</comments>
      <pubDate>Thu, 11 Apr 2013 22:32:14 +0900</pubDate>
    </item>
    <item>
      <title>아..... 총각이믄 바로살텐데 ㅠㅠ</title>
      <link>https://hanmini.tistory.com/205</link>
      <description>&lt;p&gt;&lt;div class=&quot;add_img_wrap&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: relative; width: 739px; text-align: center; display: inline-block; color: rgb(0, 0, 0); font-family: '맑은 고딕'; &quot;&gt;&lt;a name=&quot;1873263&quot; style=&quot;margin: 2px; word-break: break-all; word-wrap: break-word; outline: 0px; position: relative; float: none; display: inline-block; cursor: pointer; -webkit-transition: all 0.4s; &quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;font-size: 18pt; &quot;&gt;아 요거 뽐뿌온다....&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;font face=&quot;맑은 고딕&quot;&gt;&lt;span style=&quot;font-size: 18pt; &quot;&gt;총알만있심 바로살텐데...&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;add_img_wrap&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: relative; width: 739px; text-align: center; display: inline-block; color: rgb(0, 0, 0); font-family: '맑은 고딕'; &quot;&gt;&lt;a name=&quot;1873263&quot; style=&quot;margin: 2px; word-break: break-all; word-wrap: break-word; outline: 0px; position: relative; float: none; display: inline-block; cursor: pointer; -webkit-transition: all 0.4s; &quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;add_img_wrap&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: relative; width: 739px; text-align: center; display: inline-block; color: rgb(0, 0, 0); font-family: '맑은 고딕'; &quot;&gt;&lt;a name=&quot;1873263&quot; style=&quot;margin: 2px; word-break: break-all; word-wrap: break-word; outline: 0px; position: relative; float: none; display: inline-block; cursor: pointer; -webkit-transition: all 0.4s; &quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;add_img_wrap&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: relative; width: 739px; text-align: center; display: inline-block; color: rgb(0, 0, 0); font-family: '맑은 고딕'; &quot;&gt;&lt;a name=&quot;1873263&quot; style=&quot;margin: 2px; word-break: break-all; word-wrap: break-word; outline: 0px; position: relative; float: none; display: inline-block; cursor: pointer; -webkit-transition: all 0.4s; &quot;&gt;&lt;br /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;add_img_wrap&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: relative; width: 739px; text-align: center; display: inline-block; color: rgb(0, 0, 0); font-family: '맑은 고딕'; &quot;&gt;&lt;a name=&quot;1873263&quot; style=&quot;margin: 2px; word-break: break-all; word-wrap: break-word; outline: 0px; position: relative; float: none; display: inline-block; cursor: pointer; -webkit-transition: all 0.4s; &quot;&gt;&lt;img src=&quot;http://racingk.com/files/cache/thumbnails/m263/873/001/800x800.ratio.jpg&quot; alt=&quot;cyworld_com_20130213_200143.jpg&quot; id=&quot;addImg_1873263&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; border: 0px; max-width: 100%; height: auto; vertical-align: top; width: 354px; &quot;&gt;&lt;span id=&quot;addImgIcon_1873263&quot; class=&quot;btn_icon m&quot; style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; position: absolute; border: 0px none; bottom: 0px; right: 0px; height: 20px; width: 20px; overflow: hidden; text-indent: 100px; white-space: nowrap; background-image: url(http://racingk.com/modules/mobileex/tpl/images/icons.gif); background-attachment: scroll; background-color: transparent; background-position: 0px -20px; background-repeat: no-repeat no-repeat; &quot;&gt;large size&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;PNS 거치대+드포프+버트키커2+PS3(2505화이트)+게임CD(그란5,더트3,진삼2개,에이스컴벳)&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;pns거치대+버킷시트&lt;br style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; &quot;&gt;드라이빙포스프로&lt;br style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; &quot;&gt;버트키커게이머2&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;ps3(2505화이트)&lt;br style=&quot;margin: 0px; word-break: break-all; word-wrap: break-word; &quot;&gt;게임cd 정품 다수&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-right: 0px; margin-left: 0px; word-break: break-all; word-wrap: break-word; padding: 0px; color: rgb(0, 0, 0); font-family: '맑은 고딕'; text-align: justify; &quot;&gt;모두 100만원&lt;/p&gt;&lt;/p&gt;</description>
      <category>민's STORY/이야기.</category>
      <author>JOAU</author>
      <guid isPermaLink="true">https://hanmini.tistory.com/205</guid>
      <comments>https://hanmini.tistory.com/205#entry205comment</comments>
      <pubDate>Thu, 11 Apr 2013 22:08:33 +0900</pubDate>
    </item>
  </channel>
</rss>