Hi Friends this is step-by-step walk-through on RHEL 6 (Redheat Enterprise Linux) installation via reference of screenshots. It would be a handy guide for beginners on how to take on their first step towards Linux. Enjoy and share your views in comment section.... RHEL Download and install options RHEL 6 is available in 64 bit and 32 bit for installation. It can be downloaded from various options I have some, in below links:- RHEL6 available download Link Link for CentOS Destro Please refer my earlier post on how to check kernel OS version In this guide I use Graphical Installer . There is also Kickstart automated installation method and Text-based Installer available. And I install this machine for Software Development Workstation and testing environment. So package selection is following: Desktop, Web server, Databases, Compiling tools, Java. So let’s begi...
Hi Friends here we will check how to identify the Linux kernel architecture, i.e. it is 32 bit or 64 bit version. We will show you several different ways of checking whether your system is 32-bit or 64-bit. Uname The first two methods involves the “uname” command, which prints system information to the screen. If you want more information than just whether your system is 32-bit or 64-bit, type the following command and press Enter. uname –a The following information is printed to the screen in the following order: kernel name, network node hostname, kernel release, kernel version, machine hardware name, processor type, hardware platform, operating system. To use the “uname” command to only find out whether your system is 32-bit or 64-bit, type the following command and press Enter. uname –m This displays only the machine hardware name and indicates, as above, whether your system is 32-bit (“i686” or “i386”) or 64-bit (“x86_64”). Arch The “arch” ...