(solved) grug.cfg configuration fails

when I try to configure the grub.cfg file I get an error message which says:
#grub-mkconfig -o /boot/grub/grub.cfg
generating grub.cfg...
found linux image:/boot/vmlinuz-linux...
found initrd image:/boot/initramfs-linux.img
[669.873050]EXT4-fs (sda4):unable to read superblock
[669.855533]SQUASHFS ERROR: can't find a SQUASHFS superblock on sda4
ext4 sda4 unable to read superblock [/quote]
there are two HD and the partitions are as below:
[quote]bash-4.2# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512=512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x7df3d782
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 613730303 306864128 7 HPFS/NTFS/exFAT
/dev/sda2 613731195 789667839 87968322+ 5 Extended
/dev/sda3 789667840 933027839 71680000 83 Linux
/dev/sda4 933027840 976773119 21872640 83 Linux
/dev/sda5 613731258 688320989 37294866 83 Linux
/dev/sda6 688321053 789667839 50673393+ 83 Linux
Disk /dev/sdb: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512=512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x94110a5e
Device Boot Start End Blocks Id System
/dev/sdb1 * 16065 148087169 74035552+ 83 Linux
/dev/sdb2 148087170 404661284 128287057+ 5 Extended
/dev/sdb3 404664320 478511103 36923392 83 Linux
/dev/sdb4 478512090 488392064 4939987+ 82 Linux swap
/dev/sdb5 148087233 292961339 72437053+ 83 Linux
/dev/sdb6 292961403 404661284 55849941 83 Linux
bash-4.2#]
I am trying to install Arch on /dev/sda5 the /home is on the partition /dev/sdb6
If I uninstall os-prober the configuration is well succeeded
Thanks
Last edited by cezarrangel (2013-02-19 23:27:07)

Cfr, thanks. Yes sda4 used to be the extended partition, please have a look what the fdisk -l output used to be:
root@darkstar:/home/cezar# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x7df3d782
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 613730303 306864128 7 HPFS/NTFS/exFAT
/dev/sda2 789667840 933027839 71680000 83 Linux
/dev/sda3 933027840 976773119 21872640 83 Linux
/dev/sda4 613731195 789667839 87968322+ 5 Extended
/dev/sda5 613731258 688320989 37294866 83 Linux
/dev/sda6 688321053 789667839 50673393+ 83 Linux
Partition table entries are not in disk order
Disk /dev/sdb: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512=512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x94110a5e
Device Boot Start End Blocks Id System
/dev/sdb1 * 16065 148087169 74035552+ 83 Linux
/dev/sdb2 404664320 478511103 36923392 83 Linux
/dev/sdb3 478512090 488392064 4939987+ 82 Linux swap
/dev/sdb4 148087170 404661284 128287057+ 5 Extended
/dev/sdb5 148087233 292961339 72437053+ 83 Linux
/dev/sdb6 292961403 404661284 55849941 83 Linux
Partition table entries are not in disk order
As the partition table entries were not in disk order, I tried to fix it with
fdisk /dev/sda
Command (m for help): x
Expert command (m for help): f
Expert command (m for help): w
after that, the new fdisk -l  output is
bash-4.2# fdisk -l
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512=512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x7df3d782
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 613730303 306864128 7 HPFS/NTFS/exFAT
/dev/sda2 613731195 789667839 87968322+ 5 Extended
/dev/sda3 789667840 933027839 71680000 83 Linux
/dev/sda4 933027840 976773119 21872640 83 Linux
/dev/sda5 613731258 688320989 37294866 83 Linux
/dev/sda6 688321053 789667839 50673393+ 83 Linux
Disk /dev/sdb: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 sectors
Units = sectors of 1 * 512=512 bytes
Sector size (logical/physical): [512 bytes]/[512 bytes]
IO size (minimum/optimal): [512 bytes]/[512 bytes]
Disk identifier: 0x94110a5e
Device Boot Start End Blocks Id System
/dev/sdb1 * 16065 148087169 74035552+ 83 Linux
/dev/sdb2 148087170 404661284 128287057+ 5 Extended
/dev/sdb3 404664320 478511103 36923392 83 Linux
/dev/sdb4 478512090 488392064 4939987+ 82 Linux swap
/dev/sdb5 148087233 292961339 72437053+ 83 Linux
/dev/sdb6 292961403 404661284 55849941 83 Linux
bash-4.2#
there is not the warning Partition table entries are not in disk order. However, I think I have made a mess
and here is the fstab:
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
# UUID=85a58fc1-d84c-4433-bbcc-75a452480ad1 LABEL=boot
/dev/sda5/ext4rw,relatime,data=ordered 0 1
# UUID=31b7ad20-16b7-4308-b914-6121c193797d
/dev/sda6/home ext4 rw,relatime,data=ordered 0 2
# UUID=59504bb3-5c76-4580-9e29-d3ca782f5cbf LABEL=swap
/dev/sdb3 none swap defaults 0 0
the grub.cfg is like this:
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN/etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-301d8071
d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch GNU/Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo
kernel-true-ad4103fa-d940-47ca-8506-301d8071d467' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-
301d8071d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 ro quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
menuentry 'Arch GNU/Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_optio
n 'gnulinux-core repo kernel-fallback-ad4103fa-d940-47ca-8506-301d8071d467' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-
301d8071d467
else
search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 ro quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux-fallback.img
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
Last edited by cezarrangel (2013-02-17 21:53:00)

