UNIX: Find Out the Server Model

You can find out the model of a UNIX server using the following methods: Using the “uname” command: uname -a This command will display information about the system, including the machine hardware name. For example, the output might look something like this: Linux hostname 4.4.0-1060-aws #70-Ubuntu SMP Wed Jan 8 22:42:53 UTC 2020 x86_64 x86_64 … Read more

Debian Linux (Squeeze) Install Firefox 4

To install Firefox 4 on Debian Linux Squeeze, you can follow these steps: Add the Mozilla repositories: echo “deb http://mozilla.debian.net/ squeeze-backports iceweasel-release” | sudo tee /etc/apt/sources.list.d/iceweasel.list Import the repository signing key: wget -q -O – http://mozilla.debian.net/archive.asc | sudo apt-key add – Update the package list: sudo apt-get update Install Firefox 4: sudo apt-get install -t … Read more

Linux Find Out CPU Architecture Information

You can find out the CPU architecture information on a Linux system using several methods. Here are a few: lscpu command: The lscpu command provides detailed information about the system’s CPU architecture. You can use it as follows: lscpu This will display information such as the architecture (e.g. x86_64), the number of CPUs, the number … Read more

Linux: What is Dash ( /bin/dash ) Shell?

dash (short for Debian Almquist shell) is a Unix shell that is commonly used as the default /bin/sh interpreter on many Linux distributions, including Debian, Ubuntu, and some others. It is designed to be a lightweight, fast, and POSIX-compliant alternative to the traditional bash shell. dash is a POSIX-compliant shell, which means that it adheres … Read more

How To Find Out RHEL 6 / CentOS 6 Kernel Version

You can find the kernel version of a Red Hat Enterprise Linux 6 (RHEL 6) or CentOS 6 system by using the uname command with the -r option. The -r option displays the kernel release number. Here’s an example: uname -r This will output the kernel version number, for example: 2.6.32-754.18.2.el6.x86_64 In this example, 2.6.32-754.18.2.el6.x86_64 … Read more