Linux FAQ's & Manuals
- Linux Scripts
- Debian Install
- Bash For Beginners
- Bugzilla
- Consultants Guide
- GCC Manual
- Linux Command Line Tools
- Gnu Pascal Coding Standards
- Linux Installation Disk
- Labolatorium Linux(PL)
- Budowa systemu Linux(PL)
- Linux Dictionary
- Network Administrators
- Rescue Disk for Linux
- Red Hat Installation
- Red Hat Customization
- Red Hat Getting Started
- Red Hat Security
- Secure & Optimize
- Slackware Manual
- Suse Support
- Suse FAQ
Gentoo Linux is perhaps the most-used source-based Linux distribution. One secret to its success is the powerful and handy Portage package management system...
developerWorks: Simplify Data Extraction Using Linux Text Utilities
The Linux operating system is loaded with files: configuration files, text files, documentation files, log files, user files, and the list goes on and on...
TechNews--How Does it Matter?: STFU Ubuntu Users!
Ubuntu Linux is one distro. Its leading on distrowatch. That doesn't mean its the freaking embodiment of the open source movement...
MacNN: Open-Source Darwin? Not Yet
Apple is stonewalling open-source developers despite the company's recent release of much of the Mac OS X Tiger kernel source code...
SearchOpenSource: LinuxWorld Preview: The Looming Server Virtualization I/O Crisis
As data centers begin to virtualize processors and memory to increase server utilization, IT managers could be setting themselves up for a massive I/O bottleneck crisis...
4.4. mac os x installation notes
there are a lot of common libraries and utilities out there that apple did not include with mac os x, but which run perfectly well on it. the gd library, which bugzilla needs to do bug graphs, is one of these.
the easiest way to get a lot of these is with a program called fink, which is similar in nature to the cpan installer, but installs common gnu utilities. fink is available from <http://sourceforge.net/projects/fink/>.
follow the instructions for setting up fink. once it's installed, you'll want to run the following as root: fink install gd
it will prompt you for a number of dependencies, type 'y' and hit enter to install all of the dependencies. then watch it work.
to prevent creating conflicts with the software that apple installs by default, fink creates its own directory tree at /sw where it installs most of the software that it installs. this means your libraries and headers for libgd will be at /sw/lib and /sw/include instead of /usr/lib and /usr/local/include. because of these changed locations for the libraries, the perl gd module will not install directly via cpan, because it looks for the specific paths instead of getting them from your environment. but there's a way around that :-)
instead of typing "install gd" at the cpan> prompt, type look gd. this should go through the motions of downloading the latest version of the gd module, then it will open a shell and drop you into the build directory. apply this patch to the makefile.pl file (save the patch into a file and use the command patch < patchfile.)
then, run these commands to finish the installation of the gd module:
| perl makefile.pl |
| make |
| make test |
| make install |
| and don't forget to run exit to get back to cpan. |