리눅스 – Kilhonet https://en.kilho.net We develop and provide various free programs, including the screen capture tool Kalmuri, the system optimization tool KCleaner, the image sharing service ImageBox, the network security program SecretDNS, the memory cleanup tool MemoryCleaner, and image conversion software. Fri, 10 Apr 2026 03:29:45 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 Dante SOCKS5 프록시 서버 구축 및 설정 https://kilho.net/forum/tiptech/1414 Fri, 10 Apr 2026 03:29:45 +0000 https://kilho.net/forum/tiptech/1414 Dante SOCKS5 프록시 서버를 도입한 배경 외부망 접근을 특정 IP로 제한해야 하는 환경에서 HTTP 프록시만으로는 대응이 어려운 경우가 있었다. 내부 서비스 중 일부는 TCP 레벨에서 직접 통신을 요구했고, 애플리케이션 단에서 프록시를 지원하지 않는 경우도 존재했다. 이 문제를 해결하기 위해 SOCKS5 기반 프록시를 검토했고, 구현 난이도와 유지보수 관점에서 Dante를 선택했다. 기존에는 SSH 터널링을 통해 임시로 우회하는 […]

The post Dante SOCKS5 프록시 서버 구축 및 설정 first appeared on Kilhonet.]]>
윈도우 실행파일(exe) 서비스 등록 자동화 쉽게 하는 방법 – NSSM https://kilho.net/forum/tiptech/1413 Sun, 05 Apr 2026 15:48:38 +0000 https://kilho.net/forum/tiptech/1413 반복 실행 프로그램을 서비스로 전환한 배경 운영 환경에서 특정 exe를 주기적으로 실행해야 하는 경우가 있었다. 로그 수집이나 데이터 정리 작업처럼 사람이 직접 실행하지 않아도 되는 작업이었는데, 매번 수동으로 실행하거나 작업 스케줄러에 의존하는 방식은 관리 비용이 계속 쌓였다. 특히 재부팅 이후 자동으로 실행되지 않거나, 프로세스가 중간에 종료되면 다시 시작되지 않는 문제가 반복적으로 발생했다. 이 문제는 하루 […]

The post 윈도우 실행파일(exe) 서비스 등록 자동화 쉽게 하는 방법 – NSSM first appeared on Kilhonet.]]>
CLIProxyAPI Windows 설치 가이드 https://kilho.net/forum/tiptech/1412 Sat, 04 Apr 2026 21:47:16 +0000 https://kilho.net/forum/tiptech/1412 API 키 없이 Gemini를 로컬 API 서버로 띄우기 Gemini API를 쓰려면 Google AI Studio에서 API 키를 발급받아야 한다. 무료 티어가 있긴 하지만, 분당 요청 수와 모델 접근에 제약이 있고, 특히 gemini-2.5-pro 같은 상위 모델은 금방 쿼터가 소진된다. 개인 Google 계정에 이미 Gemini 구독이 연결되어 있거나, 무료 Google One 플랜을 쓰고 있다면 그 쿼터를 프로그래밍 방식으로 […]

The post CLIProxyAPI Windows 설치 가이드 first appeared on Kilhonet.]]>
그누보드7 데이터를 WordPress WXR로 변환하기 https://kilho.net/forum/tiptech/1411 Wed, 01 Apr 2026 16:10:42 +0000 https://kilho.net/forum/tiptech/1411 WXR 변환 방식 선택과 구현 방향 WordPress import는 WXR XML 구조를 기반으로 동작한다. 이 구조는 단순한 게시글 목록이 아니라, 작성자, 카테고리, 댓글, 메타데이터까지 포함하는 RSS 확장 포맷이다. 따라서 단순 데이터 export가 아니라 WordPress가 이해할 수 있는 구조로 변환하는 것이 핵심이다. 구현 방향은 크게 세 가지로 잡았다. 첫 번째는 게시판을 WordPress 카테고리로 매핑하는 것, 두 번째는 […]

The post 그누보드7 데이터를 WordPress WXR로 변환하기 first appeared on Kilhonet.]]>
Ollama 설치 경로 C드라이브 고정 문제 해결 및 드라이브 변경 방법 https://kilho.net/forum/tiptech/1410 Tue, 31 Mar 2026 21:11:26 +0000 https://kilho.net/forum/tiptech/1410 Ollama 설치 경로 문제와 디스크 점유 원인 로컬에서 대형 언어 모델을 테스트할 때 Ollama를 자주 사용한다. 문제는 설치 과정에서 경로를 선택할 수 없고, 기본적으로 C:\Users\<사용자>\AppData\Local\Programs\Ollama에 설치된다는 점이다. 이 구조는 사용자 권한 기반 설치를 단순화하는 대신, 디스크 사용 위치를 강제로 고정하는 방식이다. 실제 환경에서 확인해보면 lib 디렉토리 하나만으로도 1GB 이상을 차지하는 경우가 많다. 여기에 모델까지 다운로드하면 […]

The post Ollama 설치 경로 C드라이브 고정 문제 해결 및 드라이브 변경 방법 first appeared on Kilhonet.]]>
Adding/Removing www When Accessing a Site https://en.kilho.net/archives/ittech/2008 https://en.kilho.net/archives/ittech/2008#comments Thu, 14 Mar 2019 07:03:48 +0000 http://kilho.net/?p=2008 This is a method to automatically add or remove www when accessing a site. You can input this in the .htaccess file. # Adding www RewriteCond %{HTTP_HOST} ^(?!www\.)(.+) [NC] RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L] # Removing www RewriteCond %{HTTP_HOST} ^www\.(.+) [NC] RewriteRule ^(.*) http://%1/$1 [R=301,NE,L]

The post Adding/Removing www When Accessing a Site first appeared on Kilhonet.]]>
https://en.kilho.net/archives/ittech/2008/feed 1
Bulk File Deletion in Linux https://en.kilho.net/archives/ittech/1996 https://en.kilho.net/archives/ittech/1996#respond Tue, 12 Mar 2019 10:06:40 +0000 http://kilho.net/?p=1996 If you encounter the error “/usr/bin/rm: arg list too long” when trying to delete a large number of files, you can delete them using the command below. find . | xargs -n 1000 rm -f

The post Bulk File Deletion in Linux first appeared on Kilhonet.]]>
https://en.kilho.net/archives/ittech/1996/feed 0
SSHScript - Simplifying Linux (Web Hosting) Backups https://en.kilho.net/archives/various/1584 https://en.kilho.net/archives/various/1584#comments Wed, 14 Jun 2017 04:17:26 +0000 http://kilho.net/?p=1584 How to Use Run the program. Click the File button, fill out the tasks as shown below and save it. (If you have multiple accounts, just repeat the process.) # Connect to the account to create a backup file. ssh://{username}:{password}@{ip}:{port} # Navigate to the location of the file you want to back up. cd {path} […]

The post SSHScript - Simplifying Linux (Web Hosting) Backups first appeared on Kilhonet.]]>
https://en.kilho.net/archives/various/1584/feed 4