<?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>Linux - Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</title>
	<atom:link href="https://vinodsebastian.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://vinodsebastian.com</link>
	<description>Hi I&#039;m a Web Architect by Profession and an Artist by nature. I love empowering People, aligning to Processes and delivering Projects.</description>
	<lastBuildDate>Sat, 06 Dec 2025 01:25:56 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://vinodsebastian.com/wp-content/uploads/2020/12/cropped-Me-32x32.jpg</url>
	<title>Linux - Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</title>
	<link>https://vinodsebastian.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Linux Command Line Essentials</title>
		<link>https://vinodsebastian.com/linux-command-line-essentials/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=linux-command-line-essentials</link>
					<comments>https://vinodsebastian.com/linux-command-line-essentials/#respond</comments>
		
		<dc:creator><![CDATA[vinodsebastian]]></dc:creator>
		<pubDate>Tue, 22 Dec 2020 10:19:01 +0000</pubDate>
				<category><![CDATA[IT Made Easy]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://vinodsebastian.com/general-11/</guid>

					<description><![CDATA[<p>Linux Command Line Essentials Mastering the Linux command line is essential for efficient system management and navigation. Below are some fundamental commands that can help you streamline your operations: 1. man Command Description: Provides detailed manual pages for commands Usage: man command_name (press &#8216;q&#8217; to exit) 2. &#8211;help Option Description: Displays brief command usage information [&#8230;]</p>
<p>The post <a href="https://vinodsebastian.com/linux-command-line-essentials/">Linux Command Line Essentials</a> first appeared on <a href="https://vinodsebastian.com">Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</a>.</p>]]></description>
										<content:encoded><![CDATA[<h1>Linux Command Line Essentials</h1>
<p>Mastering the Linux command line is essential for efficient system management and navigation. Below are some fundamental commands that can help you streamline your operations:</p>
<h2>1. man Command</h2>
<ul>
<li><strong>Description:</strong> Provides detailed manual pages for commands</li>
<li><strong>Usage:</strong> <code>man command_name</code> (press &#8216;q&#8217; to exit)</li>
</ul>
<h2>2. &#8211;help Option</h2>
<ul>
<li><strong>Description:</strong> Displays brief command usage information</li>
<li><strong>Usage:</strong> <code>command_name --help</code></li>
</ul>
<h2>3. clear Command</h2>
<ul>
<li><strong>Description:</strong> Clears the terminal screen</li>
<li><strong>Usage:</strong> <code>clear</code></li>
</ul>
<h2>4. su Command</h2>
<ul>
<li><strong>Description:</strong> Switches user identity, including to the superuser</li>
<li><strong>Usage:</strong> <code>su username</code> or <code>su</code></li>
</ul>
<h2>Command Reference Table:</h2>
<table>
<tr>
<th>Command</th>
<th>Description</th>
<th>Usage</th>
</tr>
<tr>
<td>ls</td>
<td>Lists files in a directory</td>
<td>
<ul>
<li><code>ls /</code></li>
<li><code>ls -al</code></li>
<li><code>ls -l | less</code></li>
</ul>
</td>
</tr>
<p>  <!-- Add more commands following the provided format --><br />
</table>
<p>These commands represent just a fraction of the vast array of tools accessible through the Linux command line interface. Proficiency in these commands can significantly boost your productivity and effectiveness in managing Linux systems.</p><p>The post <a href="https://vinodsebastian.com/linux-command-line-essentials/">Linux Command Line Essentials</a> first appeared on <a href="https://vinodsebastian.com">Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://vinodsebastian.com/linux-command-line-essentials/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Apache, PHP, and MySQL on Linux</title>
		<link>https://vinodsebastian.com/how-to-install-apache-php-and-mysql-on-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-apache-php-and-mysql-on-linux</link>
					<comments>https://vinodsebastian.com/how-to-install-apache-php-and-mysql-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[vinodsebastian]]></dc:creator>
		<pubDate>Tue, 22 Dec 2020 10:19:00 +0000</pubDate>
				<category><![CDATA[IT Made Easy]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://vinodsebastian.com/installing-on-linux/</guid>

					<description><![CDATA[<p>How to Install Apache, PHP, and MySQL on Linux Installing Apache, PHP, and MySQL on Linux can be essential for web development and hosting. Here is a step-by-step guide on how to do it: Step 1: Accessing Control Center Begin by accessing the control center of your Linux distribution. You can do this by searching [&#8230;]</p>
<p>The post <a href="https://vinodsebastian.com/how-to-install-apache-php-and-mysql-on-linux/">How to Install Apache, PHP, and MySQL on Linux</a> first appeared on <a href="https://vinodsebastian.com">Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</a>.</p>]]></description>
										<content:encoded><![CDATA[<h1>How to Install Apache, PHP, and MySQL on Linux</h1>
<p>Installing Apache, PHP, and MySQL on Linux can be essential for web development and hosting. Here is a step-by-step guide on how to do it:</p>
<h2>Step 1: Accessing Control Center</h2>
<p>Begin by accessing the control center of your Linux distribution. You can do this by searching for &#8220;apache&#8221; and &#8220;php&#8221; in the search box.</p>
<h2>Step 2: Selecting Required Packages</h2>
<p>Once in the control center, select the necessary packages for installation. Make sure to include Apache, PHP, MySQL, and CLI. The corresponding package names for these are:</p>
<ul>
<li>Apache: apache2</li>
<li>PHP: apache2-mod_php</li>
<li>MySQL: php-mysql</li>
<li>CLI: php-cli</li>
</ul>
<h2>Step 3: Installing the Packages</h2>
<p>Insert your installation media into the drive and click on the &#8220;Install&#8221; button to proceed with the installation process.</p>
<h2>Step 4: Starting Apache</h2>
<p>After the installation is complete, open a terminal window and type the following commands:</p>
<pre class="EnlighterJSRAW" data-enlighter-language="">su
/etc/init.d/httpd start</pre>
<p>These commands will prompt you to enter your password and then start the Apache server on your Linux system.</p>
<p>By following these steps, you can successfully install Apache, PHP, and MySQL on your Linux machine, enabling you to develop and host websites locally.</p><p>The post <a href="https://vinodsebastian.com/how-to-install-apache-php-and-mysql-on-linux/">How to Install Apache, PHP, and MySQL on Linux</a> first appeared on <a href="https://vinodsebastian.com">Vinod Sebastian - B.Tech, M.Com, PGCBM, PGCPM, PGDBIO</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://vinodsebastian.com/how-to-install-apache-php-and-mysql-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
