Stuck on boot after New Installation

Hi!
I've removed Ubuntu and installed Arch and it can't boot after installation. I hangs up after:
/dev/sda1: clean, 31810/2444624 files, 407160/9770158 blocks
I have normal BIOS(not UEFI), and two discs: /dev/sda is SSD with Arch and /dev/sdb is HDD with Windows 8...
Tried playing with fstab, but it was still stucking. Then tried reinstalling, but it's still hanging...
Original /etc/fstab:
# /etc/fstab: static file system information
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/sda1
UUID=ef1945f4-2d23-479e-a873-802d7bbbf32c / ext4 rw,relatime,data=ordered 0 1
/boot/grub/grub.cfg:
# 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,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ef1945f4-2d23-479e-a873-802d7bbbf32c
else
search --no-floppy --fs-uuid --set=root ef1945f4-2d23-479e-a873-802d7bbbf32c
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=pl_PL
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, za pomocą systemu Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-ef1945f4-2d23-479e-a873-802d7bbbf32c' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ef1945f4-2d23-479e-a873-802d7bbbf32c
else
search --no-floppy --fs-uuid --set=root ef1945f4-2d23-479e-a873-802d7bbbf32c
fi
echo 'Wczytywanie systemu Linux core repo kernel...'
linux /boot/vmlinuz-linux root=UUID=ef1945f4-2d23-479e-a873-802d7bbbf32c ro quiet
echo 'Wczytywanie początkowego dysku RAM...'
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_option 'gnulinux-core repo kernel-fallback-ef1945f4-2d23-479e-a873-802d7bbbf32c' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 ef1945f4-2d23-479e-a873-802d7bbbf32c
else
search --no-floppy --fs-uuid --set=root ef1945f4-2d23-479e-a873-802d7bbbf32c
fi
echo 'Wczytywanie systemu Linux core repo kernel...'
linux /boot/vmlinuz-linux root=UUID=ef1945f4-2d23-479e-a873-802d7bbbf32c ro quiet
echo 'Wczytywanie początkowego dysku RAM...'
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 ###
menuentry 'Windows 8 (loader) (na /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-1EF4F8F7F4F8D24F' {
insmod part_msdos
insmod ntfs
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 1EF4F8F7F4F8D24F
else
search --no-floppy --fs-uuid --set=root 1EF4F8F7F4F8D24F
fi
drivemap -s (hd0) ${root}
chainloader +1
### 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 ###
(Btw. on my laptop Arch is working good...)
Last edited by Flanders (2013-02-17 17:42:58)

Remove quiet from the kernel command line so that you get as much information as possible.
You only have the one partition for Arch, right? The fstab is complete?
Look in /etc/default/grub and select the most basic, debugging-friendly options you can. E.g. make sure recovery entries are enabled etc.
Last edited by cfr (2013-03-10 02:52:55)

Similar Messages

  • Can't start UCM server after new installation of 11.1.1.8 on Microsoft server 2008 R2 SP1 64 bit EE

    Hi All
    After new installation of WCC 11.1.1.8 on Microsoft server 2008 R2 SP1 64 bit EE UCM_server1 can’t start. (Please see trace below). WCC 11.1.1.7 run without issues on this environment.
    Steps:
    1. Installation of jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    2. Installation of WLS 10.3.6
    3. Installation of WCC 11.1.1.8
    4. Schema creation by RCU 11.1.1.8
    5. Domain creation by config.cmd with AdminServer, UCM_server1, IBR_server1
    6. Run Admin - (success)
    7. Run NodeManager (optional) - (success)
    8. Run UCM_server1 – failed
    Still not works after patching MLR 1 for WCC 11.1.1.8 or upgrade from 11.1.1.7 .
    From log files we can saw that problem caused by JniNativeOsUtils.dll file in “<Middleware Home>\Oracle_ECM1\ucm\idc\components\NativeOsUtils\lib\windows-amd64\7.2.1.1”
    I replaced JniNativeOsUtils.dll with same file from 11.1.1.7 version and UCM_server1 starts work
    I got errors during startup (syNativeOsUtilsNotLoaded and UnsatisfiedLinkError - you can foun them in trace below), but WCC up and works.
    I also get error when trying to start SystemProperties or ComponentWithard utility:
         Activation context generation failed for "C:\Oracle\MIDDLE~1\USER_P~1\domains\WCC_DO~1\ucm\cs\bin\SystemProperties.exe". Dependent Assembly      Microsoft.VC80.MFC,processorArchitecture="amd64",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="8.0.50727.762" could not be found. Please use sxstrace.exe for detailed diagnosis.
    Any ideas?
    Thanks
    Leon
    ERROR:
    javax.servlet.ServletException: Could not start up IDC server deployment.
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1268)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.io.IOException: csServletFailedToFullyInitialize
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:139)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException:
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:252)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.data.DataException: !Install aborted.
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:554)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException: !csInitSecurityError
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:140)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: intradoc.common.ServiceException: !syFileUtilsUnableToCreateSpecifiedDir,C:/Oracle/MIDDLE~1/USER_P~1/domains/WCC_DO~1/ucm/cs/config/private
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:570)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:76)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:574)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:328)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:101)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:627)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:104)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:88)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1259)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1874)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3155)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:487)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:672)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:52)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:31)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:170)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:124)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:181)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:97)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.AssertionError: !syNativeOsUtilsNotLoaded
      at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:452)
      at intradoc.common.NativeOsUtilsBase.<init>(NativeOsUtilsBase.java:360)
      at intradoc.common.NativeOsUtils.<init>(NativeOsUtils.java:28)
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.lang.UnsatisfiedLinkError: intradoc/common/NativeOsUtilsBase.getNativeVersion()Ljava/lang/String;
      at intradoc.common.NativeOsUtilsBase.doLoad(NativeOsUtilsBase.java:448)
      at intradoc.common.NativeOsUtilsBase.<init>(NativeOsUtilsBase.java:360)
      at intradoc.common.NativeOsUtils.<init>(NativeOsUtils.java:28)
      at intradoc.common.FileUtils.checkOrCreateDirectory(FileUtils.java:566)
      at intradoc.conversion.StandardKeyLoader.init(StandardKeyLoader.java:36)
      at idc.conversion.jps.CSFKeyLoader.init(CSFKeyLoader.java:47)
      at intradoc.conversion.SecurityObjects.init(SecurityObjects.java:132)
      at intradoc.conversion.CryptoPasswordUtils.initSecurityObjects(CryptoPasswordUtils.java:75)
      at intradoc.conversion.CryptoPasswordUtils.loadPasswordManagement(CryptoPasswordUtils.java:136)
      at intradoc.server.IdcInstallInfo.buildPasswordInfo(IdcInstallInfo.java:850)
      at intradoc.server.IdcInstallInfo.createConfigAndPasswordFiles(IdcInstallInfo.java:573)
      at intradoc.server.IdcInstallInfo.continueEarlyInstall(IdcInstallInfo.java:548)
      at intradoc.server.IdcSystemConfig.initConfigEarly(IdcSystemConfig.java:205)
      at intradoc.server.IdcSystemConfig.loadInitialConfig(IdcSystemConfig.java:323)
      at intradoc.server.IdcServerManager.init(IdcServerManager.java:100)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:626)
      at intradoc.idcwls.IdcServletRequestUtils.initializeServer(IdcServletRequestUtils.java:457)
      at intradoc.idcwls.IdcIntegrateWrapper.initializeServer(IdcIntegrateWrapper.java:103)
      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:597)
      at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)
      at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)
      at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)
      at idcservlet.ServletUtils.initializeContentServer(ServletUtils.java:1257)
      at idcservlet.ServletUtils.startAndConfigureServer(ServletUtils.java:531)
      at idcservlet.ServletUtils.initializeAllServers(ServletUtils.java:460)
      at idcservlet.IdcFilter.initContentServer(IdcFilter.java:181)
      at idcservlet.IdcFilter.init(IdcFilter.java:156)
      at weblogic.servlet.internal.FilterManager$FilterInitAction.run(FilterManager.java:343)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.FilterManager.loadFilter(FilterManager.java:96)
      at weblogic.servlet.internal.FilterManager.preloadFilters(FilterManager.java:57)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
      at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
      at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
      at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Hi All
    Cause of the problems was the missing of "Visual C++ 2005 SP1 Redistributable Package"
    Environment works fine after installation of both versions (x86 and x64)
    Thanks
    Leon

  • Stuck at boot after game crashed

    Hello new here
    I have Lenovo Tablet A3500-fl
    Problem is After a game crashed i cant boot it just stuck at boot
    "lenovo for those who do..."
    How do I fix this
    And Never update the tablet
    Not sure what android version maybe jelly bean
    thanks

    Piita,
    Welcome to Lenovo Forums!
    Thank you for taking time to post your inquiry. The issue that you have is more on the android OS already, what you can do is to do a factory reset the Tablet :
    Here are the steps and I hope that they will work for you. 
    How to Hard Reset LENOVO IDEATAB A3500 with Hardware Button key:
    - Confirm and make sure that LENOVO IDEATAB A3500 Battery is fully charge or not empty
    - Turn off LENOVO IDEATAB A3500
    - Press together : POWER + VOLUME UP about several second, that the warning will appear at the LENOVO IDEATAB A3500
     - At LCD will appear Select Boot Mode]
     - Choose Recovery Mode (using VOLUME DOWN button)
     - Wait several second until Android logo appear
     - Continue to press POWER BUTTON to display the Menu
     - Choose: Reset Device or Wipe data or Clear eMMC
     - Make sure we already sure than we know that our application and data will be loose or clear while Resetting LENOVO IDEATAB A3500
    Please Let me know if the above provided step will work 
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.

  • G5 PPC Won't boot After New Drives, Battery & RAM Installed

    Since installing new boot drive, new battery, and additional matched RAM, when I start up I'm expecting DVD drawer to open automatically for installation of MAC OS, but all I get is a screen icon of a Mac folder, without a question mark. Tried starting up again and this time got black screen. I popped DVD drawer open and inserted MAC OS Leopard disc then restarted once while holding down C key. Nothing, but after a few minutes fans went into overdrive. Restarted again without holding C key, got black screen. I really can't hear the install disc spinning either.
    I've replaced boot drive a long time ago and didn't have this problem. Wondering if RAM or new battery caused anything to go wrong. I had a grounding strap on during all my internal work on the mac.
    Thanks for any suggestions
    Steve

    Thanks for the reply.
    Don't see logic in booting without either optical or HD as I can't go forward without both online. Hard drive is unformatted. But one thing: I had pulled the jumper to make it SATA 3 for better performance. Maybe replace jumper?
    Battery polarity is correct, positive to the left. I even reinserted the old battery to see if that made a difference.
    Are you suggesting reseating all the RAM or just the new RAM? I'll try removing the new RAM.
    Tried resetting PRAM but system never chimed a second time, system didn't recognize the command for it.
    Won't boot up in OF mode.
    Sometimes boots to black screen, other times to white screen. Sometimes the folder icon, sometimes not.
    In every case system will go into fan overdrive after about 4 minutes.

  • Network card not found after new installation [SOLVED]

    I broke my filesystem on my Asus UL80V series laptop in trying to solve problems related to the latest glibc update, so decided to do a clean re-install. I had an installation disk at hand: 2009.08 with kernel 2.6.30.4-1 (which is supposed to have the module for my ath9k network device). However after a successful installation (including all the files from base-dev), my network device is not recognised:
    dhcpcd: eth0: interface not found or invalid
    although network connectivity (wired and wireless) worked perfectly before the installation attempt.
    This happened yesterday (17th) and I have been scouring the web since trying to find out what the cause of this problem is, without luck.
    I also burned a new installation CD with the latest stable version, but no luck there, either! Got a message at the beginning informing me that the install requires 64 Mb memory, although my laptop has 4 Gb.
    I should say, the device is there and working:
    lspci | grep Net
    gives
    02:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01)
    I also did
    modprobe ath9k
    just to make sure. No luck.
    Any help will be appreciated.
    thanks
    thea
    Last edited by thea (2012-07-23 23:59:16)

    Argh, ip may not be around in the 2009 image really ;-) .. Use "ifconfig" instead..
    But: I meanwhile cross-checked your ath9k: http://wireless.kernel.org/en/users/Dri … h9k_driver
    and it does not sound encouraging for the kernel you have there.
    The image is far too old anyway, if you ask me (would be a darn hazzle to get that uptodate I am sure). Pity you get that memory error with the 2011 one. Maybe check forums on that. Sounds very strange, I am not aware of any post I read.
    If you can burn another CD, you can try the recent ISOs as well: http://releng.archlinux.org/isos/
    Beware that the ones from July dont have the AIF setup anymore.

  • Can't Boot After New HD + Time Machine Restore

    So a couple days ago my 27" iMac running Snow Leopard started making some weird noises and stalling out. Annoyed, I talked for a couple hours with apple tech support which eventually lead me to run an Apple Hardware Test. This test returned the error
    "Alert! Apple Hardware Test has detected an error.
    4HDD/11/40000000 SATA(0,0)"
    I scheduled an appointment at the Genius Bar, and they replaced the hard drive.
    After that I got it home and did a System restore from my time machine backup. It finished fine, but when I restarted it got stuck on the grey apple screen with the spinning dial thing.
    I called apple back and they had me do a couple things like repair disk, verify disk, and one person had me reboot into this command line mode and type some stuff in. Nothing worked. After that They had me try to reinstall the OS first from archive, and next by erasing the hard drive and doing it. Both times the install fails with a big yellow exclamation point saying that it couldn't install support files and the OS couldn't be installed.
    Any ideas how to fix this?
    I'm currently trying to restore from my time machine backup again, but I'm not hopeful.

    Here's what I got - apologies for any formatting peculiarities.
    The problem: 10.6.6 mac won't boot after time machine restore to disk.
    Further symptoms: Booting with Command-v shows several errors: usually blued and loginwindow collapse with errors from launchd. Errors will be of the style "dyld: Symbol not found: CSSMOID_APPLE_TP_MACAPPSTORERECEIPT" and other CommerceKit / CommerceCore framework errors.
    A solution: Your Framework Security library may be an older version (possible cause with Time Machine below). The easiest way to fix this is to find another, working 10.6.6 Mac, and update the Security library on the broken machine.
    Identifying if you're affected:
    1) Boot the broken machine into "target" mode - hold "Command-t" during boot until the [Firewire|http://itunesu.utah.edu/terms/images/Firewire_Icon.png] icon appears.
    2) Connect the broken machine to the working 10.6.6 machine with a firewire cable.
    3) On the working machine, the disk of the broken machine should mount.
    4) Open Terminal
    5) Run "ls /Volumes" - the name of disk you mounted should be there (in this example, we'll use "Macintosh HD".)
    6) Typing in the path of the broken machine, run:
    <pre>
    nm /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security | grep random_fd | cut -d. -f2
    </pre>
    (this does a dump of the library, looking for the version value)
    If this comes back with the value 22457 (or less?), your Mac is not booting because it does not have the updated version of the Security library, which is required in 10.6.6 since Snow Leopard added the Appstore / Commerce framework.
    Fixing if you're affected:
    1) First, make sure the working 10.6.6 Mac has a correct version of the framework:
    <pre>
    nm /System/Library/Frameworks/Security.framework/Versions/A/Security | grep random_fd | cut -d. -f2
    </pre>
    For 10.6.6, this should be at least "22458"
    2) *Be extremely careful at this point* - Make sure on the mounted disk (not the machine you are working on!) run the following
    <pre></pre>
    2a) Make a backup of the broken library
    <pre>
    mkdir /Volumes/Macintosh HD/savedLibrary
    cp /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security /Volumes/Macintosh HD/savedLibrary
    </pre>
    2b) Copy the working version over the non-working version:
    <pre>
    cp /System/Library/Frameworks/Security.framework/Versions/A/Security /Volumes/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security
    </pre>
    3) Eject the mounted disk from the working Mac, disconnect the firewire cable, and reboot the "broken" Mac. It should come up.
    If it doesn't, you have problem(s) that are probably outside the scope of this. I'd also suggest restoring your original security library that you saved off.
    Suspected cause:
    It appears that Time Machine never recorded the change to the Security library after the update. If the library hadn't changed, the machine should have failed to boot like it did after restore the moment a 10.6.6 update was applied.
    Inspecting the contents of my Time Machine backups before and after updating shows that Time Machine never updated the Security Framework library - why is still not 100% determined, but restoring from it is definitely broken. Combing through the backup databases on my Time Machine disk:
    (I upgraded to 10.6.6 on January 6)
    <pre>
    for name in 2010-12-30-093337 2011*
    do
    echo -n "In backup on ${name}, version of Security library is: "
    nm "${name}/Macintosh HD/System/Library/Frameworks/Security.framework/Versions/A/Security" | grep random_fd | cut -d. -f2
    done
    </pre>
    In backup on 2010-12-30-093337, version of Security library is: 22457
    In backup on 2011-01-04-100707, version of Security library is: 22457
    In backup on 2011-01-05-082402, version of Security library is: 22457
    In backup on 2011-01-06-092846, version of Security library is: 22457
    In backup on 2011-01-07-094827, version of Security library is: 22457
    In backup on 2011-01-10-093559, version of Security library is: 22457
    In backup on 2011-01-11-110542, version of Security library is: 22457
    In backup on 2011-01-12-094137, version of Security library is: 22457
    In backup on 2011-01-13-103238, version of Security library is: 22457
    In backup on 2011-01-14-113145, version of Security library is: 22457
    In backup on 2011-01-18-112856, version of Security library is: 22457
    In backup on 2011-01-20-114953, version of Security library is: 22457
    In backup on 2011-01-21-103642, version of Security library is: 22457
    In backup on 2011-01-24-102321, version of Security library is: 22457
    In backup on 2011-01-27-002508, version of Security library is: 22457
    In backup on 2011-01-27-011931, version of Security library is: 22457
    In backup on 2011-01-27-104406, version of Security library is: 22457
    In backup on 2011-01-27-114322, version of Security library is: 22457
    In backup on 2011-01-27-123928, version of Security library is: 22457
    In backup on 2011-01-27-134523, version of Security library is: 22457

  • Adressbook after new installation of 10.6.8. crashes after new entry

    I made a brandnew installation of Mac OS X 10.6.8 (Snow Leopard) on my iMac Intel [Model iMac 6,1, Intel Core 2 Duo, 3GB, Boot Rom IM61.0093.B07]. Now my adressbook doesn't work correct anymore. I did re-import the back up. When I want to add a new adress, save it or just close the application, the adressbook crashes.
    I've already tried to reinstall from the original DVD. I also read, maybe the system-font's might cause this problem. I also tried to copy the old fonts back and also tried a new installation. It still doesn't work.
    It would be great to find a solution to this problem.

    Update:  Booted into single-user mode, checked disk via fsck -f (had to force it), no problems found.
    Booted with Snow Leopard installer CD and ran Disk Utlity - repaired permissions and repaired disk.  No problems found.  'Macintosh HD appears to be OK'.
    Tried booting again - still hanging.  Will let it go longer this time, but I'm not hearing any disk activity...

  • Satellite L500-126: Win7 upgrade -can I re-activateit after new installation?

    I successfully upgraded Windows 7 from my OEM Vista yesterday.
    What if in the future, I need to reinstall the whole system?
    Can I re-activate Win 7 after the new installation?
    PS. My OEM Vista is 64 bit version and my win 7 is the ultimate 64 bit upgrade version
    THX

    I hope I understand your question right so here is what I know about it:
    When you upgrade original preinstalled Vista you don't need to activate Win7 but if you make clean Win7 installation then you must activate preinstalled version.
    With other words to have activations-free Win7 you must install Vista at first using Toshiba recovery DVD and then upgrade it to Win7.

  • Windows 7 does not boot after bootcamp installation

    Hey!
    I installed windows 7 x64 on my MBP 15" retina with bootcamp, and the installation went fine but after the installation when it said " prepairing your desktop" it just restarted and went into boot loop, so I had to boot into mac OSX and make it primary boot. This have happend 3 times, and I've recreated the ISO image on the USB and I've deleted windows 7 and the partition and I have done the whole process over again (3 times) and it still does not work. Sometimes I get into windows 7 the first time and can move around the desktop with the mouse for about 5 seconds, then it says "logging out" and I'm back at the same problem.
    What can I do?
    Best regards,
    Jack Hellberg.

    Hi Jack.........ok ive managed to create a link to that video on how to install bootcamp.....this is the tutorial i used and i managed to gain 100% completion on bootcamp 1st time no messing......like i said in my previous reply did you save the windows support files from apple....(Critical).....ok no point in messing about i suggest you start again from scratch........these are the things i used and YOU will need to complete bootcamp
    mem stick or cd-r / dvd-r......original copy disc of win 7 ...i never used an iso i used original disc....allow a minimum of 30gb of space for your win 7 partition.....if you want bootcamp so you can use big programs like windows based games i.e.....Crysis/Call of duty etc etc ..then you will need to consider that  you will need to allow a bigger partition to allow your HD to store the files.....this is the reason i installed bootcamp and so i made my partition    i have a 750GB HD so i made a partition of 300gb for windows 7 and left the other 450gb for Mac....so you need to partition enough for what you want bootcamp for remember once you get bootcamp working you will need to install ALL Important Windows updates Including Win 7 SP1......once everything is installed you will have bootcamp up and running lovely.....u can then boot up with either win7 or mac......click this link and watch carefully and do exactly as shown ok and you should be fine...if you have any probs contact me again ok.....let me know how you get on ok..:)...http://www.youtube.com/watch?feature=fvwp&v=QFIWtXTl4d0&NR=1

  • Problem to restore itunes data (win7 itunes) after new installation

    I made due to performance issues a completely new installation of Win 7 and  itunes on my computer (formatting harddisk, new Win7 and itunes installation as well other applications.
    I installed new itunes and wanted to import my old data (Files preference list, music, mobil applikation) I saved before on a externad harddisk.
    After itunes was installed, I copied the files described into the folderC:\Users\Fred\Music\iTunes\iTunes Media
    After starting itunes, I cant see my created playlists, and just some but not all music is available and non of the apps.
    Any idea?

    The best way is to use the backup copy of your data that you keep on a second drive somewhere.
    The application you can download from Apple.
    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not available in all countries; apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this). Movies currently available in the USA only. Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.

  • Can't Scan after new installation

    A bit of background;
    Dell laptop
    Windows 8.1 64bit
    HP Officejet 6500 e709n
    I finally managed to install the full set of printer drivers (HP Solution Center) on this new laptop ....which btw took hours of research,  just to learn that I can't scan. 
    I get the an HP popup message saying ERROR Imaging Device Not Found along with a number of steps to reolve the issue....and yes I followed most of the steps listed below except for the unistall/reinstall since this is a new installation. 

    Hello G4ME,
    Welcome to the HP Forums!
    I understand you're receiving a message indicating "Imaging Device Not Found" using the Officejet 6500 e709n. I will do my best to assist you!
    How is this printer connected? Wireless or USB?
    Follow this entire HP document on 'The HP imaging device was not found on the network' Message Displays on the Computer (Windows). Please post your results, as I will be looking forward to hearing from you. Have a great night!
    I worked on behalf of HP.

  • MSE kernel upgrade after new installation

              upon bootup and stopping the mse server, I receive the following error messages:
    iptables v1.3.5: can't initialize iptables table `filter': iptables who? (do you need to insmod?)
    Perhaps iptables or your kernel needs to be upgraded.
    iptables v1.3.5: can't initialize iptables table `filter': iptables who? (do you need to insmod?)
    Perhaps iptables or your kernel needs to be upgraded.
    also when trying to ping the server, it not reply ???
    this is new installation of cisco MSE 7.4
    please any advice

    Hi,
    I would never recommend doing an OS upgrade of a domain controller.
    The preffered method is to:
    1. Build a new 2012 R2 Server
    2. Install the Domain Controller role
    3. Promote the server to a domain controller - this will extend the schema of your AD to support 2012 - whilst generally fairly safe to do ensure you have relevant backups in place for your domain / forest
    4. Transfer FSMO roles to your new 2012 DC
    You can then go ahead and demote the 2008 DC, rebuild it to 2012, and re-promote it do a DC again. Keep doing this for all your DC's
    Also you would need to upgrade your exchange first as Exchange 2003 isn't supported with 2012 domain controllers.
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    Blog: http://www.windows-support.co.uk 
    Twitter:
      LinkedIn:

  • HP DV6700 shuts off on boot after new LCD installation

    Hello.
    I have had this HPdv6700 for about a year and a half.  I just last wednesday installed a new LCD to replace one that I cracked by being too rough with the lid. 
    The new LCD worked fine, but at my desk I always use an external monitor and extend the desktop.  I plugged in the external monitor to the VGA, and when I tried to switch over to "extend desktop" the screens flashed as usual, but the laptop just turned immediatly off. 
    It now immediately turns off when it tries to power up the installed LCD, right when all the HP stuff should come up when the screen initially turns on.  If I unplug the LCD, and only plug in the VGA, it boots up, it only shuts off with the new LCD.
    My guess is that my video card is fried, just enough where it still sort of works, but only when used with a monitor that has its own power supply.  Doesn't make sense really, usually when they go, thats it, they're gone. 
    I'm running Windows 7 Ultimate 64 with the AMD Turion X2 64 bit processor and have the Nvidia Geforce 7150m graphics card.
    Event logs in Administrative tools show nothing, as the PC shut off too fast to make a log.
    Everything appears to be installed correctly on this, but this seriously seems like some kind of power drain, any ideas about what I'm missing here?

    Oh, and can the problem be a faulty LCD that draws too much power, or maybe my inverter is fried?  I really doubt its the graphics card, and I don't want to buy new parts just to "experiment"

  • ITunes library.itl cannot be read error message after new installation

    Hi,
    I have just downloaded iTunes to install on a new Lenovo laptop running Windows 8.1, and after installation I have received the following error message "iTunes library.itl cannot be read because it was created by a newer version of iTunes".
    It was a 'clean' installation - I did not have any previous versions installed and have not yet copied my music across to the laptop or connected by iPod.
    Any suggestions?
    Thanks

    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • Failure to boot after new hard drive install

    trying to resurrect old graphite 466mh firewire clamshell.
    It was running tiger fine, had a problem charging it so sat in basement for a year. Turns out it was powercord,replaced, and now working again. Decided to replace the 10G hard drive, using the fixit site manual. Installed a Toshiba 80G drive, am now unable to boot from tiger cd's (not dvd) while holding down c-key. Any suggestions? By the way, have access to other firewire iBook running tiger but don't know how to boot from that. Any help much appreciated!

    The reason for not being able to start
    via 'C' on you new drive may be because it is
    assigned (jumpered) incorrectly as the 'Slave' rather
    than the 'Master'.
    Of course! it seems so obvious now
    you've said it.
    Actually it's almost
    certainly best that this gets done sooner rather than
    later or it is complicate any future trouble
    shooting
    kind regards
    mrtotes
    OK gentlemen (thanks for responding). So I hook up the 2 iBooks, put the tiger cd in my wife's iBook and start them up. On the screen of the ibook I'm trying to resurrect my wife's desktop appears. I go into disk utility, it scans the systems and the only icons that appear are my wife's hard drive and the new (untitled) hard drive. No sign of the tiger installation cd. I can restore my wife's hard disk onto the untitled drive and end up with a working system. I know little about slaves and masters (I don't get out much)- how do I assign the new drive?
    thanks again,
    marc

