stty command is used to manipulate the terminal settings. You can view and modify the terminal settings using this command as explained below.
(more…)

sshd is OpenSSHD Daemon. When sshd receives a request for connection from a client, it creates a new process for that particular connection. You can use either password or key exchange authentication (there are others types too).

Typically this daemon gets the configuration parameters from the /etc/ssh/sshd_config file. But, you can also specify the options from the command line, in which case, it overrides the parameters from the sshd_config file.
(more…)

xinetd stands for extended Internet services daemon. This is a replacement for inetd. xinetd starts and listens on all the service ports that you’ve defined, and when there is an incoming request to a particular port that it is listening to, it starts the corresponding service.
(more…)

uuencode command is used to encode a binary file as explained in the examples below.
(more…)

uudecode command is used to decode the ASCII representation that was created by the uuencode command. Please note that uuencode command encodes a binary file to ASCII text.
(more…)

After you’ve partitioned a hard disk, you can use mkfs command is used to build a Linux filesystem. This article explains 5 practical examples on how to use this command.

Please be careful while executing this command, as this will destroy all data on the device. So, use this only on your test system to understand how this command works.
(more…)

When you are using HTTP digest authentication, you need to specify the list of users who can access the secured page. Use the htdigest command as explained in this article to manipulate the password file that is used by Apache HTTPD digest authentication.
(more…)

What is file?
5 file examples
Syntax and Options
Related Commands

What is file?

The file command accepts a file as an argument and performs certain tests to determine the correct file type. For example text, executable etc.
(more…)

What is cc?
5 cc examples
Syntax and Options
Related Commands

What is cc?

The cc compiler is the default compiler for Unix systems like Sun solaris. This is a powerful compiler used for compilation of C code.
(more…)

What is gcc?
5 gcc examples
Syntax and Options
Related Commands

What is gcc?

Gcc is the default GNU compiler. Its a very popular and powerful compiler used for compilation of C code.
(more…)