KerbsFedora
A quick rundown on setting up OpenLDAP for contacts
EPKPhoto — 9 July 2007 - 10:35pm
Steps used to setup an OpenLDAP server on KerbsFedora (based on walkthrough at http://www.linux.com/articles/114010 ):
sudo yum install openldap-servers openldap-clients
Generate the admin user's password (enter it twice when asked):
/usr/sbin/slappasswd
Edit /etc/openldap/slapd.conf:
(most comments trimmed)
include /etc/openldap/schema/core.schema
include /etc/openldap/schema/cosine.schema
include /etc/openldap/schema/inetorgperson.schema
include /etc/openldap/schema/nis.schema
Configuring grub to dual boot Fedora 7 and Windows XP
EPKPhoto — 31 May 2007 - 3:05pm
To set up grub to boot Fedora 7 from the master ATA hard drive (hda) and Windows XP Pro from the slave ATA hard drive (hdb) in a computer, I included the following lines at the end of the /boot/grub/grub.conf file:
- title Windows XP Pro
- rootnoverify (hd1,0)
map (hd1) (hd0)
map (hd0) (hd1)
chainloader +1
Pretty easy stuff...that's why when installing both Linux and Windows on a system, I go with a multiple hard drive approach. A lot less bothersome than dealing with partitioning a single disk.