Maybe you are looking for

  • Sync problems while exporting

    Hi everyone-- I have one clip in my sequence where the audio was out of sync on the actual tape. In Final Cut, I was able to align it so that it matched up with the video. However, when I go to export, FCP realigns the video and audio how it was on t

  • Converted Videos dont hav sound.......

    When i have my ipod plugged in and i am in the movies menu, i go into the advanced menu and tell it to convert for ipod, it takes a while doing this and then when it has finished, i am left with a movie file with no sound but a moving picture..... Ca

  • Method Binding to JSF 1.0 validate-Method error

    Hi there, Iam impressed, changing from Beta to 1.0 wasn't that much work at all, I just got one problem left: <h:inputText value="#{methodsBean.orderNumber}" validator="#{methodsBean.checkOrderNumber}"/> This is my method:      public void checkOrder

  • BAPI Issue

    We have a setup wherin an external system( C++ Program running on UNIX) makes a remote call to BAPI_DOCUMENT_CHECKOUTVIEW2 on a dev server(Windows) to get the file originals from DMS vault to a target path. We are able to copy the file to a windows t

  • Ipod touch: iTunes not working

    Hi, I own a 64GB iPod Touch (3rd gen, no camera), and recently I noticed that the iTunes app has stopped working. I cannot preview music, and the whole app just jams after I choose albums etc. after the main screen. I updated the iOS to 5.1.1 with no