<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Ubuntus on 미어스토리</title><link>https://meerstory.com/ubuntu/</link><description>Recent content in Ubuntus on 미어스토리</description><generator>Hugo</generator><language>ko-kr</language><lastBuildDate>Sat, 29 Aug 2026 07:24:21 +0900</lastBuildDate><atom:link href="https://meerstory.com/ubuntu/index.xml" rel="self" type="application/rss+xml"/><item><title>리눅스 대용량 파일 보기: more vs less 명령어 차이점 및 실무 활용법 완벽 정리</title><link>https://meerstory.com/ubuntu/20260829_072317_5_more_less_more_less/</link><pubDate>Sat, 29 Aug 2026 07:24:21 +0900</pubDate><guid>https://meerstory.com/ubuntu/20260829_072317_5_more_less_more_less/</guid><description>&lt;h2 id="개요">개요&lt;/h2>
&lt;p>리눅스 터미널에서 대용량 텍스트 파일이나 로그를 확인할 때 자주 사용하는 more와 less 명령어의 핵심 차이점을 파악합니다. 두 명령어의 작동 방식과 탐색 기능을 비교하여 실무 환경에 맞는 최적의 파일 조회 방법을 제시합니다.&lt;/p>
&lt;h2 id="1-more-명령어-기초-페이지-단위-텍스트-조회">1. more 명령어 기초: 페이지 단위 텍스트 조회&lt;/h2>
&lt;p>&lt;code>more&lt;/code> 명령어 실습에 사용할 테스트용 데이터 파일을 생성하기 위해 &lt;code>seq 1 50 &amp;gt; sample_more.txt&lt;/code> 명령어를 실행합니다.&lt;/p>
&lt;p>&lt;img src="https://meerstory.com/ubuntu/20260829_072317_5_more_less_more_less/captures/s01_c01_seq_1_50___sample_more_txt.png" alt="seq 1 50 &amp;gt; sample_more.txt">&lt;/p>
&lt;p>&lt;code>more&lt;/code> 명령어는 대용량 텍스트 파일의 내용을 한 번에 전체 출력하지 않고 화면 단위로 나누어 순방향 조회할 때 사용합니다.&lt;br>
&lt;code>more sample_more.txt&lt;/code> 명령어를 실행하면 &lt;code>sample_more.txt&lt;/code> 파일의 첫 페이지 분량만큼 텍스트를 화면에 출력합니다.&lt;br>
⚙️ [주요 옵션]&lt;/p></description></item><item><title>리눅스 대용량 로그 렉 없이 1초 만에 확인하기! less 명령어 완벽 활용 가이드</title><link>https://meerstory.com/ubuntu/20260829_071913_4_less_less/</link><pubDate>Sat, 29 Aug 2026 07:19:40 +0900</pubDate><guid>https://meerstory.com/ubuntu/20260829_071913_4_less_less/</guid><description>&lt;h2 id="개요">개요&lt;/h2>
&lt;p>리눅스 환경에서 수백 메가바이트의 대용량 파일이나 로그를 cat 명령어로 열면 메모리 과부하 및 터미널 렉이 발생할 수 있습니다. less 명령어를 활용하면 전체 파일을 메모리에 로드하지 않고 페이지 단위로 빠르게 텍스트를 조회하고 효율적으로 탐색할 수 있습니다. 본 글에서는 우분투 터미널에서 less 명령어를 활용하여 긴 파일을 조회하고 키워드를 검색하는 실무 팁을 소개합니다.&lt;/p>
&lt;h2 id="1-less-명령어-개요-및-실습용-테스트-파일-생성">1. less 명령어 개요 및 실습용 테스트 파일 생성&lt;/h2>
&lt;p>&lt;code>less&lt;/code> 명령어 실습을 진행하기 위해 패키지 목록을 최신으로 업데이트하고 &lt;code>less&lt;/code> 패키지를 설치합니다.&lt;/p></description></item><item><title>리눅스 cat 명령어 완벽 가이드 - 터미널 파일 조회부터 병합·생성 꿀팁까지!</title><link>https://meerstory.com/ubuntu/20260829_071443_3_cat_cat/</link><pubDate>Sat, 29 Aug 2026 07:14:59 +0900</pubDate><guid>https://meerstory.com/ubuntu/20260829_071443_3_cat_cat/</guid><description>&lt;h2 id="개요">개요&lt;/h2>
&lt;p>리눅스 및 우분투 터미널에서 가장 널리 쓰이는 &lt;code>cat&lt;/code> 명령어의 기초부터 실무 응용까지 완벽하게 정리합니다. 단순히 파일 내용을 출력하는 기능 외에도 줄 번호 표시, 공백 시각화, 파일 병합 및 EOF(Heredoc)를 활용한 파일 작성법까지 예제와 함께 소개합니다.&lt;/p>
&lt;h2 id="1-cat-명령어-기본-사용법과-텍스트-파일-내용-즉시-확인">1. cat 명령어 기본 사용법과 텍스트 파일 내용 즉시 확인&lt;/h2>
&lt;p>&lt;code>cat&lt;/code> 명령어 실습에 사용할 샘플 텍스트 파일을 생성하기 위해 &lt;code>echo &amp;quot;Hello Ubuntu 24.04 LTS World!&amp;quot; &amp;gt; sample.txt&lt;/code> 명령어를 실행합니다.&lt;/p>
&lt;p>&lt;img src="https://meerstory.com/ubuntu/20260829_071443_3_cat_cat/captures/s01_c01_echo__Hello_Ubuntu_24_04_LTS_World_____sample_txt.png" alt="echo “Hello Ubuntu 24.04 LTS World!” &amp;gt; sample.txt">&lt;/p></description></item><item><title>우분투 ls 명령어 옵션 완벽 가이드 - 파일 목록 보기 좋게 정리하는 필수 꿀팁 5가지</title><link>https://meerstory.com/ubuntu/20260829_071032_2_ls_ls/</link><pubDate>Sat, 29 Aug 2026 07:11:01 +0900</pubDate><guid>https://meerstory.com/ubuntu/20260829_071032_2_ls_ls/</guid><description>&lt;h2 id="개요">개요&lt;/h2>
&lt;p>리눅스 및 우분투 환경에서 가장 기본이 되는 ls 명령어의 핵심 옵션과 활용법을 소개합니다. 단순히 파일 이름을 나열하는 수준을 넘어 파일 상세 정보, 용량 단위 읽기, 숨김 파일 조회 및 정렬 기법까지 실무에서 즉시 활용할 수 있는 파일 정리 노하우를 다룹니다.&lt;/p>
&lt;h2 id="1-기본-파일-목록-조회와-숨김-파일-및-상세-권한-확인-ls--l-ls--al">1. 기본 파일 목록 조회와 숨김 파일 및 상세 권한 확인 (ls -l, ls -al)&lt;/h2>
&lt;p>&lt;code>ls&lt;/code> 명령어 실습을 위한 전용 공간을 생성하고 이동한 후 일반 파일과 숨김 파일을 준비하기 위해 &lt;code>mkdir -p ~/ls_demo &amp;amp;&amp;amp; cd ~/ls_demo &amp;amp;&amp;amp; touch file1.txt file2.log .hidden_config&lt;/code> 명령어를 실행합니다.&lt;/p></description></item><item><title>우분투 필수 명령어 ls -al: 리눅스 숨김 파일 및 권한 완벽 정복!</title><link>https://meerstory.com/ubuntu/20260829_070614_1_ls_al_ls/</link><pubDate>Sat, 29 Aug 2026 07:06:42 +0900</pubDate><guid>https://meerstory.com/ubuntu/20260829_070614_1_ls_al_ls/</guid><description>&lt;h2 id="개요">개요&lt;/h2>
&lt;p>리눅스 및 우분투 터미널 환경에서 가장 기본이 되면서도 중요한 명령어는 파일과 디렉터리를 조회하는 ls입니다. 본 글에서는 ls -al 옵션을 활용하여 파일의 권한, 소유자, 그리고 점(.)으로 시작하는 숨김 파일까지 한눈에 확인하는 방법을 실무 예제와 함께 자세히 알아봅니다.&lt;/p>
&lt;h2 id="1-ls-기본-사용법-및-파일-상세-정보-확인-ls-ls--l">1. ls 기본 사용법 및 파일 상세 정보 확인 (ls, ls -l)&lt;/h2>
&lt;p>&lt;code>ls&lt;/code> 명령어 실습을 위한 전용 공간을 생성하고 이동하기 위해 &lt;code>mkdir -p ~/ls_demo &amp;amp;&amp;amp; cd ~/ls_demo&lt;/code> 명령어를 실행합니다.&lt;/p>
&lt;p>&lt;img src="https://meerstory.com/ubuntu/20260829_070614_1_ls_al_ls/captures/s01_c01_mkdir_-p___ls_demo____cd___ls_demo.png" alt="mkdir -p ~/ls_demo &amp;amp;&amp;amp; cd ~/ls_demo">&lt;/p></description></item></channel></rss>