Page 1 of 1

Plesk installs fc6 packages on CentOS 5

Posted: Thu Sep 13, 2007 2:55 pm
by Troy McClure
I did a fresh minimal install of CentOS 5 on a test machine today and then installed Plesk. I noticed some of the packages getting installed by Plesk were fc6 packages. Here they are
# rpm -qa | grep fc6
glib2-2.12.3-2.fc6
db4-4.3.29-9.fc6
tcl-8.4.13-3.fc6
libIDL-0.8.7-1.fc6
libXt-1.0.2-3.1.fc6
nc-1.84-10.fc6
libwnck-2.16.0-4.fc6
xsri-2.1.0-10.fc6
irda-utils-0.9.17-2.fc6
libutempter-1.1.4-3.fc6
xkeyboard-config-0.8-7.fc6
xorg-x11-server-utils-7.1-4.fc6
notify-python-0.1.0-3.fc6
gnome-python2-canvas-2.16.0-1.fc6
gnome-python2-gtkhtml2-2.14.2-4.fc6
perl-Compress-Zlib-1.42-1.fc6
sed-4.1.5-5.fc6
xorg-x11-filesystem-7.1-2.fc6
perl-String-CRC32-1.4-2.fc6
db4-4.3.29-9.fc6
libXt-1.0.2-3.1.fc6
rmt-0.4b41-2.fc6
ftp-0.17-33.fc6
mcelog-0.7-1.22.fc6
mailcap-2.1.23-1.fc6
bluez-gnome-0.5-5.fc6
at-3.1.8-82.fc6
wpa_supplicant-0.4.8-10.1.fc6
mtools-3.9.10-2.fc6
pinfo-0.6.9-1.fc6
rng-utils-2.0-1.14.1.fc6
lftp-3.5.1-2.fc6
db4-utils-4.3.29-9.fc6
libutempter-1.1.4-3.fc6
libbonobo-2.16.0-1.fc6
pkgconfig-0.21-1.fc6
gnome-keyring-0.6.0-1.fc6
gail-1.9.2-1.fc6
libbonoboui-2.16.0-1.fc6
gnome-python2-2.16.0-1.fc6
gnome-python2-gconf-2.16.0-1.fc6
gnome-python2-extras-2.14.2-4.fc6
gnome-python2-gnomevfs-2.16.0-1.fc6
gnome-python2-bonobo-2.16.0-1.fc6
perl-DBI-1.52-1.fc6
perl-BSD-Resource-1.28-1.fc6.1
perl-DBD-MySQL-3.0007-1.fc6
perl-HTML-Parser-3.55-1.fc6
atk-1.12.2-1.fc6
dump-0.4b41-2.fc6
mgetty-1.1.33-9.fc6
cairo-1.2.4-1.fc6
pyxf86config-0.3.31-2.fc6
xorg-x11-utils-7.1-2.fc6
alsa-utils-1.0.12-3.fc6
gd-2.0.33-9.3.fc6
Is this normal?

Posted: Thu Sep 13, 2007 4:00 pm
by breun
Yes, that's normal. RHEL/CentOS 5 is based on Fedora Core 6 and I believe they didn't even bother to rebuild a bunch of packages.

Looks like you did more than a minimal install by the way. I really wouldn't install X and Gnome on a Plesk server. (The manual also tells you to do a minimal OS install.)

Posted: Thu Sep 13, 2007 6:00 pm
by Troy McClure
I used this as my ks.cfg to install. It is a modified ks of Scott's ks for CentOS 4 on 1and1 servers that I have modified to install CentOS 5 with the first 2 discs.
# Kickstart file automatically generated by anaconda.

install
harddrive --partition=sda2 --dir=
lang en_US.UTF-8
langsupport --default=en_US.UTF-8 en_US.UTF-8
keyboard us
xconfig --card "VESA driver (generic)" --videoram 8192 --hsync 31.5-37.9 --vsync 50-70 --resolution 800x600 --depth 16
network --device eth0 --bootproto dhcp
rootpw --iscrypted ###
firewall --disabled
selinux --disabled
authconfig --enableshadow --enablemd5
timezone --utc America/New_York
bootloader --location=partition --append="console=tty0 console=ttyS0,57600n8"

#part raid.1 --noformat --onpart sda1
#part raid.4 --noformat --onpart sdb1
#part raid.6 --noformat --onpart sdb3
#part raid.3 --noformat --onpart sda3
#raid /boot --fstype ext3 --level=RAID1 raid.1 raid.4
#raid / --fstype ext3 --level=RAID1 raid.3 raid.6

clearpart --linux
part raid.17 --size 256 --ondrive=sda --asprimary
part raid.18 --size 256 --ondrive=sdb --asprimary
part raid.20 --size 1 --grow --ondrive=sdb
part raid.19 --size 1 --grow --ondrive=sda
raid /boot --fstype ext3 --device md1 --level=RAID1 raid.17 raid.18
raid / --fstype ext3 --device md0 --level=RAID1 raid.19 raid.20

reboot

%packages
@ admin-tools
@ server-cfg
kernel
mdadm
e2fsprogs

%post
/sbin/grub --batch <<EOF
root (hd0,0)
setup (hd0)
root (hd1,0)
setup (hd1)
quit
EOF

/sbin/sfdisk --change-id /dev/sda 2 82
/sbin/sfdisk --change-id /dev/sdb 2 82
/sbin/mkswap /dev/sda2
/sbin/mkswap /dev/sdb2

echo "/dev/sda2 swap swap defaults 0 0" >> /etc/fstab
echo "/dev/sdb2 swap swap defaults 0 0" >> /etc/fstab
Do I need to change something with this ks file? I also see some of these gnome packages on my CentOS 4 1and1 server that I used Scott's AOOI to install with.