KB Home | Advanced Search | News | Glossary | Login
Navel Knowledge Base Logo
Home » Categories » Linux Command Line
All Categories
Expand
Category
Apache (16)
Expand
Category
App Tools (4)
Expand
Category
CentOS (11)
Expand
Category
CMS (2)
Expand
Category
CSS Tricks (4)
Expand
Category
Electronis > (1)
Expand
Category
JavaScript (9)
Expand
Category
jQuery (5)
Collapse
Category
Linux Command Line (13)
article
How to Extract or Unzip .tar.gz Files in Linux
article
How To Find Large Files on Linux
article
How To Find a File In Linux From the Command Line
article
Unix zip directory but excluded specific subdirectories (and everything within them)
article
How to Exclude Specific Packages from Yum Update #2
article
Tell yum to ignore a single dependency - nodeps
article
How to remove all files starting with a certain string in Linux
article
Add cron jobs directly to Scheduled Cron Jobs
article
How do I find all files containing specific text on Linux?
article
Internet Speed Test in Linux
article
How To Extract .tar.gz Files using Linux Command Line
article
How to Get the Size of a Directory in Linux
article
’Argument list too long’ error while copying a large number of files
Expand
Category
MikroTik (1)
Expand
Category
MySQL (23)
Expand
Category
Network (1)
Expand
Category
Nginx (1)
Expand
Category
PHP (12)
Expand
Category
PHP Tricks (2)
Expand
Category
Smarty (1)
empty
Category
Smarty Tricks (0)
Expand
Category
SSL (1)
Expand
Category
Third-party (2)
Expand
Category
TypeScript (1)
Expand
Category
Virtualization (18)
Expand
Category
VMware (1)
Expand
Category
Webmin (10)
Expand
Category
Windows (6)
Expand
Category
WordPress (9)
Linux Command Line Articles RSS FeedIcon Subscriber Subscribe
How To Find a File In Linux From the Command Line
Viewed 1508 times since Sun, Jul 31, 2022
Locate Linux Files by Their Name or Extension Type find 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... Read More
Unix zip directory but excluded specific subdirectories (and everything within them)
Viewed 565 times since Sat, Sep 12, 2020
zip -r myarchive.zip dir1 -x dir1/ignoreDir1/**\* dir1/ignoreDir2/**\*   Reference: https://superuser.com/questions/312301/unix-zip-directory-but-excluded-specific-subdirectories-and-everything-within-t Read More
How To Find Large Files on Linux
Viewed 274 times since Wed, Oct 23, 2024
  find . -type f -size +100M Read More
How to Extract or Unzip .tar.gz Files in Linux
Viewed 38 times since Sat, Jun 7, 2025
How to Unzip .tar.gz in Linux via Terminal tar –xvzf [archive name] tar -xvzf example1.tar.gz Read More
Tell yum to ignore a single dependency - nodeps
Viewed 1830 times since Thu, Feb 2, 2023
Generally yum doesn't have options to ignore a single package from the dependencies. Option --skip-broken ignores all unresolved dependences. You can try yum --exclude=packagename but it excludes a specific package... Read More
How to Exclude Specific Packages from Yum Update #2
Viewed 1545 times since Wed, Nov 8, 2023
1. Exclude Packages with Command  # yum update --exclude=kernel* --exclude=php*   2. Exclude Packages from Auto Update [main]cachedir=/var/cache/yum/$basearch/$releaseverkeepcache=0debuglevel=2logfile=/var/log/yum.logexactarch=1obsoletes... Read More
How to remove all files starting with a certain string in Linux
Viewed 1407 times since Wed, Feb 1, 2023
To delete all files which name has name, you can use it: find . -name 'name*' -exec rm {} \; Read More
Internet Speed Test in Linux
Viewed 761 times since Thu, Oct 8, 2020
Copy "speedtest" -bash attached to /usr/bin and change it permission to X   command: $ sudo speedtest     Ref: Navel.ir Read More
Add cron jobs directly to Scheduled Cron Jobs
Viewed 699 times since Tue, Jul 19, 2022
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's all. Read More
How to Get the Size of a Directory in Linux
Viewed 635 times since Tue, Sep 1, 2020
# sudo du -shc /var/*   Source: https://linuxize.com/post/how-get-size-of-file-directory-linux/ Read More
How do I find all files containing specific text on Linux?
Viewed 633 times since Mon, Jan 17, 2022
  ~]# grep -rnw '/path/to/somewhere/' -e 'pattern'Ref:https://stackoverflow.com/questions/16956810/how-do-i-find-all-files-containing-specific-text-on-linux Read More
’Argument list too long’ error while copying a large number of files
Viewed 591 times since Tue, Sep 1, 2020
find public_html/images/uploads/ -name "*.*" -exec cp -uf "{}" /home/[root]/domains/new.folder.com/public_html/uploads/images/ \;   Source: https://serverfault.com/questions/56068/argument-list-too-long-error-while-copying-a-large-number-of... Read More
How To Extract .tar.gz Files using Linux Command Line
Viewed 534 times since Sun, Sep 6, 2020
Extracting .tar.gz files  $ tar xvzf file.tar.gz   Source: https://www.interserver.net/tips/kb/extract-tar-gz-files-using-linux-command-line/ Read More
 
Subscribe to knowledgebase
Get notified when new articles are added to the knowledgebase.