Jump to content

On update, Mandrake freezes


Kieth
 Share

Recommended Posts

Yesterday I logged in to see if there were any bug fixes and normal up-dates to download, which I do regularly. There were a lot, so I started. Afterward, I did some work, etc. Then I logged out. When I wanted to get into Mandrake again, it loaded fine, up until where the gnome splash screen should have appeared. I was desperate. I waited a few minutes, but nothing. I tried logging in a couple of more times - nothing. I went into WindowsXP so I could get into this forum for an answer, but didn't find anything (although I'm sure the answer is here). I tried doing a new install, without formating. Nothing. So last night I left Mandrake on in hopes that it would resolve it's own problem, and YES, IT DID!! :woot_jump: Any idea as to what happened?

 

Kieth

 

Edit: I just turned my computer off, then back on to see what would happen. It took 5 minutes to load after the blue splash screen came on. I use gnome, so it took that much time for gnome to load. Any ideas on how to resolve it?

 

Thanks.

 

[moved from Installing Mandrake by spinynorman]

Edited by Kieth
Link to comment
Share on other sites

Here's some more information I discovered. I use the automatic login to enter into gnome. Therefore, I decided not to use that option. It still took 5 minutes, from the time the blue screen and mouse were visible, to get the option to login into to a specific user. Any ideas on how to resolve the problem?

 

Thanks. Kieth

Link to comment
Share on other sites

I couldn'f find /.xsession-errors. All I found were the following 3 files:

 

1) /usr/share/config/kdm/Xsession

 

#! /bin/sh
# Xsession - run as user

# redirect errors to a file in user's home directory if we can
for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER"
do
if ( cp /dev/null "$errfile" 2> /dev/null )
then
 chmod 600 "$errfile"
 exec > "$errfile" 2>&1
 break
fi
done

DM_PATH=$PATH
PATH=
test -f /etc/profile && . /etc/profile
test -f $HOME/.profile && . $HOME/.profile
IFS_SAVE=$IFS
IFS=:
for i in $DM_PATH; do
   case :$PATH: in
     *:$i:*);;
     ::) PATH=$i;;
     *) PATH=$PATH:$i;;
   esac
done
IFS=$IFS_SAVE
export PATH

test -f /etc/xprofile && . /etc/xprofile
test -f $HOME/.xprofile && . $HOME/.xprofile

case $1 in
   "")
exec xmessage -center -buttons OK:0 -default OK "Sorry, $DESKTOP_SESSION is no valid session."
;;
   failsafe)
exec xterm -geometry 80x24-0-0
;;
   custom)
exec $HOME/.xsession
;;
   default)
exec startkde
;;
   *)
eval exec "$1"
;;
esac
exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $1. Check $DESKTOP_SESSION.desktop."

 

2) /etc/X11/xdm/Xsession

 

#!/bin/bash -login

exec /etc/X11/Xsession $*

# Xsession ends here

 

3) /etc/X11/Xsession

 

#!/bin/sh
# Modification for Mandrake Linux by Chmouel Boudjnah <chmouel@mandraksoft.com>
#
# $Id: Xsession,v 1.44 2004/02/05 10:48:48 flepied Exp $

# read the user (~/.i18n) or system-wide (/etc/sysconfig/i18n) i18n settings
. /etc/profile.d/10lang.sh

if [ -z "$GDMSESSION" ]; then
   # redirect errors to a file in user's home directory if we can
   for errfile in "$HOME/.xsession-errors" "${TMPDIR-/tmp}/xses-$USER" "/tmp/xses-$USER"
do
if ( cp /dev/null "$errfile" 2> /dev/null )
    then
    chmod 600 "$errfile"
    exec > "$errfile" 2>&1
    break
fi
   done
fi

# Mandrake default background
if [ "`whoami`" = root ]; then
   xsetroot -solid "#B20003"
   IS_ROOT=1
else
   IS_ROOT=
   # Load the color only when not called from gdm/kdm
   if [ -z "$1" ]; then
xsetroot -solid "#21449C"
   fi
fi

xsetroot -cursor_name watch

AGENT=$(type -p ssh-agent)
if [ -x "$AGENT" -a -z "$SSH_AUTH_SOCK" ]; then
   if [ -r $HOME/.ssh/identity -o -r $HOME/.ssh2/identification -o -r $HOME/.ssh/id_dsa -o -r $HOME/.ssh/id_rsa ]; then
SSH_AGENT="$AGENT --"
   fi
fi    

# clean up after xbanner
if [ -f /usr/X11R6/bin/freetemp ]; then
   freetemp
fi

userresources=$HOME/.Xresources 
userresources2=$HOME/.Xdefaults
sysresources=/etc/X11/Xresources 

