Category Archives: Operating Systems

Linux : How to add IP range on RHEL/CentOS

If you have a full subnet to add on RHEL/CentOS Linux system, there is a short way to achieve this instead of manually create single alias interfaces. 1. Create a script at this location : vi /etc/sysconfig/network-scripts/ifcfg-eth0-range0 (ajust values as needed, according to the interface you would would have the IP subnet binded to an… Read More »

Linux : Installing text mode setup tool

If you’ve done a Basic/Minimal OS install on RHEL/CentOS Linux, setuptool (which could be invoked typing “setup” in terminal), this tool is probably missing on your system. To install it via Yum repository, simply type the following command : yum install setuptool system-config-securitylevel-tui authconfig system-config-network-tui ntsysv There is a description of each packages : setuptool… Read More »

Linux : Install Webmin from YUM repository

Webmin and Usermin can be installed and updated directly through YUM. To achieve this, we need to setup manually the repository. First, create the .repo file for YUM : vi /etc/yum.repos.d/webmin.repo Copy, paste and save the following : [Webmin] name=Webmin Distribution Neutral#baseurl=http://download.webmin.com/download/yum mirrorlist=http://download.webmin.com/download/yum/mirrorlist enabled=1 Save the PGP key : wget http://www.webmin.com/jcameron-key.asc Import the key :… Read More »

Windows : Asp.NET test page

Just like php, you can create a test page in order to verify if .NET is installed and working properly. The following will also display the running version. Simply create plain text file using Notepad or your favorite text editor : test.aspx And insert this code : <%@ Page Language=”VB” %> <script runat=”server”> Protected Sub… Read More »