<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
    <channel>
      <title>We create world</title>
      <link>https://createworld.net</link>
      <description>최근 10 건 on We create world</description>
      <generator>Quartz -- quartz.jzhao.xyz</generator>
      <item>
    <title>Linux</title>
    <link>https://createworld.net/Tip/Linux</link>
    <guid>https://createworld.net/Tip/Linux</guid>
    <description><![CDATA[ 리눅스 팁 로그 삭제 리눅스 명령어 대체 ZSH Beginner’s Tip . ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>CentOS7 Clang 6.0 설치</title>
    <link>https://createworld.net/Tip/Linux/CentOS7-Clang-6.0-%EC%84%A4%EC%B9%98</link>
    <guid>https://createworld.net/Tip/Linux/CentOS7-Clang-6.0-%EC%84%A4%EC%B9%98</guid>
    <description><![CDATA[ CentOS 7.x에서 소스 빌드로 Clang 6.0(LLVM)을 설치하는 방법 다운로드 및 압축 해제 wget releases.llvm.org/6.0.0/llvm-6.0.0.src.tar.xz wget releases.llvm.org/6.0.0/cfe-6.0.0.src.tar.xz wget releases.llvm.org/6.0.0/libcxx-6.0.0.src.tar.xz wget releases.llvm.org/6.0.0/libcxxabi-6.0.0.src.tar.xz unxz llvm-6.0.0.src.tar.xz unxz ... ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>CentOS7 MySQL 5.7 설치</title>
    <link>https://createworld.net/Tip/Linux/CentOS7-MySQL-5.7-%EC%84%A4%EC%B9%98</link>
    <guid>https://createworld.net/Tip/Linux/CentOS7-MySQL-5.7-%EC%84%A4%EC%B9%98</guid>
    <description><![CDATA[ CentOS7에서 MySQL 5.7 버전을 설치하는 방법 yum repository 패키지 다운로드 wget dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm 패키지 설치 sudo yum localinstall mysql57-community-release-el7-7.noarch.rpm MySQL repository 활성화 확인 sudo yum repolist enabled | grep &quot;mysql.*-community.*&quot; MySQL 설치 sudo yum... ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>CentOS7 cmake 3.11.0 설치</title>
    <link>https://createworld.net/Tip/Linux/CentOS7-cmake-3.11.0-%EC%84%A4%EC%B9%98</link>
    <guid>https://createworld.net/Tip/Linux/CentOS7-cmake-3.11.0-%EC%84%A4%EC%B9%98</guid>
    <description><![CDATA[ CentOS7에서 소스 빌드로 cmake 3.11.0을 설치하는 방법 wget cmake.org/files/v3.11/cmake-3.11.0.tar.gz tar -zxf cmake-3.11.0.tar.gz cd cmake-3.11.0 ./bootstrap make sudo make install Tag: linux centos cmake 빌드 설치. ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>WSL에서 SSH 사용</title>
    <link>https://createworld.net/Tip/Linux/WSL%EC%97%90%EC%84%9C-SSH-%EC%82%AC%EC%9A%A9</link>
    <guid>https://createworld.net/Tip/Linux/WSL%EC%97%90%EC%84%9C-SSH-%EC%82%AC%EC%9A%A9</guid>
    <description><![CDATA[ WSL(Windows Subsystem for Linux)에서 SSH 서버를 사용하는 방법 openssh-server 재설치 sudo apt-get purge openssh-server sudo apt-get install openssh-server SSH 설정 수정 sudo nano /etc/ssh/sshd_config root 로그인 비활성화 PermitRootLogin no 접속 허용 사용자 추가 (그 아래 줄에) AllowUsers yourusername 비밀번호로 로그인하려면 활성화 PasswordAuthentication... ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>ZSH Beginner&#039;s Tip</title>
    <link>https://createworld.net/Tip/Linux/ZSH-Beginner's-Tip</link>
    <guid>https://createworld.net/Tip/Linux/ZSH-Beginner's-Tip</guid>
    <description><![CDATA[ ZSH Install zsh ``` sudo apt install zsh which zsh chsh -s $(which zsh) ``` Install oh-my-zsh ``` sh -c ”$(curl -fsSL raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)” ``` Reference tutorialpost.apptilus.com/code/posts/tools/using-zsh-oh-my-zsh/ alias alias ll=&quot;ls -alht... ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>로그 삭제</title>
    <link>https://createworld.net/Tip/Linux/%EB%A1%9C%EA%B7%B8-%EC%82%AD%EC%A0%9C</link>
    <guid>https://createworld.net/Tip/Linux/%EB%A1%9C%EA%B7%B8-%EC%82%AD%EC%A0%9C</guid>
    <description><![CDATA[ 오래된 로그 삭제 10일 이상된 .log에 해당하는 파일을 찾아서 지운다 ``` find -name ‘*.log’ -mtime +10 |xargs rm ``` gompangs.tistory.com/entry/linux-%EC%98%A4%EB%9E%98%EB%90%9C-log-%ED%8C%8C%EC%9D%BC-%EC%B0%BE%EC%95%84%EC%84%9C-%EC Tag: linux 로그 log. ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>리눅스 명령어 대체</title>
    <link>https://createworld.net/Tip/Linux/%EB%A6%AC%EB%88%85%EC%8A%A4-%EB%AA%85%EB%A0%B9%EC%96%B4-%EB%8C%80%EC%B2%B4</link>
    <guid>https://createworld.net/Tip/Linux/%EB%A6%AC%EB%88%85%EC%8A%A4-%EB%AA%85%EB%A0%B9%EC%96%B4-%EB%8C%80%EC%B2%B4</guid>
    <description><![CDATA[  exa : ls 대체 bat : cat 대체 hexyl : 바이너리 덤프 명령어인 od 대체 fd : find 대체 procs : ps 대체 ripgrep : grep 대체 출처: velog.io/@kameals/modern-linux-command. ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>우분투 쉘 변경</title>
    <link>https://createworld.net/Tip/Linux/%EC%9A%B0%EB%B6%84%ED%88%AC-%EC%89%98-%EB%B3%80%EA%B2%BD</link>
    <guid>https://createworld.net/Tip/Linux/%EC%9A%B0%EB%B6%84%ED%88%AC-%EC%89%98-%EB%B3%80%EA%B2%BD</guid>
    <description><![CDATA[ 우분투의 기본 쉘: dash 현재 /bin/sh가 어떤 쉘을 가리키는지 확인 ls -al /bin/sh 기본 쉘 변경 (dash ↔ bash) sudo dpkg-reconfigure dash 출처: jang574.tistory.com/82 Tag: linux ubuntu shell dash bash. ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item><item>
    <title>Resume</title>
    <link>https://createworld.net/about</link>
    <guid>https://createworld.net/about</guid>
    <description><![CDATA[  Game Server Engineer · 20+ yrs C++/C# · Distributed Servers · Live Ops · Shared Infra suweon.shin@gmail.com I’m a server developer who has been building C++ game servers for over 20 years. ]]></description>
    <pubDate>Sun, 05 Jul 2026 15:24:28 GMT</pubDate>
  </item>
    </channel>
  </rss>