Having problem with loading Oracle 8.1.7 on Linux-Mandrake 8.0

I have done all necessary files that needed to be downloaded and installed. When i try to run "./runInstaller" it gave me an error saying that a whole bunch of files were unowned and on top it would say System Monitor ok. Please help....Thanks

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Laran Coates ([email protected]):
I've installed the updates for glibc but the installer just hangs at the first screen. I get to the screen where I can click to see previously installed products, deinstall products, or click next to continue with the install. When I click next though nothing happens.
I've done the LD_ASSUME_KERNEL=2.2.5 but it didn't change anything.
Does anyone have any ideas how to resolve this situation?<HR></BLOCKQUOTE>
Are u using KDE? try switching to gnome. I hit this problem after updating to the lastest kdelibs but switching to gnome work fine for me. Remember not to create the database during installation, apply the oracle patch, then everything will be OK.
null

Similar Messages

  • Still having problems with loading cs6 onto new computer. adobe won't contact me?

    I have posted this before and I did what was suggested, but have not had any luck with adobe support.
    Problem: Mac laptop died. I have cs3 and upgrade to cs6 on the laptop, backed up to external hard drive. i'm trying to install now onto my new computer, but can't load it from the external hard drive, so downloaded cs6 upgrade from adobe from my products. i know i purchased and downloaded cs3 from adobe website, but it doesn't show up on my page. so when i download cs6 and it asks for my serial number, i put it in, but then it won't unlock the software because it's not detecting any other software (cs3) on my new computer. i was told that i had to contact adobe tech support, which i have done multiple times, but have not gotten any response back.
    any suggestions?

    Oh that's awesome!
    Yeah, I have done similar things, that's why it came to mind lol
    You're welcome, even though I wasn't a whole lot of help on this issue...
    Have a great evening and feel free to return to the forums if you need any other assistance.
    Benjamin

  • Having Problems with loading a ReportDocument

    Hello all. I've developed an ASP.NET 2.0 application in C#. As per documentation I've previously, my app loads a report based on a file path string. It then sets the logon credentials. When the user views the report, the report sets the necessary parameters accordingly and the ReportViewer sets the ReportDocument object as its datasource.
    The problem I'm having is that the ReportDocument.Load() method seems to take considerably longer than the other functions involved in generating the report. This function takes roughy 20-35 seconds to execute and consequently degrades the performance of the web app. Is there anything that can be done to speed up this method? If not, are there any other methods of generating a report to display in the ReportViewer? I tried using the ReportSource control and it was very unstable. Any help would be greatly appreciated. Thank you.

    Hello Mark:
    You are seeing a "normal" behavior, if this is the case on the load of a first report. Subsequent reports should be significantly faster. Only way to make the first load appear faster is to load the CR assemblies and dlls on app start. E.g.; load a fake report on app start. Unfortunately, those 20+ seconds will now move to the initialization / load of the app...
    Ludek
    BTW., downloading the latest Service packs is never a bad idea and may help a bit, but not 10+ seconds for sure.

  • Having problem with loading music on Nano

    Just updated both the Windows and iPod software and now am experiencing problems. The iPod connects, iTunes starts but the updating takes forever. I think it is done quickly, but don't know for sure as the link between them does not ever state that it's done. I finally have to kill the iTunes to gain control of the iPod. This doesn't seem right. Any suggestions????

    I've got a prob kinda like that.. i have an ipod 20G and i recently got a nano 1G. so i name d ipod and transfer playtlists to it. it all seems fine on itunes but when i disconnect my ipod there's nothin on it!(?)
    also, mine is a 1G ipod but it sez that 588 MB has already been used.. and i havent loaded a single thing onto it..(im absolutely sure i havent loaded a thing)

  • Im having problems with loading Google Maps, it takes a while to load up. This has only started doing this recently.I changed to Mozilla from IE Exporer as that was useless.

    Mozilla runs fine with other web sites but when I use Google Maps it struggles to load up maps. Looks like there is a constant exchange between Google and Mozilla which is slowing up the loading. This has only been happening about 3 weeks ago, it was perfect before that so maybe it could be the Mozilla update that I accepted.

    try replacing the sim card after that it needs to be replaced and since you had some one else open up the phone you would lose the out of warranty replacement price and have to buy a new one at the full retail value

  • Having problems with loading video onto my timeline. Video is from archive  mini tape that has been archived then imported

    I have Final Cut Pro X 10.1.4
    The film I have loaded is from a mini tape JVC VU A308kit...
    I have loaded the film onto an external HD then I archived the video and imported it back into FCP.
    I created  an event then a project.
    I have loaded the project onto a timeline , however the project won't play at a normal speed, it plays in fast motion!!!
    Can you help me???
    Cheers Mr T

    cady0139 wrote:
    I can't get my files into quicktime.
    If you select one of the clips in the browser and look in the Inspector>Info, what does it report at the very top on the panel?
    Do you still have the tape? If you do, you could capture it with QuickTime to avoid getting such small clip fragments,
    Russ

  • Beginner Has Problem With Loading JDBC Driver Using MySQL

    Hi, I am having problem with loading JDBC driver, and need your diagnotic help.
    1. I have installed MySQL (C:\mysql), created a databse (soup), and created a littel table (VIDEOS). I am able to see the table in the console:
    sql> select * from videos
    2. I have downloaded the latest version of Connector/J (mysql-connector-java-3.1.0-alpha.zip), and unzip the zip file into my C:\ directory.
    3. I copied the mysql-connector-java-3.1.0-alpha-bin.jar to the C:\j2sdk1.4.1_02\jre\lib\ext folder and it is in my CLASSPATH
    4. MySQL server is running
    C:\> C:\mysql\bin\mysqld-nt --standalone
    5. open another DOS window and use the database
    mysql>USE SOUP
    6. succesfully compiled a Java program (javac Test.java):
    import java.sql.* ;
    public class Test
    public static void main( String[] args )
    try
    Class.forName("org.gjt.mm.mysql.Driver").newInstance();
    try
    Connection con = DriverManager.getConnection( "jdbc:mysql://localhost:3306/soup" );
    try
    Statement statement = con.createStatement();
    ResultSet rs = statement.executeQuery("SELECT TITLE FROM VIDEOS");
    while ( rs.next() )
    System.out.println( rs.getString( "TITLE" ) );
    rs.close();
    statement.close();
    catch ( SQLException e )
    System.out.println( "JDBC error: " + e );
    finally
    con.close();
    catch( SQLException e )
    System.out.println( "could not get JDBC connection: " + e );
    catch( Exception e )
    System.out.println( "could not load JDBC driver: " + e );
    7. when I run the Java program (java Test), I got
    the message:
    could not load JDBC driver: java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver
    What am I missing?

    Hi,
    I missed to specify test in my last post.
    Try running your program by explicitly setting the classspath when
    running your program . java -classpath c:\mysql-connector-java-3.1.0-alpha-bin.jar test
    Make sure your jar file contains org.gjt.mm.mysql.Driver class

  • Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Having problems with Bridge shutting down after saving photo in PS Cs5,,,,,,,,,  Also when i attempt to update either PS or bridge get an error message in Adobe application manger "Error loading updater workflow"

    Sorry for the late reply. My email firewall has become a little over zealous & sent a lot of my emails straight to my junk email folder, so I have only just now discovered your reply in my junk mail folder.
    The only "don't open files exceeding xxx megabytes" instruction I can find in my Prefs, is in the Bridge Prefs for Thumbnails, & mine is set at 1000mb. The biggest files I handle are bigger than 200mb so I should be able to open a few, not just one.
    However, this doesn't explain why I can open a psd format file of 180mb, close it, but then can't open a RAW format file of only 26mb immediately after.
    I can open the RAW file only if I restart my computer - very annoying!
    However, thanks for the advice about the video card & memory.
    So, I'm still stuck as to what the issue is.

  • Im having problems with Safari 5.1.10. I often have several tabs open on screen. And after a while the links/websites become not active. So if click on a tab and want open a previous website it than has to re-load again in the window. Can I change this ?

    Im having problems with Safari 5.1.10. I often have several tabs open and after a while the links/websites become not active. So if click on a tab and want open a previous website it than has to re-load again in the window. Can I change this ?
    Kind regards,
    Faroek Abdoelrahman
    The Netehrlands

    Empty the Safari cache more often.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Quit and relaunch Safari to test.

  • I'm having problems with Twitter loading up a completely blank page and no longer displaying content and with Bloomberg not playing videos

    I'm having problems with Twitter not loading up content and showing me a blank page. I've tried to empty the browser cache but it doesn't seem to work.
    I also have issues with Bloomberg not playing videos

    Try clearing cookies and cache:
    [[How to clear the cache]]
    [[Deleting cookies]]
    Otherwise use firefox in [[Safe Mode]];
    Also try [[Troubleshooting extensions and themes]]

  • I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post wont work as it

    I still am having problems with Aperture not loading,  It just refuses to work, and I get the message saying it has encountered a problem, and I may need to re-install which I have done dozens of times. The fix mentioned on an earlier post doesn't work as it is for Ver 10.6.6 and I am running 10.6.7

    Do you have Final Cut installed on your machine?
    If so, you may want to look at this article: http://support.apple.com/kb/TS3528
    Let us know if that helps.

  • Is anyone having problems with the facebook app - just shuts down before it even loads - frustrating!

    Is anyone having problems with the facebook app - just shuts down before it even loads - frustrating!

    Hi Robk573,
    Thanks for visiting Apple Support Communities.
    I'd suggest the steps in our iPad troubleshooting assistant:
    https://www.apple.com/support/ipad/assistant/application/
    Best,
    Jeremy

  • Anyone having problems with the Abc app no loading since it has been added?

    Anyone having problems with the Abc app no loading since it has been added?

    Hi Popalotofstyle,
    Thanks for using Apple Support Communities.  It may be worth trying a restart of your Apple TV to see if that allows the ABC app to load:
    Apple TV: How to restart your Apple TV
    http://support.apple.com/kb/ht3180
    Cheers,
    - Ari

  • I'm having problems with my memory load

    I'm having problems with my memory load, because I have a few photos on my iPhone 5 (32GB) and has been detected that I am using 10GB of photos, and I only have 1,000 photos. Could someone help me?

    Hi Fehmi76,
    The article linked below details how to go about seeing what apps on your iPhone are using what amounts of space.
    See how much storage you've used on your iPhone, iPad, and iPod touch
    https://support.apple.com/en-us/HT201656
    Regards,
    Allen

  • I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    I am having problems with my droid incredible 2 loading texts and so I thought maybe I had too many saved, I tried to delete some of them and it wont seem to delete either?

    Did you pull the battery?

Maybe you are looking for

  • "Given final block not properly padded" when using wrong secretKey

    Hello guys, I browsed the questions in this forum regarding my problem, but somehow couldn't find a solution to this. I generated two SecretKey key1 and key2. Now I'm using the Cipher class to encrypt a message to key1. If I try to decrypt it with ke

  • Oracle Reports Intergration

    We have intergrated Oracle reports with HTML DB, but how do I display the report to the screen once it has been run.

  • From mac itunes trying to update my ipad

    is anyone else having a similar issue?

  • Reg..SRM - MDM Queries.

    Hi, We are implementing SRM5.0 with SRM-MDM 2.0 We have implemented the Standard Functionality of SRM-MDM2.0 without XI. We have some doubts pertaining to SRM-MDM2.0 1) Why Key Mappings are required? 2) What is the purpose of Linking Attributes with

  • E72 - Phone loses contact info/ sms messages after...

    Hi  I switched from a win mo IPAQ to the E72 ..I absolutely love this device!  The problem i am facing is that everytime I connect to the PC Suite i lose part or sometimes my entire inbox content. The first time i connected to the suite it wiped out