<?xml version="1.0"?>

<rss version="2.0">


<channel>
<title>Home - All Categories - Linux Command Line  </title>
<link>https://www.navel.ir/category/linux-command-line/</link>
<description>This RSS Feed contains Articles of Category in the knowledge base. You can click on the title to view its content. Powered by PHPKB Knowledge Base Software (http://www.knowledgebase-script.com)</description>
<item>
										<guid>https://www.navel.ir/article/how-to-find-a-file-in-linux-from-the-command-line-115.html</guid>
										<title>How To Find a File In Linux From the Command Line</title>
										<link>https://www.navel.ir/article/how-to-find-a-file-in-linux-from-the-command-line-115.html</link>
										<description><![CDATA[   Locate Linux Files by Their Name or Extension Type&nbsp;find&nbsp;into the command line to track down a particular file by its name or extension. If you want to look for *.err files in the /home/username/ directory and all sub-directories, try...]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/unix-zip-directory-but-excluded-specific-subdirectories-and-everything-within-them-22.html</guid>
										<title>Unix zip directory but excluded specific subdirectories (and everything within them)</title>
										<link>https://www.navel.ir/article/unix-zip-directory-but-excluded-specific-subdirectories-and-everything-within-them-22.html</link>
										<description><![CDATA[zip -r myarchive.zip dir1 -x dir1/ignoreDir1/**&#92;* dir1/ignoreDir2/**&#92;* &nbsp; Reference: https://superuser.com/questions/312301/unix-zip-directory-but-excluded-specific-subdirectories-and-everything-within-t]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-find-large-files-on-linux-127.html</guid>
										<title>How To Find Large Files on Linux</title>
										<link>https://www.navel.ir/article/how-to-find-large-files-on-linux-127.html</link>
										<description><![CDATA[&nbsp; find . -type f -size +100M ]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-extract-or-unzip-targz-files-in-linux-130.html</guid>
										<title>How to Extract or Unzip .tar.gz Files in Linux</title>
										<link>https://www.navel.ir/article/how-to-extract-or-unzip-targz-files-in-linux-130.html</link>
										<description><![CDATA[How to Unzip .tar.gz in Linux via Terminal tar &ndash;xvzf [archive name] tar -xvzf example1.tar.gz]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/tell-yum-to-ignore-a-single-dependency-nodeps-123.html</guid>
										<title>Tell yum to ignore a single dependency - nodeps</title>
										<link>https://www.navel.ir/article/tell-yum-to-ignore-a-single-dependency-nodeps-123.html</link>
										<description><![CDATA[Generally&nbsp;yum&nbsp;doesn&#039;t have options to ignore a single package from the dependencies. Option&nbsp;--skip-broken&nbsp;ignores all unresolved dependences. You can try&nbsp;yum --exclude=packagename&nbsp;but it excludes a specific package...]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-exclude-specific-packages-from-yum-update-2-124.html</guid>
										<title>How to Exclude Specific Packages from Yum Update #2</title>
										<link>https://www.navel.ir/article/how-to-exclude-specific-packages-from-yum-update-2-124.html</link>
										<description><![CDATA[1. Exclude Packages with Command &nbsp;# yum update --exclude=kernel* --exclude=php* &nbsp; 2. Exclude Packages from Auto Update [main]cachedir=/var/cache/yum/$basearch/$releaseverkeepcache=0debuglevel=2logfile=/var/log/yum.logexactarch=1obsoletes...]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-remove-all-files-starting-with-a-certain-string-in-linux-122.html</guid>
										<title>How to remove all files starting with a certain string in Linux</title>
										<link>https://www.navel.ir/article/how-to-remove-all-files-starting-with-a-certain-string-in-linux-122.html</link>
										<description><![CDATA[To delete all files which name has name, you can use it: find  . -name &#039;name*&#039; -exec rm {} &#92;;]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/internet-speed-test-in-linux-53.html</guid>
										<title>Internet Speed Test in Linux</title>
										<link>https://www.navel.ir/article/internet-speed-test-in-linux-53.html</link>
										<description><![CDATA[Copy "speedtest" -bash attached to /usr/bin and change it permission to X &nbsp; command: $ sudo&nbsp;speedtest &nbsp; &nbsp; Ref: Navel.ir]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/add-cron-jobs-directly-to-scheduled-cron-jobs-114.html</guid>
										<title>Add cron jobs directly to Scheduled Cron Jobs</title>
										<link>https://www.navel.ir/article/add-cron-jobs-directly-to-scheduled-cron-jobs-114.html</link>
										<description><![CDATA[if you like working with VIM, then you know you can manually add them.Open the crontab in edit mode (crontab -e) add the cron jobs and save, that&#039;s all.]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-do-i-find-all-files-containing-specific-text-on-linux-99.html</guid>
										<title>How do I find all files containing specific text on Linux?</title>
										<link>https://www.navel.ir/article/how-do-i-find-all-files-containing-specific-text-on-linux-99.html</link>
										<description><![CDATA[&nbsp; ~]# grep -rnw &#039;/path/to/somewhere/&#039; -e &#039;pattern&#039;Ref:https://stackoverflow.com/questions/16956810/how-do-i-find-all-files-containing-specific-text-on-linux]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-get-the-size-of-a-directory-in-linux-2.html</guid>
										<title>How to Get the Size of a Directory in Linux</title>
										<link>https://www.navel.ir/article/how-to-get-the-size-of-a-directory-in-linux-2.html</link>
										<description><![CDATA[#&nbsp;sudo du -shc /var/* &nbsp; Source: https://linuxize.com/post/how-get-size-of-file-directory-linux/]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/argument-list-too-long-error-while-copying-a-large-number-of-files-1.html</guid>
										<title>`Argument list too long` error while copying a large number of files</title>
										<link>https://www.navel.ir/article/argument-list-too-long-error-while-copying-a-large-number-of-files-1.html</link>
										<description><![CDATA[find public_html/images/uploads/ -name "*.*" -exec cp -uf "{}" /home/[root]/domains/new.folder.com/public_html/uploads/images/ &#92;; &nbsp; Source: https://serverfault.com/questions/56068/argument-list-too-long-error-while-copying-a-large-number-of...]]></description>

									</item>
<item>
										<guid>https://www.navel.ir/article/how-to-extract-targz-files-using-linux-command-line-16.html</guid>
										<title>How To Extract .tar.gz Files using Linux Command Line</title>
										<link>https://www.navel.ir/article/how-to-extract-targz-files-using-linux-command-line-16.html</link>
										<description><![CDATA[Extracting .tar.gz files &nbsp;$ tar xvzf file.tar.gz &nbsp; Source: https://www.interserver.net/tips/kb/extract-tar-gz-files-using-linux-command-line/]]></description>

									</item>

</channel>

</rss>