Useful tips for everyday
How to show list of modules in Linux kernel? You need to use lsmod program which show the status of loaded modules in the Linux…
What does usr bin env bash do? /usr/bin/env bash The /usr/bin/env run a program such as a bash in a modified environment. It makes your…
How do you create an integer array? Declare and define an array int intArray[] = new int[3]; Using box brackets [] before the variable name…
Why did Linux Mint drop KDE? Another reason for dropping KDE is that Mint team works hard on developing features for tools like Xed, Mintlocale,…
Can you compress IMG files? Open the photo you want to compress in your photo-editing software. Go to the file menu in your software and…
How can I view a Zip file without extracting it? Using Vim. Vim command can also be used to view the contents of a ZIP…
How to run ssh command across multiple servers? A little more direct is to use the -n flag, which tells ssh not to read from…
How do I reduce page fault number? In general, having a smaller memory footprint, and having things that will often be accessed around the same…
How to search a file with find and grep? This post shows you how to use “find” and “grep” to search for a text string…
What do I do with a .sh file? A file with . sh extension is a scripting language commands file that contains computer program to…