Skocz do zawartości

Fedora Nie Bootuje :( Init: Missing Action Field


kfabias

Rekomendowane odpowiedzi

witam,

na poczatku zaznaacze iz jestem poczatkujacym w tematach inuxa...

Zainstalowalem kilka dni temu fedore 7, i powiem szczerze ze zakochalem sie w tym systemie, doskonala alternatywa dla window$a.

Otoz system mi pieknie dzialal dopoki nie zaktualizowalem calego systemu przez yumex-a)...

Po zainstalowaniu poprawek (450 pakietow) nic nie wskazywalo na to ze cos jest nie tak, no to po aktualizacji sobie ponmyslalem: a restartne go by sie wszystko zgralo (kernel aktualizowany 2 dni wczesniej do najnowszej wersji poprzez yum-a.)

 

No to zrestartowalem system i tu sie zaczely schody ...

 

INIT: version 2.xx.xx [nie pamietam numeru;P] booting
INIT: /etc/inittab[8]: missing action field 
INIT: /etc/fstab[18]: missing process field

i takich linijek bylo kilka (8 czy 9) z i proccess i action) , no i potem tylko:

 

"NIT: cannot execute "/etc/rc.d/rc.sysinit
INIT: Entering runlevel: 3
Entering non-interactive startup
INIT: no more processes left in this runlevel

 

Co sie stalo ? :(

da sie to naprawic ? :(

czy reinstall? :(

(Blagam Was, nie kazcie mi zbyt dlugo siedziec na win :D:D)

Szukalem na guglach ale bardzzo malo o tym jest...

 

Troche danych technicznych:

 

FEDORA 7

 

Zawartosc inittab:

 

#
# inittab	   This file describes how the INIT process should set up
#			   the system in a certain run-level.
#
# Author:	   Miquel van Smoorenburg, <[email protected]>
#			   Modified for RHS Linux by Marc Ewing and Donnie Barnes
#

# Default runlevel. The runlevels used by RHS are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
# 
id:3:initdefault

# System initialization.
is:sysinit:/etc/rc.d/rc.sysinit

l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6

# Trap CTRL-ALT-DELETE
ca:ctrlaltdel:/sbin/shutdown -t3 -r now

# When our UPS tells us power has failed, assume we have a few minutes
# of power left.  Schedule a shutdown for 2 minutes from now.
# This does, of course, assume you have powerd installed and your
# UPS connected and working correctly.  
pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"

# If power was restored before the shutdown kicked in, cancel it.
pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"


# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
6:2345:respawn:/sbin/mingetty tty6

# Run xdm in runlevel 5
x:5:respawn:/etc/X11/prefdm -nodaemon

 

Zawarosc rs.sysinit :

 

#!/bin/bash
#
# /etc/rc.d/rc.sysinit - run once at boot time
#
# Taken in part from Miquel van Smoorenburg's bcheckrc.
#

HOSTNAME=`/bin/hostname`
HOSTTYPE=`uname -m`
unamer=`uname -r`

set -m

if [ -f /etc/sysconfig/network ]; then
. /etc/sysconfig/network
fi
if [ -z "$HOSTNAME" -o "$HOSTNAME" = "(none)" ]; then
HOSTNAME=localhost
fi

if [ ! -e /proc/mounts ]; then 
mount -n -t proc /proc /proc
mount -n -t sysfs /sys /sys >/dev/null 2>&1
fi
if [ ! -d /proc/bus/usb ]; then
modprobe usbcore >/dev/null 2>&1 && mount -n -t usbfs /proc/bus/usb /proc/bus/usb
else
mount -n -t usbfs /proc/bus/usb /proc/bus/usb
fi

. /etc/init.d/functions

# Check SELinux status
selinuxfs="$(fstab_decode_str `LC_ALL=C awk '/ selinuxfs / { print $2 }' /proc/mounts`)"
SELINUX_STATE=
if [ -n "$selinuxfs" ] && [ "`cat /proc/self/attr/current`" != "kernel" ]; then
if [ -r "$selinuxfs/enforce" ]; then
	SELINUX_STATE=`cat "$selinuxfs/enforce"`
else
	# assume enforcing if you can't read it
	SELINUX_STATE=1
fi
fi

if [ -n "$SELINUX_STATE" -a -x /sbin/restorecon ] && LC_ALL=C fgrep -q " /dev " /proc/mounts; then
/sbin/restorecon  -R /dev 2>/dev/null
fi

disable_selinux() {
echo $"*** Warning -- SELinux is active"
echo $"*** Disabling security enforcement for system recovery."
echo $"*** Run 'setenforce 1' to reenable."
echo "0" > "$selinuxfs/enforce"
}

relabel_selinux() {
if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
chvt 1
fi
# if /sbin/init is not labeled correctly this process is running in the 
# wrong context, so a reboot will be required after relabel
REBOOTFLAG=`restorecon -v /sbin/init`
AUTORELABEL=
. /etc/selinux/config
if [ "$AUTORELABEL" = "0" ]; then
	rm -f  /.autorelabel 

	echo
echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required. "
	echo $"*** /etc/selinux/config indicates you want to manually fix labeling"
	echo $"*** problems. Dropping you to a shell; the system will reboot"
	echo $"*** when you leave the shell."
	echo "0" > $selinuxfs/enforce
	sulogin

	echo $"Unmounting file systems"
	umount -a
	mount -n -o remount,ro /
	echo $"Automatic reboot in progress."
	reboot -f
else
	echo
	echo $"*** Warning -- SELinux ${SELINUXTYPE} policy relabel is required."
	echo $"*** Relabeling could take a very long time, depending on file"
	echo $"*** system size and speed of hard drives."

	echo "0" > $selinuxfs/enforce
	/sbin/fixfiles restore > /dev/null 2>&1 
	rm -f  /.autorelabel 
	if [ ! -z "$REBOOTFLAG" ]; then 
		echo $"Automatic reboot in progress."
		reboot -f
	fi
	echo $SELINUX_STATE > $selinuxfs/enforce
	if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
		chvt 8
	fi
fi
}

key_is_random() {
[ "$1" = "/dev/urandom" -o "$1" = "/dev/hw_random" \
-o "$1" = "/dev/random" ]
}

# Because of a chicken/egg problem, init_crypto must be run twice.  /var may be
# encrypted but /var/lib/random-seed is needed to initialize swap.
init_crypto() {
local have_random dst src key opt mode owner params makeswap skip arg opt
local param value rc ret mke2fs mdir

ret=0
have_random=$1
while read dst src key opt; do
[ -z "$dst" -o "${dst#\#}" != "$dst" ] && continue
	[ -b "/dev/mapper/$dst" ] && continue;
if [ "$have_random" = 0 ] && key_is_random "$key"; then
	continue
fi
if [ -n "$key" -a "x$key" != "xnone" ]; then
	if test -e "$key"; then
	mode=$(ls -l "$key" | cut -c 5-10)
	owner=$(ls -l $key | awk '{ print $3 }')
	if [ "$mode" != "------" ] && ! key_is_random "$key"; then
		echo $"INSECURE MODE FOR $key"
	fi
	if [ "$owner" != root ]; then
		echo $"INSECURE OWNER FOR $key"
	fi
	else
	echo $"Key file for $dst not found, skipping"
	ret=1
	continue
	fi
else
	key=""
fi
params=""
makeswap=""
mke2fs=""
skip=""
# Parse the options field, convert to cryptsetup parameters
# and contruct the command line
while [ -n "$opt" ]; do
	arg=${opt%%,*}
	opt=${opt##$arg}
	opt=${opt##,}
	param=${arg%%=*}
	value=${arg##$param=}

	case "$param" in
	cipher)
	params="$params -c $value"
	if [ -z "$value" ]; then
		echo $"$dst: no value for cipher option, skipping"
		skip="yes"
	fi
  ;;
	size)
	params="$params -s $value"
	if [ -z "$value" ]; then
		echo $"$dst: no value for size option, skipping"
		skip="yes"
	fi
  ;;
	hash)
	params="$params -h $value"
	if [ -z "$value" ]; then
		echo $"$dst: no value for hash option, skipping"
		skip="yes"
	fi
  ;;
	verify)
		params="$params -y"
  ;;
	swap)
	makeswap=yes
;;
	tmp)
	mke2fs=yes
	esac
done
if [ "$skip" = "yes" ]; then
	ret=1
	continue
fi
if [ -z "$key" -a -x /usr/bin/rhgb-client ] \
	&& /usr/bin/rhgb-client --ping; then
	chvt 1
fi
if cryptsetup isLuks "$src" 2>/dev/null; then
	if key_is_random "$key"; then
	echo $"$dst: LUKS requires non-random key, skipping"
	ret=1
	continue
	fi
	if [ -n "$params" ]; then
	echo "$dst: options are invalid for LUKS partitions," \
		"ignoring them"
	fi
	/sbin/cryptsetup ${key:+-d $key} luksOpen "$src" "$dst" <&1
else
	/sbin/cryptsetup $params ${key:+-d $key} create "$dst" "$src" <&1 2>/dev/null
fi
rc=$?
if [ -z "$key" -a -x /usr/bin/rhgb-client ] \
	&& /usr/bin/rhgb-client --ping; then
	chvt 8
fi
if [ $rc -ne 0 ]; then
	ret=1
	continue
fi
if [ -b "/dev/mapper/$dst" ]; then
	if [ "$makeswap" = "yes" ]; then
	mkswap "/dev/mapper/$dst" 2>/dev/null >/dev/null
	fi
	if [ "$mke2fs" = "yes" ]; then
	if mke2fs "/dev/mapper/$dst" 2>/dev/null >/dev/null \
		&& mdir=$(mktemp -d /tmp/mountXXXXXX); then
		mount "/dev/mapper/$dst" "$mdir" && chmod 1777 "$mdir"
		umount "$mdir"
		rmdir "$mdir"
	fi
	fi
fi
done < /etc/crypttab
return $ret
}

if [ -x /sbin/setsysfont -a -c /dev/tty1 ]; then
  /sbin/setsysfont < /dev/tty1 > /dev/tty1 2>/dev/null
fi

# Print a text banner.
echo -en $"\t\tWelcome to "
read -r redhat_release < /etc/redhat-release
if [[ "$redhat_release" =~ "Red Hat" ]]; then
[ "$BOOTUP" = "color" ] && echo -en "\33[0;31m"
echo -en "Red Hat"
[ "$BOOTUP" = "color" ] && echo -en "\33[0;39m"
PRODUCT=`sed "s/Red Hat \(.*\) release.*/\1/" /etc/redhat-release`
echo " $PRODUCT"
elif [[ "$redhat_release" =~ "Fedora" ]]; then
[ "$BOOTUP" = "color" ] && echo -en "\33[0;34m"
echo -en "Fedora"
[ "$BOOTUP" = "color" ] && echo -en "\33[0;39m"
PRODUCT=`sed "s/Fedora \(.*\) \?release.*/\1/" /etc/redhat-release`
echo " $PRODUCT"
else
PRODUCT=`sed "s/ release.*//g" /etc/redhat-release`
echo "$PRODUCT"
fi
if [ "$PROMPT" != "no" ]; then
echo -en $"\t\tPress 'I' to enter interactive startup."
echo
fi

# Set the system clock.
update_boot_stage RCclock
ARC=0
SRM=0
UTC=0

if [ -f /etc/sysconfig/clock ]; then
  . /etc/sysconfig/clock

  # convert old style clock config to new values
  if [ "${CLOCKMODE}" = "GMT" ]; then
  UTC=true
  elif [ "${CLOCKMODE}" = "ARC" ]; then
  ARC=true
  fi
fi

CLOCKDEF=""
CLOCKFLAGS="$CLOCKFLAGS --hctosys"

case "$UTC" in
yes|true)	CLOCKFLAGS="$CLOCKFLAGS --utc"
	CLOCKDEF="$CLOCKDEF (utc)";;
no|false)	CLOCKFLAGS="$CLOCKFLAGS --localtime"
	CLOCKDEF="$CLOCKDEF (localtime)";;
esac
case "$ARC" in
yes|true)	CLOCKFLAGS="$CLOCKFLAGS --arc"
	CLOCKDEF="$CLOCKDEF (arc)";;
esac
case "$SRM" in
yes|true)	CLOCKFLAGS="$CLOCKFLAGS --srm"
	CLOCKDEF="$CLOCKDEF (srm)";;
esac

[ -x /sbin/hwclock ] && /sbin/hwclock $CLOCKFLAGS

