OpenOffice,xscreensaver,gnome-libs not in OEL 5.5

Hallo!I recently installed Oracle 10g in OEL 5.5.Some of the prerequisite software needed to install 10g rpms e.g xscreensaver and gnome-libs are not in the OEL 5.5 installation CDs/DVD.
Though I successfully installed Oracle 10g in OEL 5.5,I am concerned that the lack of these s/w mentioned above could result in future errors.Is this so and if it is,what are the nature of the problems that I might get.
I was also surprised that OpenOffice also isnt there.
All these rpms are available in OEL 4.7 where I had previously installed Oracle 10g.
Thanks.

Requirements for 10gR2 were made for OEL 4.7.
Regarding gnome-libs, there is a compatibility library already installed as part of the gdbm-1.8.0-xx.x.x install. To satisfy the 10g installer requirements you can ceate the following symlink: ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2
You can also use runInstaller -ignoreSysPrereqs.
The following url addresses 10gR2 installation on OEL5:
Re: Oracle 10g r2 for OEL5
EPEL will give you additional packages from Fedora distribution that you can install with yum
sudo su -
rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpmOpenOffice: http://download.openoffice.org/ (or maybe check out Koffice if it will suit your needs).
Edited by: Markus Waldorf on Sep 13, 2010 8:05 PM

