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
This article shows how to secure a CentOS server using psad, Bastille, and some other tweaks...
Linux.com: Protect Your Applications with AppArmor
AppArmor is a product that Novell acquired when they bought the company Immunix in May 2005. It provides an interesting alternative to traditional security measures...
SearchOpenSource: LinuxWorld Product Review: The Nokia 770 Internet Tablet
What's particularly compelling about the Nokia 770 Internet Tablet is that it's not only the first to be billed as an 'Internet Tablet,' but also its software is built entirely from open source components...
ZDNet: Is IBM Open Source's Little Friend?
It was a small point in my interview with Peter Burris of IPSwap, but it stuck with me all day...
eWeek: Centeris Helps Windows, Linux Systems Get Along
Centeris' Likewise Management Suite makes it easy for Windows network administrators to configure and monitor most Linux systems, including integrating Linux systems into Microsoft Active Directory...
switching the byte code interpreter in freetype2 on or off
the freetype2 package on suse linux 8.2 is compiled with the byte code interpreter switched off because the quality of the auto-hinter in freetype > = 2.1.3 is so good that it usually gives better results than using the native truetype hinting especially when using anti-aliasing.
see also the explanation in http://www.freetype.org/freetype2/2.1.3-explained.html:
``do i still need to enable the truetype bytecode interpreter?''.
if you nevertheless want to switch the byte code interpreter on, you have to recompile the freetype2 package. unfortunately it is not yet possible to choose between the byte code interpreter and the auto-hinter with a run-time option.
but note that you may need a license by apple to use the byte code interpreter! for more details about the patent issues involved please refer to http://www.freetype.org/patents.html.
if you want to switch the byte code interpreter on, please do the following:
as root, install the source rpm of freetype2:
~$ rpm -i freetype2.spm ~$ cd /usr/src/packages/specs
you'll find the spec file freetype2.spec there. load it into an editor and search for the %setup section. there is a comment at the beginning of the %setup section explaining how to enable the byte code interpreter. after following the instructions in that comment, rebuild the freetype2 package:
~$ rpm -ba freetype2.spec
install the newly built freetype2 packages:
~$ rpm -uhv /usr/src/packages/rpms/i386/freetype2*rpm
2005-03-09