Posts tagged Commands
Simple CLI Cisco Commands
Sep 7th
Here is a list of simple CLI commands to do basic commands on Cisco switches, routers and firewalls.
What versions am I running on my Linux server.
Jul 15th
These are usefull commands to find to find out what you have running on your server.
Server Platform
uname -p
Result
i686
With uname there are a number of other options that you can apply
Linux Searching All Files For A String (Recursively)
Feb 18th
Linux Searching All Files For A String (Recursively)
You can use the grep or find command to search recursivley for a string
Basic grep command
grep -ri "STRING" .
Options
| Option | Description |
| -r | recursive |
| -i | ignore case |
tar (gzip)
Feb 12th
GZIP vs TAR
The .tar.gz extension is a very popular one when downloading files especially in non Windows operating systems. But unlike most extensions, this is not meant to identify a single program that would be used to open this file; it points to two. Tar is a file format but is also the name of the program that produces the file. Tar is an archiver, meaning it would archive multiple files into a single file but without compression. Gzip which handles the .gz extension is the compression tool that is used to reduce the disk space used by the file.
More >