[SOLVED] GRUB2 does not process hooks: System doesn't boot

My initial system was an SSD where /dev/sda1 was my boot partition and /dev/sda2 was an (encrypted) LVM containing home, root, var and swap. Since all partitions were ext3, I decided to do a clean format to ext4 and copy my data back on the partitions. First I archived everything but home with the arch live CD onto a server with:
rsync -a /mnt/* root@server:/path/to/backupdir/
Everything went fine, but after copying back, the system would not boot (it was GRUB Legacy). Since it was not in the MBR but on sda1, I figured I could upgrade to GRUB2 now. So I followed the described procedure (from a live CD) and installed GRUB2 (this time into the MBR of sda. I then regenerated the image via mkinitcpio -p linux and generated a configuration file.
When I try to start the system, GRUB2 gets loaded, but after the two messages for loading the ramdisk it remains silent for some time (no output at all) until it finally complains it cannot find my root. But I did not see any output of any hook being processed (including encrypt) so of course it cannot find my root, since it is still encrypted.
I reformatted my boot partition again and reinstalled and regenerated everything again (I copied the directory contents from my backup but moved the old grub folder). Still the same issue. I know I could probably just reinstall everything and restore the settings, but I'd really prefer to restore my system, since this should be a lot faster.
Here are the relevant configuration files:
rc.conf
# /etc/rc.conf - Main Configuration for Arch Linux
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# LANG in /etc/locale.conf takes precedence
# DAEMON_LOCALE: If set to 'yes', use $LOCALE as the locale during daemon
# startup and during the boot process. If set to 'no', the C locale is used.
# HARDWARECLOCK: set to "", "UTC" or "localtime", any other value will result
# in the hardware clock being left untouched (useful for virtualization)
# Note: Using "localtime" is discouraged, using "" makes hwclock fall back
# to the value in /var/lib/hwclock/adjfile
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# Note: if unset, the value in /etc/localtime is used unchanged
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.UTF-8"
DAEMON_LOCALE="no"
HARDWARECLOCK="UTC"
TIMEZONE="Europe/Berlin"
KEYMAP="de-latin1-nodeadkeys"
#CONSOLEFONT=
#CONSOLEMAP=
USECOLOR="yes"
# HARDWARE
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
# Replace every !module by an entry as on the following line in a file in
# /etc/modprobe.d:
# blacklist module
# See "man modprobe.conf" for details.
MODULES=(acpi-cpufreq cpufreq_ondemand tun fuse vboxdrv)
# Udev settle timeout (default to 30)
UDEV_TIMEOUT=30
# Scan for FakeRAID (dmraid) Volumes at startup
USEDMRAID="no"
# Scan for BTRFS volumes at startup
USEBTRFS="no"
# Scan for LVM volume groups at startup, required if you use LVM
USELVM="yes"
# NETWORKING
# HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
HOSTNAME="archlaptop"
# Use 'ip addr' or 'ls /sys/class/net/' to see all available interfaces.
# Wired network setup
# - interface: name of device (required)
# - address: IP address (leave blank for DHCP)
# - netmask: subnet mask (ignored for DHCP) (optional, defaults to 255.255.255.0)
# - broadcast: broadcast address (ignored for DHCP) (optional)
# - gateway: default route (ignored for DHCP)
# Static IP example
# interface=eth0
# address=192.168.0.2
# netmask=255.255.255.0
# broadcast=192.168.0.255
# gateway=192.168.0.1
# DHCP example
# interface=eth0
# address=
# netmask=
# gateway=
interface=wlan0
address=
netmask=
broadcast=
gateway=
# Setting this to "yes" will skip network shutdown.
# This is required if your root device is on NFS.
NETWORK_PERSIST="no"
# Enable these netcfg profiles at boot-up. These are useful if you happen to
# need more advanced network features than the simple network service
# supports, such as multiple network configurations (ie, laptop users)
# - set to 'menu' to present a menu during boot-up (dialog package required)
# - prefix an entry with a ! to disable it
# Network profiles are found in /etc/network.d
# This requires the netcfg package
NETWORKS=(FlosAP)
# DAEMONS
# Daemons to start at boot-up (in this order)
# - prefix a daemon with a ! to disable it
# - prefix a daemon with a @ to start it up in the background
# If you are sure nothing else touches your hardware clock (such as ntpd or
# a dual-boot), you might want to enable 'hwclock'. Note that this will only
# make a difference if the hwclock program has been calibrated correctly.
# If you use a network filesystem you should enable 'netfs'.
DAEMONS=(syslog-ng dbus acpid crond alsa networkmanager @bumblebeed laptop-mode !hwclock ntpd psd)
mkinitcpio.conf
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES="piix ide_disk reiserfs"
MODULES=""
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run first, so it may be used to
# override the actual binaries used in a given hook.
# (Existing files are NOT overwritten if already added)
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
# Some users may wish to include modprobe.conf for custom module options
# like so:
# FILES="/etc/modprobe.d/modprobe.conf"
FILES=""
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No raid, lvm2, or encrypted root is needed.
# HOOKS="base"
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS="base udev autodetect pata scsi sata filesystems"
## This is identical to the above, except the old ide subsystem is
## used for IDE devices instead of the new pata subsystem.
# HOOKS="base udev autodetect ide scsi sata filesystems"
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS="base udev pata scsi sata usb filesystems"
## This setup assembles a pata mdadm array with an encrypted root FS.
## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
# HOOKS="base udev pata mdadm encrypt filesystems"
## This setup loads an lvm2 volume group on a usb device.
# HOOKS="base udev usb lvm2 filesystems"
HOOKS="base udev autodetect pata scsi sata keymap encrypt lvm2 resume filesystems usbinput"
# COMPRESSION
# Use this to compress the initramfs image. With kernels earlier than
# 2.6.30, only gzip is supported, which is also the default. Newer kernels
# support gzip, bzip2 and lzma. Kernels 2.6.38 and later support xz
# compression.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""
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 loadfont unicode ; 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-194e65d3-b357-430d-b4bb-67a8300d287d' {
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 b69dee88-a8c9-4af7-a938-7ca6c8ff368c
else
search --no-floppy --fs-uuid --set=root b69dee88-a8c9-4af7-a938-7ca6c8ff368c
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=/dev/mapper/VolGroup00-root ro quiet
echo 'Loading initial ramdisk ...'
initrd /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-194e65d3-b357-430d-b4bb-67a8300d287d' {
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 b69dee88-a8c9-4af7-a938-7ca6c8ff368c
else
search --no-floppy --fs-uuid --set=root b69dee88-a8c9-4af7-a938-7ca6c8ff368c
fi
echo 'Loading Linux core repo kernel ...'
linux /vmlinuz-linux root=/dev/mapper/VolGroup00-root ro quiet
echo 'Loading initial ramdisk ...'
initrd /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 ###
Thank you in advance. If you need any more information, please let me know.
Regards,
javex
Last edited by javex (2012-08-10 18:33:41)

Thank you for your reply. I looked further into the grub.cfg and removed the quiet part. Apparently the problem is that it runs all hooks but does not prompt me for a passphrase when running the encrypt hook. Why does this occur?
Edit: I solved this: apparently I forgot to specify a cryptdevice. Since the article about dm-crypt does not talk about GRUB2, I missed that. I will rework that section to specify GRUB2 and GRUB-Legacy
Last edited by javex (2012-08-10 18:33:22)

Similar Messages

  • 'My Application Page' is not allowed here because it does not extend class 'System.Web.UI.Page'

    I have a custom SharePoint 2010 solution that includes an aspx page. The aspx page in is in the /layouts folder within the solution and I created it by just adding an application page to the solution. I am trying to create a parent-child relationship between
    two different lists in SharePoint. From the parent I have a custom button on the ribbon that creates a child item with the ID of the parent stamped on it.
    The page is just a processing page that forwards on parameters from the parent to the new child item. (i.e. the ID value)
    The code generated when I add the aspx page is below:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    <asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
    </asp:Content>
    <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
    </asp:Content>
    <asp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server"> Processing Page </asp:Content>
    <asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" > Processing Page </asp:Content>
    The code behind is as follows:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.Utilities;
    using System.Reflection;
    namespace MY.Solution.Layouts.MY.Solution
    public partial class processingpage : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    try
    //Get a reference to the SPWeb object
    SPWeb oWeb = SPContext.Current.Web;
    //Use the Parameters That Are Passed In
    SPList thisList = oWeb.Lists[new Guid(Request.QueryString["List"])];
    SPListItem thisItem = thisList.GetItemById(int.Parse(Request.QueryString["ID"]));
    sContentType = thisItem["ContentType"].ToString();
    sContentTypeID = thisItem.ContentTypeId.ToString();
    if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["ID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/Blist" + "/NewForm.aspx?AIID=" + sAIAuditID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["AIID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/AList" + "/NewForm.aspx?AIID=" + sAIID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAICID = thisItem["AICID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/CList" + "/NewForm.aspx?AICID=" + sAICID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else
    LoggingService.LogError("MY.Solution - Processing Page", "No Applicable Content Type Found.");
    catch (Exception ex)
    LoggingService.LogError("My.Solution - Processing Page", ex.Message);
    finally
    //DO SOME FINAL THINGS HERE WHEN REQUIRED.
    In the page I need to use Request.QueryString to get the values from the URL. But when I deploy the solution and load the page I get the error:
    'MY.Solution.Layouts.MY.Solution.processingpage' is not allowed here because it does not extend class 'System.Web.UI.Page'.
    When I change the line:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    to inherit as follows:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" MasterPageFile="~/_layouts/application.master" %>
    it does not work either.
    If I change it to inherit like below:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="System.Web.UI.Page" MasterPageFile="~/_layouts/application.master" %>
    it also does not work.
    What does this error actually mean?  And why doesn't the default code generated by Visual Studio work?

    @NadeemYousuf I have tried this too and it didn't work.  
    What does the error even mean?  And why does the error appear with default Visual Studio code?  In my example I have just added a basic application page with no other code in it and it still does not work.

  • The headset does not process

    My new Passport presented the problem
    The headset does not process. Answering telephone calls on a channel, but it doesn't work for music, videos and apps of radios
    The headset that came with the Passport works on blackberry 9900
    Has anyone had this problem? Any suggestions? Thanks
    Solved!
    Go to Solution.

    have you tried running the BlackBerry Virtual Expert  to troubleshoot the issue?
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • Dimension hierarchy does not process when using /CPMB/IMPORT_MASTER

    Hi all
    Our system is SAP BPC NW 7.5 SP7
    We are using a flat file to import master data and hierarchies.
    Unlike the import from InfoObject package, the flat file package does not process the hierarchy after the import.
    This means that it would have to be done manually through the admin consol. How do i resolve this?
    Any help appreciated
    Byron

    Hi,
    Try using /CPMB/IMPORT_IOBJ_HIER to load the hierarchies. Please refer to the below links from help.sap:
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/69/3fa8fec0504cdab61f3247edb8c3b0/content.htm
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/b8/2eb5a519fc447f99b222d24cc2b914/content.htm
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/87/e0cb512dca414e849d681e76e38d08/content.htm
    http://help.sap.com/saphelp_bpc75_nw/helpdata/en/d2/0eebe57b164cc0925919997616945c/content.htm
    Hope this helps.

  • App World - Sorry, your device does not meet the system requiremen​ts that are needed

    Hi, I’ve just got a blackberry which is my first. I am new to this. I'm trying to download the App World on my phone because I would like to get some applications on my phone. As I try to download the App World it says "Sorry, your device does not meet the system requirements that are needed to support Blackberry App World." I have tried to download this on my computer Via Cable and on my Blackberry Via the Browser. If this doesn’t work for my blackberry is there any way around this so I can download applications from somewhere else. 
    Network Provider: 02
    Network Plan: Pay As You Go
    Thanks.

    Hi, thanks. Is this something my provider can activate free of charge or does this come at a monthly payment?
    Can someone provide a bit of information about this please.
    Thanks.

  • Error "Sorry your device does not meet the system requirements that are needed to support Twitter for BlackBerry Smartphones"

    I have a Curve 8300.  With OS v4.5.0.81.  And I am on a BB Social network plan through my cell providor "Fido".
    I mainly use it for Facebook & Twitter  and have no problems using either app.  However I was prompted for an update for my twitter recently but wasn't near a wifi spot to update.  Just decided to update today at home where I do have wifi.  However when I go to do the update, it gives me the following error:
    "Sorry your device does not meet the system requirements that are needed to support Twitter for BlackBerry Smartphones"
    I have scoured for answers but haven't had much luck.  I tried checking for OS updates.  I apparently have the most current one that my phone will support.  I uninstalled twitter and then tried to reinstall it via the twitter Icon on my phone.  Got the same error.  Tried reinstalling it through app world, it installed just fine.  However it installed the version that I had previously had.  So I went to twitter's settings and checked for updates.  It prompted for one as I expected it would.  And when I tried to get the update.  It gave me that error again.  I can use twitter as it is, but I don't see why my phone shouldn't be able to get all the updates for various apps.  Is it a software compatability issue?  Is it a hardware compatability issue?  Is there anything I can do to get the update or do I just have a phone that won't take some app updates?

    Hi and welcome to the forums!
    The 8300 is not listed in the device upgrade table for Blackberry device OS v5.0. The newer versions of apps like Twitter and Facebook require device OS v5.0 to run correctly. Might be time to consider a new device!
    Thanks,
    Bifocals
    BlackBerry Device Software 5.0 main support page
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • SL500 " this program does not support this system"

    I've an SL500 with windows 7 64bit system. It has a fresh system installed. I've installed all the necessary drivers correctly.Now I'm not able to install the followind items with system update utility:
    Thinkpad ultranav driver for windows 7
    Thinkpad hotkey features integration driver
    Thinkpad Ultranav utility
    If I try to install manually I receive an error message " this program does not support this system".
    Solved!
    Go to Solution.

    I had the same problem with Thinkpad hotkey features integration driver Version 3.84.1500
    (and the latest version 3.84.2000)
    It is a faulty installation!
    2 Files missing.
    Solution until Lenovo fixes the installation:
    Download and extract latest version.
    Download and extract version 3.81.0100.
    Copy the files SWI32.sys and SWIX64.sys from version 3.81.0100 to the corresponding folder of the latest version.
    Start setup.exe of latest version.
    According to the file properties SWI32.sys and SWIX64.sys are used as 'System Information Detector'.
    No wonder we get the error message 'this program does not support this system'
    Lenovo, please fix it.

  • Table does not exist in system after DB Connect

    Hi Everyone,
    I must extract data from a oracle db.  I create a source system with DB Connect and it's connect successful.
    Later, i create a datasource for that source system. but it show the table does not exist in system. I'm sure the table is correct. why?
    Thanks!

    Check the schema names & ensure it is with the same owner/name as in the DB source table/view. You can also use a simple lookup table which checks table/views in your schema from other standard tables.

  • Instant Client on 64-bit Windows 7: Driver does not appear in System DSN

    Instant Client on 64-bit Windows 7: Driver does not appear in System DSN tab when creating a new Data source.
    What I did so far:
    I downloaded the basic and odbc zips for Window 64-bit.
    Unzipped the basic zip.
    Unzipped the odbc zip to the same directory.
    Added the dir path to the System Environment Variable called Path.
    Double-clicked on the odbc_install.exe to run it from Windows Explorer.
    Then I tried to add the driver to create a new data source but it does not appear in the list of drivers.
    From a cmd window, I navigated to the instant client directory and tried to run odbc_install again.
    I got the message: Oracle ODBC Driver with same name already exists.
    What am I missing?

    hello, I did it like that you say,but the result also is "oracle odbc driver with same name already exists". I don't kown what can I do it ,Thank you!

  • Import Server detects file in Ready folder but does not process

    I have a problem where MDIS detects a file in the ready folder, but it does not launch the import:
    2772 2008/10/22 23:37:52.240   1.xml
    Source file retrieval: Delta: 0.001451 seconds.  
    2772 2008/10/22 23:38:23.428   1.xml
    Source file retrieval: Delta: 0.001151 seconds.  
    2772 2008/10/22 23:38:54.678   1.xml
    Source file retrieval: Delta: 0.006335 seconds.  
    2772 2008/10/22 23:39:25.897   1.xml
    Source file retrieval: Delta: 0.011595 seconds.  
    2772 2008/10/22 23:39:57.272   1.xml
    Source file retrieval: Delta: 0.003268 seconds.  
    2772 2008/10/22 23:40:28.507   1.xml
    Source file retrieval: Delta: 0.006276 seconds.
    The log file shows the above.  You can see it detects the file is there, but since it does not launch the import it does not process the file or even move it to the exception or archive folders.  I have confirmed settings in the MDIS.ini file, e.g. password, etc.  I can import the same file using Import Manager without any errors.
    Please help!

    Hi Jitesh,
    Your suggestion to try a different file type yielded positive reults.  I created a simple tab delimited text file and import map and changed the existing Port from using XML based on the MATMAS05 schema to using the text file.  The log shows:
    6056 2008/10/23 17:32:34.066   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: ImportTask: Task started. Chunk size[50000], No. parallel chunks[5]
    4572 2008/10/23 17:32:34.144   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xStructuralTransformer: Thread started.
    1160 2008/10/23 17:32:34.144   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xValueTransformer: Thread started.
    4192 2008/10/23 17:32:34.144   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xImporter: Thread started.
    4572 2008/10/23 17:32:34.144   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xStructuralTransformer: Thread finished; Start -> End: 0.000000000 seconds.
    1160 2008/10/23 17:32:34.160   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xValueTransformer: Thread finished; Start -> End: 0.000000000 seconds.
    4192 2008/10/23 17:32:34.660   Repository Load Successful. [JAN Master]: Delta: 0.085377 seconds.  
    4192 2008/10/23 17:32:35.958   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: xImporter: Thread finished; Start -> End: 1.000000000 seconds.
    6056 2008/10/23 17:32:36.458   [MDS=ROBLB2K1H2J Repos=JAN Master ClientSystem=U2K2_MDM Port=Materials_from_U2K2_MDM]: ImportTask: Task finished. Chunk size[50000], No. parallel chunks[5]
    4192 2008/10/23 17:34:11.133   22355-3-1-10-23-08-06-32-57_081023-063303_999.xml
    Source file retrieval: Delta: 0.006444 seconds.  
    4192 2008/10/23 17:34:11.242   Repository Load Successful. [JAN Master]: Delta: 0.028803 seconds.  
    4572 2008/10/23 17:34:43.825   22355-3-1-10-23-08-06-32-57_081023-063303_999.xml
    Source file retrieval: Delta: 0.003005 seconds.  
    4572 2008/10/23 17:35:16.018   22355-3-1-10-23-08-06-32-57_081023-063303_999.xml
    Source file retrieval: Delta: 0.010113 seconds.  
    4572 2008/10/23 17:35:47.742   22355-3-1-10-23-08-06-32-57_081023-063303_999.xml
    Source file retrieval: Delta: 0.001994 seconds.  
    4572 2008/10/23 17:36:19.419   22355-3-1-10-23-08-06-32-57_081023-063303_999.xml
    Source file retrieval: Delta: 0.012413 seconds.  
    The text file was immediately picked up and imported.  This thus proves that (1) MDIS is functioning, (2) user / password is correct.  Unfortunately you will also see from the log above that when I changed the port back to run on XML the problem has not been resolved.
    Any ideas?

  • XI does not process any files

    Hi Masters,
    I have the following issue. XI does not process several files. The log provided is the following:
    Configured at 2007-09-05 20:32:11 UTC
    History:
    - 2007-09-05 20:32:11 UTC: Retry interval started. Length: 900.000 s
    - 2007-09-05 20:32:11 UTC: Error: Retrieving file 'ZWHDES_MD3_20070905_0002.TXT' failed unexpectedly: FTPEx: inbound: No such file or folder.
    - 2007-09-05 20:32:11 UTC: Processing started
    It is able to find the files but it is not able to process them.
    We are using FTP protocol.
    Any idea??
    Thanks a lot in advance and best regards.

    Hi,
    Check the privelages for the folder and file on the ftp server. It should have both read and write permissions.
    <b>Cheers,
    *RAJ*</b>

  • Firefox does not process paypaly continue_shopping links correctly.

    firefox does not process paypaly continue_shopping links correctly. When you are at the paypal 'View Cart' and click on the continue shopping link it should take you back to the page you came from (this works in IE and Chrome) instead you end up on a 'sign in to PayPal page'
    As far as I know this will happen on any page that is using PayPal add to cart buttons with a continue_shopping_url but you can see it on my own page below.
    == URL of affected sites ==
    http://amazingporcelain.com/beads.php

    Very odd today it seems to work ok. I've tried it several times over the last week and each time it would do as described above. Today it works properly. Go Figure.

  • Does not meet the system requirement for installing BB App World

    I bought a Curve 8520 in Singapore yesterday. When i tried to download App world into this phone, it says "my phone does not meet the system requirement for the software".  does it refer to hardware specification or the BB O/s version on the phone. How can fix it because being able to use App world is one of the purposes that i buy a BB.
    Also, How about MS Live Messenger , facebook ?  Do I need to install them seperately through App World?
    Please help!

    Hi there!
    Please see these links for reference:
    http://na.blackberry.com/eng/services/appworld/download.jsp#tab_tab_system_requirements
    http://www.blackberry.com/app_includes/devicesoftware/appworld/appworld_availability_en.html
    A key component in accessing AppWorld is your carrier -- if they are not delivering it, then you can't get it. If you don't have an adequate plan from them that incudes it, then you can't get it. Hence, if you meet the hardware requirements AND it is available in your country, then you need to contact your carrier to find out how you can get it via their network.
    All that said, AppWorld is merely a storefront, vending apps developed by others...there are many other storefronts available that don't have the same restrictions.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • When you run Muse 2014 get an error unterminated string constant. Reinstalling does not help. System: Win8.1RU. Help!!!

    When you run Muse 2014 get an error unterminated string constant. Reinstalling does not help. System: Win8.1RU. Help!!!

    Is this occurring on launch? Can you post a screenshot? This isn't an error I recall being reported before.

  • Web Service error: User [oc4jadmin] does not exist in system

    Attempting to create a HelloWorld Web Service (WS) using JDeveloper 10.1.3 and deploying to OAS10g 10.1.3. Create the WS, deploy to OAS10g, test the Service from OAS10g - not a problem!
    Then enable WS-Security and specify a cleartext password - ONLY. Then when test it from OAS10g I get the following output (HTTP Analyzer): User [oc4jadmin] does not exist in system.
    Which is patently false as I login with oc4jadmin!
    Anyone have an idea what is going on here???????
    THANKS - Casey
    P.S. Thanks in advance for any help

    Casey, see if either of these help:
    Securing a Web Service Client Using WS-Security (viewlet)
    http://www.oracle.com/technology/products/jdev/101/viewlets/101/xesecureunitedloanclient_viewlet_swf.html
    Securing Web Services using JDeveloper and WS-Security
    http://www.oracle.com/technology/products/jdev/101/howtos/securews/index.html
    Oracle JDeveloper 10g (10.1.3) Documentation: Working with Web Services
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3/state/content/navId.4/navSetId._/vtAnchor.CJAEHFJD/vtTopicFile.adfdevguide%7Cweb_services%7Ehtm/

Maybe you are looking for

  • [VIA] MSI KT3 Ultra-ARU and a MSI FX5900XT 128MB DDR Video Card

    Does any body out there know if a MSI KT3 Ultra-ARU and a MSI FX5900XT 128MB DDR Video Card will work well together?

  • What Program Should I use?

    Hi, I am not sure where I should be posting this topic so please bear with me. I am currently running my mac connected to a plasma display and it is being used as a promotional display, running quicktime videos and keynote presentations. I want to ma

  • Upgrading SAP-EP(Java) from version 7.0 to 7.1/7.2

    Hi Experts, We have an Application currently working on SAP EP(JAVA) 7.0. We are looking forward to upgrade our EP from 7.0 to higher version (CE 7.1 or CE 7.2). Kindly advise us about issues in this upgrade. Also suggest if upgrade would be better o

  • Getting "Illegal HTML" messages when trying to post?

    I recently installed SuperAdBlocker, an anti-malware and popup blocker. The program works as promised and quite well. Some time after the installation I tried to post an item to the T6x board. I could not post and the Lithium software that powers the

  • Songs stay on iPhone after Match

    After syncing with iMatch in iTunes, the songs are still on the phone.  9GB out of 16GB are audio files.  When connected in iTunes under Music, it says iTunes Match is on, and my iphone can access music in iCloud.  I'm not synching music, but the mus