action $"Setting clock $CLOCKDEF: `date`" /bin/true

# Fix console loglevel
if [ -n "$LOGLEVEL" ]; then
/bin/dmesg -n $LOGLEVEL
fi


# Only read this once.
cmdline=$(cat /proc/cmdline)

# Initialize hardware
if [ -f /proc/sys/kernel/modprobe ]; then
  if ! strstr "$cmdline" nomodules && [ -f /proc/modules ]; then
   sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1
  else
   # We used to set this to NULL, but that causes 'failed to exec' messages"
   sysctl -w kernel.modprobe="/bin/true" >/dev/null 2>&1
  fi
fi

touch /dev/.in_sysinit >/dev/null 2>&1

# Set default affinity
if [ -x /bin/taskset ]; then
  if strstr "$cmdline" default_affinity=; then
 for arg in $cmdline; do
	 if [ "${arg##default_affinity=}" != "${arg}" ]; then
		 /bin/taskset -p ${arg##default_affinity=} 1
	 fi
 done
  fi
fi

nashpid=$(pidof nash 2>/dev/null)
[ -n "$nashpid" ] && kill $nashpid >/dev/null 2>&1
unset nashpid
/sbin/start_udev

# Load other user-defined modules
for file in /etc/sysconfig/modules/*.modules; do
 [ -x $file ] && $file
done

# Load modules (for backward compatibility with VARs)
if [ -f /etc/rc.modules ]; then
/etc/rc.modules
fi

# Start the graphical boot, if necessary; /usr may not be mounted yet, so we
# may have to do this again after mounting
RHGB_STARTED=0
mount -n /dev/pts >/dev/null 2>&1
[ -n "$SELINUX_STATE" ] && restorecon /dev/pts >/dev/null 2>&1

if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
  ( . /etc/sysconfig/i18n 2>/dev/null; /usr/bin/rhgb )
  RHGB_STARTED=1
fi

# Configure kernel parameters
update_boot_stage RCkernelparam
sysctl -e -p /etc/sysctl.conf >/dev/null 2>&1

if [ -x /bin/loadkeys ]; then
KEYTABLE=
KEYMAP=
if [ -f /etc/sysconfig/console/default.kmap ]; then
 KEYMAP=/etc/sysconfig/console/default.kmap
else
 if [ -f /etc/sysconfig/keyboard ]; then
. /etc/sysconfig/keyboard
 fi
 if [ -n "$KEYTABLE" -a -d "/lib/kbd/keymaps" ]; then
 KEYMAP="$KEYTABLE.map"
 fi
fi
if [ -n "$KEYMAP" ]; then 
 if [ -n "$KEYTABLE" ]; then
echo -n $"Loading default keymap ($KEYTABLE): "
 else
echo -n $"Loading default keymap: "
 fi
 LOADKEYS=loadkeys
 if [ "${LANG}" != "${LANG%%.UTF-8}" -o "${LANG}" != "${LANG%%.utf8}" ]; then
  LOADKEYS="loadkeys -u"
 fi
 $LOADKEYS $KEYMAP < /dev/tty0 > /dev/tty0 2>/dev/null && \
 success $"Loading default keymap" || failure $"Loading default keymap"
 echo
fi
fi

# Set the hostname.
update_boot_stage RChostname
action $"Setting hostname ${HOSTNAME}: " hostname ${HOSTNAME}

# Initialize ACPI bits
if [ -d /proc/acpi ]; then
for module in /lib/modules/$unamer/kernel/drivers/acpi/*; do
	module=${module##*/}
	module=${module%.ko}
	modprobe $module >/dev/null 2>&1
done
fi

# RAID setup
update_boot_stage RCraid
if [ -f /etc/mdadm.conf ]; then
/sbin/mdadm -A -s --auto=yes
fi

# Device mapper & related initialization
if ! LC_ALL=C fgrep -q "device-mapper" /proc/devices 2>/dev/null; then
modprobe dm-mod >/dev/null 2>&1
fi
mkdir -p /dev/mapper >/dev/null 2>&1
mknod /dev/mapper/control c \
$(awk '/ misc$/ { print $1 }' /proc/devices) \
$(awk '/ device-mapper$/ { print $1 }' /proc/misc) >/dev/null 2>&1
[ -n "$SELINUX_STATE" ] && restorecon /dev/mapper /dev/mapper/control >/dev/null 2>&1

if [ -f /etc/crypttab ]; then
s=$"Starting disk encryption:"
echo "$s"
init_crypto 0 && success "$s" || failure "$s"
echo
fi

if [ -c /dev/mapper/control ]; then
	if ! strstr "$cmdline" nompath && [ -f /etc/multipath.conf -a \
		-x /sbin/multipath.static ]; then
	modprobe dm-multipath > /dev/null 2>&1
	/sbin/multipath.static -v 0
	if [ -x /sbin/kpartx ]; then
		/sbin/dmsetup ls --target multipath --exec "/sbin/kpartx -a -p p"
	fi
fi

if ! strstr "$cmdline" nodmraid && [ -x /sbin/dmraid.static ]; then
	modprobe dm-mirror >/dev/null 2>&1
	for x in $(/sbin/dmraid.static -ay -i -p -t 2>/dev/null | \
			egrep -iv "^no " | \
			awk -F ':' '{ print $1 }'); do
		dmname=$(resolve_dm_name $x)
		[ -z "$dmname" ] && continue
		/sbin/dmraid.static -ay -i -p "$dmname" >/dev/null 2>&1
		/sbin/kpartx -a -p p "/dev/mapper/$dmname"
	done
fi

if [ -x /sbin/lvm.static ]; then
	action $"Setting up Logical Volume Management:" /sbin/lvm.static vgchange -a y --ignorelockingfailure
fi
fi

if [ -f /fastboot ] || strstr "$cmdline" fastboot; then
fastboot=yes
fi

if [ -f /fsckoptions ]; then
fsckoptions=`cat /fsckoptions`
fi

if [ -f /forcefsck ] || strstr "$cmdline" forcefsck; then
fsckoptions="-f $fsckoptions"
elif [ -f /.autofsck ]; then
[ -f /etc/sysconfig/autofsck ] && . /etc/sysconfig/autofsck
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ]; then
	AUTOFSCK_OPT="$AUTOFSCK_OPT -f"
fi
if [ -n "$AUTOFSCK_SINGLEUSER" ]; then
	echo
	echo $"*** Warning -- the system did not shut down cleanly. "
	echo $"*** Dropping you to a shell; the system will continue"
	echo $"*** when you leave the shell."
	[ -n "$SELINUX_STATE" ] && echo "0" > $selinuxfs/enforce
	sulogin
	[ -n "$SELINUX_STATE" ] && echo "1" > $selinuxfs/enforce
fi
fsckoptions="$AUTOFSCK_OPT $fsckoptions"
fi

if [ "$BOOTUP" = "color" ]; then
fsckoptions="-C $fsckoptions"
else
fsckoptions="-V $fsckoptions"
fi

READONLY=
if [ -f /etc/sysconfig/readonly-root ]; then
. /etc/sysconfig/readonly-root
fi
if strstr "$cmdline" readonlyroot; then
READONLY=yes
[ -z "$RW_MOUNT" ] && RW_MOUNT=/var/lib/stateless/writable
[ -z "$STATE_MOUNT" ] && STATE_MOUNT=/var/lib/stateless/state
fi
if strstr "$cmdline" noreadonlyroot; then
READONLY=no
fi

if [ "$READONLY" = "yes" -o "$TEMPORARY_STATE" = "yes" ]; then

mount_empty() {
	if [ -e "$1" ]; then
		echo "$1" | cpio -p -vd "$RW_MOUNT" &>/dev/null
		mount -n --bind "$RW_MOUNT$1" "$1"
	fi
}

mount_dirs() {
	if [ -e "$1" ]; then
		mkdir -p "$RW_MOUNT$1"
		# fixme: find is bad
		find "$1" -type d -print0 | cpio -p -0vd "$RW_MOUNT" &>/dev/null
		mount -n --bind "$RW_MOUNT$1" "$1"
	fi
}

mount_files() {
	if [ -e "$1" ]; then
		cp -a --parents "$1" "$RW_MOUNT"
		mount -n --bind "$RW_MOUNT$1" "$1"
	fi
}

# Common mount options for scratch space regardless of 
# type of backing store
mountopts=

# Scan partitions for local scratch storage
rw_mount_dev=$(blkid -t LABEL="$RW_LABEL" -o device | awk '{ print; exit }')

# First try to mount scratch storage from /etc/fstab, then any
# partition with the proper label.  If either succeeds, be sure
# to wipe the scratch storage clean.  If both fail, then mount
# scratch storage via tmpfs.
if mount $mountopts "$RW_MOUNT" > /dev/null 2>&1; then
	rm -rf "$RW_MOUNT" > /dev/null 2>&1
elif [ x$rw_mount_dev != x ] && mount $rw_mount_dev $mountopts "$RW_MOUNT" > /dev/null 2>&1; then
	rm -rf "$RW_MOUNT"  > /dev/null 2>&1
else
	mount -n -t tmpfs $RW_OPTIONS $mountopts none "$RW_MOUNT"
fi

for file in /etc/rwtab /etc/rwtab.d/*; do
	is_ignored_file "$file" && continue
		[ -f $file ] && cat $file | while read type path; do
		case "$type" in
			empty)
				mount_empty $path
		;;
			files)
				mount_files $path
		;;
			dirs)
				mount_dirs $path
		;;
			*)
		;;
		esac
		[ -n "$SELINUX_STATE" -a -e "$path" ] && restorecon -R "$path"
	done
done

# In theory there should be no more than one network interface active
# this early in the boot process -- the one we're booting from.
# Use the network address to set the hostname of the client.  This
# must be done even if we have local storage.
ipaddr=
if [ "$HOSTNAME" = "localhost" -o "$HOSTNAME" = "localhost.localdomain" ]; then
	ipaddr=$(ip addr show to 0/0 scope global | awk '/[[:space:]]inet / { print gensub("/.*","","g",$2) }')
	if [ -n "$ipaddr" ]; then
		eval $(ipcalc -h $ipaddr 2>/dev/null)
		hostname ${HOSTNAME}
	fi
fi

# Clients with read-only root filesystems may be provided with a
# place where they can place minimal amounts of persistent
# state.  SSH keys or puppet certificates for example.
#
# Ideally we'll use puppet to manage the state directory and to
# create the bind mounts.  However, until that's all ready this
# is sufficient to build a working system.

# First try to mount persistent data from /etc/fstab, then any
# partition with the proper label, then fallback to NFS
state_mount_dev=$(blkid -t LABEL="$STATE_LABEL" -o device | awk '{ print; exit }')
if mount $mountopts $STATE_OPTIONS "$STATE_MOUNT" > /dev/null 2>&1; then
	/bin/true
elif [ x$state_mount_dev != x ] && mount $state_mount_dev $mountopts "$STATE_MOUNT" > /dev/null 2>&1;  then
	/bin/true
elif [ -n "$CLIENTSTATE" ]; then
	# No local storage was found.  Make a final attempt to find 
	# state on an NFS server.

	mount -t nfs $CLIENTSTATE/$HOSTNAME $STATE_MOUNT -o rw,nolock
fi

if [ -w "$STATE_MOUNT" ]; then

	mount_state() {
		if [ -e "$1" ]; then
			[ ! -e "$STATE_MOUNT$1" ] && cp -a --parents "$1" "$STATE_MOUNT"
			mount -n --bind "$STATE_MOUNT$1" "$1"
		fi
	}

	for file in /etc/statetab /etc/statetab.d/*; do
		is_ignored_file "$file" && continue
		[ ! -f "$file" ] && continue

		if [ -f "$STATE_MOUNT/$file" ]; then
			mount -n --bind "$STATE_MOUNT/$file" "$file"
		fi

		for path in $(grep -v "^#" "$file" 2>/dev/null); do
			mount_state "$path"
			[ -n "$SELINUX_STATE" -a -e "$path" ] && restorecon -R "$path"
		done
	done

	if [ -f "$STATE_MOUNT/files" ]; then
		for path in $(grep -v "^#" "$STATE_MOUNT/files" 2>/dev/null); do
			mount_state "$path"
			[ -n "$SELINUX_STATE" -a -e "$path" ] && restorecon -R "$path"
		done
	fi
fi
fi

if ! [[ " $fsckoptions" =~ " -y" ]]; then
	fsckoptions="-a $fsckoptions"
fi

_RUN_QUOTACHECK=0
if [ -f /forcequotacheck ] || strstr "$cmdline" forcequotacheck; then
_RUN_QUOTACHECK=1
fi
if [ -z "$fastboot" -a "$READONLY" != "yes" ]; then

	STRING=$"Checking filesystems"
echo $STRING
if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then
	fsck -T -t noopts=_netdev -A $fsckoptions > /etc/rhgb/temp/rhgb-console
else
	fsck -T -t noopts=_netdev -A $fsckoptions
fi
rc=$?

if [ "$rc" -eq "0" ]; then
	success "$STRING"
	echo
elif [ "$rc" -eq "1" ]; then
		passed "$STRING"
	echo
elif [ "$rc" -eq "2" -o "$rc" -eq "3" ]; then 
	echo $"Unmounting file systems"
	umount -a
	mount -n -o remount,ro /
	echo $"Automatic reboot in progress."
	reboot -f
	fi

	# A return of 4 or higher means there were serious problems.
if [ $rc -gt 1 ]; then
		if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
		chvt 1
	fi

	failure "$STRING"
	echo
	echo
	echo $"*** An error occurred during the file system check."
	echo $"*** Dropping you to a shell; the system will reboot"
	echo $"*** when you leave the shell."

			str=$"(Repair filesystem)"
	PS1="$str \# # "; export PS1
	[ "$SELINUX_STATE" = "1" ] && disable_selinux
	sulogin

	echo $"Unmounting file systems"
	umount -a
	mount -n -o remount,ro /
	echo $"Automatic reboot in progress."
	reboot -f
elif [ "$rc" -eq "1" ]; then
	_RUN_QUOTACHECK=1
fi
if [ -f /.autofsck -a -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
	chvt 8
	fi
fi

# Update quotas if necessary
if [ X"$_RUN_QUOTACHECK" = X1 -a -x /sbin/quotacheck ]; then
if [ -x /sbin/convertquota ]; then
	# try to convert old quotas
	for mountpt in `LC_ALL=C awk '$4 ~ /quota/{print $2}' /etc/mtab`; do
		mountpt="$(fstab_decode_str "$mountpt")"
	if [ -f "$mountpt/quota.user" ]; then
		action $"Converting old user quota files: " \
		/sbin/convertquota -u "$mountpt" && \
		rm -f "$mountpt/quota.user"
	fi
	if [ -f "$mountpt/quota.group" ]; then
		action $"Converting old group quota files: " \
		/sbin/convertquota -g "$mountpt" && \
		rm -f "$mountpt/quota.group"
	fi
	done
fi
action $"Checking local filesystem quotas: " /sbin/quotacheck -aRnug
fi

# Remount the root filesystem read-write.
update_boot_stage RCmountfs
state=`LC_ALL=C awk '/ \/ / && ($3 !~ /rootfs/) { print $4 }' /proc/mounts`
[ "$state" != "rw" -a "$READONLY" != "yes" ] && \
 action $"Remounting root filesystem in read-write mode: " mount -n -o remount,rw /

# Clean up SELinux labels
if [ -n "$SELINUX_STATE" ]; then
  restorecon /etc/mtab /etc/ld.so.cache /etc/blkid/blkid.tab /etc/resolv.conf >/dev/null 2>&1
fi

# If relabeling, relabel mount points.
if [ -n "$SELINUX_STATE" -a "$READONLY" != "yes" ]; then 
if [ -f /.autorelabel ] || strstr "$cmdline" autorelabel; then
retstorecon $(awk '!/^#/ && $4 !~ /noauto/ { print $2 }' /etc/fstab) >/dev/null 2>&1
fi
fi

# Clear mtab
(> /etc/mtab) &> /dev/null

# Remove stale backups
rm -f /etc/mtab~ /etc/mtab~~

# Enter mounted filesystems into /etc/mtab
mount -f /
mount -f /proc >/dev/null 2>&1
mount -f /sys >/dev/null 2>&1
mount -f /dev/pts >/dev/null 2>&1
mount -f /proc/bus/usb >/dev/null 2>&1

# Mount all other filesystems (except for NFS and /proc, which is already
# mounted). Contrary to standard usage,
# filesystems are NOT unmounted in single user mode.
action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs,gfs -O no_netdev

if [ -x /sbin/quotaon ]; then
action $"Enabling local filesystem quotas: " /sbin/quotaon -aug
fi

# Check to see if a full relabel is needed
if [ -n "$SELINUX_STATE" -a "$READONLY" != "yes" ]; then 
if [ -f /.autorelabel ] || strstr "$cmdline" autorelabel; then
relabel_selinux
fi
else
if [ -d /etc/selinux -a "$READONLY" != "yes" ]; then
	[ -f /.autorelabel ] || touch /.autorelabel
fi
fi


# Start the graphical boot, if necessary and not done yet.
if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
  ( . /etc/sysconfig/i18n 2>/dev/null; /usr/bin/rhgb )
  RHGB_STARTED=1
fi

# Initialize pseudo-random number generator
if [ -f "/var/lib/random-seed" ]; then
cat /var/lib/random-seed > /dev/urandom
else
[ "$READONLY" != "yes" ] && touch /var/lib/random-seed
fi
if [ "$READONLY" != "yes" ]; then
chmod 600 /var/lib/random-seed
dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 2>/dev/null
fi

# Use the hardware RNG to seed the entropy pool, if available
#[ -x /sbin/rngd -a -c /dev/hw_random ] && rngd

if [ -f /etc/crypttab ]; then
s=$"Starting disk encryption using the RNG:"
echo "$s"
init_crypto 1 && success "$s" || failure "$s"
echo
fi

# Configure machine if necessary.
if [ -f /.unconfigured ]; then
if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
chvt 1
fi

if [ -x /usr/bin/system-config-keyboard ]; then
/usr/bin/system-config-keyboard
fi
if [ -x /usr/bin/passwd ]; then 
	/usr/bin/passwd root
fi
if [ -x /usr/sbin/netconfig ]; then
/usr/sbin/netconfig
fi
if [ -x /usr/sbin/timeconfig ]; then
/usr/sbin/timeconfig
fi
if [ -x /usr/sbin/authconfig ]; then
/usr/sbin/authconfig --nostart
fi
if [ -x /usr/sbin/ntsysv ]; then
/usr/sbin/ntsysv --level 35
fi

# Reread in network configuration data.
if [ -f /etc/sysconfig/network ]; then
. /etc/sysconfig/network

# Reset the hostname.
action $"Resetting hostname ${HOSTNAME}: " hostname ${HOSTNAME}
fi

rm -f /.unconfigured

if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
chvt 8
fi
fi

# Clean out /.
rm -f /fastboot /fsckoptions /forcefsck /.autofsck /forcequotacheck /halt \
/poweroff &> /dev/null

# Do we need (w|u)tmpx files? We don't set them up, but the sysadmin might...
_NEED_XFILES=
[ -f /var/run/utmpx -o -f /var/log/wtmpx ] && _NEED_XFILES=1

# Clean up /var.  I'd use find, but /usr may not be mounted.
for afile in /var/lock/* /var/run/*; do
if [ -d "$afile" ]; then
   case "$afile" in
	*/news|*/mon);;
	*/sudo)		rm -f $afile/*/*;;
	*/vmware)	rm -rf $afile/*/*;;
	*/samba)	rm -rf $afile/*/*;;
	*/screen)	rm -rf $afile/*;;
	*/cvs)		rm -rf $afile/*;;
	*/dovecot)	rm -f $afile/*/*;;
	*/cups)		rm -f $afile/*/*;;
	*)		rm -f $afile/*;;
   esac
else
   rm -f $afile
fi
done
rm -f /var/lib/rpm/__db* &> /dev/null
rm -f /var/gdm/.gdmfifo &> /dev/null

# Reset pam_console permissions
[ -x /sbin/pam_console_apply ] && /sbin/pam_console_apply -r

{
# Clean up utmp/wtmp
> /var/run/utmp
touch /var/log/wtmp
chgrp utmp /var/run/utmp /var/log/wtmp
chmod 0664 /var/run/utmp /var/log/wtmp
if [ -n "$_NEED_XFILES" ]; then
 > /var/run/utmpx
 touch /var/log/wtmpx
 chgrp utmp /var/run/utmpx /var/log/wtmpx
 chmod 0664 /var/run/utmpx /var/log/wtmpx
fi

# Clean up various /tmp bits
[ -n "$SELINUX_STATE" ] && restorecon /tmp
rm -f /tmp/.X*-lock /tmp/.lock.* /tmp/.gdm_socket /tmp/.s.PGSQL.*
rm -rf /tmp/.X*-unix /tmp/.ICE-unix /tmp/.font-unix /tmp/hsperfdata_* \
   /tmp/kde-* /tmp/ksocket-* /tmp/mc-* /tmp/mcop-* /tmp/orbit-*  \
   /tmp/scrollkeeper-*  /tmp/ssh-* \
   /dev/.in_sysinit

# Make ICE directory
mkdir -m 1777 -p /tmp/.ICE-unix >/dev/null 2>&1
chown root:root /tmp/.ICE-unix
[ -n "$SELINUX_STATE" ] && restorecon /tmp/.ICE-unix >/dev/null 2>&1

#if [ -x /etc/init.d/diskdump ]; then
#	/etc/init.d/diskdump swapsavecore
#fi

# Start up swapping.
update_boot_stage RCswap
action $"Enabling /etc/fstab swaps: " swapon -a -e
if [ "$AUTOSWAP" = "yes" ]; then
curswap=$(awk '/^\/dev/ { print $1 }' /proc/swaps | while read x; do get_numeric_dev dec $x; echo -n " "; done)
swappartitions=`blkid -t TYPE=swap -o device`
if [ x"$swappartitions" != x ]; then
	for partition in $swappartitions; do
		[ ! -e $partition ] && continue
		majmin=$(get_numeric_dev dec $partition)
		echo $curswap | grep -qw "$majmin" || action $"Enabling local swap partitions: " swapon $partition
	done
fi
fi

# Set up binfmt_misc
/bin/mount -t binfmt_misc none /proc/sys/fs/binfmt_misc > /dev/null 2>&1

# Initialize the serial ports.
if [ -f /etc/rc.serial ]; then
. /etc/rc.serial
fi

# If they asked for ide-scsi, load it
if strstr "$cmdline" ide-scsi; then
modprobe ide-cd >/dev/null 2>&1
modprobe ide-scsi >/dev/null 2>&1
fi

# Boot time profiles. Yes, this should be somewhere else.
if [ -x /usr/sbin/system-config-network-cmd ]; then
 if strstr "$cmdline" netprofile=; then
for arg in $cmdline; do
	if [ "${arg##netprofile=}" != "${arg}" ]; then
	/usr/sbin/system-config-network-cmd --profile ${arg##netprofile=}
	fi
done
 fi
fi

# Now that we have all of our basic modules loaded and the kernel going,
# let's dump the syslog ring somewhere so we can find it later
dmesg -s 131072 > /var/log/dmesg

# create the crash indicator flag to warn on crashes, offer fsck with timeout
touch /.autofsck &> /dev/null

if [ "$PROMPT" != no ]; then
while :; do
pid=$(/sbin/pidof getkey)
[ -n "$pid" -o -e /var/run/getkey_done ] && break
usleep 100000
done
[ -n "$pid" ] && kill -TERM "$pid" >/dev/null 2>&1
fi
} &
if strstr "$cmdline" confirm; then
touch /var/run/confirm
fi
if [ "$PROMPT" != "no" ]; then
/sbin/getkey i && touch /var/run/confirm
touch /var/run/getkey_done
fi
wait
[ "$PROMPT" != no ] && rm -f /var/run/getkey_done

# Let rhgb know that we're leaving rc.sysinit
if [ -x /usr/bin/rhgb-client ] && /usr/bin/rhgb-client --ping; then
/usr/bin/rhgb-client --sysinit
fi

 

kernel : 2.6.22.9-91.fc7

 

ponadto mam dostep do plikow (_linuxa_ ? Linuksa) ORT z windowsa to nie beedzie problemu by ew. sprawdzic inne pliki systemowe, logi etc.

 

jeszcze raz PROSZE o pomoc... :(

 

moze ktos mi pomoc?

Odnośnik do komentarza
Udostępnij na innych stronach

Nie możesz się tak niecierpliwić to nie forum WoWa że stale siedzi tu 100 osób gotowych ci pomóc. Prawdopodobnie coś jest nie tak z podmontowywaniem partycji.

Daj zawartość

/boot/grub/grub.conf i /etc/fstab

 

czy udaje się system uruchomić w runlevelu 1(zmien w inittab na id:1:initdefault)

Odnośnik do komentarza
Udostępnij na innych stronach

Musiałeś coś zamieszać przy instalacji. Domyślnie w inittab powinien ustawiać się poziom odpalania 5 a nie 3.

Podaj więcej szczegółów: jaki sprzęt, jaka wersja Fedory, co robiłeś przy instalacji tzn. domyślne ustawienia czy coś zmieniałeś? Plus to co napisał twoface.

Odnośnik do komentarza
Udostępnij na innych stronach

Nie możesz się tak niecierpliwić to nie forum WoWa że stale siedzi tu 100 osób gotowych ci pomóc. Prawdopodobnie coś jest nie tak z podmontowywaniem partycji.

Daj zawartość

/boot/grub/grub.conf i /etc/fstab

 

czy udaje się system uruchomić w runlevelu 1(zmien w inittab na id:1:initdefault)

 

 

w wowa nigdy nie gralem to nie wiem jak tam jest :P

 

a wiec tak:

 

po ustawieniu jakiegokolwiek levelu i tak pyta mnie o level przy starcie, i od razu potem ze nie ma proecsow dla tego levelu jest napisane

 

 

Waldo nie nie, ja recznie przestawilem na 3, bo uwazam ze nauka najlepsza w tryvei textowym :D (jestem dzieckiem dosa hehe)

 

przy instaalacji wszystko domyslnie ustawialem, jak mowilem, system po instalacji dzialal swietnie do momentu aktualizacji systemu, 450 paczek...

mam celerona 2.5 x86

plyta MSI na chipsecie sis

dziwi mnie tylko ze dyski sobie wykryl jako scsi, tfu,partycje.

czyli

/dev/sda1 , 2 itd

 

zawartosc grub.conf :

 

# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You do not have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /, eg.
#          root (hd0,4)
#          kernel /boot/vmlinuz-version ro root=/dev/sda5
#          initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,4)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.22.9-91.fc7)
root (hd0,4)
kernel /boot/vmlinuz-2.6.22.9-91.fc7 ro root=LABEL=/
initrd /boot/initrd-2.6.22.9-91.fc7.img

title Win Xp
rootnoverify (hd0,0)
chainloader +1

 

zawartosc fstab:

LABEL=/                 /                       ext3    defaults        1 1
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
LABEL=/var              /var                    ext3    defaults        1 1
LABEL=SWAP-sda6         swap                    swap    defaults        0 0
/dev/sda1               /mnt/c                  ntfs    defaults        1 1
/dev/sda2               /mnt/d                  ntfs    defaults        1 1

 

coz moge wiecej dopisac

 

wersja fedory to 7 (chyba ze o co innego Ci chodzi Waldo?

Sciagnieta z ftp'ka icmu.

 

//edit mam wrazenie jakby to jakas paczka gryzla sie z inittabem, ale powiedziec w 100% nie moge bo w (_linuxie_ → Linuksie) ORT nie jestem tak biegly.

jakby co, mam rpmy wsszystkie w cache'u ktore sciagnal i zupdatowal (bo wylaczylem w yum.conf zeby kasowal cache),wiadomo - na wszelki wypadek, wiec moge wrzucic liste rpmow zaktualizowanych.

Odnośnik do komentarza
Udostępnij na innych stronach

dziwi mnie tylko ze dyski sobie wykryl jako scsi, tfu,partycje.

czyli

/dev/sda1 , 2 itd

Od wersji Fedory nr 7 wszystkie dyski są widziane jako /dev/sd* - dlaczego tak, można przeczytać na listach dyskusyjnych Fedory. Ja sie jakoś połapać nie mogę :)

wersja fedory to 7 (chyba ze o co innego Ci chodzi Waldo?
Dokładnie o to. Niektórzy "jadą" na FC6 a inni zaczęli już beta wersje F8 instalować.

//edit mam wrazenie jakby to jakas paczka gryzla sie z inittabem,
A to ciekawe. Jakie masz repozytoria zainstalowane? Szukaj w /etc/yum.repos.d.

(bo wylaczylem w yum.conf zeby kasowal cache),wiadomo - na wszelki wypadek, wiec moge wrzucic liste rpmow zaktualizowanych.
BTW lista tego co robi yum jest w /var/log/yum.log

 

Odnośnik do komentarza
Udostępnij na innych stronach

Od wersji Fedory nr 7 wszystkie dyski są widziane jako /dev/sd* - dlaczego tak, można przeczytać na listach dyskusyjnych Fedory. Ja sie jakoś połapać nie mogę :)

Dokładnie o to. Niektórzy "jadą" na FC6 a inni zaczęli już beta wersje F8 instalować.

A to ciekawe. Jakie masz repozytoria zainstalowane? Szukaj w /etc/yum.repos.d.

BTW lista tego co robi yum jest w /var/log/yum.log

 

 

oki szefie, wiec mam tylko te standardowe repozytoria i

livna

 

co do tych moich obaw, wszystko na to wskazuje, bo system przed aktualizacja hulal az milo :-(

 

dodaje calego loga od yuma, a noz sie przyda...

 

X 17 03:10:05 Installed: libstdc++5.i586 3.3.1-4sls
Oct 17 03:10:30 Installed: mc.i386 4.6.0-1
X 17 03:19:21 Installed: livna-release.noarch 7-2
Oct 17 03:29:32 Updated: yum.noarch 3.2.5-1.fc7
Oct 17 03:29:32 Updated: yum-updatesd.noarch 3.2.5-1.fc7
Oct 17 03:29:33 Installed: deltarpm.i386 3.4-4.fc7
Oct 17 03:29:35 Installed: yumex.noarch 2.0.2-1.fc7
Oct 17 03:29:35 Installed: yum-fastestmirror.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-security.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-refresh-updatesd.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-versionlock.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-skip-broken.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-basearchonly.noarch 1.1.7-1.fc7
Oct 17 03:29:35 Installed: yum-allowdowngrade.noarch 1.1.7-1.fc7
Oct 17 03:29:36 Installed: kyum.i386 0.7.5-7.fc7
Oct 17 03:29:36 Installed: yum-kernel-module.noarch 1.1.7-1.fc7
Oct 17 03:29:36 Installed: yum-changelog.noarch 1.1.7-1.fc7
Oct 17 03:29:36 Installed: yum-updateonboot.noarch 1.1.7-1.fc7
Oct 17 03:29:37 Installed: yum-downloadonly.noarch 1.1.7-1.fc7
Oct 17 03:29:37 Installed: yum-presto.noarch 0.3.10-1.fc7
Oct 17 03:29:37 Installed: yum-tsflags.noarch 1.1.7-1.fc7
Oct 17 03:29:39 Installed: yum-arch.noarch 2.2.2-2.fc7
Oct 17 03:29:39 Installed: yum-cron.noarch 0.5-1.fc7
Oct 17 03:29:39 Installed: yum-merge-conf.noarch 1.1.7-1.fc7
Oct 17 03:29:39 Installed: yum-priorities.noarch 1.1.7-1.fc7
Oct 17 03:29:39 Installed: yum-protectbase.noarch 1.1.7-1.fc7
Oct 17 03:29:39 Installed: yum-fedorakmod.noarch 1.1.7-1.fc7
Oct 17 03:29:39 Installed: yum-utils.noarch 1.1.7-1.fc7
Oct 17 03:29:40 Installed: yum-protect-packages.noarch 1.1.7-1.fc7
Oct 17 03:34:40 Updated: nash - 6.0.9-7.1.i386
Oct 17 03:34:41 Updated: mkinitrd - 6.0.9-7.1.i386
Oct 17 03:35:11 Installed: kernel - 2.6.22.9-91.fc7.i686
Oct 17 03:37:30 Installed: kernel-devel - 2.6.22.9-91.fc7.i686
Oct 17 03:50:32 Updated: firefox - 2.0.0.5-1.fc7.i386
Oct 17 03:51:18 Updated: devhelp - 0.13-9.fc7.i386
Oct 17 03:51:34 Updated: yelp - 2.18.1-5.fc7.i386
Oct 17 03:52:02 Updated: firefox-devel - 2.0.0.5-1.fc7.i386
Oct 17 04:21:49 Updated: qt - 1:3.3.8-7.fc7.i386
Oct 17 04:23:31 Installed: qt-devel - 1:3.3.8-7.fc7.i386
Oct 17 04:23:58 Installed: libsndfile - 1.0.17-2.fc7.i386
Oct 17 04:24:01 Installed: libgadu - 1.7.1-1.fc7.i386
Oct 17 04:24:17 Installed: kadu - 0.5.0-2.fc7.i386
Oct 17 04:24:35 Installed: xmms - 1:1.2.10-36.fc7.i386
Oct 17 04:24:37 Installed: kadu-advanced_userlist - 0.5.0-2.fc7.i386
Oct 17 04:24:39 Installed: kadu-theme-nuvola22 - 0.5.0-2.fc6.noarch
Oct 17 04:24:41 Installed: kadu-firewall - 0.5.0-2.fc7.i386
Oct 17 04:24:42 Installed: kadu-filtering - 0.5.0-2.fc7.i386
Oct 17 04:24:43 Installed: kadu-wmaker_docking - 0.5.0-2.fc7.i386
Oct 17 04:24:45 Installed: kadu-led_notify - 0.5.0-2.fc7.i386
Oct 17 04:24:47 Installed: kadu-weather - 0.5.0-2.fc7.i386
Oct 17 04:24:48 Installed: kadu-arts_sound - 0.5.0-2.fc7.i386
Oct 17 04:24:50 Installed: kadu-osdhints_notify - 0.5.0-2.fc7.i386
Oct 17 04:24:51 Installed: kadu-ext_info - 0.5.0-2.fc7.i386
Oct 17 04:24:53 Installed: kadu-alsa_sound - 0.5.0-2.fc7.i386
Oct 17 04:24:54 Installed: kadu-screenshot - 0.5.0-2.fc7.i386
Oct 17 04:24:55 Installed: kadu-spellchecker - 0.5.0-2.fc7.i386
Oct 17 04:25:00 Installed: kadu-devel - 0.5.0-2.fc7.i386
Oct 17 04:25:03 Installed: kadu-theme-glass16 - 0.5.0-2.fc6.noarch
Oct 17 04:25:05 Installed: kadu-dcopexport - 0.5.0-2.fc7.i386
Oct 17 04:25:06 Installed: kadu-iwait4u - 0.5.0-2.fc7.i386
Oct 17 04:25:07 Installed: kadu-esd_sound - 0.5.0-2.fc7.i386
Oct 17 04:25:08 Installed: kadu-xmms - 0.5.0-2.fc7.i386
Oct 17 04:25:10 Installed: kadu-theme-crystal22 - 0.5.0-2.fc6.noarch
Oct 17 04:25:11 Installed: kadu-miastoplusa_sms - 0.5.0-2.fc7.i386
Oct 17 04:25:12 Installed: kadu-profiles - 0.5.0-2.fc7.i386
Oct 17 04:25:14 Installed: kadu-theme-crystal16 - 0.5.0-2.fc6.noarch
Oct 17 04:25:15 Installed: kadu-filedesc - 0.5.0-2.fc7.i386
Oct 17 04:25:16 Installed: kadu-amarok - 0.5.0-2.fc7.i386
Oct 17 04:25:16 Installed: kadu-mail - 0.5.0-2.fc7.i386
Oct 17 04:25:21 Installed: kadu-powerkadu - 0.5.0-2.fc7.i386
Oct 17 04:25:23 Installed: kadu-exec_notify - 0.5.0-2.fc7.i386
Oct 17 04:25:25 Installed: kadu-theme-glass22 - 0.5.0-2.fc6.noarch
Oct 17 04:25:28 Installed: kadu-theme-nuvola16 - 0.5.0-2.fc6.noarch
Oct 17 04:25:29 Installed: kadu-tabs - 0.5.0-2.fc7.i386
Oct 17 04:32:38 Installed: wine-core - 0.9.46-1.fc7.i386
Oct 17 04:32:40 Installed: wine-esd - 0.9.46-1.fc7.i386
Oct 17 04:32:41 Installed: wine-tools - 0.9.46-1.fc7.i386
Oct 17 04:32:41 Installed: wine-nas - 0.9.46-1.fc7.i386
Oct 17 04:32:42 Installed: wine-jack - 0.9.46-1.fc7.i386
Oct 17 04:32:43 Installed: wine-cms - 0.9.46-1.fc7.i386
Oct 17 04:32:43 Installed: wine-capi - 0.9.46-1.fc7.i386
Oct 17 04:32:43 Installed: wine-ldap - 0.9.46-1.fc7.i386
Oct 17 04:32:44 Installed: wine-twain - 0.9.46-1.fc7.i386
Oct 17 04:32:53 Installed: wine-devel - 0.9.46-1.fc7.i386
Oct 17 04:32:55 Installed: wine-docs - 0.9.46-1.fc7.noarch
Oct 17 04:32:55 Installed: wine - 0.9.46-1.fc7.i386
Oct 17 04:37:24 Installed: xvidcore - 1.1.3-1.lvn7.i386
Oct 17 04:37:26 Installed: libcaca - 0.99-0.1.beta11.fc7.i386
Oct 17 04:37:26 Installed: libdvdnav - 0.1.10-4.20070503.lvn7.i386
Oct 17 04:37:28 Installed: lirc - 0.8.2-2.fc7.i386
Oct 17 04:37:29 Installed: libdvdread - 0.9.7-2.fc7.i386
Oct 17 04:37:31 Installed: aalib - 1.4.0-0.12.rc5.fc7.i386
Oct 17 04:37:31 Installed: enca - 1.9-3.fc6.i386
Oct 17 04:37:32 Installed: libdca - 0.0.2-3.lvn7.i386
Oct 17 04:37:33 Installed: mplayer - 1.0-0.81.rc2.lvn7.i386
Oct 17 04:37:36 Installed: mplayerplug-in - 3.45-1.lvn7.i386
Oct 17 04:40:51 Installed: numlockx - 1.0-11.fc6.i386
Oct 17 04:41:57 Updated: kbd - 1.12-22.fc7.i386
Oct 17 04:44:37 Installed: libsidplay - 1.36.57-12.fc7.i386
Oct 17 04:44:38 Installed: mpeg2dec - 0.4.1-2.lvn6.i386
Oct 17 04:44:39 Installed: lame-libs - 3.97-4.lvn7.i386
Oct 17 04:44:39 Installed: libmad - 0.15.1b-4.lvn6.i386
Oct 17 04:44:39 Installed: a52dec - 0.7.4-10.lvn6.i386
Oct 17 04:44:40 Installed: gstreamer-plugins-ugly - 0.10.5-2.lvn7.i386
Oct 17 04:47:52 Updated: kdemultimedia - 6:3.5.7-2.fc7.i386
Oct 17 04:48:05 Updated: kdemultimedia-extras - 6:3.5.7-2.fc7.i386
Oct 17 04:48:05 Installed: xmms-mp3 - 1.2.10-5.lvn6.i386
X 17 05:02:49 Erased: msttcorefonts
Oct 17 11:37:37 Updated: libgcc.i386 4.1.2-27.fc7
Oct 17 11:37:45 Updated: redhat-menus.noarch 8.9.10-3.fc7
Oct 17 11:38:01 Updated: kernel-headers.i386 2.6.22.9-91.fc7
Oct 17 11:38:02 Updated: crontabs.noarch 1.10-16.fc7
Oct 17 11:38:03 Updated: gnome-python2-extras.i386 2.14.3-4.fc7
Oct 17 11:39:11 Updated: tzdata.noarch 2007h-1.fc7
Oct 17 11:40:19 Updated: glibc-common.i386 2.6-4
Oct 17 11:41:01 Updated: glibc.i686 2.6-4
Oct 17 11:41:05 Updated: glib2.i386 2.12.13-1.fc7
Oct 17 11:41:06 Updated: libstdc++.i386 4.1.2-27.fc7
Oct 17 11:41:07 Updated: libICE.i386 1.0.3-2.1.fc7
Oct 17 11:41:09 Updated: libxml2.i386 2.6.29-1.fc7
Oct 17 11:41:10 Updated: popt.i386 1.10.2.1-1.fc7
Oct 17 11:41:12 Updated: libselinux.i386 2.0.14-9.fc7
Oct 17 11:41:13 Updated: libjpeg.i386 6b-38.fc7
Oct 17 11:41:14 Updated: info.i386 4.11-1.fc7
Oct 17 11:41:28 Updated: coreutils.i386 6.9-3.fc7
Oct 17 11:41:29 Updated: e2fsprogs-libs.i386 1.40.2-2.fc7
Oct 17 11:41:30 Updated: freetype.i386 2.3.4-3.fc7
Oct 17 11:41:31 Updated: cairo.i386 1.4.10-1.fc7
Oct 17 11:41:33 Updated: krb5-libs.i386 1.6.1-4.fc7
Oct 17 11:41:38 Updated: openssl.i686 0.9.8b-14.fc7
Oct 17 11:41:39 Updated: openldap.i386 2.3.34-3.fc7
Oct 17 11:41:42 Updated: alsa-lib.i386 1.0.14-3.fc7
Oct 17 11:41:55 Updated: mesa-libGL.i386 6.5.2-13.fc7
Oct 17 11:41:58 Updated: libtiff.i386 3.8.2-8.fc7
Oct 17 11:41:58 Updated: audit-libs.i386 1.5.6-2.fc7
Oct 17 11:42:17 Updated: pam.i386 0.99.7.1-5.1.fc7
Oct 17 11:42:26 Updated: shadow-utils.i386 2:4.0.18.1-15.fc7
Oct 17 11:42:28 Updated: dbus.i386 1.0.2-6.fc7
Oct 17 11:42:29 Updated: dbus-glib.i386 0.73-3.fc7
Oct 17 11:42:30 Updated: mesa-libGLU.i386 6.5.2-13.fc7
Oct 17 11:42:30 Updated: elfutils-libelf.i386 0.129-1.fc7
Oct 17 11:42:31 Updated: nspr.i386 4.6.7-0.7.1.fc7
Oct 17 11:42:32 Updated: esound-libs.i386 1:0.2.38-2.fc7
Oct 17 11:42:41 Updated: nss.i386 3.11.7-0.7.2.fc7
Oct 17 11:42:42 Updated: gnutls.i386 1.6.3-2.fc7
Oct 17 11:42:43 Updated: cups-libs.i386 1:1.2.12-4.fc7
Oct 17 11:42:44 Updated: libexif.i386 0.6.15-2.fc7
Oct 17 11:42:45 Updated: sqlite.i386 3.4.2-1.fc7
Oct 17 11:42:52 Updated: util-linux.i386 2.13-0.54.1.fc7
Oct 17 11:42:54 Updated: usermode.i386 1.93-1.fc7
Oct 17 11:42:56 Updated: libvorbis.i386 1:1.1.2-3.fc7
Oct 17 11:42:56 Updated: libXi.i386 1.1.1-1.fc7
Oct 17 11:43:12 Updated: gtk2.i386 2.10.14-3.fc7
Oct 17 11:43:25 Updated: pygtk2.i386 2.10.6-1.fc7
Oct 17 11:43:25 Updated: pygtk2-libglade.i386 2.10.6-1.fc7
Oct 17 11:43:46 Updated: evolution-data-server.i386 1.10.3.1-2.fc7
Oct 17 11:43:47 Updated: nautilus-extensions.i386 2.18.3-1.fc7
Oct 17 11:43:48 Updated: gpm.i386 1.20.1-84.fc7
Oct 17 11:43:51 Updated: newt.i386 0.52.7-1.fc7
Oct 17 11:43:56 Updated: libxslt.i386 1.1.21-1.fc7
Oct 17 11:43:57 Updated: SDL.i386 1.2.12-1.fc7
Oct 17 11:44:02 Updated: gnome-menus.i386 2.19.4-2.fc7
Oct 17 11:44:03 Updated: procps.i386 3.2.7-16.fc7
Oct 17 11:44:07 Updated: pilot-link.i386 2:0.12.2-3.fc7
Oct 17 11:44:10 Updated: libwnck.i386 2.18.3-1.fc7
Oct 17 11:44:11 Updated: curl.i386 7.16.4-1.fc7
Oct 17 11:44:13 Updated: net-snmp-libs.i386 1:5.4-15.fc7
Oct 17 11:44:13 Updated: libgssapi.i386 0.11-1.fc7
Oct 17 11:44:14 Updated: libXfont.i386 1.2.9-2.fc7
Oct 17 11:44:15 Updated: libtheora.i386 1.0alpha8-0.3.svn13393.fc7
Oct 17 11:44:16 Updated: libraw1394.i386 1.2.1-9.fc7
Oct 17 11:44:18 Updated: dbus-python.i386 0.81.1-1.fc7
Oct 17 11:44:18 Updated: NetworkManager-glib.i386 1:0.6.5-7.fc7
Oct 17 11:44:18 Updated: dbus-x11.i386 1.0.2-6.fc7
Oct 17 11:44:19 Updated: xorg-x11-xinit.i386 1.0.2-22.fc7
Oct 17 11:44:35 Updated: libxml2-devel.i386 2.6.29-1.fc7
Oct 17 11:44:35 Updated: tcp_wrappers-libs.i386 7.6-48.fc7
Oct 17 11:44:38 Updated: sendmail.i386 8.14.1-4.2.fc7
Oct 17 11:44:44 Updated: xine-lib.i386 1.1.7-1.fc7
Oct 17 11:44:44 Updated: totem-plparser.i386 2.18.3-1.fc7
Oct 17 11:44:45 Updated: scim-libs.i386 1.4.5-21.fc7
Oct 17 11:44:47 Updated: jasper.i386 1.900.1-2.fc7
Oct 17 11:44:53 Updated: qt4.i386 4.3.2-1.fc7
Oct 17 11:45:10 Updated: ruby-libs.i386 1.8.6.110-1.fc7
Oct 17 11:45:10 Updated: gd.i386 2.0.35-1.fc7
Oct 17 11:45:11 Updated: libsemanage.i386 2.0.3-4.fc7
Oct 17 11:45:13 Updated: iptables.i386 1.3.8-2.1.fc7
Oct 17 11:45:14 Updated: vnc-libs.i386 4.1.2-18.fc7
Oct 17 11:45:15 Updated: libbtctl.i386 0.9.0-1.fc7
Oct 17 11:45:15 Updated: liboil.i386 0.3.12-9.fc7
Oct 17 11:45:16 Updated: libieee1284.i386 0.2.11-1.fc7
Oct 17 11:45:18 Updated: pwlib.i386 1.10.10-1.fc7
Oct 17 11:45:38 Updated: gimp-libs.i386 2:2.2.17-1.fc7
Oct 17 11:45:41 Updated: kudzu.i386 1.2.71.1-1
Oct 17 11:45:57 Updated: mesa-libGL-devel.i386 6.5.2-13.fc7
Oct 17 11:46:08 Updated: alsa-lib-devel.i386 1.0.14-3.fc7
Oct 17 11:46:11 Updated: elinks.i386 0.11.3-1.fc7
Oct 17 11:46:13 Updated: freetype-devel.i386 2.3.4-3.fc7
Oct 17 11:50:08 Updated: tetex-fonts.i386 3.0-40.1.fc7
Oct 17 11:50:20 Updated: tetex-dvips.i386 3.0-40.1.fc7
Oct 17 11:50:43 Updated: opal.i386 2.2.11-1.fc7
Oct 17 11:50:45 Updated: gnome-bluetooth-libs.i386 0.9.1-1.fc7
Oct 17 11:50:50 Updated: ruby.i386 1.8.6.110-1.fc7
Oct 17 11:51:08 Updated: libpurple.i386 2.2.1-1.fc7
Oct 17 11:51:09 Updated: nfs-utils-lib.i386 1.0.8-10.fc7
Oct 17 11:51:10 Updated: hpijs.i386 1:1.7.4a-6.fc7
Oct 17 11:51:33 Updated: libgcj.i386 4.1.2-27.fc7
Oct 17 11:51:38 Updated: gtkhtml3.i386 3.14.3-1.fc7
Oct 17 11:51:40 Updated: elfutils-libs.i386 0.129-1.fc7
Oct 17 11:51:41 Updated: jack-audio-connection-kit.i386 0.103.0-1.fc7
Oct 17 11:51:42 Updated: audit-libs-python.i386 1.5.6-2.fc7
Oct 17 11:51:44 Updated: postgresql-libs.i386 8.2.5-1.fc7
Oct 17 11:51:49 Updated: mysql-libs.i386 5.0.45-1.fc7
Oct 17 11:51:50 Updated: bind-libs.i386 31:9.4.2-0.4.rc1.fc7
Oct 17 11:51:52 Updated: libcdio.i386 0.78.2-2.fc7
Oct 17 11:51:54 Updated: logrotate.i386 3.7.5-3.1.fc7
Oct 17 11:51:57 Updated: libxml2-python.i386 2.6.29-1.fc7
Oct 17 11:51:59 Updated: file-libs.i386 4.21-1.fc7
Oct 17 11:51:59 Updated: fuse-libs.i386 2.7.0-6.fc7
Oct 17 11:52:01 Updated: libpaper.i386 1.1.21-1.fc7.1
Oct 17 11:52:01 Updated: libgomp.i386 4.1.2-27.fc7
Oct 17 11:52:02 Updated: libpcap.i386 14:0.9.7-1.fc7
Oct 17 11:52:03 Updated: libksba.i386 1.0.2-1.fc7
Oct 17 11:52:04 Updated: libvolume_id.i386 113-12.fc7
Oct 17 11:52:07 Updated: udev.i386 113-12.fc7
Oct 17 11:52:07 Updated: libnjb.i386 2.2.6-1.fc7
Oct 17 11:52:08 Updated: libgfortran.i386 4.1.2-27.fc7
Oct 17 11:52:08 Updated: file.i386 4.21-1.fc7
Oct 17 11:52:10 Updated: sysklogd.i386 1.4.2-9.fc7
Oct 17 11:52:11 Updated: elfutils.i386 0.129-1.fc7
Oct 17 11:52:14 Updated: cairo-devel.i386 1.4.10-1.fc7
Oct 17 11:52:17 Updated: mesa-libGLU-devel.i386 6.5.2-13.fc7
Oct 17 11:52:18 Updated: iptables-ipv6.i386 1.3.8-2.1.fc7
Oct 17 11:52:22 Updated: scim.i386 1.4.5-21.fc7
Oct 17 11:52:23 Updated: xdg-user-dirs.i386 0.8-3.fc7
Oct 17 11:52:24 Updated: usermode-gtk.i386 1.93-1.fc7
Oct 17 11:52:27 Updated: gtk2-engines.i386 2.10.2-2.fc7
Oct 17 11:56:12 Updated: redhat-artwork.i386 7.0.0-11.fc7
Oct 17 11:56:23 Updated: gnome-desktop.i386 2.18.3-1.fc7
Oct 17 11:56:26 Updated: eel2.i386 2.18.3-1.fc7
Oct 17 11:57:11 Updated: metacity.i386 2.18.5-2.fc7
Oct 17 11:57:14 Updated: libXi-devel.i386 1.1.1-1.fc7
Oct 17 11:57:16 Updated: sqlite-devel.i386 3.4.2-1.fc7
Oct 17 11:57:17 Updated: paps.i386 0.6.6-20.fc7
Oct 17 11:57:20 Updated: nspr-devel.i386 4.6.7-0.7.1.fc7
Oct 17 11:57:20 Updated: elfutils-libelf-devel.i386 0.129-1.fc7
Oct 17 11:57:22 Updated: wpa_supplicant.i386 1:0.5.7-3.fc7
Oct 17 11:57:38 Updated: dbus-devel.i386 1.0.2-6.fc7
Oct 17 11:57:46 Updated: ntp.i386 4.2.4p2-3.fc7
Oct 17 11:57:47 Updated: nscd.i386 2.6-4
Oct 17 11:57:48 Updated: fuse.i386 2.7.0-6.fc7
Oct 17 11:57:51 Updated: alsa-utils.i386 1.0.14-2.fc7
Oct 17 11:57:53 Updated: libsmbclient.i386 3.0.26a-0.fc7
Oct 17 11:57:56 Updated: e2fsprogs-devel.i386 1.40.2-2.fc7
Oct 17 11:57:59 Updated: krb5-devel.i386 1.6.1-4.fc7
Oct 17 11:58:33 Updated: openssl-devel.i386 0.9.8b-14.fc7
Oct 17 11:58:36 Updated: e2fsprogs.i386 1.40.2-2.fc7
Oct 17 11:58:38 Updated: wodim.i386 1.1.6-6.fc7
Oct 17 11:58:39 Updated: ed.i386 0.7-1.fc7
Oct 17 11:58:39 Updated: libjpeg-devel.i386 6b-38.fc7
Oct 17 11:58:41 Updated: dcraw.i386 8.77-1.fc7
Oct 17 11:58:44 Updated: net-tools.i386 1.60-82.fc7
Oct 17 11:58:52 Updated: initscripts.i386 8.54.1-1
Oct 17 11:58:53 Updated: dhclient.i386 12:3.0.5-40.fc7
Oct 17 11:58:57 Updated: vte.i386 0.16.8-1.fc7
Oct 17 11:58:58 Updated: dhcdbd.i386 2.7-5.fc7
Oct 17 11:59:02 Updated: NetworkManager.i386 1:0.6.5-7.fc7
Oct 17 11:59:13 Updated: samba-common.i386 3.0.26a-0.fc7
Oct 17 12:00:03 Updated: cups.i386 1:1.2.12-4.fc7
Oct 17 12:00:15 Updated: httpd.i386 2.2.6-1.fc7
Oct 17 12:00:15 Updated: libselinux-python.i386 2.0.14-9.fc7
Oct 17 12:00:16 Updated: vim-minimal.i386 2:7.1.12-1.fc7
Oct 17 12:00:20 Updated: libselinux-devel.i386 2.0.14-9.fc7
Oct 17 12:00:20 Updated: rsync.i386 2.6.9-3.fc7
Oct 17 12:00:21 Updated: gstreamer-tools.i386 0.10.13-0.1.fc7
Oct 17 12:00:23 Updated: gstreamer.i386 0.10.13-0.1.fc7
Oct 17 12:00:34 Updated: glibc-headers.i386 2.6-4
Oct 17 12:00:39 Updated: glibc-devel.i386 2.6-4
Oct 17 12:00:41 Updated: nss_ldap.i386 257-3.fc7
Oct 17 12:00:43 Updated: system-config-securitylevel-tui.i386 1.7.0-5.fc7
Oct 17 12:00:47 Updated: smolt.noarch 0.9.8.4-4.fc7
Oct 17 12:00:48 Updated: libtirpc.i386 0.1.7-9.fc7
Oct 17 12:00:49 Installed: libmal.i386 0.31-5.fc7
Oct 17 12:00:52 Updated: authconfig.i386 5.3.15-1.fc7
Oct 17 12:01:31 Updated: gthumb.i386 2.10.6-1.fc7
Oct 17 12:01:32 Installed: gtkglext.i386 1.2.0-4.fc6
Oct 17 12:01:36 Installed: gutenprint.i386 5.0.1-3.fc7
Oct 17 12:01:41 Updated: gnome-mag.i386 0.14.4-1.fc7
Oct 17 12:01:43 Installed: libopensync.i386 0.22-3.fc7
Oct 17 12:02:15 Updated: scribus.i386 1.3.3.9-1.fc7
Oct 17 12:02:18 Updated: ntfsprogs.i386 1.13.1-6.fc7
Oct 17 12:02:20 Updated: cryptsetup-luks.i386 1.0.5-4.fc7.1
Oct 17 12:02:24 Updated: cpp.i386 4.1.2-27.fc7
Oct 17 12:02:31 Updated: gcc.i386 4.1.2-27.fc7
Oct 17 12:02:32 Updated: libsmbios-libs.i386 0.13.10-1.fc7
Oct 17 12:02:33 Updated: pulseaudio-lib.i386 0.9.6-2.fc7
Oct 17 12:02:37 Updated: opensp.i386 1.5.2-5.fc7
Oct 17 12:02:59 Updated: libstdc++-devel.i386 4.1.2-27.fc7
Oct 17 12:03:00 Installed: gc.i386 6.8-3.fc7
Oct 17 12:03:45 Updated: vim-common.i386 2:7.1.12-1.fc7
Oct 17 12:03:45 Installed: radeontool.i386 1.5-2.fc7
Oct 17 12:03:46 Installed: neXtaw.i386 0.15.1-10.fc6
Oct 17 12:03:47 Installed: libnfnetlink.i386 0.0.30-1.fc7
Oct 17 12:03:48 Installed: libnetfilter_conntrack.i386 0.0.81-1.fc7
Oct 17 12:03:48 Updated: libdaemon.i386 0.11-2.fc7
Oct 17 12:03:49 Installed: vbetool.i386 0.7-2.fc7
Oct 17 12:03:51 Updated: pm-utils.i386 0.99.4-3.fc7
Oct 17 12:03:52 Installed: Canna-libs.i386 3.7p3-21.fc7
Oct 17 12:03:52 Installed: checkpolicy.i386 2.0.3-1.fc7
Oct 17 12:03:53 Installed: compface.i386 1.5.2-5
Oct 17 12:03:54 Updated: pygtk2-codegen.i386 2.10.6-1.fc7
Oct 17 12:04:00 Installed: spambayes.noarch 1.0.4-4.fc7
Oct 17 12:04:04 Installed: python-setuptools.noarch 0.6c7-1.fc7
Oct 17 12:04:50 Installed: PyOpenGL.noarch 3.0.0-0.3.a6.fc7
Oct 17 12:04:51 Installed: pygtkglext.i386 1.1.0-2.fc7
Oct 17 12:06:04 Updated: gnome-games.i386 1:2.18.2.1-3.fc7
Oct 17 12:06:16 Updated: pygtk2-devel.i386 2.10.6-1.fc7
Oct 17 12:06:17 Updated: iptstate.i386 2.2.1-1.fc7
Oct 17 12:06:21 Updated: gcc-c++.i386 4.1.2-27.fc7
Oct 17 12:06:25 Updated: gcc-gfortran.i386 4.1.2-27.fc7
Oct 17 12:06:25 Updated: authconfig-gtk.i386 5.3.15-1.fc7
Oct 17 12:06:26 Updated: smolt-firstboot.noarch 0.9.8.4-4.fc7
Oct 17 12:06:31 Updated: system-config-securitylevel.i386 1.7.0-5.fc7
Oct 17 12:07:43 Updated: pidgin.i386 2.2.1-1.fc7
Oct 17 12:08:16 Updated: gnome-terminal.i386 2.18.1-1.fc7
Oct 17 12:08:18 Updated: smartmontools.i386 1:5.37-3.2.fc7
Oct 17 12:08:20 Updated: mdadm.i386 2.6.2-4.fc7
Oct 17 12:08:21 Updated: dhcpv6_client.i386 0.10-44.fc7
Oct 17 12:08:22 Updated: gd-devel.i386 2.0.35-1.fc7
Oct 17 12:08:26 Updated: curl-devel.i386 7.16.4-1.fc7
Oct 17 12:08:31 Updated: system-config-soundcard.noarch 2.0.6-6.fc7
Oct 17 12:08:54 Updated: ntfs-3g.i386 2:1.1004-1.fc7
Oct 17 12:09:02 Updated: system-config-date.noarch 1.9.5-1.fc7
Oct 17 12:09:05 Updated: nss-devel.i386 3.11.7-0.7.2.fc7
Oct 17 12:09:50 Updated: nautilus.i386 2.18.3-1.fc7
Oct 17 12:10:25 Updated: eog.i386 2.18.2-2.fc7
Oct 17 12:10:56 Updated: gdm.i386 1:2.18.4-2.fc7
Oct 17 12:10:57 Updated: scim-qtimm.i386 0.9.4-7.fc7
Oct 17 12:11:14 Updated: SDL-devel.i386 1.2.12-1.fc7
Oct 17 12:11:15 Updated: vixie-cron.i386 4:4.1-84.fc7
Oct 17 12:11:16 Updated: pcmciautils.i386 014-9.fc7
Oct 17 12:11:21 Updated: gnupg2.i386 2.0.6-2.fc7
Oct 17 12:11:22 Updated: tcpdump.i386 14:3.9.7-1.fc7
Oct 17 12:11:23 Updated: bind-utils.i386 31:9.4.2-0.4.rc1.fc7
Oct 17 12:11:25 Updated: audit.i386 1.5.6-2.fc7
Oct 17 12:11:31 Updated: nfs-utils.i386 1:1.1.0-3.fc7
Oct 17 12:11:50 Updated: gnome-bluetooth.i386 0.9.1-1.fc7
Oct 17 12:12:15 Updated: ekiga.i386 2.0.11-1.fc7
Oct 17 12:12:16 Updated: esound-devel.i386 1:0.2.38-2.fc7
Oct 17 12:12:19 Updated: vnc-server.i386 4.1.2-18.fc7
Oct 17 12:12:23 Updated: vnc.i386 4.1.2-18.fc7
Oct 17 12:12:25 Updated: fetchmail.i386 6.3.7-2.fc7
Oct 17 12:12:46 Updated: tcp_wrappers.i386 7.6-48.fc7
Oct 17 12:12:48 Updated: libxslt-devel.i386 1.1.21-1.fc7
Oct 17 12:12:58 Updated: pirut.noarch 1.3.9-1.fc7
Oct 17 12:12:59 Updated: libXfont-devel.i386 1.2.9-2.fc7
Oct 17 12:13:01 Updated: jigdo.i386 0.7.3-4.fc7
Oct 17 12:13:29 Updated: gnome-system-monitor.i386 2.18.2-1.fc7
Oct 17 12:13:32 Updated: pilot-link-devel.i386 2:0.12.2-3.fc7
Oct 17 12:13:36 Updated: autofs.i386 1:5.0.1-27
Oct 17 12:13:37 Updated: readahead.i386 1:1.4.1-3.fc7
Oct 17 12:13:50 Updated: gnome-screensaver.i386 2.18.2-2.fc7
Oct 17 12:13:50 Updated: newt-devel.i386 0.52.7-1.fc7
Oct 17 12:13:51 Updated: gpm-devel.i386 1.20.1-84.fc7
Oct 17 12:14:13 Updated: file-roller.i386 2.18.4-1.fc7
Oct 17 12:14:53 Updated: evince.i386 0.8.2-1.fc7
Oct 17 12:15:09 Updated: evolution-data-server-devel.i386 1.10.3.1-2.fc7
Oct 17 12:15:51 Updated: gedit.i386 1:2.18.2-1.fc7
Oct 17 12:15:53 Updated: gnome-python2-libegg.i386 2.14.3-4.fc7
Oct 17 12:15:54 Updated: gnome-python2-gtkhtml2.i386 2.14.3-4.fc7
Oct 17 12:15:57 Updated: bluez-gnome.i386 0.8-2.fc7
Oct 17 12:16:02 Updated: libvorbis-devel.i386 1:1.1.2-3.fc7
Oct 17 12:18:19 Updated: gnutls-devel.i386 1.6.3-2.fc7
Oct 17 12:18:21 Updated: nss-tools.i386 3.11.7-0.7.2.fc7
Oct 17 12:18:22 Updated: esound.i386 1:0.2.38-2.fc7
Oct 17 12:18:23 Updated: ltrace.i386 0.5-7.45svn.fc7
Oct 17 12:18:23 Updated: glx-utils.i386 6.5.2-13.fc7
Oct 17 12:18:24 Updated: at.i386 3.1.10-13.fc7
Oct 17 12:18:28 Updated: pam-devel.i386 0.99.7.1-5.1.fc7
Oct 17 12:18:34 Updated: libtiff-devel.i386 3.8.2-8.fc7
Oct 17 12:18:37 Updated: python-ldap.i386 2.3-1.fc7
Oct 17 12:19:09 Updated: openldap-devel.i386 2.3.34-3.fc7
Oct 17 12:19:10 Updated: openldap-clients.i386 2.3.34-3.fc7
Oct 17 12:19:10 Updated: libdhcp6client.i386 0.10-44.fc7
Oct 17 12:19:12 Updated: krb5-workstation.i386 1.6.1-4.fc7
Oct 17 12:19:14 Updated: xterm.i386 227-1.fc7
Oct 17 12:19:14 Updated: xdg-utils.noarch 1.0.2-2.fc7
Oct 17 12:19:16 Updated: icedax.i386 1.1.6-6.fc7
Oct 17 12:19:32 Updated: groff.i386 1.18.1.4-6.fc7
Oct 17 12:19:36 Updated: gdb.i386 6.6-15.fc7
Oct 17 12:19:38 Updated: tar.i386 2:1.15.1-27.fc7
Oct 17 12:19:40 Updated: texinfo.i386 4.11-1.fc7
Oct 17 12:19:42 Updated: gzip.i386 1.3.11-2.fc7
Oct 17 12:19:43 Updated: flex.i386 2.5.33-9.fc7
Oct 17 12:19:44 Updated: docbook-simple.noarch 1.1-1.02.fc7
Oct 17 12:19:45 Updated: libICE-devel.i386 1.0.3-2.1.fc7
Oct 17 12:19:46 Updated: yp-tools.i386 2.9-1
Oct 17 12:19:47 Updated: strace.i386 4.5.16-1.fc7
Oct 17 12:19:47 Updated: ftp.i386 0.17-41.fc7
Oct 17 12:19:50 Updated: python-crypto.i386 2.0.1-7.1.fc7
Oct 17 12:19:51 Updated: cpuspeed.i386 1:1.2.1-2.fc7
Oct 17 12:19:52 Updated: libdhcp4client.i386 12:3.0.5-40.fc7
Oct 17 12:20:32 Updated: gnome-user-docs.noarch 2.18.2-1.fc7
Oct 17 12:20:33 Updated: kudzu-devel.i386 1.2.71.1-1
Oct 17 12:21:15 Updated: docbook-style-xsl.noarch 1.73.2-1.fc7
Oct 17 12:21:19 Updated: liberation-fonts.noarch 0.2-2.fc7
Oct 17 12:21:20 Updated: xorg-x11-xtrans-devel.i386 1.0.3-2.1.fc7
Oct 17 12:22:25 Updated: perl.i386 4:5.8.8-24.fc7
Oct 17 12:22:31 Updated: xorg-x11-server-Xorg.i386 1.3.0.0-9.fc7
Oct 17 12:23:42 Updated: gnome-panel.i386 2.18.3-1.fc7
Oct 17 12:23:45 Updated: gstreamer-plugins-base.i386 0.10.13-1.fc7
Oct 17 12:32:40 Updated: openoffice.org-core.i386 1:2.2.1-18.2.fc7
Oct 17 12:32:47 Updated: rpm.i386 4.4.2.1-1.fc7
Oct 17 12:32:55 Updated: rpm-libs.i386 4.4.2.1-1.fc7
Oct 17 12:33:01 Updated: sane-backends-libs.i386 1.0.18-15.fc7
Oct 17 12:33:02 Updated: rpm-python.i386 4.4.2.1-1.fc7
Oct 17 12:33:08 Updated: policycoreutils.i386 2.0.16-11.fc7
Oct 17 12:33:18 Updated: glib2-devel.i386 2.12.13-1.fc7
Oct 17 12:33:55 Updated: gtk2-devel.i386 2.10.14-3.fc7
Oct 17 12:33:56 Updated: perl-libs.i386 4:5.8.8-24.fc7
Oct 17 12:33:59 Updated: nas.i386 1.9-2.fc7
Oct 17 12:34:04 Updated: arts.i386 8:1.5.7-1.fc7
Oct 17 12:34:13 Updated: qt4-x11.i386 4.3.2-1.fc7
Oct 17 12:34:22 Updated: sane-backends.i386 1.0.18-15.fc7
Oct 17 12:34:23 Updated: libsane-hpaio.i386 1.7.4a-6.fc7
Oct 17 12:35:11 Updated: control-center.i386 1:2.18.0-20.fc7
Oct 17 12:35:15 Updated: perl-Net-DNS.i386 0.61-1.fc7
Oct 17 12:37:38 Updated: foomatic.i386 3.0.2-47.2.fc7
Oct 17 12:37:41 Updated: system-config-printer-libs.i386 0.7.63.4-1.fc7
Oct 17 12:37:42 Updated: perl-File-RsyncP.i386 0.68-1.fc7
Oct 17 12:37:56 Updated: lm_sensors.i386 2.10.4-1.fc7
Oct 17 12:37:57 Updated: perl-Test-Simple.i386 0.62-24.fc7
Oct 17 12:38:43 Updated: gimp.i386 2:2.2.17-1.fc7
Oct 17 12:38:44 Updated: perl-suidperl.i386 4:5.8.8-24.fc7
Oct 17 12:38:46 Updated: docbook-utils.noarch 0.6.14-8.fc7
Oct 17 12:39:59 Updated: tetex.i386 3.0-40.1.fc7
Oct 17 12:40:00 Installed: perl-Params-Validate.i386 0.88-1.fc7
Oct 17 12:40:02 Updated: genisoimage.i386 1.1.6-6.fc7
Oct 17 12:40:43 Updated: nautilus-cd-burner.i386 2.18.2-1.fc7
Oct 17 12:40:44 Updated: xorg-x11-drv-vesa.i386 1.3.0-8.fc7
Oct 17 12:41:18 Updated: fast-user-switch-applet.i386 2.17.4-5.fc7
Oct 17 12:41:39 Updated: rhythmbox.i386 0.10.1-2.fc7
Oct 17 12:41:50 Updated: selinux-policy.noarch 2.6.4-48.fc7
Oct 17 12:42:01 Updated: system-config-network-tui.noarch 1.3.96.2-1.fc7
Oct 17 12:42:06 Installed: kde-filesystem.noarch 3.92-9.fc7
Oct 17 12:42:17 Updated: openoffice.org-calc.i386 1:2.2.1-18.2.fc7
Oct 17 12:42:24 Updated: gnome-sharp.i386 2.16.0-3.fc7
Oct 17 12:43:04 Updated: gnome-utils.i386 1:2.18.1-2.fc7
Oct 17 12:43:06 Updated: linuxwacom.i386 0.7.6.4-3.fc7
Oct 17 12:43:07 Updated: xorg-x11-drv-i810.i386 2.0.0-4.fc7
Oct 17 12:44:13 Updated: emacs-common.i386 22.1-4.fc7
Oct 17 12:44:17 Installed: gnokii.i386 0.6.14-3.fc7
Oct 17 12:44:18 Installed: perl-Time-modules.noarch 2003.1126-4.fc6
Oct 17 12:44:18 Installed: perl-Class-Singleton.noarch 1.03-4.fc7
Oct 17 12:44:38 Installed: perl-DateTime.i386 1:0.37-3.fc7
Oct 17 12:44:39 Installed: perl-DateTime-Format-Mail.noarch 0.30-4.fc6
Oct 17 12:44:39 Installed: perl-DateTime-Format-W3CDTF.noarch 0.04-2.fc7
Oct 17 12:44:40 Installed: perl-XML-Parser.i386 2.34-6.1.2.2.1
Oct 17 12:44:42 Installed: perl-XML-RSS.noarch 1.22-1.fc7
Oct 17 12:44:51 Updated: BackupPC.noarch 3.0.0-3.fc7
Oct 17 12:45:18 Updated: xemacs-common.i386 21.5.28-3.fc7
Oct 17 12:45:26 Installed: xemacs.i386 21.5.28-3.fc7
Oct 17 12:45:26 Installed: gutenprint-plugin.i386 5.0.1-3.fc7
Oct 17 12:45:36 Updated: emacs.i386 22.1-4.fc7
Oct 17 12:45:43 Updated: system-config-network.noarch 1.3.96.2-1.fc7
Oct 17 12:46:09 Updated: selinux-policy-targeted.noarch 2.6.4-48.fc7
Oct 17 12:47:37 Updated: tetex-latex.i386 3.0-40.1.fc7
Oct 17 12:47:38 Updated: docbook-utils-pdf.noarch 0.6.14-8.fc7
Oct 17 12:52:40 Updated: gimp-help.noarch 2-0.1.0.13.fc7
Oct 17 12:52:42 Updated: hal-cups-utils.i386 0.6.9.2-1.fc7
Oct 17 12:52:48 Updated: system-config-printer.i386 0.7.63.4-1.fc7
Oct 17 12:53:37 Updated: gnome-session.i386 2.18.3-1.fc7
Oct 17 12:53:44 Updated: speedcrunch.i386 0.8-5.fc7
Oct 17 12:53:45 Updated: vim-enhanced.i386 2:7.1.12-1.fc7
Oct 17 12:53:46 Updated: gnome-panel-devel.i386 2.18.3-1.fc7
Oct 17 12:53:48 Updated: gnome-desktop-devel.i386 2.18.3-1.fc7
Oct 17 12:53:49 Updated: eel2-devel.i386 2.18.3-1.fc7
Oct 17 12:53:50 Updated: dbus-glib-devel.i386 0.73-3.fc7
Oct 17 12:53:53 Updated: policycoreutils-gui.i386 2.0.16-11.fc7
Oct 17 12:53:59 Updated: system-config-users.noarch 1.2.64-1.fc7
Oct 17 12:54:00 Updated: createrepo.noarch 0.4.10-1.fc7
Oct 17 12:54:03 Updated: rpm-build.i386 4.4.2.1-1.fc7
Oct 17 12:54:41 Updated: rpm-devel.i386 4.4.2.1-1.fc7
Oct 17 12:54:48 Updated: openoffice.org-draw.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:14 Updated: openoffice.org-langpack-pl_PL.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:20 Updated: openoffice.org-writer.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:38 Updated: openoffice.org-impress.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:39 Updated: openoffice.org-xsltfilter.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:40 Updated: openoffice.org-graphicfilter.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:50 Updated: openoffice.org-langpack-en.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:53 Updated: openoffice.org-math.i386 1:2.2.1-18.2.fc7
Oct 17 12:55:55 Updated: totem-mozplugin.i386 2.18.3-1.fc7
Oct 17 12:56:12 Updated: gstreamer-plugins-good.i386 0.10.6-1.fc7
Oct 17 12:56:47 Updated: gnome-power-manager.i386 2.18.3-1.fc7
Oct 17 12:56:50 Updated: NetworkManager-gnome.i386 1:0.6.5-7.fc7
Oct 17 12:56:50 Updated: xorg-x11-drv-nv.i386 2.0.96-2.fc7
Oct 17 12:56:51 Updated: xorg-x11-drv-ati.i386 6.6.3-4.fc7
Oct 17 12:56:52 Updated: xorg-x11-drv-amd.i386 0.0-22.20070625.fc7
Oct 17 12:56:52 Updated: xorg-x11-drv-nouveau.i386 2.0.96-2.fc7
Oct 17 12:56:53 Updated: xorg-x11-drv-v4l.i386 0.1.1-8.fc7
Oct 17 12:56:56 Updated: mutt.i386 5:1.5.14-4.fc7
Oct 17 12:57:03 Updated: samba-client.i386 3.0.26a-0.fc7
Oct 17 12:57:06 Updated: w3m.i386 0.5.2-1.fc7
Oct 17 12:57:08 Updated: jpackage-utils.noarch 1.7.3-1jpp.3.fc7
Oct 17 12:57:16 Updated: mc.i386 1:4.6.1a-45.20070124cvs.fc7
Oct 17 12:57:31 Updated: valgrind.i386 1:3.2.3-5.fc7
Oct 17 12:57:34 Updated: cvs.i386 1.11.22-9.1.fc7
Oct 17 13:02:08 Updated: kdelibs.i386 6:3.5.7-22.fc7
Oct 17 13:02:09 Updated: perl-Test-Harness.i386 2.56-24.fc7
Oct 17 13:03:48 Updated: kdepim.i386 6:3.5.7-3.fc7
Oct 17 13:03:51 Updated: redhat-artwork-kde.i386 7.0.0-11.fc7
Oct 17 13:03:52 Updated: kde-settings.noarch 3.5-30.fc7
Oct 17 13:06:47 Updated: kdebase.i386 6:3.5.7-13.1.fc7
Oct 17 13:07:28 Updated: kdegraphics.i386 7:3.5.7-2.fc7
Oct 17 13:07:29 Updated: perl-CPAN.i386 1.76_02-24.fc7
Oct 17 13:07:53 Updated: kdeutils.i386 6:3.5.7-1.fc7.1
Oct 17 13:07:54 Updated: kde-settings-kdm.noarch 3.5-30.fc7
Oct 17 13:07:56 Installed: libkdcraw.i386 0.1.1-1.fc7
Oct 17 13:08:34 Installed: digikam.i386 0.9.2-1.fc7
Oct 17 13:09:18 Updated: kipi-plugins.i386 0.1.4-1.fc7
Oct 17 13:09:29 Updated: kdeutils-extras.i386 6:3.5.7-1.fc7.1
Oct 17 13:09:56 Updated: kdegraphics-extras.i386 7:3.5.7-2.fc7
Oct 17 13:10:38 Updated: amarok.i386 1.4.7-5.fc7
Oct 17 13:10:48 Updated: kaffeine.i386 0.8.4-1.fc7
Oct 17 13:12:30 Updated: kdeaccessibility.i386 1:3.5.7-1.fc7
Oct 17 13:12:35 Updated: knetworkmanager.i386 0.2-0.1.svn20070815.fc7
Oct 17 13:12:42 Updated: kpowersave.i386 0.7.3-0.2svn20070828.fc7
Oct 17 13:13:58 Updated: kdenetwork.i386 7:3.5.7-1.fc7.1
Oct 17 13:14:25 Updated: kdeartwork.i386 3.5.7-2.fc7
Oct 17 13:14:48 Updated: kdeaddons.i386 3.5.7-1.fc7
Oct 17 13:15:42 Updated: kde-i18n-Polish.noarch 1:3.5.7-1.fc7
Oct 17 13:15:43 Updated: perl-ExtUtils-Embed.i386 1.26-24.fc7
Oct 17 13:15:45 Updated: perl-devel.i386 4:5.8.8-24.fc7
Oct 17 13:15:48 Updated: perl-ExtUtils-MakeMaker.i386 6.30-24.fc7
Oct 17 13:15:56 Updated: spamassassin.i386 3.2.3-1.fc7
Oct 17 13:17:52 Updated: evolution.i386 2.10.3-4.fc7
Oct 17 13:18:22 Erased: digikamimageplugins
Oct 17 13:18:58 Erased: libstdc++5
Oct 17 13:24:58 Updated: emacs.i386 22.1-4.fc7

 

system ratunkowy odpala, czyli jest nadzieja...

teraz pytanie ktore paczki powoduja konflikt ?:/

chyba wiem nawet co sie stalo

 

aktualiator oprogramowania mi wykryl 265 paczekd o aktualizacji i to olalem

yumex wykryl mi 465 paczek (z repezorytorium glownym i livma) i podejrewam ze z tego livma (yumex) sobie wszystkie aktualizacje sciagnal nawet nie do tej wes\rsji fedory i stad problem z bootem

podczas gdy zwykly aktualizator oprogramowania wykryl mi tylko aktualizacje do mojej wersji fedory (z glownych repozytoriow)

dobrze mysle?

 

Połączyłem posty, pamiętaj o opcji edytuj :) /Karlik

Odnośnik do komentarza
Udostępnij na innych stronach

Z tego co pamiętam, to instalowanie przez yumex powodowało czasem problemy. Z automatycznych aktualizacji nigdy nie korzystam (wyłączony serwis yum-updatesd). Do aktualizacji wykorzystuję wyłącznie konsolę i yum.

Lista paczek nie wygląda groźnie. U mnie są podobne (z wyjątkiem niektórych z KDE - mam XFCE) i nie mam problemów.

Niezależnie czy to yum czy yumex - potrafią wykryć aktualną wersję oraz architekturę systemu, więc ściągnięcie paczek do innej wersji jest mało prawdopodobne.

Chyba wyczerpały się moje pomysły :( Może ktoś jeszcze coś wymyśli.

Odnośnik do komentarza
Udostępnij na innych stronach

Z tego co pamiętam, to instalowanie przez yumex powodowało czasem problemy. Z automatycznych aktualizacji nigdy nie korzystam (wyłączony serwis yum-updatesd). Do aktualizacji wykorzystuję wyłącznie konsolę i yum.

Lista paczek nie wygląda groźnie. U mnie są podobne (z wyjątkiem niektórych z KDE - mam XFCE) i nie mam problemów.

Niezależnie czy to yum czy yumex - potrafią wykryć aktualną wersję oraz architekturę systemu, więc ściągnięcie paczek do innej wersji jest mało prawdopodobne.

Chyba wyczerpały się moje pomysły :( Może ktoś jeszcze coś wymyśli.

 

 

eh czyli moj pomysl byl be

ale to czemu zwykly yum mi wykryl 250 aktulizacji a yumex 450? :o :|

Odnośnik do komentarza
Udostępnij na innych stronach

ale to czemu zwykly yum mi wykryl 250 aktulizacj a yumex 450? :o :|
Pojęcia nie mam :)

Jeszcze taki pomysł głupi, ostatniej sznasy ;)

Odpal z "rescue" i po chroot /mnt/sysimage (włącz interfejsy sieciowe jak się zapyta) zrób

yum clean all
yum update

Mało wierzę w sukces, ale gorzej już nie będzie ;)

Odnośnik do komentarza
Udostępnij na innych stronach

Pojęcia nie mam :)

Jeszcze taki pomysł głupi, ostatniej sznasy ;)

Odpal z "rescue" i po chroot /mnt/sysimage (włącz interfejsy sieciowe jak się zapyta) zrób

yum clean all
yum update

Mało wierzę w sukces, ale gorzej już nie będzie ;)

 

 

d*pa :(

nie hula ehhhhhhhhh

no nic reinstalne go, wywale autoaktualizacje (w uslugach jak mniemam?), i bede robil aktualke tylko yumem zwyklym :-(

szkoda ze nawet przyczyny nie da sie ustalic

wielkie dzieki za checi pomocy Waldo, coz, czlowiek sie na bledach uczy :) :/

Glupi yumex :D

no i ghostm zrobie image partycji /u od razu po instalacji

Odnośnik do komentarza
Udostępnij na innych stronach

dokładnie, przyłączam się do etgo co pisze twoface.Na moje to wygląda na problem ze skryptami startowymi z paczki initscripts, tak jakby zostały usunięte ze swoich katalogów, bądź też zostały im zmienione prawa. Zobacz czy masz w tym katalogu jakieś plik (oraz w /etc/init.d) oraz czy mają one wszystkie odpowiednie prawa, a więc w /etc/rc.d/rc3.d powinny mieć 777 a w /etc/init.d 755.

 

Waldo: dyski są nazywane teraz /dev/sd* ze względu na to iż w kernelach >=2.6.19 używany jest do ich obsługi moduł libata, czyli moduł napisany do obsługi dysków SCSI. Natomiast natywny driver pata jest już porzucony w nowych kernelach. Libata obsługuje dyski za pomocą podsystemu pata. Czyli w skrócie libata (sd*)->pata (hd*)->dysk. A jako że libata nazywa urządzenia /dev/sd*, to i dyski ata mamy jako /dev/sd*

Odnośnik do komentarza
Udostępnij na innych stronach

A z ciekwaości jeszcze daj zawartość /etc/rc.d/rc 3

 

 

dokładnie, przyłączam się do etgo co pisze twoface.Na moje to wygląda na problem ze skryptami startowymi z paczki initscripts, tak jakby zostały usunięte ze swoich katalogów, bądź też zostały im zmienione prawa. Zobacz czy masz w tym katalogu jakieś plik (oraz w /etc/init.d) oraz czy mają one wszystkie odpowiednie prawa, a więc w /etc/rc.d/rc3.d powinny mieć 777 a w /etc/init.d 755.

 

Waldo: dyski są nazywane teraz /dev/sd* ze względu na to iż w kernelach >=2.6.19 używany jest do ich obsługi moduł libata, czyli moduł napisany do obsługi dysków SCSI. Natomiast natywny driver pata jest już porzucony w nowych kernelach. Libata obsługuje dyski za pomocą podsystemu pata. Czyli w skrócie libata (sd*)->pata (hd*)->dysk. A jako że libata nazywa urządzenia /dev/sd*, to i dyski ata mamy jako /dev/sd*

 

problem nieaktualny Panowie, przeinstalowalem cala fedore i jest oki

Dziekuje wszystkim za rady, bede wiedzial na przyszlosc co i jak.

Pzdr

 

Odnośnik do komentarza
Udostępnij na innych stronach

Od wersji Fedory nr 7 wszystkie dyski są widziane jako /dev/sd* - dlaczego tak, można przeczytać na listach dyskusyjnych Fedory. Ja sie jakoś połapać nie mogę :)

Bo korzysta z nowego sterownika

libata

który jest częścia sterowników do dysków SATA. Dzięki temu odczepiliśmy się od przestarzałego ATA który w jądrze już jest po 6 procesie gnilnym jak kurczaki z rożna w markecie ;-)

Dzięki temu zwiększa się stabilność a nawet wydajność dysków PATA. Skutkiem ubocznym jestr unifikacja wszystkiego jako urządzenie SCSI czyli /drv/sdX ;-)

Pozdrawiam

 

Odnośnik do komentarza
Udostępnij na innych stronach

Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto

Jedynie zarejestrowani użytkownicy mogą komentować zawartość tej strony.

Zarejestruj nowe konto

Załóż nowe konto. To bardzo proste!

Zarejestruj się

Zaloguj się

Posiadasz już konto? Zaloguj się poniżej.

Zaloguj się
×
×
  • Dodaj nową pozycję...