<?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>EmbLogic &#187; debian</title>
	<atom:link href="https://www.emblogic.com/blog/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Tue, 03 Mar 2020 13:00:06 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>ls &#8211; list command</title>
		<link>https://www.emblogic.com/blog/02/ls-list-command/</link>
		<comments>https://www.emblogic.com/blog/02/ls-list-command/#comments</comments>
		<pubDate>Wed, 10 Feb 2016 17:20:32 +0000</pubDate>
		<dc:creator><![CDATA[Ankur Garg]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[ll]]></category>
		<category><![CDATA[long list]]></category>
		<category><![CDATA[ls]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=13262</guid>
		<description><![CDATA[ls &#8211; list command ================= - ls means list directory content - Prototype : ls [OPTION] &#8230; [FILE] &#8230; - Exit status It returns 0 ,on success Returns 1 in case of minor problems (eg. cannot access subdirectory) returns 2 &#8230; <a href="https://www.emblogic.com/blog/02/ls-list-command/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>ls &#8211; list command<br />
=================<br />
- ls means list directory content<br />
- Prototype :<br />
ls [OPTION] &#8230; [FILE] &#8230;<br />
- Exit status<br />
It returns 0 ,on success<br />
Returns 1 in case of minor problems (eg. cannot access subdirectory)<br />
returns 2 in case of serious trouble (eg. Cannot access command line argument)<br />
- For specific listing you can use *<br />
eg.1) For listing all files starting with a use :<br />
ls a*<br />
2) for listing all .c files use :<br />
ls *.c<br />
3) for listing all .c files starting with a use :<br />
ls a*.c<br />
- Some common options are :<br />
i) -a &#8211;all &#8211;&gt; Do not ignore enteries starting with .<br />
Use this to view swap or temporary files.<br />
ii) -l &#8211;&gt; long listing format<br />
iii) -r &#8211;) Reverse order sort (by name) and list<br />
iv) -s &#8211;size &#8211;&gt; Print allocated size of each file in blocks<br />
v) -S &#8211;&gt; Sort by file size<br />
vi) -t &#8211;&gt; Sort by modification time, newest first<br />
vii) -U &#8211;&gt; Do not sort; list enteries in directory order<br />
viii) -X &#8211;&gt; Sort alphabetically by entry extension.<br />
ix) -F &#8211;&gt; to distinguish files from directories (Puts / in directory and * with executable files)<br />
x) -R &#8211;&gt; It shows files that are contained in directory. It continued to dirrectory in a directory and so on.</p>
<p>- In fedora for long lsting use command :</p>
<p>ll</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/ls-list-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CD &#8211; Change Directory Command</title>
		<link>https://www.emblogic.com/blog/02/cd-change-directory-command/</link>
		<comments>https://www.emblogic.com/blog/02/cd-change-directory-command/#comments</comments>
		<pubDate>Wed, 10 Feb 2016 17:18:28 +0000</pubDate>
		<dc:creator><![CDATA[Ankur Garg]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[change directory]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora linux]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=13260</guid>
		<description><![CDATA[CD &#8211; Change Directory Command ============================= - cd means change working directory - Prototype: cd [-L &#124; -P] [directory] cd - -If you do not give any directory to cd command, it will take you to home directory. eg. cd &#8230; <a href="https://www.emblogic.com/blog/02/cd-change-directory-command/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>CD &#8211; Change Directory Command<br />
=============================<br />
- cd means change working directory<br />
- Prototype:<br />
cd [-L | -P] [directory]<br />
cd -<br />
-If you do not give any directory to cd command, it will take you to home directory.<br />
eg. cd &#8211;&gt; It will go to home directory.<br />
- For previous directory use :<br />
cd ..<br />
- Further for more than one previous directory use :<br />
cd ../..<br />
- Directory can be defined by 2 types :<br />
i) Absolute filepath &#8211; Path starting from &#8216;/&#8217;.<br />
eg. cd /usr/bin/<br />
ii)Relative Filepath &#8211; Path relative to current directory<br />
eg. cd /usr &#8211;&gt; Absolute filepath<br />
cd etc &#8211;&gt; Relative Filepath</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/cd-change-directory-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common linux virtual directories</title>
		<link>https://www.emblogic.com/blog/02/common-linux-virtual-directories/</link>
		<comments>https://www.emblogic.com/blog/02/common-linux-virtual-directories/#comments</comments>
		<pubDate>Tue, 09 Feb 2016 15:00:57 +0000</pubDate>
		<dc:creator><![CDATA[Ankur Garg]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[/home]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtual directories]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=13258</guid>
		<description><![CDATA[Common Linux Virtual Directories ================================= Directory               Usage / Root                     of virtual directory. No files are placed here (normally) /bin         &#8230; <a href="https://www.emblogic.com/blog/02/common-linux-virtual-directories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Common Linux Virtual Directories<br />
=================================<br />
Directory               Usage<br />
/ Root                     of virtual directory. No files are placed here (normally)<br />
/bin                         Binary directory.GNU user level utilities are stored<br />
/boot                       Boot directory.Boot files are stored here<br />
/dev                         device directory, where linux creates device nodes<br />
/etc                          system configuration files directory<br />
/home                      home directory, user directories are placed here<br />
/lib                          System &amp; application library files are stored here<br />
/media                   Common place for mount point of removable media<br />
/mnt                        mount directory, for removable devices<br />
/opt                         used to store optional software packages<br />
/root                       home directory of root user<br />
/sbin                      GNU admin level utilities are store here<br />
/tmp                       Temporary work files are created and destroyed<br />
/usr                        User installed softwares directory<br />
/var                         For frequently changing directory ,such as log files</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/common-linux-virtual-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Run Levels</title>
		<link>https://www.emblogic.com/blog/02/linux-run-levels/</link>
		<comments>https://www.emblogic.com/blog/02/linux-run-levels/#comments</comments>
		<pubDate>Tue, 02 Feb 2016 12:36:51 +0000</pubDate>
		<dc:creator><![CDATA[Ankur Garg]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[run level]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=13216</guid>
		<description><![CDATA[Linux Run Levels ================ Run Level    Description 0                    Halt 1                     Single-User mode 2                    Multi-user mode, usually &#8230; <a href="https://www.emblogic.com/blog/02/linux-run-levels/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Linux Run Levels<br />
================<br />
Run Level    Description<br />
0                    Halt<br />
1                     Single-User mode<br />
2                    Multi-user mode, usually without networking support<br />
3                    Full multi-user mode with networking<br />
4                    Unused<br />
5                    Multiuser mode with networking and a graphical X window Session<br />
6                    Reboot</p>
<p>- To change run level use init command</p>
<p>init run_level<br />
- Most normal is run level 5 for graphical linux system.<br />
- Level 1 is used for troubleshooting or emergency purpose.<br />
- Most linux softwares start the network softwares at run level 3.<br />
- What aplications work at Run level is determined by system by RC script.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/linux-run-levels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot process of linux</title>
		<link>https://www.emblogic.com/blog/02/boot-process-of-linux/</link>
		<comments>https://www.emblogic.com/blog/02/boot-process-of-linux/#comments</comments>
		<pubDate>Tue, 02 Feb 2016 12:27:09 +0000</pubDate>
		<dc:creator><![CDATA[Ankur Garg]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=13214</guid>
		<description><![CDATA[The boot process of linux ========================= - After you turn on your Linux System, linux kernel loads into memory and runs. - Firstly, it runs the init process. - init program is usually located at /sbin/init. - init process has &#8230; <a href="https://www.emblogic.com/blog/02/boot-process-of-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The boot process of linux<br />
=========================<br />
- After you turn on your Linux System, linux kernel loads into memory and runs.<br />
- Firstly, it runs the init process.<br />
- init program is usually located at /sbin/init.<br />
- init process has PID 1.<br />
- The init process then starts all other processes.<br />
- The init process reads the /etc/inittab file during boot (This is outdated now).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/boot-process-of-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
