Howto
HOWTO: Use Linux to Slipstream SP3 into Windows XP iso
Submitted by Worzie on Fri, 2009-09-04 12:21. Howto | ISO | Linux | WindowsA co-worker of mine inspired me to create a new enterprise CD with SP3 pre-installed the other day after I asked about an existing iso I had found on our network. I wondered if it were OEM or a new volume license with SP3 I had hoped it was.
He sent me a few links to some howto's and not all were the same. Looking over a few examples I quickly began replacing their Windows solutions with known Linux. Rather than recreate the wheel, I first searched how others have done it using Linux. These are a couple sites that have inspired my success:
- Slipstreaming Windows XP with Service Pack 3 in Linux by Jeremy Visser
- Slipstreaming Windows XP SP3 in Linux by Michael Gorven
- Intégration du Service Pack Windows sous Linux by Jacques Rouxel
HOWTO: Linux on the Intel iMac - Triple booting
Submitted by Scott Dowdle on Thu, 2009-07-30 10:02. Fedora | Howto | MacIntroduction - Why Macs?
I work as a System Administrator for a Computer Science Department and as a result I manage both server machines and lab machines. Some time ago the department decided (and I was in agreement) that it would be a good idea to offer the students additional variety in the computer lab by replacing some of the "Pee Cee" machines in the main undergrad lab with some Apple Macintosh systems. This would give students access to Mac OS X (pronounced "ten") in the lab in addition to Linux and Microsoft Windows.
Although Apple switched to Intel-based machines a few years ago, you can't just run their OS on any Intel/AMD machine as they have both licensing reasons and technical reasons why their OS should ONLY run on Apple hardware. They don't seem to be friendly to running Mac OS X inside of Virtualization either. Mr. Jobs, why do you hate us? I digress.
The first three years we had Macs in the lab they only ran Mac OS X and as time passed, fewer and fewer people used them. The usage slowdown was caused by a number of reasons that I'll not go into here. This year though, I decided not to give up on the Macs and to make them triple-boot... so if people don't want to use Mac OS X they don't have to, and the machines can get better utilization.
Installing and using OpenVZ on CentOS 5
Submitted by Scott Dowdle on Mon, 2008-06-09 10:26. CentOS | Howto | OpenVZI wrote up a HOWTO for the CentOS wiki entitled, Installing and using OpenVZ on CentOS 5, and thought I would share it here as well.
Please note that the OpenVZ kernel is a product of the OpenVZ Project
and is NOT supported by CentOS. The OpenVZ Project follows the RHEL
kernels closely and provides updates in a somewhat timely fashion
after updated Red Hat (and CentOS) kernels are released. As a result
the RHEL-based OpenVZ kernels are well suited for use on RHEL and
CentOS hosts with support for (almost) all of the same hardware.
Please note though that the OpenVZ kernel is less modular than the
stock Red Hat / CentOS kernels with some hardware support being
compiled in.
It is recommended you read this HOWTO in its entirety before
attempting any of the operations shown in it.What is OpenVZ?
OpenVZ is operating system-level virtualization based on a modified Linux kernel that allows a physical server to run multiple isolated instances known as containers, virtual private servers (VPS), or virtual environments (VE). The preferred term these days is container. Containers are sometimes compared to chroot or jail type environments but containers are really much better in terms of isolation, security, functionality, and resource management.
OpenVZ consists of a custom Linux kernel (available from the OpenVZ Project) and some user-level tools. OpenVZ is very portable, does not rely on VT support in the CPU, and as a result it is available for a number of CPU families including x86, x86-64, IA-64, PowerPC and SPARC.
OS-level virtualization is quite different from machine / hardware virtualization products such as VMware Server, Parallels Workstation, VirtualBox, QEMU, KVM, and Xen in that with OpenVZ you can only do Linux on Linux virtualization.
OpenVZ modifies the Linux kernel to add advanced containerization features which allow for isolated groups of processes under a parent init along with about twenty dynamic resource management parameters for controlling container resource usage. The OpenVZ Project maintains three stable kernel branches:
- RHEL4 / CentOS4 2.6.9 based
- RHEL5 / CentOS 5 2.6.18 based
- Vanilla 2.6.18 based
There are a number of unstable branches based on newer versions of the Linux kernel that may eventually reach stable status.
Installing Perl Modules the CPAN Way
Submitted by Worzie on Thu, 2007-01-25 09:01. Howto | Perl | TipsI have done this many times following various instructions when installing perl modules but for the most part they all tell you to:
download > extract > cd into extracted dir perl Makefile.PL make make install
I remember there was an easier way that went out and fulfilled all dependencies but I could never remember because I just followed the README file. Today I read a post where at least a couple folks gave the same instructions I recalled using:
perl -MCPAN -e shell install modulename
Much easier!
UPDATE:


