Linux current directory FAQ: How do I show what directory I'm currently in on a Unix or Linux system? Just use the Unix/Linux pwd command, like this: pwd If you're in a directory named /home/al, the output looks like this: $ pwd /home/al If you're in a directory...
Saturday, 30 May 2020
Thursday, 28 May 2020
Linux cd command examples
Linux FAQ: Can you share some cd command examples? The Linux cd command stands for "change directory". It is the primary command for moving between directories on a Unix/Linux filesystem. Examples of the cd command This first command moves you to the /usr directory. The /usr directory becomes...
Tuesday, 26 May 2020
The Linux copy command (cp)
Linux file copy FAQ: How do I copy Linux files and directories? (Or, Can you share some cp command examples?) You use the cp command to copy files and directories on Linux systems. Let's look at some copy examples to see how this works. Using Linux cp to...
Saturday, 23 May 2020
The Linux more command
The Linux more command lets you view text files or other output in a scrollable manner. It displays the text one screenful at a time, and lets you scroll backwards and forwards through the text, and even lets you search the text. Looking at a Linux file with...
Thursday, 21 May 2020
Examples of the Unix mkdir command
Linux directory FAQ: How do I create (make) a directory on Linux or Unix? The Unix/Linux mkdir command is used to create new Unix/Linux directories (sub-directories). Let's take a look at some mkdir command examples. How to create one directory This first example creates a new directory named...
Tuesday, 19 May 2020
tar command in Linux with examples
The Linux ‘tar’ stands for tape archive, is used to create Archive and extract the Archive files. tar command in Linux is one of the important command which provides archiving functionality in Linux. We can use Linux tar command to create compressed or uncompressed Archive files and also...
Saturday, 16 May 2020
Running Linux and IBM Spectrum Scale on IBM supercomputers
Overview Almost all of the world’s top 500 supercomputers today run Linux®. Mostly they have batch job submission systems, which partition the supercomputer as required for the applications, and run the applications in sequence in their allocated partitions in an attempt to keep the expensive supercomputer at maximum...
Thursday, 14 May 2020
Linux gzip: How to work with compressed files
If you work much with Unix and Linux systems you'll eventually run into the terrific file compression utilities, gzip and gunzip. As their names imply, the first command creates compressed files (by gzip'ing them), and the second command unzip's those files. In this post I take a quick...
Tuesday, 12 May 2020
Good (Free) Training is Not Hard to Come By
So now that we are indoors most of the time in keeping with social distancing guidelines, many of us are searching for ways to make this time productive. For whatever reasons you might find yourself in-between jobs or are already working for someone and want a change of...
Sunday, 10 May 2020
The Unix/Linux lpstat command
The Linux lpstat command lets you look at the progress of your print request(s). The name "lpstat" stands for "line printer statistics". lpstat command examples The "lpstat" command, used with no options, may return no output if there are no print jobs queued. lpstat It's generally better off...
Thursday, 7 May 2020
The Linux lp printing command
The lp command is used to print files on Unix and Linux systems. The name "lp" stands for "line printer". As with most Unix commands there are a fairly large number of options available to enable flexible printing capabilities. Let's look at some lp printing commands examples. Linux...
Tuesday, 5 May 2020
The Unix and Linux ps command
Unix/Linux processes FAQ: Can you share some examples of the Linux ps command? (Or, how do I use theps command?) The basic Linux ps command If you run the ps command by itself, it only shows very basic information about the processes you are currently running. For example,...
Sunday, 3 May 2020
Unix/Linux ‘cut’ command examples
Linux cut command FAQ: Can you share some cut command examples? The Linux cut command is a really great command filter to know. You can use it to do all sorts of cool things when processing text files and text in command pipelines. Using the cut command with...