# merge in defaults and keymaps 
if [ -f $sysresources ]; then 
   xrdb -merge $sysresources 
fi 

if [ -f $userresources ]; then 
   xrdb -merge $userresources 
fi 

if [ -f $userresources2 ]; then 
   xrdb -merge $userresources2
fi 

if [ -x /etc/X11/xinit/fixkeyboard ]; then
   /etc/X11/xinit/fixkeyboard
fi

if [ -z "$BROWSER" ]; then
# we need to find a browser on this system
BROWSER=`which mozilla 2> /dev/null`
if [ -z "$BROWSER" ] || [ ! -e "$BROWSER" ]; then
# not found yet
 BROWSER=
fi
fi

if [ -z "$BROWSER" ]; then
# we need to find a browser on this system
BROWSER=`which netscape 2> /dev/null`
if [ -z "$BROWSER" ] || [ ! -e "$BROWSER" ]; then
# not found yet
 BROWSER=
fi
fi

if [ -z "$BROWSER" ]; then
# we need to find a browser on this system
BROWSER=`which lynx 2> /dev/null`
if [ -z "$BROWSER" ] || [ ! -e "$BROWSER" ]; then
# not found yet
 BROWSER=
else
 BROWSER="xvt -e lynx"
fi
fi
export BROWSER

export HELP_BROWSER="$BROWSER"

