Category Archives: Servers

Remote Desktop : stop working after Windows Update

This happen after updating to Windows XP Service Pack 3 or Windows Server 2003 SP2: Microsoft added a security feature to disable RDP if Windows Firewall is disabled. Enable Windows Firewall and add exception for Remote Desktop Protocol (TCP-3389) to get it working. (Also make sure that the Windows Terminal Service is started if problem… Read More »

Linux : How to create Ramdisk

Here is a procedure to create ramdisk on Linux. 1. Look for ramdisk devices : ls -la /dev/ram* 2. Increase size by adding the kernel parameter in the grub config file (this example assume you want a 512 Mb ramdisk) : ramdisk_size=512000 3. Format the ramdisk : mke2fs -m 0 /dev/ram0 4. Mount the ramdisk… Read More »