Similar Messages

  • Gnome-libs error

    gnome-libs is not installing
    shows failed dipendancies
    orbit is needed
    gtk+
    imlib
    libiiop.so.0
    wher we can install this
    is it needed for R12 installation

    Asico,
    Please review Note: 401167.1 - Defining a "default RPMs" installation of the Oracle Enterprise Linux (OEL) OS
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=401167.1

  • Can't compile gnome-libs

    Yes... I know gtk1 and gnome-libs are horribly outdated but until there is a terminal that has *all* the features of multi-gnome-terminal I'm dependent on it
    So... I'm trying to compile gnome-libs 1.4.1.2 and ./configure breaks at the following point
    checking for dbopen... no
    checking for dbopen in -ldb... no
    checking for dbopen in -ldb1... no
    checking for __db185_open in -ldb-3... no
    configure: error: Your db library is missing db 1.85 compatibility mode
    I tried ABS to add the compilation flag, but it already seems to be there:
    build() {
    cd $startdir/src/$pkgname-$pkgver/build_unix
    ../dist/configure --prefix=/usr --enable-compat185 \
    --enable-shared --enable-static --enable-cxx
    I rebuilt it anyway but to no avail.
    Anyone know why ./configure doesn't think db has 1.85 compatibility and how to rectify?

    i'm afraid not... It does create a new set of lib files (libdb3 opposed to libdb4) and I even removed the libdb4 files to incase somehow it was still finding those but I can't get over that error.
    I'm trying a different route now though - I used pkgextract to extract a gnome-libs RPM and I'll just plop those in place.  I tried that for all of multi-gnome-terminals dependencies but it croaked upon started so I'll try with just gnome-libs and compiling the rest.

  • OpenOffice Presenter Console Extension not working anymore

    I have previously done presentations using OO impress, which worked reasonably well. Now after some time I have to do another (important!) one, using the new version 3.2.1., and it's a terrible experience. First I tried the normal openoffice-base, which immediately crashed when quitting the slideshow. I found a thread regarding this (see https://bbs.archlinux.org/viewtopic.php?id=98617 ) which recommended to switch to go-openoffice (still, I'm absolutely baffled as to how such a grave bug can exist in a stable release, but anyway...).
    So I did switch to go-openoffice. It does not crash anymore, but then I had to witness that the Sun Presenter Console Extension is no longer working. This extension (which should be an integral part of openoffice anyway) is really important to me, since it shows me the next slide, notes and a timer on my laptop during the presentation. I re-installed openoffice-base, but it doesn't work there either, nor does it work with openoffice-base-devel (which was practically unusable anyway due to crashes, but I can understand that for a devel version).
    Hence my question: Did anyone manage to get the Presenter Console Extension working, preferably with go-openoffice, version 3.2.1?

    Argh... I didn't see that go-openoffice already ships with a new version of the presenter extension in /usr/lib/go-openoffice. After installing this one, it worked! It's strange though - this version shows the version number "1.1.0", whereas on the official page the latest version is still 1.0.3.? Ah well, who cares. I can finally work on my slides. :-) Sorry for the noise, I should have read the wiki page more carefully.

  • Gnome-libs missing from OEL5?

    I'm trying to install HTTP Server off the 10.2 companion CD on OEL5. (Yes I know, unsupported!) I'm running into the "libdb.so.2 missing" issue and trying to troubleshoot it.
    From what I've gathered, this file used to be a part of other libraries, but eventually moved into compat-db at some point. However, it no longer appears to be part of the compat-db that ships with OEL5 (compat-db-4.2.52-5.1). Instead I've gathered that it's now found in gnome-libs (confirmed this from FC6 through yum whatprovides libdb.so.2 against a FC6 repository).
    gnome-libs does not appear to be part of OEL5... is that normal? Trying to find a sane place to download it from...

    By the way, I just forcibly installed gnome-libs from FC7 and the HTTP server starts...

  • Compiling gnome-libs for gnucash

    I'm trying to install gnucash. The dependencies include gnome-libs 1.4 . I'm compiling gnome-libs but I get an error:
    #define art_alloc
    #define art_free
    #define art_realloc
    #define art_new (type, n)
    #define art_renew (p, type, n)
    Description
    These API functions are a set of wrapper functions around the OS-specific
    memory management functions: they are used to keep the user-level code portable.
    Their definitions are straighforward so we will not get into any details.
    XXX: check for g_new behaviour when memory allocation problem.
    Details
    art_alloc
    art_alloc#define art_alloc malloc
    Same semantics as those of the standard C malloc function.
    art_free
    art_free#define art_free free
    Same semantics as those of the standard C free function.
    art_realloc
    art_realloc#define art_realloc realloc
    Same semantics as those of the standard C realloc function.
    art_new()
    art_new#define art_new(type, n) ((type *)art_alloc ((n) * sizeof(type)))
    This macro is not equivalent to the glib g_new function. As
    g_new, it takes two parameters: the type of the object to
    instantiate as first parameter and the number of such objects to instantiate as
    second parameter. It will return a dynamically allocated array of memory you can
    use to store objects in. In case of failure of the memory allocation, it will
    return NULL (this is very diffrent from g_new which does not
    return in case of failure. g_new allways suceeds).typemake[4]: *** [html-build.stamp] Error 1
    make[4]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl/doc'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl'
    make[2]: *** [all-recursive-am] Error 2
    make[2]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2/libart_lgpl'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/ovihc/sources/gnome-libs-1.4.2'
    make: *** [all-recursive-am] Error 2
    I already installed g-wrap & ORbit & slib . when i type "./configure" it exits very well without any errors. What dependency do I need or what is the problem? My archlinux is already upgraded. This error is when I type "make".
    Thanks.

    AFAIK the gtk2 port of gnucash has a long way to go before it is usable, hence the lack of attention given to it on the website.
    But it is possible to run gnucash on archlinux - I've been doing this for a couple of months.
    If you want to have a play with the pkgbuilds I used for this, grab http://www.burnett-hall.co.uk/~ojbh/arc … 722.tar.gz.  There isn't anything too surprising in there; a few fixes for stuff like gcc-3.4, freetype2, etc. 
    Note that this includes a package I've called gdk-pixbuf-gnome-canvas.  gdk-pixbuf is part of current, but does not include gnome1 support.  You'll need to use --force or something to get pacman to install it.
    gnome-libs build fine for me; I'm not sure what's causing the errors you got - they look very strange.  Were you doing a parallel make or using some silly gcc optimisations?
    - olly

  • Gnome terminal not opening

    Hi
    I have a problem with the gnome terminal not opening at all on Solaris 8/07 (Sun Ultra 24). No error message is output, the terminal simply fails to open.
    Help appreciated
    Lance

    Incidentally, the problem started after I tried to install a wireless network driver (Ralink). (see description for installation at http://www.opensolaris.org/os/community/laptop/wireless/ral/)
    ./gnome-terminal yields:
    >>>
    ld.so.1: gnome-terminal: fatal: libvte.so.4: open failed: No such file or directory
    Killed
    <<<
    truss ./gnome-terminal is more elaborate:
    >>>
    execve("gnome-terminal", 0x08047F10, 0x08087F18) argc = 1
    resolvepath("/usr/lib/ld.so.1", "/lib/ld.so.1", 1023) = 12
    mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xCE7C0000
    getcwd("/a/usr/bin", 1008)
    resolvepath("/a/usr/bin/gnome-terminal", "/a/usr/bin/gnome-terminal", 1023) = 25
    xstat(2, "/a/usr/bin/gnome-terminal", 0x08047CE8) = 0
    open("/var/ld/ld.config", O_RDONLY) Err#2 ENOENT
    sysconfig(_CONFIG_PAGESIZE) = 4096
    xstat(2, "/usr/sfw/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    xstat(2, "/usr/openwin/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    xstat(2, "/usr/openwin/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    xstat(2, "/usr/openwin/sfw/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    xstat(2, "/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    xstat(2, "/usr/lib/libvte.so.4", 0x08047530) Err#2 ENOENT
    ld.so.1: gnome-terminal: fatal: libvte.so.4: open failed: No such file or directory
    write(2, " ld . so . 1 : g n o".., 84) = 84
    lwp_self() = 1
    <<<

  • [NOT SOLVED] Gnome will not start

    I'm editing this original message by way of summing up so that anyone coming here with a similar problem will know what to expect if they read further:
    I believe the reason Gnome would not start on the machine in question was that it made too many demands on the available hardware (see desm0te's comments below).
    For this reason I decided to switch to LXDE as Desktop Environment which works well on the restricted hardware. I did not investigate the Gnome related problem any further.
    The original message follows:
    After a successful installation of the basic command-line Arch according to the Beginner's Guide, I went on to install Gnome according to instructions in the Wiki.
    I Did not want Gnome to start automatically but only when I type in the command startx.
    This it does, but all I get is the nice blue "curtain" background - no black bar at top of screen with Actions, date , name etc...
    and no cursor.
    One funny thing was - this afternoon while I was concentrating on another machine - the black bar suddenly appeared (apparently for no reason) showing the date and my name but with the X cursor
    from the X11 environment. However as soon as I moved this cursor to the bar and clicked, both dursor and bar disappeared never to return .
    I decided to redirect the stderr of startx to a file in the hope that it would give a clue as to what was wrong.
    X.Org X Server 1.11.4
    Release Date: 2012-01-27
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.2.2-1-ARCH i686
    Current Operating System: Linux pdv 3.2.2-1-ARCH #1 SMP PREEMPT Thu Jan 26 08:28:27 UTC 2012 i686
    Kernel command line: root=/dev/sda1 ro vga=773
    Build Date: 29 January 2012 03:41:53PM
    Current version of pixman: 0.24.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 3 21:13:19 2012
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (EE) Failed to load module "vesa" (module does not exist, 0)
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    [10f] 320 x 200, 70Hz
    [134] 320 x 240, 72Hz
    [144] 400 x 300, 72Hz
    [154] 512 x 384, 70Hz
    [11e] 640 x 400, 70Hz
    [112] 640 x 480, 60Hz, 75Hz, 85Hz, 100Hz, 160Hz
    [115] 800 x 600, 60Hz, 75Hz, 85Hz
    [118] 1024 x 768, 60Hz, 70Hz, 75Hz, 85Hz, 100Hz, 130Hz
    [17b] 1280 x 768, 60Hz
    [16a] 1280 x 960, 60Hz, 85Hz
    [11b] 1280 x 1024, 60Hz, 75Hz, 85Hz, 100Hz
    [13e] 1400 x 1050, 60Hz, 75Hz
    [124] 1600 x 1200, 60Hz
    (gnome-shell:770): Clutter-CRITICAL **: Unable to initialize Clutter: Unable to find suitable fbconfig for the GLX context: Failed to find any compatible fbconfigs
    Window manager error: Unable to initialize Clutter.
    Failed to play sound: File or data not found
    Tracker-Message: Setting up monitor for changes to config file:'/home/dick/.config/tracker/tracker-miner-fs.cf** Message: applet now removed from the notification area
    (nm-applet:789): libnotify-WARNING **: Failed to connect to proxy
    ** (nm-applet:789): WARNING **: get_all_cb: couldn't retrieve system settings properties: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:789): WARNING **: fetch_connections_done: error fetching connections: (25) Launch helper exited with unknown return code 1.
    ** (nm-applet:789): WARNING **: Failed to register as an agent: (25) Launch helper exited with unknown return code 1
    Tracker-Message: Setting up monitor for changes to config file:'/home/dick/.config/tracker/tracker-store.cfg'
    (tracker-store:791): Tracker-CRITICAL **: D-Bus service name:'org.freedesktop.Tracker1' is already taken, perhaps the daemon is already running?
    (tracker-miner-fs:788): Tracker-CRITICAL **: Empty locale file found at '/home/dick/.cache/tracker/miner-applications-locale.txt'
    (gnome-settings-daemon:668): color-plugin-WARNING **: failed to get edid: unable to get EDID for output
    (tracker-miner-fs:788): Tracker-WARNING **: Couldn't properly parse desktop file 'file:///usr/share/applications/brasero-nautilus.desktop': 'Desktop file doesn't contain type'
    (tracker-miner-fs:788): Tracker-CRITICAL **: Empty locale file found at '/home/dick/.cache/tracker/miner-applications-locale.txt'
    xinit: connection to X server lost
    waiting for X server to shut down gnome-session[655]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Server terminated successfully (0). Closing log file.
    (tracker-miner-fs:788): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is closed
    (tracker-miner-fs:788): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is closed
    (tracker-miner-fs:788): GLib-GIO-CRITICAL **: Error while sending AddMatch() message: The connection is closed
    (tracker-miner-fs:788): GVFS-RemoteVolumeMonitor-WARNING **: cannot remove match rule 'type='signal',interface='org.gtk.Private.RemoteVolumeMonitor',sender='org.gtk.Private.GduVolumeMonitor',': org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    (tracker-miner-fs:788): GVFS-RemoteVolumeMonitor-WARNING **: cannot remove match rule 'type='signal',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0='org.gtk.Private.GduVolumeMonitor'': org.freedesktop.DBus.Error.Disconnected: Connection is closed
    xinit: unexpected signal 2
    If this gives clues could someone please point me in the right direction? Are the two EE messages significant (Failed to load modules "vesa" and "fbdev"). What is Clutter*? What should I do to get it initialized?
    Thanks for any help.
    Dick Summerfield (aka Battus).
    * Sorry about that - it's an open source graphics library for creating hardware-accelerated user interfaces - but am I any the wiser for that
    Last edited by Battus (2012-02-21 19:48:23)

    desm0tes:
    To take your points one by one:
    1. I am now quite happy with LXDE too. The problems I mentioned last night seem to have gone (???!!!) and I can just start LXDE from my user account. Maybe later, I'll realize what I was doing wrong or rather what I did to make it work... . Now I just type:
    startx
    having put:
    exec ck-launch-session startlxde
    in .xinitrc.
    2. Thanks for the tip about yaourt. I shall try that sooner or later.
    3. Well as I said - I don't understand what I was doing wrong -  which makes me feel a bit stupid and is rather annoying but looking on the bright side it's fine to be able to start-up, have a legible screen and logout successfully - which I couln't do before. I now have to figure out how to expand the contents of LXDE a bit but that's the fun of it!
    LXDE starts up nicely with minimal possibilties but I can change look & feel and customize the panel settings.
    "Menu" contains:
        Accessories:
            File Manager
            Image Viewer
            LXTerminal
            Leafpad
            Xarchiver
        Internet:
            Avahi SSH Server Browser
            Avahi VNC Server Browser
        Office:
            ePDFViewer
        System Tools:
            Avahi Zerconf Browser
            Task Manager
        Preferences:
            Customize Look and Feel
            Monitor Settings
            OPenbox Configuration Maanger
            Preferred Applications
        Run
        Logout
    All of these start up OK and work, on cursory examination, except the Avahi Browsers which I don't understand and which appear to do nothing as no window appears on screen.
    4. I'm not quite sure I can yet see the use of a login manager such as SLiM, since I seem to get on quite nicely without it but since I've heard it mentioned a lot I'm sure I'm just missing the point.
    Dick Summerfield (aka Battus)
    Last edited by Battus (2012-02-06 19:56:30)

  • [SOLVED] Gnome does not mount ipod after system upgrade

    I did a system upgrade today (2009.12.04) and now gnome does not mount my ipod video (gnome used to mount the ipod without problems before de upgrade).
    Here is some information about the system messages:
    Last lines of the output of dmesg before plugging the ipod:
    wlan0: associated
    ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    wlan0: no IPv6 routers present
    After plugging it:
    wlan0: associated
    ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    wlan0: no IPv6 routers present
    usb 1-4: new high speed USB device using ehci_hcd and address 3
    usb 1-4: configuration #1 chosen from 2 choices
    Initializing USB Mass Storage driver...
    scsi6 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 3
    usb-storage: waiting for device to settle before scanning
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    usb 1-4: reset high speed USB device using ehci_hcd and address 3
    usb 1-4: reset high speed USB device using ehci_hcd and address 3
    usb 1-4: reset high speed USB device using ehci_hcd and address 3
    usb 1-4: reset high speed USB device using ehci_hcd and address 3
    usb 1-4: reset high speed USB device using ehci_hcd and address 3
    scsi 6:0:0:0: Device offlined - not ready after error recovery
    usb-storage: device scan complete
    The output of the lsusb command:
    [miguel@miguel ~]$ lsusb
    Bus 002 Device 002: ID 0408:030c Quanta Computer, Inc. HP Webcam
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 002: ID 08ff:2580 AuthenTec, Inc. AES2501 Fingerprint Sensor
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 001 Device 003: ID 05ac:1209 Apple, Inc. iPod Video
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    lsusb shows ipod is in Bus 001
    Any help?
    Many tks
    Last edited by mmf1902 (2009-12-29 04:42:11)

    Finally found the problem was the Ipod itself. After a soft reset everything worked again.

  • Fatal error Labview.lib not called from a Labview process

    in teststand my vi works fine with adapter set for LV development
    when I configure the LV adapter for runtime, I get fatal error Labview.lib not called from a Labview process
    what is going on?
    how do I fix it?
    thanks.

    Howdy Stephen -
    Are you by chance calling a LabVIEW DLL within your LabVIEW VI which is being called from TestStand?  I know this error occurs when a LabVIEW DLL built in a different version of LabVIEW than the selected Run-time Engine.
    Here is a KnowledgeBase which references the issue:
    KnowledgeBase 203EA3XC: LabVIEW.LIB Error When Calling a LabVIEW DLL Built with VIs That Use Externa...
    If this is the case, you will need to open the LabVIEW DLL source VI in the LabVIEW version you are using and rebuild the DLL.
    Thanks and have a great day!
    Regards,
    Andrew W || Applications Engineer
    National Instruments

  • Danish Keyboard Layout working in Gnome but not in Kde

    Hi!,
    I'm trying to get to work the Danish Keyboard layout in Kde, with no success. In Gnome it works fine, but in Kde (or well, any Qt based app), when I hit å, ø, or try to write accents, I get two white quads instead of the correct character.  It works if I write them in a gtk aplication, copy and paste in a kde app.. but...
    Does anyone knows what can be possibly happening?
    My xorg.conf has
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "dk"
    and Kde is configured to use the DK Layout.
    thanks!
    silencer
    ps. I wrote this in gnome

    Ouh, no.. I have another problem
    I want the language (for apps like gcc, or mc) to be english, not danish, so I replaced in rc.conf da_DK.utf8 by en_DK.utf8, and got the language as english, but now.. accents doesn't work anymore. They do work, again, under gnome, but not in kde.  Any ideas?
    thanks a lot
    silencer

  • C:\lib not found after run asant

    I found result that was C:\lib not found. After run asant build the exercise date and bookstore, I can see the result C:\lib not found in dos prompt.Why? What lib I need ? It worked for hello1 and hello3.I think I installed the javahome and j2ee home probably.If someone know,Could you show me the right way?
    After I run like.. asant build.xml .. the result was build.xml file doesnt exit in this project.
    Show me the right way pls.
    Thanks

    try specifying the j2ee.home explicitly in examples/common/build.properties:
    for example:
    j2ee.home=H:\Sun\\AppServer

  • Why wlserver_10.3\server\lib not found?

    Hello, I was following a cue card in Jdev to install the database schema when I got this error:
    BUILD FAILED
    C:\Documents and Settings\hb\My Documents\Downloads\FusionOrderDemo_R1PS3\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\Documents and Settings\hb\My Documents\Downloads\FusionOrderDemo_R1PS3\Infrastructure\DBSchema\build.xml:91: The following error occurred while executing this line:
    C:\Documents and Settings\hb\My Documents\Downloads\FusionOrderDemo_R1PS3\Infrastructure\DBSchema\build.xml:56: The following error occurred while executing this line:
    C:\Documents and Settings\hb\My Documents\Downloads\FusionOrderDemo_R1PS3\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Line 28 is this:
    <sql driver="${jdbc.driver}" url="${jdbc.url}" userid="@{username}"
    password="@{password}" classpathref="oracle.jdbc.path"
    src="@{script}" onerror="@{onerror}"/>
    So does this mean the JDBC driver path is incorrect? I have installed the whole JDev suite and Oracle 10g XE, so I guess the driver is not missing? How can I check this? Thank you.

    Out of the box, build.properties doesn't have those entries. I have followed these cue card steps before, on another machine, and it worked right out of the box. Does this have anything to do with the environment variables like ORACLE_HOME, ...?
    Here's build.properties:
    # Base Directory for library lookup
    jdeveloper.home=C:/Oracle/Middleware/jdeveloper/jdeveloper
    src.home=..//..
    # JDBC info used to create Schema
    jdbc.driver=oracle.jdbc.OracleDriver
    jdbc.urlBase=jdbc:oracle:thin:@localhost
    jdbc.port=1521
    jdbc.sid=XE
    # Information about the default setup for the demo user.
    db.adminUser=system
    db.demoUser=FOD
    db.demoUser.password=fusion
    db.demoUser.tablespace=USERS
    db.demoUser.tempTablespace=TEMP

  • LIB not enabled ............Mean's what ?

    P4#sh mpls ip binding vrf cust1 44.44.44.44 32
    LIB not enabled

    What i was trying to say was that label exchange for vpn prefixes doesnt use LDP and instead uses BGP so there will be no LIB for VPN prefixes. However if you do carrier-supporting-carrier on the last mile with a customer with LDP, then you can see LIB information for the customer in the LDP session.
    I really hope sanjeewa can add some clarity on the line cards (not sure this will change with line cards).

  • Asant command ..error C:\lib not found

    I am using asant command compile and copy my files(servlets) ...but for some reason I am getting an error that says C::\lib not found can anyone tell me why I am getting this error

    You need to set the j2ee.home property as described in the About chapter:
    http://java.sun.com/j2ee/1.4/docs/tutorial/doc/About.html#wp63740
    -Ian Evans
    Sun Microsystems
    J2EE Tutorial Team

Maybe you are looking for

  • File Dialog (Details View and Multiple Selections for View File Type)

    I would like to use the generic windows dialog box found in the toolbar under: File I/O/Advanced File Functions/File Dialog What I would like to do is have multiple selections for the file type, for example one menu selection is *.txt, another is *.r

  • Is there any limit on JavaScript code used in forms?

    Hi, Is there any limit on JavaScript code that we can put in the submit button JavaScript Event Handler's 'onClick' event ? I have a code wherein I am calling alert 100 times , but till 90 times it works and if I include the last 10 alerts in the cod

  • Add video capture feature to CIVideoDemoGL

    Hello, I'm a little bit stuck with the CIVideoDemoGL. How do I add video capture feature to this demo instead of using a file as input? I know how I capture the video stream from camera and captureOutput:didOutputVideoFrame:withSampleBuffer:fromConne

  • Ni 5112 soft front panel

    Hi: Can you tell me how to mesuare a voltage of 5.1V on soft front panel? Because I got 5.1 volts on soft front panel, but it stop there and it did not go back to 0V in a horizontal line. When I used the real osciloscope, I can get that and it will r

  • Please...someone give me some ideas

    I have a new 5.5 ipod. I downloaded a video podcast that is in mpeg-4 format which I think is ok because other tv shows I've downloaded are in that form. It gives me a message that it can't put that video on my ipod because my ipod doesn't support or