# now, we see if xdm/gdm/kdm has asked for a specific environment
if [ $# = 1 ]; then
   DESKTOP=$1
else
   # use default DESKTOP from config file
   # users may want to choose their own desktop
   # even when x-session is started by startx command.
   # -- Jaegeum --
   if [ -f $HOME/.desktop ]; then
       . $HOME/.desktop >/dev/null 2>&1
   elif [ -f /etc/sysconfig/desktop ]; then
. /etc/sysconfig/desktop >/dev/null 2>&1
   fi
fi

# fix .qtrc for Japanese
if [ "$LANG" = ja_JP ]; then
   [ ! -d $HOME/.qt ] && mkdir $HOME/.qt

   if [ ! -r $HOME/.qt/qtrc ] || ! grep -q '[General]' $HOME/.qt/qtrc; then
cat >> $HOME/.qt/qtrc <<EOF
[General]
XIMInputStyle=Over The Spot
EOF
   elif ! grep -q XIMInputStyle $HOME/.qt/qtrc; then
rm -f $HOME/.qt/qtrc.$$
sed "s/\[General\]/[General]\nXIMInputStyle=Over The Spot/" < $HOME/.qt/qtrc > $HOME/.qt/qtrc.$$
mv -f $HOME/.qt/qtrc.$$ $HOME/.qt/qtrc
   fi
fi

### Launch an XIM input server if needed
# it must be after definition of DESKTOP variable; but before any
# program that may want user input
if [ -x /etc/X11/xinit/XIM ]; then
   . /etc/X11/xinit/XIM
fi

### Launch first time wizard if needed
if [ -z "$IS_ROOT" -a ! -e $HOME/.drakfw ] && type drakfw > /dev/null 2>&1 && touch $HOME/.drakfw > /dev/null 2>&1; then
   if [ -x /etc/X11/xinit.d/numlock ]; then
/etc/X11/xinit.d/numlock
   fi
   xsetroot -cursor_name left_ptr
   exec $SSH_AGENT drakfw
fi

# run scripts in /etc/X11/xinit.d
for i in /etc/X11/xinit.d/*; do
   [ -d $i ] && continue
   # Don't run ??foo.{rpmsave,rpmorig,rpmnew,~} scripts
   [ "${i%.rpmsave}" != "${i}" ] && continue
   [ "${i%.rpmorig}" != "${i}" ] && continue
   [ "${i%.rpmnew}" != "${i}" ] && continue
   [ "${i%\~}" != "${i}" ] && continue

   if [ -x $i ]; then
if [ "${DESKTOP}" = default ]; then
    SESSION=$(/usr/sbin/chksession -F)
else
    SESSION=${DESKTOP}
fi
if grep -q "# to be sourced" $i; then
    . $i "${SESSION}"
else
    $i "${SESSION}" &
fi
   fi
done

if [ -n "$DESKTOP" ]; then
   case $DESKTOP in
  	 failsafe)
       xsetroot -cursor_name left_ptr
type -p rxvt > /dev/null >& 2 && exec $SSH_AGENT rxvt -geometry 80x24-0-0
type -p xterm > /dev/null >& 2 && exec $SSH_AGENT xterm -geometry 80x24-0-0
type -p xvt > /dev/null >& 2 && exec $SSH_AGENT xvt
type -p twm > /dev/null >& 2 && exec $SSH_AGENT twm
;;
default)
;;
*)
if type -p "$DESKTOP" > /dev/null; then
    exec $SSH_AGENT /bin/sh -c "$DESKTOP"
else
    exec $SSH_AGENT /bin/sh -c "$(/usr/sbin/chksession -x=$DESKTOP)"
fi
;;
   esac
fi

# otherwise, take default action
if [ -x "$HOME/.xsession" ]; then
       xsetroot -cursor_name left_ptr
exec $SSH_AGENT "$HOME/.xsession"
elif [ -x "$HOME/.Xclients" ]; then
       xsetroot -cursor_name left_ptr
exec $SSH_AGENT "$HOME/.Xclients"
fi

# We may try with chksession
if [ -x /usr/sbin/chksession ];then
#get the first available
SESSION=$(/usr/sbin/chksession -F)
[ -n "$SESSION" -a "$SESSION" != Default ] && exec $SSH_AGENT sh -c "$(/usr/sbin/chksession -x=$SESSION)"
fi

# Argh! Nothing good is installed. Fall back to icewm
if [ -x /usr/X11R6/bin/icewm ];then
exec $SSH_AGENT /usr/X11R6/bin/icewm
else
# gosh, neither icewm is available; 
# fall back to failsafe settings
       xsetroot -cursor_name left_ptr
xclock -geometry 100x100-5+5 &
xvt -geometry +0+50 &
if [ -x "$BROWSER" -a -f /usr/doc/HTML/index.html ]; then
    $BROWSER /usr/share/doc/HTML/index.html &
fi
if [ -x /usr/X11R6/bin/icewm-light ];then
    exec $SSH_AGENT icewm-light
elif [ -x /usr/X11R6/bin/twm ];then
    exec $SSH_AGENT twm
else
    exec $SSH_AGENT xsm
fi
fi

Link to comment
Share on other sites

Ok, thanks. I found it. ./xsession-errors:

 

which: no galeon in (/usr/bin:/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin/:/usr/games:/home/kieth/bin)

SESSION_MANAGER=local/localhost:/tmp/.ICE-unix/3526

 

(gnome-session:3526): Gtk-WARNING **: Unable to locate theme engine in module_path: "galaxy",

Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue", at /usr/bin/net_applet line 61.

 

(gnome-session:3526): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

Window manager warning: Log level 16: Unable to locate theme engine in module_path: "lighthouseblue",

 

(magicdev:3662): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(pam-panel-icon:3660): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(nautilus:3658): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(gnome-panel:3656): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

mdkapplet already running

Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue", at /usr/bin/mdkapplet line 120.

/home/kieth/.MdkOnline/mdkonline should be set to TRUE: please use --force or -f option to launch applet at /usr/bin/mdkapplet line 139.

Datadir: /usr/share/games/supertux

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level11.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level12.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

Datadir: /usr/share/games/supertux

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level12.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level12.stl

Walk to dir: 2

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level13.stl

Walk to dir: 2

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level14.stl

Walk to dir: 1

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level15.stl

Walk to dir: 1

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level16.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

Datadir: /usr/share/games/supertux

loadgame: /home/kieth/.supertux/save/slot1.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level3.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level16.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level16.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level16.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level16.stl

Walk to dir: 4

savegame: /home/kieth/.supertux/save/slot3.stsg

Datadir: /usr/share/games/supertux

loadgame: /home/kieth/.supertux/save/slot1.stsg

Enter the current level: world1/level26.stl

Warning: badguy started in wall: kind: jumpy pos: (5641, 399)

Warning: badguy started in wall: kind: jumpy pos: (5641, 399)

Warning: badguy started in wall: kind: jumpy pos: (5641, 399)

savegame: /home/kieth/.supertux/save/slot1.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level3.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level3.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level3.stl

Walk to dir: 1

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level2.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level2.stl

Walk to dir: 4

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Datadir: /usr/share/games/supertux

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level17.stl

Walk to dir: 4

savegame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level18.stl

savegame: /home/kieth/.supertux/save/slot3.stsg

loadgame: /home/kieth/.supertux/save/slot3.stsg

Enter the current level: world1/level18.stl

Walk to dir: 1

savegame: /home/kieth/.supertux/save/slot3.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

Enter the current level: bonus1/bonus-level4.stl

Walk to dir: 0

savegame: /home/kieth/.supertux/save/bonus_island.stsg

Entering contrib menu

loadgame: /home/kieth/.supertux/save/bonus_island.stsg

 

(Gecko:11873): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(Gecko:11858): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(gnome-search-tool:12437): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(nautilus:12488): GLib-GObject-WARNING **: g_object_set_valist: construct property "sm-connect" for object `GnomeProgram' can't be set after construction

 

(nautilus:12524): GLib-GObject-WARNING **: g_object_set_valist: construct property "sm-connect" for object `GnomeProgram' can't be set after construction

 

(nautilus:12570): GLib-GObject-WARNING **: g_object_set_valist: construct property "sm-connect" for object `GnomeProgram' can't be set after construction

 

(nautilus:12614): GLib-GObject-WARNING **: g_object_set_valist: construct property "sm-connect" for object `GnomeProgram' can't be set after construction

 

(nautilus:12644): GLib-GObject-WARNING **: g_object_set_valist: construct property "sm-connect" for object `GnomeProgram' can't be set after construction

 

(gnome-terminal:12738): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(gedit:12820): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

Window manager warning: Working around an application which called XSetInputFocus (None) or with RevertToNone instead of RevertToPointerRoot, this is a minor bug in some application. If you can figure out which application causes this please report it as a bug against that application.

Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue", at /usr/lib/libDrakX/ugtk2.pm line 1056.

kid exited 13 at /usr/lib/libDrakX/run_program.pm line 156.

kid exited -1 at /usr/lib/libDrakX/run_program.pm line 156.

kid exited -1 at /usr/lib/libDrakX/run_program.pm line 156.

 

(drakconf.real:13267): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

kid exited -1 at /usr/lib/libDrakX/run_program.pm line 156.

Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue", at /usr/sbin/drakconf.real line 91.

kid exited -1 at /usr/lib/libDrakX/run_program.pm line 156.

kid exited -1 at /usr/lib/libDrakX/run_program.pm line 156.

using different removable device [/dev/hdg] for "Installation CD 3 (x86) (cdrom3)"

using different removable device [/dev/hdg] for "Installation CD 1 (x86) (cdrom1)"

using different removable device [/dev/hdg] for "Installation CD 2 (x86) (cdrom2)"

using different removable device [/dev/hdg] for "Installation CD 4 (x86) (cdrom4)"

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue", at /usr/lib/libDrakX/ugtk2.pm line 962.

added medium update_source

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving source hdlist (or synthesis) of "update_source"...

...retrieving done

examining hdlist file [/var/cache/urpmi/partial/hdlist.update_source.cz]

examining synthesis file [/var/cache/urpmi/partial/hdlist.update_source.cz]

writing list file for medium "update_source"

examining pubkey file of "update_source"...

performing second pass to compute dependencies

 

examining hdlist file [/var/lib/urpmi/hdlist.Installation CD 3 (x86) (cdrom3).cz]

built hdlist synthesis file for medium "Installation CD 3 (x86) (cdrom3)"

examining hdlist file [/var/lib/urpmi/hdlist.Installation CD 1 (x86) (cdrom1).cz]

built hdlist synthesis file for medium "Installation CD 1 (x86) (cdrom1)"

examining hdlist file [/var/lib/urpmi/hdlist.Installation CD 2 (x86) (cdrom2).cz]

built hdlist synthesis file for medium "Installation CD 2 (x86) (cdrom2)"

examining hdlist file [/var/lib/urpmi/hdlist.Installation CD 4 (x86) (cdrom4).cz]

built hdlist synthesis file for medium "Installation CD 4 (x86) (cdrom4)"

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

found 0 headers in cache

removing 0 obsolete headers in cache

write config file [/etc/urpmi/urpmi.cfg]

write config file [/etc/urpmi/urpmi.cfg]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package mandrakelinux-kde-config-file-10.1-6.1.100mdk.noarch (id=526, eid=526, update=1, file=/var/cache/urpmi/rpms/mandrakelinux-kde-config-file-10.1-6.1.100mdk.noarch.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=7)

adding package cvs-1.11.17-1.1.100mdk.i586 (id=59, eid=59, update=1, file=/var/cache/urpmi/rpms/cvs-1.11.17-1.1.100mdk.i586.rpm)

adding package cdrecord-cdda2wav-2.01-0.a28.2.100mdk.i586 (id=367, eid=367, update=1, file=/var/cache/urpmi/rpms/cdrecord-cdda2wav-2.01-0.a28.2.100mdk.i586.rpm)

adding package dhcp-client-3.0-1.rc14.0.1.100mdk.i586 (id=215, eid=215, update=1, file=/var/cache/urpmi/rpms/dhcp-client-3.0-1.rc14.0.1.100mdk.i586.rpm)

adding package dhcp-common-3.0-1.rc14.0.1.100mdk.i586 (id=204, eid=204, update=1, file=/var/cache/urpmi/rpms/dhcp-common-3.0-1.rc14.0.1.100mdk.i586.rpm)

adding package cups-drivers-1.1-138.2.100mdk.i586 (id=298, eid=298, update=1, file=/var/cache/urpmi/rpms/cups-drivers-1.1-138.2.100mdk.i586.rpm)

adding package cdrecord-2.01-0.a28.2.100mdk.i586 (id=366, eid=366, update=1, file=/var/cache/urpmi/rpms/cdrecord-2.01-0.a28.2.100mdk.i586.rpm)

adding package printer-utils-1.0-138.2.100mdk.i586 (id=311, eid=311, update=1, file=/var/cache/urpmi/rpms/printer-utils-1.0-138.2.100mdk.i586.rpm)

Updating /etc/hotplug/usb.usermap ...done.

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=3)

adding package foomatic-db-3.0.1-0.20040828.1.1.100mdk.i586 (id=299, eid=299, update=1, file=/var/cache/urpmi/rpms/foomatic-db-3.0.1-0.20040828.1.1.100mdk.i586.rpm)

adding package foomatic-filters-3.0.1-0.20040828.1.1.100mdk.i586 (id=301, eid=301, update=1, file=/var/cache/urpmi/rpms/foomatic-filters-3.0.1-0.20040828.1.1.100mdk.i586.rpm)

adding package foomatic-db-engine-3.0.1-0.20040828.1.1.100mdk.i586 (id=300, eid=300, update=1, file=/var/cache/urpmi/rpms/foomatic-db-engine-3.0.1-0.20040828.1.1.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=2)

adding package ghostscript-7.07-19.2.100mdk.i586 (id=302, eid=302, update=1, file=/var/cache/urpmi/rpms/ghostscript-7.07-19.2.100mdk.i586.rpm)

adding package ghostscript-module-X-7.07-19.2.100mdk.i586 (id=303, eid=303, update=1, file=/var/cache/urpmi/rpms/ghostscript-module-X-7.07-19.2.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=16)

adding package mozilla-mail-1.6-12.2.100mdk.i586 (id=328, eid=328, update=1, file=/var/cache/urpmi/rpms/mozilla-mail-1.6-12.2.100mdk.i586.rpm)

adding package libijs0-0.34-76.2.100mdk.i586 (id=307, eid=307, update=1, file=/var/cache/urpmi/rpms/libijs0-0.34-76.2.100mdk.i586.rpm)

adding package libdha0.1-1.0-0.pre3.14.100mdk.i586 (id=1, eid=1, update=1, file=/var/cache/urpmi/rpms/libdha0.1-1.0-0.pre3.14.100mdk.i586.rpm)

adding package libkrb51-1.3-6.5.100mdk.i586 (id=200, eid=200, update=1, file=/var/cache/urpmi/rpms/libkrb51-1.3-6.5.100mdk.i586.rpm)

adding package kdegraphics-kfax-3.2-15.7.100mdk.i586 (id=383, eid=383, update=1, file=/var/cache/urpmi/rpms/kdegraphics-kfax-3.2-15.7.100mdk.i586.rpm)

adding package mozilla-spellchecker-1.6-12.2.100mdk.i586 (id=329, eid=329, update=1, file=/var/cache/urpmi/rpms/mozilla-spellchecker-1.6-12.2.100mdk.i586.rpm)

adding package libhylafax4.1.1-4.1.8-2.1.100mdk.i586 (id=525, eid=525, update=1, file=/var/cache/urpmi/rpms/libhylafax4.1.1-4.1.8-2.1.100mdk.i586.rpm)

adding package libcurl2-7.11.0-2.1.100mdk.i586 (id=616, eid=616, update=1, file=/var/cache/urpmi/rpms/libcurl2-7.11.0-2.1.100mdk.i586.rpm)

adding package gimpprint-4.2.7-2.2.100mdk.i586 (id=304, eid=304, update=1, file=/var/cache/urpmi/rpms/gimpprint-4.2.7-2.2.100mdk.i586.rpm)

adding package iproute2-2.4.7-11.1.100mdk.i586 (id=509, eid=509, update=1, file=/var/cache/urpmi/rpms/iproute2-2.4.7-11.1.100mdk.i586.rpm)

adding package libgimpprint1-4.2.7-2.2.100mdk.i586 (id=305, eid=305, update=1, file=/var/cache/urpmi/rpms/libgimpprint1-4.2.7-2.2.100mdk.i586.rpm)

adding package libnetpbm9-9.24-8.1.100mdk.i586 (id=406, eid=406, update=1, file=/var/cache/urpmi/rpms/libnetpbm9-9.24-8.1.100mdk.i586.rpm)

adding package libnss3-1.6-12.2.100mdk.i586 (id=319, eid=319, update=1, file=/var/cache/urpmi/rpms/libnss3-1.6-12.2.100mdk.i586.rpm)

adding package libnspr4-1.6-12.2.100mdk.i586 (id=317, eid=317, update=1, file=/var/cache/urpmi/rpms/libnspr4-1.6-12.2.100mdk.i586.rpm)

adding package mozilla-1.6-12.2.100mdk.i586 (id=321, eid=321, update=1, file=/var/cache/urpmi/rpms/mozilla-1.6-12.2.100mdk.i586.rpm)

adding package netpbm-9.24-8.1.100mdk.i586 (id=409, eid=409, update=1, file=/var/cache/urpmi/rpms/netpbm-9.24-8.1.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package kernel-source-2.6.3-25mdk.i586 (id=99, eid=99, update=1, file=/var/cache/urpmi/rpms/kernel-source-2.6.3-25mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=7)

adding package libuser1-0.51.7-9.1.100mdk.i586 (id=152, eid=152, update=1, file=/var/cache/urpmi/rpms/libuser1-0.51.7-9.1.100mdk.i586.rpm)

adding package libutempter0-0.5.2-12.2.100mdk.i586 (id=63, eid=63, update=1, file=/var/cache/urpmi/rpms/libutempter0-0.5.2-12.2.100mdk.i586.rpm)

adding package libwxgtk2.5-2.5.0-0.cvs20030817.1.5.100mdk.i586 (id=433, eid=433, update=1, file=/var/cache/urpmi/rpms/libwxgtk2.5-2.5.0-0.cvs20030817.1.5.100mdk.i586.rpm)

adding package libsasl2-2.1.15-10.2.100mdk.i586 (id=422, eid=422, update=1, file=/var/cache/urpmi/rpms/libsasl2-2.1.15-10.2.100mdk.i586.rpm)

adding package XFree86-4.3-32.3.100mdk.i586 (id=240, eid=240, update=1, file=/var/cache/urpmi/rpms/XFree86-4.3-32.3.100mdk.i586.rpm)

adding package libxfree86-4.3-32.3.100mdk.i586 (id=249, eid=249, update=1, file=/var/cache/urpmi/rpms/libxfree86-4.3-32.3.100mdk.i586.rpm)

adding package libuser-0.51.7-9.1.100mdk.i586 (id=150, eid=150, update=1, file=/var/cache/urpmi/rpms/libuser-0.51.7-9.1.100mdk.i586.rpm)

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -1 and height -1 at /usr/lib/libDrakX/ugtk2.pm line 67.

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package libsasl2-2.1.15-10.2.100mdk.i586 (id=422, eid=422, update=1, file=/var/cache/urpmi/rpms/libsasl2-2.1.15-10.2.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package libuser-0.51.7-9.1.100mdk.i586 (id=150, eid=150, update=1, file=/var/cache/urpmi/rpms/libuser-0.51.7-9.1.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -1 and height -1 at /usr/lib/libDrakX/ugtk2.pm line 67.

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package libuser1-0.51.7-9.1.100mdk.i586 (id=152, eid=152, update=1, file=/var/cache/urpmi/rpms/libuser1-0.51.7-9.1.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -1 and height -1 at /usr/lib/libDrakX/ugtk2.pm line 67.

created transaction for installing on / (remove=0, install=0, upgrade=2)

adding package libutempter0-0.5.2-12.2.100mdk.i586 (id=63, eid=63, update=1, file=/var/cache/urpmi/rpms/libutempter0-0.5.2-12.2.100mdk.i586.rpm)

adding package libwxgtk2.5-2.5.0-0.cvs20030817.1.5.100mdk.i586 (id=433, eid=433, update=1, file=/var/cache/urpmi/rpms/libwxgtk2.5-2.5.0-0.cvs20030817.1.5.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=6)

adding package OpenOffice.org-help-it-1.1.2-8.100mdk.i586 (id=263, eid=263, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-help-it-1.1.2-8.100mdk.i586.rpm)

adding package OpenOffice.org-1.1.2-8.100mdk.i586 (id=255, eid=255, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-1.1.2-8.100mdk.i586.rpm)

adding package OpenOffice.org-libs-1.1.2-8.100mdk.i586 (id=297, eid=297, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-libs-1.1.2-8.100mdk.i586.rpm)

adding package OpenOffice.org-help-en-1.1.2-8.100mdk.i586 (id=258, eid=258, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-help-en-1.1.2-8.100mdk.i586.rpm)

adding package OpenOffice.org-l10n-en-1.1.2-8.100mdk.i586 (id=278, eid=278, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-l10n-en-1.1.2-8.100mdk.i586.rpm)

adding package OpenOffice.org-l10n-it-1.1.2-8.100mdk.i586 (id=284, eid=284, update=1, file=/var/cache/urpmi/rpms/OpenOffice.org-l10n-it-1.1.2-8.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=15)

adding package sysklogd-1.4.1-5.1.100mdk.i586 (id=104, eid=104, update=1, file=/var/cache/urpmi/rpms/sysklogd-1.4.1-5.1.100mdk.i586.rpm)

adding package printer-filters-1.0-138.2.100mdk.i586 (id=309, eid=309, update=1, file=/var/cache/urpmi/rpms/printer-filters-1.0-138.2.100mdk.i586.rpm)

adding package xine-ui-0.9.23-3.1.100mdk.i586 (id=88, eid=88, update=1, file=/var/cache/urpmi/rpms/xine-ui-0.9.23-3.1.100mdk.i586.rpm)

adding package xchat-2.0.7-6.1.100mdk.i586 (id=65, eid=65, update=1, file=/var/cache/urpmi/rpms/xchat-2.0.7-6.1.100mdk.i586.rpm)

adding package rsync-2.6.0-1.2.100mdk.i586 (id=55, eid=55, update=1, file=/var/cache/urpmi/rpms/rsync-2.6.0-1.2.100mdk.i586.rpm)

adding package passwd-0.68-2.2.100mdk.i586 (id=149, eid=149, update=1, file=/var/cache/urpmi/rpms/passwd-0.68-2.2.100mdk.i586.rpm)

adding package sox-12.17.4-2.1.100mdk.i586 (id=251, eid=251, update=1, file=/var/cache/urpmi/rpms/sox-12.17.4-2.1.100mdk.i586.rpm)

adding package mkisofs-2.01-0.a28.2.100mdk.i586 (id=369, eid=369, update=1, file=/var/cache/urpmi/rpms/mkisofs-2.01-0.a28.2.100mdk.i586.rpm)

adding package printer-testpages-1.0-138.2.100mdk.i586 (id=310, eid=310, update=1, file=/var/cache/urpmi/rpms/printer-testpages-1.0-138.2.100mdk.i586.rpm)

adding package utempter-0.5.2-12.2.100mdk.i586 (id=94, eid=94, update=1, file=/var/cache/urpmi/rpms/utempter-0.5.2-12.2.100mdk.i586.rpm)

adding package libxfree86-4.3-32.3.100mdk.i586 (id=249, eid=249, update=1, file=/var/cache/urpmi/rpms/libxfree86-4.3-32.3.100mdk.i586.rpm)

adding package zlib1-1.2.1-2.1.100mdk.i586 (id=218, eid=218, update=1, file=/var/cache/urpmi/rpms/zlib1-1.2.1-2.1.100mdk.i586.rpm)

adding package rpmdrake-2.1.3-2.4.100mdk.i586 (id=103, eid=103, update=1, file=/var/cache/urpmi/rpms/rpmdrake-2.1.3-2.4.100mdk.i586.rpm)

adding package mc-4.6.0-6.1.100mdk.i586 (id=49, eid=49, update=1, file=/var/cache/urpmi/rpms/mc-4.6.0-6.1.100mdk.i586.rpm)

adding package zlib1-devel-1.2.1-2.1.100mdk.i586 (id=357, eid=357, update=1, file=/var/cache/urpmi/rpms/zlib1-devel-1.2.1-2.1.100mdk.i586.rpm)

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -1 and height -1 at /usr/lib/libDrakX/ugtk2.pm line 67.

created transaction for installing on / (remove=0, install=0, upgrade=14)

adding package sysklogd-1.4.1-5.1.100mdk.i586 (id=104, eid=104, update=1, file=/var/cache/urpmi/rpms/sysklogd-1.4.1-5.1.100mdk.i586.rpm)

adding package printer-filters-1.0-138.2.100mdk.i586 (id=309, eid=309, update=1, file=/var/cache/urpmi/rpms/printer-filters-1.0-138.2.100mdk.i586.rpm)

adding package xine-ui-0.9.23-3.1.100mdk.i586 (id=88, eid=88, update=1, file=/var/cache/urpmi/rpms/xine-ui-0.9.23-3.1.100mdk.i586.rpm)

adding package xchat-2.0.7-6.1.100mdk.i586 (id=65, eid=65, update=1, file=/var/cache/urpmi/rpms/xchat-2.0.7-6.1.100mdk.i586.rpm)

adding package rsync-2.6.0-1.2.100mdk.i586 (id=55, eid=55, update=1, file=/var/cache/urpmi/rpms/rsync-2.6.0-1.2.100mdk.i586.rpm)

adding package passwd-0.68-2.2.100mdk.i586 (id=149, eid=149, update=1, file=/var/cache/urpmi/rpms/passwd-0.68-2.2.100mdk.i586.rpm)

adding package sox-12.17.4-2.1.100mdk.i586 (id=251, eid=251, update=1, file=/var/cache/urpmi/rpms/sox-12.17.4-2.1.100mdk.i586.rpm)

adding package printer-testpages-1.0-138.2.100mdk.i586 (id=310, eid=310, update=1, file=/var/cache/urpmi/rpms/printer-testpages-1.0-138.2.100mdk.i586.rpm)

adding package mkisofs-2.01-0.a28.2.100mdk.i586 (id=369, eid=369, update=1, file=/var/cache/urpmi/rpms/mkisofs-2.01-0.a28.2.100mdk.i586.rpm)

adding package utempter-0.5.2-12.2.100mdk.i586 (id=94, eid=94, update=1, file=/var/cache/urpmi/rpms/utempter-0.5.2-12.2.100mdk.i586.rpm)

adding package zlib1-1.2.1-2.1.100mdk.i586 (id=218, eid=218, update=1, file=/var/cache/urpmi/rpms/zlib1-1.2.1-2.1.100mdk.i586.rpm)

adding package rpmdrake-2.1.3-2.4.100mdk.i586 (id=103, eid=103, update=1, file=/var/cache/urpmi/rpms/rpmdrake-2.1.3-2.4.100mdk.i586.rpm)

adding package mc-4.6.0-6.1.100mdk.i586 (id=49, eid=49, update=1, file=/var/cache/urpmi/rpms/mc-4.6.0-6.1.100mdk.i586.rpm)

adding package zlib1-devel-1.2.1-2.1.100mdk.i586 (id=357, eid=357, update=1, file=/var/cache/urpmi/rpms/zlib1-devel-1.2.1-2.1.100mdk.i586.rpm)

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.update_source.cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 3 (x86) (cdrom3).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 1 (x86) (cdrom1).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 2 (x86) (cdrom2).cz]

examining synthesis file [/var/lib/urpmi/synthesis.hdlist.Installation CD 4 (x86) (cdrom4).cz]

retrieving rpm files from medium "update_source"...

...retrieving done

created transaction for installing on / (remove=0, install=0, upgrade=3)

adding package XFree86-75dpi-fonts-4.3-32.3.100mdk.i586 (id=241, eid=241, update=1, file=/var/cache/urpmi/rpms/XFree86-75dpi-fonts-4.3-32.3.100mdk.i586.rpm)

adding package XFree86-4.3-32.3.100mdk.i586 (id=240, eid=240, update=1, file=/var/cache/urpmi/rpms/XFree86-4.3-32.3.100mdk.i586.rpm)

adding package libxfree86-4.3-32.3.100mdk.i586 (id=249, eid=249, update=1, file=/var/cache/urpmi/rpms/libxfree86-4.3-32.3.100mdk.i586.rpm)

Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -1 and height -1 at /usr/lib/libDrakX/ugtk2.pm line 67.

created transaction for installing on / (remove=0, install=0, upgrade=1)

adding package XFree86-75dpi-fonts-4.3-32.3.100mdk.i586 (id=241, eid=241, update=1, file=/var/cache/urpmi/rpms/XFree86-75dpi-fonts-4.3-32.3.100mdk.i586.rpm)

 

(Gecko:16879): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(gedit:16942): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

 

(gedit:16988): Gtk-WARNING **: Unable to locate theme engine in module_path: "lighthouseblue",

Link to comment
Share on other sites

I hate to show my ignorance (again), but I can't find a GTK theme! :woops: Could you tell me where it is? Just another curiosity, though. If I change the GTK theme in GNOME, how does that affect KDE? I suppose I would already know the answer to that last question if I knew what the GTK theme was! Thanks for you help, I really do appreciate it.

 

Kieth

Link to comment
Share on other sites

GTK apps in KDE will look a bit different, I guess. :)

 

I'm not on a Linux machine right now (at my other job), but you need to go to system / configuration / GNOME, I think, and look for the option to configure GNOME's appearance. Then if you go to the last tab in the applet (it's probably Advanced or something like that) you can choose individual themes for the window manager and the application appearance - the one that changes how apps look is the GTK+ theme. Change that one.

Link to comment
Share on other sites

I was trying to resolve another problem caused because I updated my programs, and ended up creating a lot of other problems, to the point that I could not even log in. Therefore I ended up doing a clean install. Now everything is obviously fine. Now I need to "tweek" my programs to get them where I like them.

 

I appreciate the help, even though I goofed it all up.

 

Kieth

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

×
×
  • Create New...