<?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>install catimg Archives - CNERIS</title>
	<atom:link href="https://cneris.com/en/tag/install-catimg/feed/" rel="self" type="application/rss+xml" />
	<link>https://cneris.com/en/tag/install-catimg/</link>
	<description></description>
	<lastBuildDate>Fri, 25 Oct 2024 19:32:35 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>JPG Image Viewers in Linux Terminal</title>
		<link>https://cneris.com/en/jpg-image-viewers-in-linux-terminal/</link>
					<comments>https://cneris.com/en/jpg-image-viewers-in-linux-terminal/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 25 Oct 2024 19:32:35 +0000</pubDate>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[Dedicated servers]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[install catimg]]></category>
		<category><![CDATA[install fim]]></category>
		<category><![CDATA[install viu]]></category>
		<category><![CDATA[sudo apt install]]></category>
		<guid isPermaLink="false">https://cneris.com/?p=2546</guid>

					<description><![CDATA[<p>To view JPG files directly from the terminal in Linux, there are several tools available. Here are some popular viewers and how to use them: 1. FIM (Framebuffer Image Viewer) FIM is a command-line image viewer that utilizes the framebuffer to display images directly in the terminal. Installation: sudo apt install fim Usage: fim image.jpg [...]</p>
<p>The post <a href="https://cneris.com/en/jpg-image-viewers-in-linux-terminal/">JPG Image Viewers in Linux Terminal</a> appeared first on <a href="https://cneris.com/en">CNERIS</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>To view JPG files directly from the terminal in Linux, there are several tools available. Here are some popular viewers and how to use them:</p>
<h4>1. <strong>FIM (Framebuffer Image Viewer)</strong></h4>
<ul>
<li>FIM is a command-line image viewer that utilizes the framebuffer to display images directly in the terminal.</li>
<li><strong>Installation</strong>:
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">sudo apt install fim<br />
</code></div>
</div>
</li>
<li><strong>Usage</strong>:
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">fim image.jpg<br />
</code></div>
</div>
</li>
<li><strong>Example</strong>: Run <code>fim /path/to/image.jpg</code> to open an image in the terminal. FIM allows navigation through multiple images in a folder with arrow keys.</li>
</ul>
<h4>2. <strong>VIU</strong></h4>
<ul>
<li>Viu is another lightweight image viewer for the terminal, compatible with color images in most terminals.</li>
<li><strong>Installation</strong> (requires <code>cargo</code> from Rust):
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">cargo install viu<br />
</code></div>
</div>
</li>
<li><strong>Usage</strong>:
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">viu image.jpg<br />
</code></div>
</div>
</li>
<li><strong>Example</strong>: Run <code>viu /path/to/image.jpg</code> for a quick view. Viu is great for 24-bit color terminals.</li>
</ul>
<h4>3. <strong>Catimg</strong></h4>
<ul>
<li>Catimg converts images into ASCII format to display in the terminal.</li>
<li><strong>Installation</strong>:
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">sudo apt install catimg<br />
</code></div>
</div>
</li>
<li><strong>Usage</strong>:
<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary dark:bg-gray-950">
<div class="sticky top-9 md:top-[5.75rem]"></div>
<div class="overflow-y-auto p-4" dir="ltr"><code class="!whitespace-pre hljs language-bash">catimg image.jpg<br />
</code></div>
</div>
</li>
<li><strong>Example</strong>: Run <code>catimg /path/to/image.jpg</code> to view an ASCII representation of the image.</li>
</ul>
<p>The post <a href="https://cneris.com/en/jpg-image-viewers-in-linux-terminal/">JPG Image Viewers in Linux Terminal</a> appeared first on <a href="https://cneris.com/en">CNERIS</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cneris.com/en/jpg-image-viewers-in-linux-terminal/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
