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
Car Dealership Uses Asterisk VoIP to Stay on "Cutting Edge"
IT Manager's Journal: "When the company built new headquarters recently, it needed a phone system flexible and cost-effective enough to satisfy the needs of 200 employees at the home office, and hundreds more staff at nine local dealerships in four states..."
Review: Ubuntu Feisty Fawn
Linux.com: "The Ubuntu 7.04 release, better known as Ubuntu Feisty Fawn, is another cutting-edge, but not bleeding-edge, release that shows what Linux is capable of on the desktop..."
Why Device Developers Prefer Debian
LinuxDevices: "For example, our 2007 survey indicated that Debian was used in device-related projects by 13 percent of the survey's 932 participants, roughly double the score of MontaVista..."
Linux: ext4 Development Status
KernelTrap: "Theodore Ts'o posted an update on the ext4 filesystem, 'I've respun the ext4 development patchset, with Amit's updated fallocate patches...'"
Cyberinfrastructure and the Public Interest
ConsortiumInfo: "The fact that so many people are meeting in so many venues to discuss standards in non-technical contexts demonstrates the fact that something new and important is at work here..."
IT Manager's Journal: "When the company built new headquarters recently, it needed a phone system flexible and cost-effective enough to satisfy the needs of 200 employees at the home office, and hundreds more staff at nine local dealerships in four states..."
Review: Ubuntu Feisty Fawn
Linux.com: "The Ubuntu 7.04 release, better known as Ubuntu Feisty Fawn, is another cutting-edge, but not bleeding-edge, release that shows what Linux is capable of on the desktop..."
Why Device Developers Prefer Debian
LinuxDevices: "For example, our 2007 survey indicated that Debian was used in device-related projects by 13 percent of the survey's 932 participants, roughly double the score of MontaVista..."
Linux: ext4 Development Status
KernelTrap: "Theodore Ts'o posted an update on the ext4 filesystem, 'I've respun the ext4 development patchset, with Amit's updated fallocate patches...'"
Cyberinfrastructure and the Public Interest
ConsortiumInfo: "The fact that so many people are meeting in so many venues to discuss standards in non-technical contexts demonstrates the fact that something new and important is at work here..."
c.1. apache mod_rewrite magic
apache's mod_rewrite module lets you do some truly amazing things with url rewriting. here are a couple of examples of what you can do.
make it so if someone types http://www.foo.com/12345 , bugzilla spits back http://www.foo.com/show_bug.cgi?id=12345. try setting up your virtualhost section for bugzilla with a rule like this:
<virtualhost 12.34.56.78> rewriteengine on rewriterule ^/([0-9]+)$ http://foo.bar.com/show_bug.cgi?id=$1 [l,r] </virtualhost>
there are many, many more things you can do with mod_rewrite. please refer to the mod_rewrite documentation at http://www.apache.org.