Microsoft Windows
How to find Ethernet MAC address of my PC in various operating systems
Feb 7th
This article explains how to find MAC address of the PC in Linux, Windows, FreeBSP, NetBSP, OpenBSD, Caldera/SCO, IRIX, HP-UX, NeXTStep, AIX, Tru64 UNIX etc.Typically each Ethernet adapter in the world is programmed with an unique MAC address by the manufacturer. In other words, no two Ethernet adapters will have same MAC address.
In Linux (Fedora/Ubuntu/Other flavours)
[neo@techpulp ~]# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:A3:B2:01:5E:4B inet addr:192.168.1.2 Bcast:192.168.1.255 Mask:255.255.255.0 ...
If you have more than one Ethernet adapters in the system, you can use “ifconfig -a” command.
In Microsoft Windows NT/2000/2003/XP Open Run Command Window by pressing R while holding Windows Start Key. Otherwise Click More >
How to configure apache virtual host in Microsoft Windows for safer development
Jan 6th
Typically for web development, one likes to simulate the web environment by using actual domain name as is instead of using some local IP address. It is very useful in case if you want to host WordPress and would like to copy your version of database as is from development server to the the actual hosting server. The applications like WordPress store domain names in the database while storing your posts as part of permalinks etc.
Another use for having real simulated environment is to ensure your ad slots like Google AdSense, DoubleClick etc appear without any issues. Otherwise the ads More >
What is the best alternative to WinZip
Jan 18th
If you are tired of commerical software WinZip, The best free software alternative to WinZip is 7-zip.
In fact 7-zip is better than WinZip as it supports more formats like BZIP2, RPM etc along with its own format 7z.
7-zip in Windows
The 7-zip can create archives of following formats.
- 7z, ZIP, GZIP, BZIP2 and TAR
The 7-zip application can unzip following formats
- 7z, ZIP, GZIP, BZIP2 and TAR
- ARJ, CAB, CHM, CPIO, DEB, DMG, HFS, ISO, LZH, LZMA, MSI, NSIS, RAR, RPM, UDF, WIM, XAR and Z.
This is best compatible with UNIX flavours as it supports the archives seen on UNIX systems like GZIP, TAR, BZIP2, More >
How to access files in Linux partitions from Microsoft Windows
Mar 19th
Microsoft Windows doesn’t recognize Linux partitions and doesn’t provide any file system drivers for accessing Linux partitions with EXT2/EXT3 file systems. However there are some open source tools which can be used for this purpose.
Explore2fsThe best and safest way to access files in Linux (EXT2) partitions in Microsoft Windows operating system is to use Explore2fs software. This tool works much like Windows Explorer and pretty easy to use. This provides you read-only access to all Linux partitions present on all hard drives in your system. On the left pane it shows you the recognized Linux partitions along with directory structure More >
How to verify the integrity of a large downloaded file
Jan 29th
There are some algorithms like MD5 and SHA1 which generate unique digest for any given input. Basic idea is to find the MD5 or SHA1 digest of the file which is going to be downloaded and cross check the same after calculating digest after downloading the file locally. There are command line utilities “md5sum” and “sha1sum” to compute digest using MD5 and SHA1 algorithms respectively.
Typically the servers place a special file “MD5SUM” or “md5sum.txt” or “SHA1SUM” (file name may vary) in the same directory from where you are trying to download the large file. This “MD5SUM” contains digests of all More >
How to disable Ads using HOSTS file in Microsoft Windows/Linux/UNIX
Jan 21st
One way of avoiding online advertisements is to redirect all requests to Ad sites to locahost so that bandwidth is well utilized. It also results in faster browsing as it eliminates Domain Name Service (DNS) requests. For this you need to define custom entries for Ad servers in system HOSTS file to redirect them to localhost (127.0.0.1). The browser first looks at the system HOSTS file for known hosts and if it doesn’t fin it there it will contact the DNS server to resolve IP address of the host name.
The Location of HOSTS file in various operating systems:
Windows 95/98/Me:
The HOSTS More >
How to install a custom font in Microsoft Windows
Dec 16th
Typically font files have .fon or .ttf as file extension. To install a font file, just go to “Start Menu” and type “Run…” as shown below.
This will show the following Run dialog as shown below.
Type “%windir%\fonts\” and click OK. It will open up the system fonts folder as shown below.
Now just drag and drop your font file in to the system fonts folder to install them. If it is properly installed, you should see it in Microsoft Word and Wordpad applications.
Where is my NetMeeting in Windows XP
Nov 3rd
The NetMeeting application is not directly visible in either start-menu shortcut or desktop shortcut. But NetMeeting application will be installed as part of standard Windows XP installation. So there is no need to download NetMeeting from Microsoft Download Center and install. Moreover if you download NM30.EXE from Microsoft Download Center and try to install it on Windows XP it will say that its version is not compatible with this version of Windows. It is because NM30.EXE is intended for Windows 2000 etc.
Basically NetMeeting is already there in your installation and it’s just that you need to configure it before it More >
Map a directory with long pathname to a virtual drive in Microsoft Windows
Sep 27th
It is often very inconvenient to type long path names to move to a directory. Also sometimes code compilation fails if your command is taking more than certain length. In such cases, the base directory can be mapped to a Windows virtual drive so that the length of path can be reduced. For example “c:\mywork\myproject\release-10\” can be mapped to an unused drive “z:\“. Since then all files and directories present in “c:\mywork\myproject\release-10\” can be accessed using “z:\” as prefix.
Some old GNU compilation tools complain that command is too long when you have long pathnames and lot of command-line options. In More >


Recent Comments