Similar Messages

  • [SOLVED] Shorewall Universal configuration fails to start

    I wanted to try shorewall.
    I installed it with pacman:
    $ pacman -Q shorewall
    shorewall 4.6.1.2-1
    I chose the Universal configuration, copying the corresponding files to /etc/shorewall.
    When I try to start it by 'systemctl start shorewall.service', it fails with:
    juin 25 17:54:24 arch64 systemd[1]: Starting Shorewall IPv4 firewall...
    juin 25 17:54:24 arch64 shorewall[24056]: Compiling...
    juin 25 17:54:24 arch64 shorewall[24056]: Processing /etc/shorewall/params ...
    juin 25 17:54:24 arch64 shorewall[24056]: Processing /etc/shorewall/shorewall.conf...
    juin 25 17:54:24 arch64 shorewall[24056]: Loading Modules...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /etc/shorewall/zones...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /etc/shorewall/interfaces...
    juin 25 17:54:25 arch64 shorewall[24056]: Determining Hosts in Zones...
    juin 25 17:54:25 arch64 shorewall[24056]: Locating Action Files...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /etc/shorewall/policy...
    juin 25 17:54:25 arch64 shorewall[24056]: Running /etc/shorewall/initdone...
    juin 25 17:54:25 arch64 shorewall[24056]: Adding rules for DHCP
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling TCP Flags filtering...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling Kernel Route Filtering...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling Martian Logging...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling MAC Filtration -- Phase 1...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /etc/shorewall/rules...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /etc/shorewall/conntrack...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling MAC Filtration -- Phase 2...
    juin 25 17:54:25 arch64 shorewall[24056]: Applying Policies...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /usr/share/shorewall/action.Drop for chain Drop...
    juin 25 17:54:25 arch64 shorewall[24056]: Compiling /usr/share/shorewall/action.Broadcast for chain Broadcast...
    juin 25 17:54:25 arch64 shorewall[24056]: Generating Rule Matrix...
    juin 25 17:54:25 arch64 shorewall[24056]: Optimizing Ruleset...
    juin 25 17:54:25 arch64 shorewall[24056]: Can't use string ("filter") as a HASH ref while "strict refs" in use at /usr/share/shorewall/Chains.pm line 3486.
    juin 25 17:54:25 arch64 shorewall[24056]: /bin/sh: /var/lib/shorewall/.start: Aucun fichier ou dossier de ce type
    juin 25 17:54:25 arch64 shorewall[24056]: /bin/sh: /var/lib/shorewall/.start: Aucun fichier ou dossier de ce type
    juin 25 17:54:25 arch64 systemd[1]: shorewall.service: main process exited, code=exited, status=127/n/a
    juin 25 17:54:25 arch64 systemd[1]: Failed to start Shorewall IPv4 firewall.
    juin 25 17:54:25 arch64 systemd[1]: Unit shorewall.service entered failed state.
    I am unable to understand and fix this issue.
    Can someone help me please?
    Edit: changed the title of the thread.
    Last edited by berbae (2014-08-22 12:33:58)

    Since shorewall 4.6.2.5 the 'interfaces' file of the Universal configuration doesn't work anymore:
    août 19 16:14:09 arch64 shorewall[572]: Shorewall configuration compiled to /var/lib/shorewall/.start
    août 19 16:14:09 arch64 shorewall[572]: Starting Shorewall....
    août 19 16:14:10 arch64 shorewall[572]: ERROR: No network interface available: Firewall state not changed
    août 19 16:14:10 arch64 shorewall[572]: [112B blob data]
    août 19 16:14:10 arch64 systemd[1]: shorewall.service: main process exited, code=exited, status=143/n/a
    août 19 16:14:10 arch64 systemd[1]: Failed to start Shorewall IPv4 firewall.
    août 19 16:14:10 arch64 systemd[1]: Unit shorewall.service entered failed state.
    The compiling stage worked but the generated script didn't.
    I identified the problem to be the usage of the '+' wildcard character in the 'physical' option value of the 'interfaces' file:
    #ZONE INTERFACE OPTIONS
    - lo ignore
    net all dhcp,physical=+,routeback,optional
    As I have only one interface 'eth0', I don't need to use a wildcard character and the 'all' value, so I changed the file to:
    #ZONE INTERFACE OPTIONS
    - lo ignore
    net eth0 dhcp,routeback,optional
    And the firewall works again after that change.
    It's certainly a regression bug introduced in the new releases.
    I changed the title of the thread
    from:
    Newly installed shorewall fails to start
    to:
    shorewall Universal configuration fails to start
    Last edited by berbae (2014-08-22 14:59:46)

  • Performance Score Card Database Configuration failed

    Hi Experts,
    Yesterday I started installing Hyeperion 11.1.1.3.0. I got some problems one them is Performance Score Card Database Configuration failed. I supplied following credentials during configuration: [Click here |http://www.imageping.com/show.php/60465_PerformanceScoreCard.jpg.html]. This is my second attempt, for the first attempt i gave hyperion_ss as database user name, If i used the same user name for the second time its alerting me as "Invalid Database Schema for the Product Performance Scorecard", so i created new user hyperion_ps. For both the users i granted create session, connect, and resource privileges. After i got Database Configuration Failed window i went to sql*plus and counted for number of table it gives 215. My database is Oracle 11g, Windows 2003 server. Please help me in solving this issue, please............
    Thanks in advance,
    -N-

    You are getting the message because:
    In the process it atrted creating the table and index on the schema but it was unable to complete that.
    solution:
    Delete the DB schema and then do the configuration once again.
    provide DBA access to the schema
    Also please do check if the data file for the tablespace in Oracle DB has reached the limit or not.
    Regards,
    Bish

  • How to fix agent configuration failed

    hi all,
    I am trying to add target host to em 12c, on the last step
    I got ERROR: Agent Configuration Failed SEVERE: Agent port passed by user is busy and
    cannot proceed with the configuration. Pass a free port and retry the configuration.
    I use add manually option, before this add, I have tried to add agent to the same host, due to
    lack of space, I removed the old installation and also removed the parameters in oraInventory.
    Please help me to solve it. Thanks!

    - Verify that the port is open via iptables (or other host based firewall or network based firewall)
    - Verify that the agent binary isn't running. You can use 'lsof' utility to see if any processes have the agent TCP port.

  • Sharepoint 2010 Configuration failed

    Hi,
    Anyone please help. I'm new to sharepoint 
    After installing the sharepoint in my machine(OS Windows7 ) It showing the Configuration failed in the Share point Product Configuration Wizard.
    Throws the below log message:
    Begin trace logging for SharePoint 2010 Products Configuration Wizard.  Version 14.0.6009.1000
    03/11/2015 19:12:30  1  INF  Entering function PsconfigUserInterfaceMain.Main
    03/11/2015 19:12:30  1  INF    Entering function Common.SetCurrentThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF      Entering function Common.SetThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF        Current thread culture is English (United States), current thread ui culture is English (United States), installed culture is English (United States)
    03/11/2015 19:12:30  1  INF      Leaving function Common.SetThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF      The current ui culture English (United States) is NOT right to left
    03/11/2015 19:12:30  1  INF    Leaving function Common.SetCurrentThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF    Creating the psconfig application context
    03/11/2015 19:12:30  1  INF    Entering function PsconfigApplicationContext.PsconfigApplicationContext
    03/11/2015 19:12:30  1  INF      Entering function UserInterface.UserInterface
    03/11/2015 19:12:30  1  INF      Leaving function UserInterface.UserInterface
    03/11/2015 19:12:30  1  INF      Entering function TaskDriver.TaskDriver
    03/11/2015 19:12:30  1  INF        Entering function TaskDriver.BuildCommandCollection
    03/11/2015 19:12:30  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Entering function CommandCollection.CommandCollection
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollection.CommandCollection
    03/11/2015 19:12:30  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Entering function Command.Command
    and etc. repeats the above message.
    Please help me to solve this issue.
    Best regards,
    Renuka.V

    For installing SharePoint 2010 at Windows 7 , You should change SP installer config file to allow client install -
    <Setting Id="AllowWindowsClientInstall" Value="True"/>
    Please follow steps described in these urls,
    http://www.codeproject.com/Tips/373724/SharePoint-Installation-on-Windows
    http://www.codeproject.com/Articles/44210/Installing-SharePoint-Server-on-Windows-x
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • [SOLVED] startx and xinit fail on eeepc901 (possibly after upgrade)

    Dear all,
    Can't get X to start.
    After a system upgrade (was a messy one, I'm pretty sure this is not a bug) I must have deleted some very important file for X. The fact is that it has stopped working, startx fails, xinit fail, even Xorg -configure fails. Please also note that I've changed the kernel (from zeneee to stock) but I had the same behavior with the previous kernel.
    Possibly interesting outputs:
    $xinit
    giving up.
    xinit: No such file or directory (errno 2): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    $startx
    xauth: creating new authority file /home/mgp/.serverauth.4397
    giving up.
    xinit: No such file or directory (errno 2): unable to connect to X server
    xinit: No such process (errno 3): Server error.
    It does create the authority file. Fails after that.
    #Xorg -configure
    Segmentation fault
    My xorg.conf file is as follows (although I have tried without one and have the same errors, so probably not related):
    Section "ServerLayout"
    Identifier "Arch Linux"
    Screen 0 "Screen0"
    InputDevice "keyboard"
    InputDevice "mouse"
    InputDevice "synaptics"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "GLcore"
    Load "glx"
    Load "record"
    Load "dri"
    Load "extmod"
    Load "xtrap"
    Load "dbe"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail"
    Option "BlankTime" "5"
    Option "AIGLX" "false"
    Option "AutoAddDevices" "false"
    EndSection
    Section "InputDevice"
    Identifier "keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "IMPS/2"
    Option "Emulate3Buttons" "yes"
    Option "ZAxisMapping" "4 5"
    Option "CorePointer"
    EndSection
    Section "InputDevice"
    Identifier "synaptics"
    Driver "synaptics"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "PalmDetect" "0"
    Option "SHMConfig" "true"
    Option "SendCoreEvents" "yes"
    Option "RBCornerButton" "0"
    Option "RTCornerButtom" "0"
    Option "TapButton1" "1"
    Option "TapButton2" "2"
    Option "TapButton3" "3"
    Option "AccelFactor" "0.0320"
    Option "MaxSpeed" "0.72"
    Option "MinSpeed" "0.6"
    Option "Emulate3Buttons" "true"
    Option "TouchPadOff" "0"
    Option "LBCornerButton" "2"
    Option "LeftEdge" "60"
    Option "RightEdge" "1070"
    Option "TopEdge" "90"
    Option "BottomEdge" "680"
    Option "VertTwoFingerScroll" "1"
    Option "HorizTwoFingerScroll" "1"
    Option "HorizScrollDelta" "20"
    Option "LockedDrags" "1"
    Option "CoastingSpeed" "0.13"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "8" # 8=Top Left Corner
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "ASUS"
    ModelName "eeePC 901"
    Modeline "1024x600" 48.96 1024 1064 1168 1312 600 601 604 622 -HSync +VSync # 60 Hz
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 915GM/GMS/910GML Express Graphics Controller"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "EXA"
    Option "MigrationHeuristic" "greedy"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    If it means anything to anyone, I have the strace output to xinit and startx but can't post them both due to the limit on the length of the post. Here is the xinit strace output:
    4173 execve("/usr/bin/xinit", ["xinit"], [/* 33 vars */]) = 0
    4173 brk(0) = 0x9264000
    4173 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    4173 open("/etc/ld.so.cache", O_RDONLY) = 3
    4173 fstat64(3, {st_mode=S_IFREG|0644, st_size=133164, ...}) = 0
    4173 mmap2(NULL, 133164, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb80ad000
    4173 close(3) = 0
    4173 open("/usr/lib/libX11.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240d\1\0004\0\0\0\310"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=1255735, ...}) = 0
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb80ac000
    4173 mmap2(NULL, 1162916, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f90000
    4173 mmap2(0xb80a8000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x117) = 0xb80a8000
    4173 close(3) = 0
    4173 open("/lib/libc.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220k\1\0004\0\0\0\0"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=1553884, ...}) = 0
    4173 mmap2(NULL, 1333512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e4a000
    4173 mmap2(0xb7f8a000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13f) = 0xb7f8a000
    4173 mmap2(0xb7f8d000, 10504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f8d000
    4173 close(3) = 0
    4173 open("/usr/lib/libxcb.so.1", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320~\0\0004\0\0\0D"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=128751, ...}) = 0
    4173 mmap2(NULL, 99968, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e31000
    4173 mmap2(0xb7e49000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17) = 0xb7e49000
    4173 close(3) = 0
    4173 open("/lib/libdl.so.2", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0\\"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=13419, ...}) = 0
    4173 mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e2d000
    4173 mmap2(0xb7e2f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7e2f000
    4173 close(3) = 0
    4173 open("/usr/lib/libXau.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\10\0\0004\0\0\0\20"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=9706, ...}) = 0
    4173 mmap2(NULL, 10112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e2a000
    4173 mmap2(0xb7e2c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7e2c000
    4173 close(3) = 0
    4173 open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
    4173 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\17\0\0004\0\0\0\344"..., 512) = 512
    4173 fstat64(3, {st_mode=S_IFREG|0755, st_size=20705, ...}) = 0
    4173 mmap2(NULL, 19708, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e25000
    4173 mmap2(0xb7e29000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xb7e29000
    4173 close(3) = 0
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e24000
    4173 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e23000
    4173 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7e236c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    4173 mprotect(0xb7e2f000, 4096, PROT_READ) = 0
    4173 mprotect(0xb7f8a000, 8192, PROT_READ) = 0
    4173 mprotect(0xb80eb000, 4096, PROT_READ) = 0
    4173 munmap(0xb80ad000, 133164) = 0
    4173 access("/home/mgp/.xinitrc", F_OK) = -1 ENOENT (No such file or directory)
    4173 access("/home/mgp/.xserverrc", F_OK) = -1 ENOENT (No such file or directory)
    4173 brk(0) = 0x9264000
    4173 brk(0x9285000) = 0x9285000
    4173 rt_sigaction(SIGCHLD, {SIG_DFL, [CHLD], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigaction(SIGTERM, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGQUIT, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGINT, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGHUP, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGPIPE, {0x8048e80, [], 0}, NULL, 8) = 0
    4173 rt_sigaction(SIGALRM, {0x8048eb0, [ALRM], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigaction(SIGUSR1, {0x8048e90, [USR1], SA_RESTART}, {SIG_DFL, [], 0}, 8) = 0
    4173 rt_sigprocmask(SIG_BLOCK, [USR1], [], 8) = 0
    4173 clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0xb7e23728) = 4174
    4174 rt_sigprocmask(SIG_SETMASK, [], <unfinished ...>
    4173 setpriority(PRIO_PROCESS, 4174, -1 <unfinished ...>
    4174 <... rt_sigprocmask resumed> NULL, 8) = 0
    4174 rt_sigaction(SIGTTIN, {0x1, [TTIN], SA_RESTART}, <unfinished ...>
    4173 <... setpriority resumed> ) = 0
    4174 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
    4174 rt_sigaction(SIGTTOU, {0x1, [TTOU], SA_RESTART}, <unfinished ...>
    4173 waitpid(4174, <unfinished ...>
    4174 <... rt_sigaction resumed> {SIG_DFL, [], 0}, 8) = 0
    4173 <... waitpid resumed> 0x804b940, WNOHANG) = 0
    4174 rt_sigaction(SIGUSR1, {0x1, [USR1], SA_RESTART}, <unfinished ...>
    4173 write(2, "\n"..., 1 <unfinished ...>
    4174 <... rt_sigaction resumed> {0x8048e90, [USR1], SA_RESTART}, 8) = 0
    4174 setpgid(0, 4174) = 0
    4174 execve("/bin/X", ["X", ":0"], [/* 33 vars */]) = -1 ENOENT (No such file or directory)
    4174 execve("/usr/bin/X", ["X", ":0"], [/* 33 vars */] <unfinished ...>
    4173 <... write resumed> ) = 1
    4173 alarm(15) = 0
    4173 rt_sigsuspend([] <unfinished ...>
    4174 <... execve resumed> ) = 0
    4174 brk(0) = 0x8baa000
    4174 fcntl64(0, F_GETFD) = 0
    4174 fcntl64(1, F_GETFD) = 0
    4174 fcntl64(2, F_GETFD) = 0
    4174 access("/etc/suid-debug", F_OK) = -1 ENOENT (No such file or directory)
    4174 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
    4174 open("/etc/ld.so.cache", O_RDONLY) = 3
    4174 fstat64(3, {st_mode=S_IFREG|0644, st_size=133164, ...}) = 0
    4174 mmap2(NULL, 133164, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f3b000
    4174 close(3) = 0
    4174 open("/usr/lib/libpciaccess.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\24\0\0004\0\0\0\234"..., 512) = 512
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f3a000
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=30651, ...}) = 0
    4174 mmap2(NULL, 27868, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f33000
    4174 mmap2(0xb7f39000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5) = 0xb7f39000
    4174 close(3) = 0
    4174 open("/lib/libpthread.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0I\0\0004\0\0\0,"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=119590, ...}) = 0
    4174 mmap2(NULL, 98784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7f1a000
    4174 mprotect(0xb7f2e000, 4096, PROT_NONE) = 0
    4174 mmap2(0xb7f2f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14) = 0xb7f2f000
    4174 mmap2(0xb7f31000, 4576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f31000
    4174 close(3) = 0
    4174 open("/usr/lib/libXfont.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 e\0\0004\0\0\0\34"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=242478, ...}) = 0
    4174 mmap2(NULL, 223616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ee3000
    4174 mmap2(0xb7f18000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x34) = 0xb7f18000
    4174 close(3) = 0
    4174 open("/usr/lib/libXau.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300\10\0\0004\0\0\0\20"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=9706, ...}) = 0
    4174 mmap2(NULL, 10112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ee0000
    4174 mmap2(0xb7ee2000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7ee2000
    4174 close(3) = 0
    4174 open("/lib/tls/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/tls/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/tls", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/lib/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/lib", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    4174 open("/usr/lib/tls/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/tls/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/tls", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/i686/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/i686/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/i686/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/i686", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/sse2/libpixman-1.so.0", O_RDONLY) = -1 ENOENT (No such file or directory)
    4174 stat64("/usr/lib/sse2", 0xbfd93e3c) = -1 ENOENT (No such file or directory)
    4174 open("/usr/lib/libpixman-1.so.0", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0207\0\0004\0\0\0\\"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=394811, ...}) = 0
    4174 mmap2(NULL, 363888, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e87000
    4174 mmap2(0xb7ede000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x57) = 0xb7ede000
    4174 close(3) = 0
    4174 open("/usr/lib/libhal.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\320*\0\0004\0\0\0\340"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=71014, ...}) = 0
    4174 mmap2(NULL, 64412, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e77000
    4174 mmap2(0xb7e86000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe) = 0xb7e86000
    4174 close(3) = 0
    4174 open("/usr/lib/libdbus-1.so.3", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0PQ\0\0004\0\0\0,"..., 512) = 512
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7e76000
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=285567, ...}) = 0
    4174 mmap2(NULL, 230592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e3d000
    4174 mmap2(0xb7e74000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x36) = 0xb7e74000
    4174 close(3) = 0
    4174 open("/usr/lib/libXdmcp.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p\17\0\0004\0\0\0\344"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=20705, ...}) = 0
    4174 mmap2(NULL, 19708, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7e38000
    4174 mmap2(0xb7e3c000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3) = 0xb7e3c000
    4174 close(3) = 0
    4174 open("/usr/lib/libcrypto.so.0.9.8", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@\332\3\0004\0\0\0D"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0555, st_size=1561754, ...}) = 0
    4174 mmap2(NULL, 1381304, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ce6000
    4174 mmap2(0xb7e1f000, 90112, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x139) = 0xb7e1f000
    4174 mmap2(0xb7e35000, 9144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7e35000
    4174 close(3) = 0
    4174 open("/lib/libdl.so.2", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \n\0\0004\0\0\0\\"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=13419, ...}) = 0
    4174 mmap2(NULL, 12408, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ce2000
    4174 mmap2(0xb7ce4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0xb7ce4000
    4174 close(3) = 0
    4174 open("/lib/libm.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0@4\0\0004\0\0\0("..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=180855, ...}) = 0
    4174 mmap2(NULL, 151680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cbc000
    4174 mmap2(0xb7ce0000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x23) = 0xb7ce0000
    4174 close(3) = 0
    4174 open("/lib/librt.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\30\0\0004\0\0\0\234"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=39252, ...}) = 0
    4174 mmap2(NULL, 33364, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7cb3000
    4174 mmap2(0xb7cba000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6) = 0xb7cba000
    4174 close(3) = 0
    4174 open("/usr/lib/libgcc_s.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20#\0\0004\0\0\0\344"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0644, st_size=129370, ...}) = 0
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7cb2000
    4174 mmap2(NULL, 119784, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7c94000
    4174 mmap2(0xb7cb1000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1c) = 0xb7cb1000
    4174 close(3) = 0
    4174 open("/lib/libc.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220k\1\0004\0\0\0\0"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=1553884, ...}) = 0
    4174 mmap2(NULL, 1333512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7b4e000
    4174 mmap2(0xb7c8e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x13f) = 0xb7c8e000
    4174 mmap2(0xb7c91000, 10504, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7c91000
    4174 close(3) = 0
    4174 open("/usr/lib/libfreetype.so.6", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`}\0\0004\0\0\0,"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=604088, ...}) = 0
    4174 mmap2(NULL, 542228, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ac9000
    4174 mmap2(0xb7b4a000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x81) = 0xb7b4a000
    4174 close(3) = 0
    4174 open("/usr/lib/libz.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260\30\0\0004\0\0\0\30"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=82987, ...}) = 0
    4174 mmap2(NULL, 78844, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7ab5000
    4174 mmap2(0xb7ac8000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12) = 0xb7ac8000
    4174 close(3) = 0
    4174 open("/usr/lib/libfontenc.so.1", O_RDONLY) = 3
    4174 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0\f\0\0004\0\0\0004"..., 512) = 512
    4174 fstat64(3, {st_mode=S_IFREG|0755, st_size=30017, ...}) = 0
    4174 mmap2(NULL, 24288, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7aaf000
    4174 mmap2(0xb7ab4000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x5) = 0xb7ab4000
    4174 close(3) = 0
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7aae000
    4174 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7aad000
    4174 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7aad6c0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0
    4174 mprotect(0xb7c8e000, 8192, PROT_READ) = 0
    4174 mprotect(0xb7cba000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7ce0000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7ce4000, 4096, PROT_READ) = 0
    4174 mprotect(0xb7e74000, 4096, PROT_READ) = 0
    4174 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
    4173 <... rt_sigsuspend resumed> ) = ? ERESTARTNOHAND (To be restarted)
    4173 --- SIGCHLD (Child exited) @ 0 (0) ---
    4173 rt_sigsuspend([]) = ? ERESTARTNOHAND (To be restarted)
    4173 --- SIGALRM (Alarm clock) @ 0 (0) ---
    4173 rt_sigaction(SIGALRM, {0x8048eb0, [ALRM], SA_RESTART}, {0x8048eb0, [ALRM], SA_RESTART}, 8) = 0
    4173 sigreturn() = ? (mask now [USR1])
    4173 alarm(0) = 0
    4173 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
    4173 socket(PF_FILE, SOCK_STREAM, 0) = 3
    4173 connect(3, {sa_family=AF_FILE, path=@"/tmp/.X11-unix/X0"...}, 20) = -1 ECONNREFUSED (Connection refused)
    4173 close(3) = 0
    4173 socket(PF_FILE, SOCK_STREAM, 0) = 3
    4173 connect(3, {sa_family=AF_FILE, path="/tmp/.X11-unix/X0"...}, 110) = -1 ENOENT (No such file or directory)
    4173 close(3) = 0
    4173 waitpid(4174, [{WIFSIGNALED(s) && WTERMSIG(s) == SIGSEGV}], WNOHANG) = 4174
    4173 write(2, "giving up.\r\n"..., 12) = 12
    4173 write(2, "xinit: "..., 8) = 8
    4173 write(2, "No such file or directory (errno "..., 38) = 38
    4173 write(2, "unable to connect to X server\r\n"..., 31) = 31
    4173 kill(-4174, SIGTERM) = -1 ESRCH (No such process)
    4173 rt_sigaction(SIGTERM, {0x1, [TERM], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGQUIT, {0x1, [QUIT], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGINT, {0x1, [INT], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGHUP, {0x1, [HUP], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 rt_sigaction(SIGPIPE, {0x1, [PIPE], SA_RESTART}, {0x8048e80, [], 0}, 8) = 0
    4173 write(2, "xinit: "..., 8) = 8
    4173 write(2, "No such process (errno 3): "..., 28) = 28
    4173 write(2, "Server error.\n"..., 14) = 14
    4173 exit_group(1) = ?
    I've searched over for a solution but can't really find anything relevant. I've tried installing xorg a few times. Also hal and all that stuff but I don't trust myself too much on that. I don't know how to proceed any further and would appreciate any help possible or any ideas you think I could try. I'm pretty sure it's something quite stupid. Thanks for your time and consideration.
    Best regards,
    Michael
    Last edited by mgp (2009-09-24 06:31:36)

    Hi all,
    I fixed it. By looking closely at the strace I figured that for some reason X couldn't access my /tmp. I remember setting my /tmp directories in fstab to mount on tmpfs so I figured that wasn't working anymore. I removed my tmp entries in fstab (will have to refigure that one out). Something changed with the devices. Maybe I wasn't using udev before or something as it also has problems mounting devices it previously mounted on boot. However all this happened before I changed kernel. Dunno, anyway, it works although I have to fix a bunch of small things that still don't work. Lesson would be update often (hadn't done so in a year) and keep in touch with what is going on in the community (eee instructions have changed a lot -and become slightly more confusing-). Anyway, thanks for your help, specially Rasi.
    Best regards,
    Michael

  • RAC - Oracle Grid Infrastructure configure failed

    Hi, am trying to install 2 node RAC on Oracle VMs. Before the installation during the -preinst check there were few issues which were resolved (ex user equivalence). After that during the installation process of the Grid it failed at step "Configure Oracle Grid Infrastructure for a cluster". After it failed at this step, subsequent steps too failed which I asked OUI to ignore and then I ran both the post installation scripts. And then ran post crsinst which failed. Pasting below the output of the root.sh script, post crsinst and other checks.
    [root@bsfrac01 grid]# sh root.sh
    Running Oracle 11g root.sh script...
    The following environment variables are set as:
    ORACLE_OWNER= oracle
    ORACLE_HOME= /u01/app/11.2/grid
    Enter the full pathname of the local bin directory: [usr/local/bin]:
    Copying dbhome to /usr/local/bin ...
    Copying oraenv to /usr/local/bin ...
    Copying coraenv to /usr/local/bin ...
    Creating /etc/oratab file...
    Entries will be added to the /etc/oratab file as needed by
    Database Configuration Assistant when a database is created
    Finished running generic part of root.sh script.
    Now product-specific root actions will be performed.
    2011-02-13 00:11:55: Parsing the host name
    2011-02-13 00:11:55: Checking for super user privileges
    2011-02-13 00:11:55: User has super user privileges
    Using configuration parameter file: /u01/app/11.2/grid/crs/install/crsconfig_params
    Creating trace directory
    LOCAL ADD MODE
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    root wallet
    root wallet cert
    root cert export
    peer wallet
    profile reader wallet
    pa wallet
    peer wallet keys
    pa wallet keys
    peer cert request
    pa cert request
    peer cert
    pa cert
    peer root cert TP
    profile reader root cert TP
    pa root cert TP
    peer pa cert TP
    pa peer cert TP
    profile reader pa cert TP
    profile reader peer cert TP
    peer user cert
    pa user cert
    Adding daemon to inittab
    CRS-4123: Oracle High Availability Services has been started.
    ohasd is starting
    CRS-2672: Attempting to start 'ora.gipcd' on 'bsfrac01'
    CRS-2672: Attempting to start 'ora.mdnsd' on 'bsfrac01'
    CRS-2676: Start of 'ora.mdnsd' on 'bsfrac01' succeeded
    CRS-2676: Start of 'ora.gipcd' on 'bsfrac01' succeeded
    CRS-2672: Attempting to start 'ora.gpnpd' on 'bsfrac01'
    CRS-2676: Start of 'ora.gpnpd' on 'bsfrac01' succeeded
    CRS-2672: Attempting to start 'ora.cssdmonitor' on 'bsfrac01'
    CRS-2676: Start of 'ora.cssdmonitor' on 'bsfrac01' succeeded
    CRS-2672: Attempting to start 'ora.cssd' on 'bsfrac01'
    CRS-2672: Attempting to start 'ora.diskmon' on 'bsfrac01'
    CRS-2676: Start of 'ora.diskmon' on 'bsfrac01' succeeded
    CRS-2676: Start of 'ora.cssd' on 'bsfrac01' succeeded
    CRS-2672: Attempting to start 'ora.ctssd' on 'bsfrac01'
    CRS-2676: Start of 'ora.ctssd' on 'bsfrac01' succeeded
    ASM created and started successfully.
    DiskGroup DATA1 created successfully.
    clscfg: -install mode specified
    Successfully accumulated necessary OCR keys.
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    CRS-2672: Attempting to start 'ora.crsd' on 'bsfrac01'
    CRS-2676: Start of 'ora.crsd' on 'bsfrac01' succeeded
    CRS-4256: Updating the profile
    Successful addition of voting disk 0ea2052d8a714fd7bf46d9d5c785483e.
    Successfully replaced voting disk group with +DATA1.
    CRS-4256: Updating the profile
    CRS-4266: Voting file(s) successfully replaced
    ## STATE File Universal Id File Name Disk group
    1. ONLINE 0ea2052d8a714fd7bf46d9d5c785483e (ORCL:DISK1) [DATA1]
    Located 1 voting disk(s).
    *Failed to rmtcopy "/tmp/filekRIMbG" to "/u01/app/11.2/grid/gpnp/manifest.txt" for nodes {bsfrac01,bsfrac02}, rc=256*
    *Failed to rmtcopy "/u01/app/11.2/grid/gpnp/bsfrac01/profiles/peer/profile.xml" to "/u01/app/11.2/grid/gpnp/profiles/peer/profile.xml" for nodes {bsfrac01,bsfrac02}, rc=256*
    rmtcopy aborted
    Failed to promote local gpnp setup to other cluster nodes
    CRS-2673: Attempting to stop 'ora.crsd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.crsd' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.asm' on 'bsfrac01'
    CRS-2677: Stop of 'ora.asm' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.ctssd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.ctssd' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.cssdmonitor' on 'bsfrac01'
    CRS-2677: Stop of 'ora.cssdmonitor' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.cssd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.cssd' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.gpnpd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.gpnpd' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.gipcd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.gipcd' on 'bsfrac01' succeeded
    CRS-2673: Attempting to stop 'ora.mdnsd' on 'bsfrac01'
    CRS-2677: Stop of 'ora.mdnsd' on 'bsfrac01' succeeded
    Initial cluster configuration failed. See /u01/app/11.2/grid/cfgtoollogs/crsconfig/rootcrs_bsfrac01.log for details
    [root@bsfrac01 grid]#
    [oracle@bsfrac01 bin]$ ./cluvfy stage -post crsinst -n bsfrac01,bsfrac02 -verbose
    Performing post-checks for cluster services setup
    Checking node reachability...
    Check: Node reachability from node "bsfrac01"
    Destination Node Reachable?
    bsfrac01 yes
    bsfrac02 yes
    Result: Node reachability check passed from node "bsfrac01"
    Checking user equivalence...
    Check: User equivalence for user "oracle"
    Node Name Comment
    bsfrac01 passed
    bsfrac02 passed
    Result: User equivalence check passed for user "oracle"
    ERROR:
    PRKC-1094 : Failed to retrieve the active version of crs: {0}
    Checking time zone consistency...
    Time zone consistency check passed.
    ERROR:
    PRKC-1093 : Failed to retrieve the version of crs software on node "java.io.IOException: /u01/app/11.2.0/grid/bin/crsctl: not found
    " : {1}
    ERROR:
    Cluster manager integrity check failed
    PRVF-5434 : Cannot identify the current CRS software version
    UDev attributes check for OCR locations started...
    Result: UDev attributes check passed for OCR locations
    UDev attributes check for Voting Disk locations started...
    ERROR:
    PRVF-5197 : Failed to retrieve voting disk locationsPRKC-1092 : Failed to retrieve the location of votedisks: java.io.IOException: /u01/app/11.2.0/grid/bin/crsctl: not found
    Result: UDev attributes check failed for Voting Disk locations
    Check default user file creation mask
    Node Name Available Required Comment
    bsfrac01 0022 0022 passed
    bsfrac02 0022 0022 passed
    Result: Default user file creation mask check passed
    Checking cluster integrity...
    Node Name
    bsfrac01
    Cluster integrity check failed This check did not run on the following node(s):
    bsfrac02
    Checking OCR integrity...
    Checking the absence of a non-clustered configuration...
    All nodes free of non-clustered, local-only configurations
    ERROR:
    PRKC-1094 : Failed to retrieve the active version of crs: {0}
    ERROR:
    PRVF-5300 : Failed to retrieve active version for CRS on this node
    OCR integrity check failed
    Checking CRS integrity...
    ERROR:
    PRKC-1094 : Failed to retrieve the active version of crs: {0}
    ERROR:
    PRVF-5300 : Failed to retrieve active version for CRS on this node
    CRS integrity check failed
    OCR detected on ASM. Running ACFS Integrity checks...
    Starting check to see if ASM is running on all cluster nodes...
    PRVF-5137 : Failure while checking ASM status on node "bsfrac01"
    PRVF-5137 : Failure while checking ASM status on node "bsfrac02"
    Starting Disk Groups check to see if at least one Disk Group configured...
    PRVF-5112 : An Exception occurred while checking for Disk Groups
    PRVF-5114 : Disk Group check failed. No Disk Groups configured
    Task ACFS Integrity check failed
    Checking Oracle Cluster Voting Disk configuration...
    ERROR:
    PRKC-1093 : Failed to retrieve the version of crs software on node "java.io.IOException: /u01/app/11.2.0/grid/bin/crsctl: not found
    " : {1}
    ERROR:
    PRVF-5434 : Cannot identify the current CRS software version
    PRVF-5431 : Oracle Cluster Voting Disk configuration check failed
    Checking to make sure user "oracle" is not in "root" group
    Node Name Status Comment
    bsfrac01 does not exist passed
    bsfrac02 does not exist passed
    Result: User "oracle" is not part of "root" group. Check passed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    [oracle@bsfrac01 bin]$ /u01/app/11.2/grid/bin/ocrcheck
    Status of Oracle Cluster Registry is as follows :
    Version : 3
    Total space (kbytes) : 262120
    Used space (kbytes) : 408
    Available space (kbytes) : 261712
    ID : 1671840043
    Device/File Name : +DATA1
    Device/File integrity check succeeded
    Device/File not configured
    Device/File not configured
    Device/File not configured
    Device/File not configured
    Cluster registry integrity check succeeded
    Logical corruption check bypassed due to non-privileged user
    ASM looks to be up and running..
    [oracle@bsfrac01 bin]$ /usr/sbin/oracleasm listdisks
    DISK1
    DISK2
    DISK3
    DISK4
    DISK5
    DISK6
    [oracle@bsfrac01 bin]$ /usr/sbin/oracleasm status
    Checking if ASM is loaded: yes
    Checking if /dev/oracleasm is mounted: yes
    Please help.

    before installation have u configure the private interconnect on both the nodes to same network adapter..
    for example on node 1 if the private interconnect is on eth0 then on the node 2 it should use eth0 only...
    for private interconnect use the hostonly option on both the nodes in the network configuration page of the vmware or virtual box..
    and for public network it can be bridged
    more over if you are installing on the laptop its good to configure the SSH using the OUI.. rather than doing it manually.. as it saves time
    the private and the public networks should not have same range of ip address. like if public address are like 192.168.2.222/255.255.255.0 and private address have to be different like 10.10.1.2/255.0.0.0 (this is just an example)
    have to configured the NTP.
    any ways try installing the oracle rac on virtual box follow the steps given the below website they are pretty straight forward...
    http://www.oracle-base.com/articles/11g/OracleDB11gR2RACInstallationOnOEL5UsingVirtualBox.php

  • Sun JAVA ES on SuSE - configuration failed

    Documentation for Sun JAVA ES says it is supported on RedHat. What are the chances that SuSE will also be supported.
    I attempted to install Sun JAVA ES on OpenSuSE 10.1. Taking one step at a time I installed the the Web Server and JavaDB The installation appeared to go fine but the configurations failed:
    Installation Summary Report
    Install Summary
    Java Enterprise System 5 : Installed
    Sun Java(TM) System Web Server 7.0 : Installed, Configuration Failed
    Java DB : Installed, Configure After Install
    Could someone tell me where I start to look to troubleshoot why the Configuration failed.
    Thanks

    John,
    it looks like TID 7007653 - if you are wondering why you couldn't find
    it, it's because the TID did not mention the specific error, I had to
    hunt through bugzilla to find it. I have (as I hope you can see)
    updated the TID so that others should be able to find it without having
    to go through your pain...
    Shaun Pond

  • Configuration Failed - Could not load the file or assembly Microsoft.IdentityModel

    I have followed the link "Setting up Sharepoint 2010 Development Environment on Windows 7" and while
    following the steps, I was not able to install one of the pre-requisite "Windows Identity Foundation (Windows6.1-KB974405-x64.msu)" which was downloaded from Microsoft website at URL:
    http://www.microsoft.com/en-us/download/details.aspx?id=17331, however, I was able to complete the SharePoint Server 2010 Installation Successfully. And to my surprise, when I run the
    SharePoint Products Configuration Wizard, in the very 2nd Step of configuration, I faced the below issue.
    Configuration Failed
    One or more configuration settings failed. Completed configuration settings will not be rolled back. Resolve the problem and run this configuration wizard again. The following contains detailed information about the failure:
    Failed to create the configuration database.
    An exception of type System.IO.FileNotFoundException was thrown. Additional exception information: Could not load file or assembly 'Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its
    dependencies. The system cannot find the file specified.
    To diagnose the problem, review the application event log and the configuration log file located at: C:\Program Files\Common Files\Microsoft Shared\ Web Server Extensions\14\LOGS\PSCDiagnostics 12_13_2013_8_30_44_220_403724746.log
    I am pretty sure that I have followed each and every step and understood and the only place that I have missed is installing the pre-requisites as mentioned above. How can I fix this issue.
    Let me know if you need more information such as log file content which got generated. Your help in fixing this issue will be really helpfull for me.
    Thanks
    Mahesh

    Hi  Mahesh,
    Thank you for your posting!
    Your issue is caused by that  your windows 7 is not installed Windows Identity Foundation.
    As you say that you were not able to install the Windows Identity Foundation, could you provide more detail about what  you are facing ? Which version of Windows 7 you have? 32bit or
    64bit? Also make sure your computer has installed Internet Information Services (IIS) 7.0  and  .NET Framework 3.5.
    Thank you for your understanding and support.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Updating hybrid configuration failed - Kerberos authentication: The network path was not found

    I'm configuring Exchange 2010 SP3 as a Hybrid server with Exchange Online. This is a single server running Exchange roles Mailbox, Client Access, Unified Messaging and Hub Transport.
    When I run the Manage Hybrid Configuration, I receive the following error:
    Updating hybrid configuration failed with error
    'System.Management.Automation.Remoting.PSRemotingTransportException: Connecting to remote server failed with the following error message : WinRM cannot process the request. The following error occurred while using Kerberos authentication: The network
    path was not found.
    The full text from the Hybrid Configuration log file (C:\Program Files\Microsoft\Exchange Server\V14\Logging\Update-HybridConfiguration)
    [1/5/2014 21:21:1] INFO:Opening runspace to
    http://[servername]/powershell?serializationLevel=Full
    [1/5/2014 21:21:1] INFO:Disconnected from On-Premises session
    [1/5/2014 21:21:1] ERROR:Updating hybrid configuration failed with error 'System.Management.Automation.Remoting.PSRemotingTransportException: Connecting to remote server failed with the following error message : WinRM cannot process the request. The following
    error occured while using Kerberos authentication: The network path was not found. 
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config. For more information, see the about_Remote_Troubleshooting Help topic.
       at System.Management.Automation.Runspaces.AsyncResult.EndInvoke()
       at System.Management.Automation.Runspaces.Internal.RunspacePoolInternal.EndOpen(IAsyncResult asyncResult)
       at System.Management.Automation.Runspaces.RunspacePool.Open()
       at System.Management.Automation.RemoteRunspace.Open()
       at Microsoft.Exchange.Management.Hybrid.RemotePowershellSession.Connect(PSCredential credentials, CultureInfo sessionUiCulture)
       at Microsoft.Exchange.Management.Hybrid.Engine.Execute(ILogger logger, String onPremPowershellHost, PSCredential onPremCredentials, PSCredential tenantCredentials, HybridConfiguration hybridConfiguration)
       at Microsoft.Exchange.Management.SystemConfigurationTasks.UpdateHybridConfiguration.InternalProcessRecord()'.
    I have sought help, posting on the forum at community.office365.com -
    http://community.office365.com/en-us/forums/158/t/212265.aspx. But I've got to a point where I believe the problem is more to do with how PowerShell is operating on the on-prem Exchange server.
    Has anyone else come across this problem running the Hybrid Configuration Wizard?

    Hello Darrell,
    Have you verified the settings of Powershell virtual directories for the on-premises Exchange Servers? The following article has a list of some common issues with that virtual directory and how to correct them:
    http://technet.microsoft.com/en-us/library/ff607221(v=exchg.80).aspxI would take a look at the one titled "Configure Kerberos Authentication" specifically to ensure everything
    looks good.
    As the article states you can run the Exchange BPA and it will check if any of these exist as well.

  • Configuration Failed Error while running the Shareoint 2010 Products and Configuration wizard in windows 7

    Hi Techys,
    Kindly help me to resolve the below issue
    "Configuration Failed Error while running the Shareoint 2010 Products and Configuration wizard in windows 7"
    Many Thanks,
    Madhu

    Hi,
    Follow this link for smooth installation for SP 2010 on Win 7.
    http://msdn.microsoft.com/en-us/library/office/ee554869(v=office.14).aspx
    Murugesa Pandian.,MCTS|App.Development|Configure

  • Upgrade to R2 from SCOM 2012 SP 1 UR 4 - Final configuration failed to install

    I was upgrading our test SCOM 2012 SP1 UR 4 sever to R2 and ran into the following issue:
    Setup cannot be completed…  Final configuration failed to install.
    Everything else upgraded fine.
    There was no rollback performed…. The log states “Skipping rollback for install item Final Configuration as it was not successfully installed”
    Looking in OpsManagerSetupWizard.log in the section for Final Configuration I see the following:
    [16:00:43]:           Always: :!***** Installing: POSTINSTALL ***
    [16:00:43]:           Info:      :SetProgressScreen: StartMinorStep.
    [16:00:43]:           Warn:    :ApplyUpdates: Unable to load QFE file.
    [16:00:43]:           Always: :Doing Preinstall task for POSTINSTALL
    [16:00:43]:           Warn:    :CheckAndLoadUpdateFiles: Unable to load QFE file.
    [16:00:43]:           Always: :Doing Install task for POSTINSTALL
    [16:00:44]:           Debug: :DoInstallTask: Found Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall;PostInstallProcessor as type and method.
    [16:00:44]:           Info:      :Type: Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall  Method: PostInstallProcessor
    [16:00:44]:           Info:      :SetProgressScreen: Init Exe Install progress.
    [16:00:44]:           Info:      :AddUninstallChangeEntry: Cleaning out existing files at the ARP file cache location D:\Program Files\System Center 2012\Operations
    Manager\Setup
    [16:00:44]:           Error:     :InstallActionProcessor.DoInstallTask: method PostInstallProcessor threw exception.  We will return installSuccessful = false.:
    Threw Exception.Type: System.Reflection.TargetInvocationException, Exception Error Code: 0x80131604, Exception.Message: Exception has been thrown by the target of an invocation.
    [16:00:44]:           Error:     :StackTrace:   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
       at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallActionProcessor.DoInstallTask(InstallItemsInstallDataItem itemToInstall)
    [16:00:44]:           Error:     :Inner Exception.Type: System.UnauthorizedAccessException, Exception Error Code: 0x80131604, Exception.Message: Access to the path 'EULA_EN_EVAL.RTF'
    is denied.
    [16:00:44]:           Error:     :InnerException.StackTrace:   at System.IO.Directory.DeleteHelper(String fullPath, String userPath, Boolean recursive, Boolean
    throwOnTopLevelDirectoryNotFound)
       at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive, Boolean checkHost)
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupHelpers.ARPFileCache()
       at Microsoft.EnterpriseManagement.OperationsManager.Setup.Common.SetupHelpers.AddUninstallChangeEntry()
       at Microsoft.SystemCenter.Essentials.SetupFramework.InstallItemsDelegates.PostInstall.PostInstallProcessor(Func`3 setProgressScreen)
    [16:00:44]:           Error:     :ProcessInstalls: Install Item Final Configuration failed to install.  We did not launch the post process delegate.
    [16:00:44]:           Always: :SetErrorType: Setting VitalFailure. currentInstallItem: Final Configuration
    [16:00:44]:           Info:      :SetProgressScreen: FinishMinorStep.
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :****Starting*RollBack*******************************************
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Info:      :SetProgressScreen: StartMinorStep.
    [16:00:44]:           Always: :ProcessRollback: Skipping rollback for install item Final Configuration as it was not successfully installed.
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :****Ended*RollBack**********************************************
    [16:00:44]:           Always: :****************************************************************
    [16:00:44]:           Always: :Entering Page: FinishPage
    The log states “Access to the path 'EULA_EN_EVAL.RTF' is denied.”  I was able to find this file in D:\Program Files\System Center 2012\Operations Manager\SetupTemp\EN, but when viewing its contents I see it
    was from the SP 1 upgrade as it starts off with “MICROSOFT EVALUATION SOFTWARE LICENSE TERMS MICROSOFT SYSTEM CENTER 2012 STANDARD SERVICE PACK 1.”  Based on everything else referenced in the log file previously, it seems like it was trying to locate
    this file in D:\Program Files\System Center 2012\Operations Manager\Setup.  Also, I applied the product key after installing SP1 previously, so it was not running with an evaluation license.
    Running Get-SCOMManagementGroup | ft skuforlicense, version, timeofexpiration –a
    gives me:
    SkuForLicense Version     TimeOfExpiration
           Retail 7.1.10226.0 12/31/9999 11:59:59 PM
    The version (7.1.10226.0) is that of SCOM 2012 R2 (as I noted before, there was no rollback.)  Everything seems to be functioning fine (Console, Web Console, Reporting Services.)
    Is there a way to get it to re-run only the Final Configuration steps (which will probably fail again as the EULA file does not exist where it expects it)?  I am not sure if there were supposed to be any further
    configuration steps that did not get completed, so i dont know how stable SCOM is now.  Should I re-run the R2 installer?  Or is it OK as is?  The only info online about a SCOM Install where the final configuration failed to install dealt with
    an error upgrading the SCOM Console, which is not relevant to my situation.  This is my test SCOM environment, running on a VM.  I could revert to the pre-upgrade snapshot and see if another upgrade attempt completes successfully, but if that does
    work I am concerned that something like this may happen in my prod environment, which is not running on a VM, so has no ability to revert to a snapshot.

    Hi,
    Please refer to the following links:
    Do I need a specific Cumulative Update Release (UR) in order to upgrade to SCOM 2012 or 2012 SP1 or 2012 R2?
    http://blogs.technet.com/b/kevinholman/archive/2014/01/20/do-i-need-a-specific-cumulative-update-release-ur-in-order-to-upgrade-to-scom-2012-or-2012-sp1-or-2012-r2.aspx
    Upgrading Operations Manager from 2012 SP1 to 2012 R2 step by step
    http://www.systemcentercentral.com/upgrading-operations-manager-from-2012-sp1-to-2012-r2-step-by-step-upgrading-to-2012-r2-series/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+systemcenterforum+%28System+Center+Central+Rollup%29
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Update of Development Configuration fails

    Hello,
    we created an SC based on template WebDynpro. During the project we realized that we might need more tools like CAF. So I added the corresponding dependency in the software component.
    Now, when starting the NWDS it is detected that a new configuration exists.
    Unfortunately after confirming that the configuration should be updated, I always get an error:
    Evaluating of Configurations failed
    org.eclipse.core.runtime.CoreException[0]: com.sap.tc.devconf.update.ConfigurationEvaluationException: Error during evaluation of variant mapping delta: Error when reading component meta data from local file: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.update.impl.LocalComponentHelper.visitUsedComponentsFromCompartment(LocalComponentHelper.java:113)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDelta(CompartmentEvaluator.java:573)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDeltas(CompartmentEvaluator.java:554)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleCompartmentModified(CompartmentEvaluator.java:135)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.evaluate(CompartmentEvaluator.java:92)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluateConfigurationDelta(ConfigDeltaEvaluator.java:166)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluate(ConfigDeltaEvaluator.java:69)
         at com.sap.tc.devconf.update.impl.ConfigurationUpdater.evaluate(ConfigurationUpdater.java:83)
         at com.sap.ide.eclipse.component.devconf.ReimportDevConfigCommand.updateSoftIfPossiblePossible(ReimportDevConfigCommand.java:307)
         at com.sap.ide.eclipse.component.provider.actions.ReimportDevConfAction.run(ReimportDevConfAction.java:102)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: com.sap.tc.devconf.InvalidDefinitionException: Error when reading component meta data from local file: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCDataLocally(DevelopmentComponentNode.java:757)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCData(DevelopmentComponentNode.java:430)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.getDevelopmentComponent(DevelopmentComponentNode.java:125)
         at com.sap.tc.devconf.impl.DCDependenciesManager.listDirectlyUsedDCNodes(DCDependenciesManager.java:882)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:837)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:845)
         at com.sap.tc.devconf.update.impl.LocalComponentHelper.visitUsedComponentsFromCompartment(LocalComponentHelper.java:83)
         ... 35 more
    Caused by: com.sap.tc.complib.provider.ProviderException: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.impl.DCFileInputProvider.getStreamForDC(DCFileInputProvider.java:114)
         at com.sap.tc.complib.impl.DevelopmentComponentImpl.initialize(DevelopmentComponentImpl.java:720)
         at com.sap.tc.complib.ComponentFactory.initialize(ComponentFactory.java:421)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCDataLocally(DevelopmentComponentNode.java:745)
         ... 41 more
    Caused by:
    com.sap.tc.devconf.InvalidDefinitionException: Error when reading component meta data from local file: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCDataLocally(DevelopmentComponentNode.java:757)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCData(DevelopmentComponentNode.java:430)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.getDevelopmentComponent(DevelopmentComponentNode.java:125)
         at com.sap.tc.devconf.impl.DCDependenciesManager.listDirectlyUsedDCNodes(DCDependenciesManager.java:882)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:837)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:845)
         at com.sap.tc.devconf.update.impl.LocalComponentHelper.visitUsedComponentsFromCompartment(LocalComponentHelper.java:83)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDelta(CompartmentEvaluator.java:573)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDeltas(CompartmentEvaluator.java:554)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleCompartmentModified(CompartmentEvaluator.java:135)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.evaluate(CompartmentEvaluator.java:92)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluateConfigurationDelta(ConfigDeltaEvaluator.java:166)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluate(ConfigDeltaEvaluator.java:69)
         at com.sap.tc.devconf.update.impl.ConfigurationUpdater.evaluate(ConfigurationUpdater.java:83)
         at com.sap.ide.eclipse.component.devconf.ReimportDevConfigCommand.updateSoftIfPossiblePossible(ReimportDevConfigCommand.java:307)
         at com.sap.ide.eclipse.component.provider.actions.ReimportDevConfAction.run(ReimportDevConfAction.java:102)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: com.sap.tc.complib.provider.ProviderException: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.impl.DCFileInputProvider.getStreamForDC(DCFileInputProvider.java:114)
         at com.sap.tc.complib.impl.DevelopmentComponentImpl.initialize(DevelopmentComponentImpl.java:720)
         at com.sap.tc.complib.ComponentFactory.initialize(ComponentFactory.java:421)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCDataLocally(DevelopmentComponentNode.java:745)
         ... 41 more
    Caused by:
    com.sap.tc.complib.provider.ProviderException: Cannot read component definition. File does not exist: C:\Users\mkr\.dtc\1\DCs\camelot.com\Cmeio\runtime\_comp\.dcdef
         at com.sap.tc.devconf.impl.DCFileInputProvider.getStreamForDC(DCFileInputProvider.java:114)
         at com.sap.tc.complib.impl.DevelopmentComponentImpl.initialize(DevelopmentComponentImpl.java:720)
         at com.sap.tc.complib.ComponentFactory.initialize(ComponentFactory.java:421)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCDataLocally(DevelopmentComponentNode.java:745)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.loadDCData(DevelopmentComponentNode.java:430)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.getDevelopmentComponent(DevelopmentComponentNode.java:125)
         at com.sap.tc.devconf.impl.DCDependenciesManager.listDirectlyUsedDCNodes(DCDependenciesManager.java:882)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:837)
         at com.sap.tc.devconf.impl.DevelopmentComponentNode.listUsedDCs(DevelopmentComponentNode.java:845)
         at com.sap.tc.devconf.update.impl.LocalComponentHelper.visitUsedComponentsFromCompartment(LocalComponentHelper.java:83)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDelta(CompartmentEvaluator.java:573)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleUsageDeltas(CompartmentEvaluator.java:554)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.handleCompartmentModified(CompartmentEvaluator.java:135)
         at com.sap.tc.devconf.update.impl.CompartmentEvaluator.evaluate(CompartmentEvaluator.java:92)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluateConfigurationDelta(ConfigDeltaEvaluator.java:166)
         at com.sap.tc.devconf.update.impl.ConfigDeltaEvaluator.evaluate(ConfigDeltaEvaluator.java:69)
         at com.sap.tc.devconf.update.impl.ConfigurationUpdater.evaluate(ConfigurationUpdater.java:83)
         at com.sap.ide.eclipse.component.devconf.ReimportDevConfigCommand.updateSoftIfPossiblePossible(ReimportDevConfigCommand.java:307)
         at com.sap.ide.eclipse.component.provider.actions.ReimportDevConfAction.run(ReimportDevConfAction.java:102)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Any idea what's wrong here?
    Thanks,
    Michael

    Hi,
    Just go through this consolidated help.sap.com link.
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/63/7a4d40eae76f13e10000000a1550b0/frameset.htm|http://help.sap.com/saphelp_nw2004s/helpdata/en/63/7a4d40eae76f13e10000000a1550b0/frameset.htm]
    Regards,

  • Configuration failed 11.1.2. compatibility to wls 10.3

    Hello,
    I developed an application for mobile Web using only Trinidad components under JDeveloper 11.1.2
    I created the ear file and started to deploy it on a Weblogic 10.3 and got some problems during the start of the application:
    <21.10.2011 16:24 Uhr MESZ> <Error> <javax.enterprise.resource.webcontainer.jsf.config> <BEA-000000> <Critical error during deployment:
    com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! null
         at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:351)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:222)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    ... and a lot more
    I got an ADF Faces application which I developed using JDev 11.1.1.4 running on this server without any complains.
    Any help will be greatly appreciated. Thanks in advance.
    Martin
    Edited by: MartinK on 21.10.2011 07:44

    Hi,
    JDeveloper 11.1.2. requires a patched instance of WLS 10.3.5. Even if using Trinidad, the component set you use in JSf 2.0, which is not what you have on 10.1.3.x
    Frank

  • OBIEE 11.1.1.5 configuration failing on 64 bit Linux(please don't delete)

    Please DONOT delete this thread. I see someone keeps trying to do it don't know why. The last two threads on the same topic were
    https://forums.oracle.com/forums/thread.jspa?messageID=10473944#10473944
    and
    https://forums.oracle.com/forums/messageview.jspa?messageID=10467383&stqc=true
    OBIEE 11.1.1.5 Software only install configuration failing on 64 bit Linux
    My scenario is installing in 64 bit Linux with WLS 10.3.5 (with SOA/BAM server installed already). So as recommend by Oracle (http://docs.oracle.com/cd/E21764_01/bi.1111/e10539/a1_installscrn.htm) I did a software only install and then tried to configure BI using config.sh. I didn’t have root privilege, so continued with local inventory, hope that wasn't an issue.
    1) First time it failed in 'Configure BI Domain' step. I aborted and retried. It failed saying there is already entry in HSS Component table. I fixed the issue and tried again
    2) Then it failed again in 'Configure BI Domain' step, the error stack is
    Executing Task: Configure BI Domain
    javax.management.InstanceNotFoundException: oracle.biee.admin:group=Service,type=BIDomain
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    at weblogic.rmi.internal.BasicRemoteRef.invoke(BasicRemoteRef.java:223)
    at javax.management.remote.rmi.RMIConnectionImpl_1035_WLStub.invoke(Unknown Source)
    at weblogic.management.remote.common.RMIConnectionWrapper$16.run(ClientProviderBase.java:919)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.security.Security.runAs(Security.java:61)
    at weblogic.management.remote.common.RMIConnectionWrapper.invoke(ClientProviderBase.java:917)
    at javax.management.remote.rmi.RMIConnector$RemoteMBeanServerConnection.invoke(RMIConnector.java:993)
    at oracle.as.install.bi.biconfig.standard.BIDomainConfigureTask.doExecute(BIDomainConfigureTask.java:58)
    at oracle.as.install.bi.biconfig.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:70)
    at oracle.as.install.bi.biconfig.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.bi.biconfig.BIConfigMain.doExecute(BIConfigMain.java:112)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: javax.management.InstanceNotFoundException: oracle.biee.admin:group=Service,type=BIDomain
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1094)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getClassLoaderFor(DefaultMBeanServerInterceptor.java:1438)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.getClassLoaderFor(JmxMBeanServer.java:1276)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:58)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.mbeanservers.domainruntime.internal.FederatedMBeanServerInterceptor.getClassLoaderFor(FederatedMBeanServerInterceptor.java:141)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$1.run(WLSMBeanServerInterceptorBase.java:56)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.getClassLoaderFor(WLSMBeanServerInterceptorBase.java:53)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServer.getClassLoaderFor(WLSMBeanServer.java:527)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$19.run(JMXConnectorSubjectForwarder.java:1014)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$19.run(JMXConnectorSubjectForwarder.java:1012)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.getClassLoaderFor(JMXConnectorSubjectForwarder.java:1012)
    at javax.management.remote.rmi.RMIConnectionImpl$5.run(RMIConnectionImpl.java:1326)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.management.remote.rmi.RMIConnectionImpl.getClassLoaderFor(RMIConnectionImpl.java:1323)
    at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:771)
    at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Does this option actually work?? Can someone help please

    Has someone ever got it to work? Is there any resolution to the problem described

Maybe you are looking for