8i installation on RH6.0 - just hangs

Trying to run ./runInstaller from /mnt/cdrom originally gave me
the following:
[oracle@dev cdrom]$ ./runInstaller
Initializing Java Virtual Machine from /usr/local/jre/bin/jre.
Please wait...
Error in CreateOUIProcess(): -1
: No such file or directory
I made a link:
[root@dev local]# ln -s /dvl/jre116_v5/bin /usr/local/jre/bin
Now, when I try to run installer again, the screen flashes a
window for a very brief moment, can't even read what's on it,
then it just hangs forever:
[oracle@dev cdrom]$ ./runInstaller
Initializing Java Virtual Machine from /usr/local/jre/bin/jre.
Please wait...
(and so I wait... And wait... and wait)
According to JRE1.1.6v5 installation notes, there is no need to
set CLASSPATH - just add bin subdirectory of JRE to PATH.
DISPLAY is set properly, PATH includes /dvl/jre116_v5/bin
Any help is greatly appreciated.
Thanks,
Oleg
null

Oleg (guest) wrote:
: Well, it failed again. I think I saw something about
: "segmentation fault" in the terminal window before it closed.
: Any ideas? I did not modify and rebuild the kernel. Could that
be
: it?
: Thanks.
: Oleg
: Oleg (guest) wrote:
: : Kurt Hannigan (guest) wrote:
: : : Good going!!
: : : I am right on your heels.
: : : JRE is hanging for my install also.
: : : I will now try your fix and post upda
: : Installer went through all the dialogs fine, started
: : installation, and at appr. 79% of completion crashed. Just
: : disappeared. Trying to find anything in the installation log
: : these are the last couple of lines from it:
: : , [oratypes.h ->%ORACLE_HOME%/rdbms/demo/oratypes.h 9438
plats=0=>[453,173,46,467,295,87,610,198,918,913,162,2,30,111,90,1
: : 68,888]
langs=0=>[en,fr,ar,bn,pt_BR,bg,fr_CA,ca,hr,cs,da,nl,ar_EG,en_GB,e
t,fi,de,el,iw,hu,is,id,it,ja,ko,es,lv,lt,ms,es_MX,no,pl,pt,ro,ru,
: : zh_CN,sk,sl,es_ES,sv,th,zh_TW,tr,uk,vi]]
: : DllGroup = false
: : Any ideas????
Yes, kernel has to be recompiled with recomended values.
I have attached a related reply from OTN team. It answers to some
common problems. I hope it can be useful.
John Palmer
Re: An update from the OTN team...
From: Oracle Technology Network Team
Email: [email protected]
Date: Fri Aug 06 21:23 CDT 1999
Having checked in with the development team please find below
their response to your comments/questions:
line 118 in my install log file at :
/usr/local/oracle/u01/app/oracle/oraInventory/logs/installActions
.log says :
platGroup = WINDOWS
And this is on Linux!!! Maybe the Oracle folks are forgetting
that Linux users are a little too sensitive to these kind of
mistakes. :)
This also supports my theory that the new installer is a gift
from Windows programmers. Who are not too familiar with the
idea of being able to send their video display to any computer
around the world and work from there. A feature every Linux
user takes for granted The Oracle Universal Installer is used to install Oracle products
on both Windows and Unix platforms. For every action performed by
the installer, there is a check to see if the platform on which
installation is going on is Windows or Unix. Based on the Query
result it performs a certain action and these are written to the
log file.
The log file should like:
platGroup = WINDOWS
Query returned : false
as Linux belongs to Unix platform group.
The installation types screen list 3 options: Typical, Minimal
and Custom. Somehow Minimal takes more disk space >
(642MB)compared to Typical (585 MB). Well that is what the
installation screen says. I have not tried to install using
the minimal install. The Oracle Software Packager which is used to create the shiphome
doesn't seem to report the correct size of the components and so
this inconsistency.
The installation cant figure out how much free space is
available on the / partition. Is it that hard? Its gives
warnings about how I may not have enough space. The free disk space calculation is done as follows:
((# free blocks) * (block size)) / 1024 in KB
The multiplication might have resulted in an overflow and
displaying the
wrong figures.
dbassist cant find the cdrom if you try to install the default
database from CDROM. It says cannot find CDROM even if you
have all your stuff under /mnt/cdrom dbassist script cannot be run from the shiphome on a CD. It can
only be run from the installed ORACLE_HOME.
The docs talk about software mount points and data mount points
/u01 /u02 /u03 and /u04 that I created, but I could not find
anywhere to specify them like I was able to, with the last
release.
Database Creation Assistant doesn't understand OFA. It wants
to put all of the database files /u01/app/oracle/oradata/<sid>
! Database Creation Assistant will sometimes prevent editing
the data file names to put them in OFA compliant directories. In DataBase Configuration Assistant, select the type of database
to create to be "custom" and create the database which allows to
give different paths for various database files and control
files.
"Oracle Protocol Support" section during the install shows no
options at all. What happened to good ole Net8? Only the TCP/IP adapter is supported which is default and
built-in, and so the screen is blank.
Some executables in the $ORACLE_HOME/bin directory do not have
execute permissions. "root.sh" script needs to be run when prompted by the installer
to set the appropriate permissions.
Zero length library file $ORACLE_HOME/lib/libnjni8.so.
Netasst doesn't work without it. Someone said they posted the
source code to the comp.databases.oracle.server newsgroup, but
I can't find it. and many libraries are zero length. This was noted internally also. We shall be providing a patch to
be released soon with the correct libraries.
Database Creation Assistant thinks dbmssql.sql is called
dbmssml.sql. The file $ORACLE_HOME/rdbms/admin/dbmssml.sql gets instantiated
from $ORACLE_HOME/rdbms/install/sbs/dbmssml.sbs at install time
and it's not getting instantiated. Also, the instantiated SQL
script uses $ORACLE_HOME/lib/libqsmashr.so.
Get the shared library libqsmashr.so which will be provided in
the patch to be released soon and copy it to $ORACLE_HOME/lib.
Run the generated SQL script (dbmssml.sql) from the file
$ORACLE_HOME/rdbms/install/sbs/dbmssml.sbs by replacing the
%ORACLE_HOME% with the actual path to ORACLE_HOME. Copy the
generated SQL script to $ORACLE_HOME/rdbms/admin.
Building the Intelligent Agent with TCL 7.5 causes a cascade
of undefined references when running gmake -f ins_oemagent.mk
agent The makefile $ORACLE_HOME/network/lib/ins_oemagent.mk is
incorrect.
Get the makefile ins_oemagent.mk from the patch to be released
soon and copy it to $ORACLE_HOME/network/lib
OR
in the mean time modify $ORACLE_HOME/network/lib/ins_oemagent.mk
as follows:
- replace -R$(LIBHOME) with -Wl,-rpath,$(LIBHOME) on line 20
(make sure to type entire option as one word, do not leave any
blank spaces in-between)
- replace the make rules for dbsnmp target with (while adding
these lines, for the first line keyin <tab> as the first
character)
$(LDCCOM) $(DBSNMPMAI) $(OSMMAI_STUB) $(LLIBNMI) $(LLIBNMS)
$(LLIBNMD) \
$(LLIBVPPDC) -lnms0 $(LSNMPLIB) $(SQLLIBS) $(DXALIBS) \
$(DEF_OPT) $(SSDBAED) $(TTLIBS) $(LLIBTCL) $(SNMPAGENTLIB) \
-ldl -lm -lcrypt -lc
- replace the make rules for oemevent target with ((while
adding these
lines, for the first line keyin <tab> as the first
character)
$(LDCCOM) $(OEMEVENTMAI) $(LLIBNMI) $(LLIBNMS) $(LLIBNMD)
-lnms0 \
$(SQLLIBS) $(DXALIBS) $(DEF_OPT) $(SSDBAED) $(TTLIBS)
$(LLIBTCL) \
$(SNMPAGENTLIB) -ldl -lm -lcrypt -lc
Set ORACLE_HOME and link the executables,
gmake -f ins_oemagent.mk agent
We hope this helps to clarify your issues.
Oracle Technology Network
http://technet.oracle.com
null

Similar Messages

  • Adobe installer just hangs when I try to update Creative Cloud, how can I fix?

    Adobe installer just hangs when I try to update Creative Cloud, how can I fix?

    Hi Totti Pointer,
    Please follow the below mentioned steps:
    1. Navigate to Application/Utilities/Adobe Installers and uninstall CC desktop.
    2. In Application/Utilities/ trash Adobe Creative Cloud and Adobe Application Manager folder.
    3. Go to Library/Application Support/Adobe and rename OOBE to OOBE.old.
    4. Go to ~/Library/Appplication Support/Adobe and trash OOBE.
    Try to install CCD again and let us know if still the same issue.
    Regards,
    Romit Sinha

  • After first time installation, system did not restart, just hanged.

    Hello
    I am new to ur world of mac.
    I tried to install os x 10.4 on an intel pc.
    All went excellent. But at the end when it said to restart,
    it just hanged there and did not restart.
    I used the reset button, but it didn't boot
    error message was "B0 error"

    That is right - upgrade to Mac as in purchase a Mac which now have Intel processors and the ability to also install and use Windows XP or Vista along with OS X on the same computer.
    I wonder if u have gone thru Apple's OS X license agreement recently?
    I have gone through the Apple website recently but I don't need to. Regardless, the answer remains the same and will not change. If you want to run OS X, you need to purchase a Mac.

  • IMovie won't open on Mac Pro (Intel, 10.5.3) -- just hangs

    I don't normally use iMovie but tried to open it today on my MacPro and strangely it just hangs while launching.
    I reinstalled from the discs that came with the computer, but that made no difference. I deleted iPhoto and iMovie preference files, but that made no difference. I've even turned off Little Snitch as I saw on the web that there was a potential conflict there. I've run software upgrade and everything is apparently up to date (iMovie is version 7.1.1) I have also looked at the package contents for iMovie as suggested on another site, but everything seems to be there.
    I have no idea why the application won't run. Does this sound familiar to anyone? Is there another conflict between iMovie and any other known applications?
    Thanks

    Thanks for the suggestions... tried changing resolution and that had no effect, and I've checked my Perian and DivX installations in System Preferences and both say they are completely up to date. I upgraded Quicktime today to 7.5 before all of this became a problem -- but I don't know how to upgrade iLife. In Software Update everything is completely up to date (eg each of the iLife apps).
    Oh well, iMovie is not very useful to me anyway -- just somehow annoying that it fails to work. No point flogging a dead horse!!
    Any other ideas gratefully received... many thanks in advance

  • Unable to download itunes 10.7, the download just hangs

    I'm trying to connect my new iphone 5 to itunes but need to upgrade to 10.7....so I start the download and it gets most of the way through and then just hangs.  I'm using Windows 7 on HP DV9000 and have tried numerous times....had this same problem installing itunes to begin with.  We had to save the setup.exe to a USB after downloading from another PC and then run the installer on my laptop from the USB and it worked.  How can I update to 107?  If I try to download 10.7as in a new install will I lose all my music and playlists?

    had this same problem installing itunes to begin with. We had to save the setup.exe to a USB after downloading from another PC and then run the installer on my laptop from the USB and it worked.
    I'd try that again. Can you update with the installer file for the 10.7.0.21 version?

  • "deploy and change" tab just hangs in /nwa

    I am trying to start the template installer as a part of PI 7.0 post-installation.
    I get to the netweaver administration page OK but then when I click on deploy and change the system just hangs
    any ideas
    Thanks
    Shabnam

    Gopal,
          Thanks for the response. It was not the JVM but the host name.If I give the short name instead of the FQHN it works.
    Hence another issue, how do I set the host name to be the FQHN.
    I have tried setting the SAPLOCALHOSTFULL and icm/full_host_name to the FQHN and recycled the system still it doesnt work.
    Any ideas.
    Thanks
    Shabna

  • Installation of Ipod software hangs

    When I try to install the Ipod installation software (both from the CD that came with my Ipod and also tried to download it from this site), it just hangs right after the installer starts. The installer minimizes and never progresses. The same thing happens if I try to install Quicktime. I have tried everything mentioned in this document:
    http://docs.info.apple.com/article.html?artnum=93976
    This docuement was a referral from previous post. Please help, this is ridiculous and at the point where I just want to send the darn thing back!

    Hi,
    There are actually a few things you can try:
    1. Before installation repair permissions first:
    Application > utilities > disk utility > select hard drive and select repair disk permission > then install the software
    2. Try to install the software on a new user account (admin)
    3. Or you may log in to the root account and install the software.

  • Adobe Dreamweaver  DT just hangs up?

    I can't even get it to work. It just hangs up Dreamweaver. I am using CS3.
    It is supposed to still work in CS3 DW?

    TurboBill wrote:
    I have attached a png file showing what happens.  It jsut stays there and stops
    As you´re not the first one who´s encountering this very issue when launching the Login Form Wizard, please hop over to my Login tables: installation & configuration tutorial which will also provide an SQL dump that´s based on "safe" table and column names which have proven to work well with Dreamweaver and ADDT.
    For unknown reasons Dreamweaver seems to crash when using certain column names such as "user".
    Cheers,
    Günter

  • Trying to download OSX Lion from AppStore on my iMac but it just hangs everytime and does not download

    Trying to download OSX Lion from AppStore on my iMac but it just hangs everytime and does not download

    I downloaded Lion on my 17" Macbook Pro and it took about 17 hours. At first I thought it wan't downloading so I cancelled. The next day I tried again and let it ride for the duration; If the status bar is showing that it is downloading (the bar at the bottom will show some blue after about an hour), then be patient. It will download. The installation takes roughly 30 minutes.

  • Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs.

    Unable to use free version regardless of browser on any machine. I login with adobe id but then the loading screen just hangs. can't get any further - Tried all suggestions like clearing browser caches but no change.
    Got a couple of projects i wanted to try this on and if the software works I will probably take a subscription but considering this isn't working at all will look elsewhere.
    Also - adobe live chat support is useless.

    Hi,
    please share the Adobe ID that you are using with DL-AdobeStory-support<at>adobe<dot>com and we will investigate the issue.
    Thanks
    Aurobinda

  • Netflix just 'hangs' and won't even open the home page, although if i log in as a guest then I can access it.

    Netflix won't even open the home page to let me register and just hangs for ages. I have the same trouble on both safari and firefox but have updated both anyway. I'm guessing this is an 'identity' issue because if I log in as a guest on my own laptop I can open the netflix site, although there are all sorts of parental controls on there that I can't seem to override!
    I have un-installed silverlight, tried again but no luck.
    I re-installed silverlight. Still no luck
    It's not a disaster as I'm still able to watch on my ipad, however it's annoying me and I like a mystery to solve!
    any ideas?

    A password reset would certainly be a good idea. However, it could be an iCloud issue. If you Mac matches your user password to your Apple password, it could be that when you initially start up, you don't have an internet connection...
    Logging in as guest gets you connected, thus being able to authenticate. So when you change it, either make sure it's stored locally, or run some diagnostics on wifi connection upon startup. Out of interest, are you connected at the login screen (top right next to the time will tell you)?

  • Slow response using internet, just hangs

    Not the best at IT and just clicked update when it came up as available without realising what I was doing!  Turns out it was an upgrade to os x 10.9.4.  Since then the laptop has been practically unusable particularily when it comes to safari, it is either really slow getting to a particular page or just doesnt do anything, no matter how long you wait.  Restarting doesnt seem to help, reload view fails as well.  Its strange as sometimes its ok for 10 minutes then starts doing this.  I know this is bad but I have never backed the laptop up so cant restore to previous version.  I am currently looking into which external hard drive to buy so I can start doing regular back ups.  I have run EtreCheck in the hope somebody can help!!  Results below
    Problem description:
    Very slow responses on internet, just hangs for ages
    EtreCheck version: 2.0.6 (91)
    Report generated 25 October 2014 13:18:22 BST
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.9.4 (13E28) - Uptime: 0:42:39
    Disk Information: ℹ️
      ST9500325ASG disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (392.13 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-8A8
    USB Information: ℹ️
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.97) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.97) Support
      /Users/[redacted]/Downloads/PeerGuardian.app
      [not loaded] xxx.qnation.PeerGuardian (1.1.11 - SDK 10.2) Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] xxx.qnation.PeerGuardian.locum.plist Support
    User Launch Agents: ℹ️
      [running] com.amazon.cloud-player.plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Android File Transfer Agent Application (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
      pploader Application (/Users/[redacted]/Downloads/PeerGuardian.app/Contents/Library/LoginItems/pploa der.app)
      pplogger Application (/Users/[redacted]/Downloads/PeerGuardian.app/Contents/Library/LoginItems/pplog ger.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Cannot contact Adobe
      LogMeIn: Version: 1.0.730 Support
      QuickTime Plugin: Version: 7.7.3
      LogMeInSafari32: Version: 1.0.730 Support
      LogMeInSafari64: Version: 1.0.730 Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    Safari Extensions: ℹ️
      AdBlock
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          6% WindowServer
          1% fontd
          0% AppleSpell
          0% Safari
          0% imagent
    Top Processes by Memory: ℹ️
      159 MB Safari
      103 MB pploader
      73 MB com.apple.WebKit.WebContent
      47 MB WindowServer
      34 MB mds_stores
    Virtual Memory Information: ℹ️
      1.53 GB Free RAM
      1.14 GB Active RAM
      655 MB Inactive RAM
      971 MB Wired RAM
      624 MB Page-ins
      0 B Page-outs

    Not the best at IT and just clicked update when it came up as available without realising what I was doing!  Turns out it was an upgrade to os x 10.9.4.  Since then the laptop has been practically unusable particularily when it comes to safari, it is either really slow getting to a particular page or just doesnt do anything, no matter how long you wait.  Restarting doesnt seem to help, reload view fails as well.  Its strange as sometimes its ok for 10 minutes then starts doing this.  I know this is bad but I have never backed the laptop up so cant restore to previous version.  I am currently looking into which external hard drive to buy so I can start doing regular back ups.  I have run EtreCheck in the hope somebody can help!!  Results below
    Problem description:
    Very slow responses on internet, just hangs for ages
    EtreCheck version: 2.0.6 (91)
    Report generated 25 October 2014 13:18:22 BST
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Late 2011) (Verified)
      MacBook Pro - model: MacBookPro8,1
      1 2.4 GHz Intel Core i5 CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 384 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.9.4 (13E28) - Uptime: 0:42:39
    Disk Information: ℹ️
      ST9500325ASG disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (392.13 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-8A8
    USB Information: ℹ️
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.97) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.97) Support
      /Users/[redacted]/Downloads/PeerGuardian.app
      [not loaded] xxx.qnation.PeerGuardian (1.1.11 - SDK 10.2) Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] xxx.qnation.PeerGuardian.locum.plist Support
    User Launch Agents: ℹ️
      [running] com.amazon.cloud-player.plist Support
      [loaded] com.google.keystone.agent.plist Support
    User Login Items: ℹ️
      iTunesHelper Application (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
      Android File Transfer Agent Application (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
      pploader Application (/Users/[redacted]/Downloads/PeerGuardian.app/Contents/Library/LoginItems/pploa der.app)
      pplogger Application (/Users/[redacted]/Downloads/PeerGuardian.app/Contents/Library/LoginItems/pplog ger.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Cannot contact Adobe
      LogMeIn: Version: 1.0.730 Support
      QuickTime Plugin: Version: 7.7.3
      LogMeInSafari32: Version: 1.0.730 Support
      LogMeInSafari64: Version: 1.0.730 Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    Safari Extensions: ℹ️
      AdBlock
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          6% WindowServer
          1% fontd
          0% AppleSpell
          0% Safari
          0% imagent
    Top Processes by Memory: ℹ️
      159 MB Safari
      103 MB pploader
      73 MB com.apple.WebKit.WebContent
      47 MB WindowServer
      34 MB mds_stores
    Virtual Memory Information: ℹ️
      1.53 GB Free RAM
      1.14 GB Active RAM
      655 MB Inactive RAM
      971 MB Wired RAM
      624 MB Page-ins
      0 B Page-outs

  • Iphoto 9.3 and Mountain Lion Problems : Cant access my library : rebuilding doesn't work just hangs for hours

    My Macbook Pro running Snow Leopard, had hard drive failure so I had to borrow a friends similar machine to access my iPhoto library ( 523 GB) on a 1TB drive after editing the photos and after exporting one folder of images the program quit and then asked me to repair which I tried hung up at 99% and would not open the event thumbnails . I have tried everything even trying to transfer the particular event from that library to a new library using iphoto manager just so I can export my project and send but still no success as it is telling me that it is getting no info from the library, I changed permissions on the drive ..still no success . I restarted Iphoto and it took hours to show the images but all events thumnails said "0" and it shows all the event cover photos as a gray photo with a palm tree in it or something . I tried rebuilding again this morning and the new library says "0" photos and a library size of 7.3 mb
    I got my own Macbook 17in back yesterday and downloaded Mountain Lion to my machine and Iphoto 9.3
    I tried to open the library which is 523 GB of images that used to work fine before getting an error message saying it needed to be repaired. I tried opening it with Iphoto 9.3 via I photo manager which told be that there were inconsistencies in the library and it needed to be repaired I chose that option and it is now the following day still "rebuilding thumbnails" since last night . This is a huge problem I have missed project deadlines and my income is severely affected by this situation of not being able to access my work. What can I do to fix this, access my files and export my overdue project at this point ?

    Terence I find it surprising that you would say use Iphoto Manager after saying that I used it to rebuild using it took me to 99% of the way and just hung. I even spent my $20 and got the latest version 3.8.3  which was supposed to remedy these issues. See below my email to Fat Cat software the makers of Iphoto Manager:
    "Email to Fat Cat Software : Re Iphoto problems:
    My Macbook Pro running Snow Leopard, had hard drive failure so I had to borrow a friends similar machine to access my iPhoto library ( 523 GB) on a 1TB drive
    after editing the photos and after exporting one folder of images the program quit and the asked me to repair which i tried …it hung up at 99% and would not open the event thumbnails .I have tried everything trying to transfer the particular event from the library to a new library using Iphoto Manager just so I can work on my project but still no success as IPLM is telling me that it is getting no info from the library, I changed permissions on the drive ..still no success .
    I opened it using IPLM and it took hours to show the images but all events said "0" and it shows all the event cover photos as a gray photo with a palm tree in it or something . I tried rebuilding again this morning and the new library says "0" photos and a library size of 7.3 mb . There
    really seems to be a serious problem with Iphoto 9.3 as it
    asks you to rebuild or repair the library then IPLM stops at 99% leaving
    the thumbnails
    unviewable and just hangs up after that or wont open and there the problems start.
    Please advise and give me some viable options on this issue."
    Its days later and the support at Fat Cat software emailed me asking a question and are apparently just as floored as I am with this malfunction ..I hope they are working feverishly to address this as my conclusion and solution is as follows :
    Using the older version of Iphoto Library Manager when my machine asked me to upgrade and rebuild instead of the first aid function in Iphoto 9.3 did not help but actually corrupted my library and downloading the latest version did not help remedy it either. What I should have done and am now doing is using the Iphoto first Aid function in Mountain Lion and Iphoto 9.3 using option command to rebuild the entire library. So far it is working with no hangups ...it is now rebuilding image version number 6715 and counting with 33000+ images to go ..if this solution really rebuilds then that is the ONLY way to go with this issue which has cost me a lot of time and money in missed deadlines , lost income and lost business . Iphoto and Iphoto Library manager are normally great in what their purposes are and in ease of use and function but whenawry with compatibility in version software issues arise things go terribly awry and the tedious painstaking fixes available that go for days on end  just do not cut it.

  • My I Mac showed an error while updating the OS and now just hangs. What should I do?

    I Mac asked me to update the OS from 10.7.3. It showed an error and now the computer just hangs. Its become excuriatingly slow. Takes about 15-20 minutes to boot up and takes hours to perform any function. I tried to update the OS again but it keeps showing an error in connecting to the server. What do I do.?

    Have you tried booting into the Recovery HD to check/repair your disk. Restart holding Command+R - once booted select Disk Utility and then select Macintosh HD and click on 'repair disk' If it fixes anything click repair disk again until you get a clean pass. Whilst in Disk Utility you could also 'repair disk permissions' With Macintosh HD still selected click on 'repair disk permissions'. Once done, restart as normal from the Apple menu.
    Then try updating again using the 'combo', available here: http://support.apple.com/kb/DL1582
    If you still have problems you could try a Safe Boot: restart holding down the shift key until you see the grey progress bar. Once booted restart as normal from the Apple menu.

  • My ipad 2 turnes to black screen with the apple icon in the middle, it just hanged and i have to restart it?! so why this is happening ?! is there is an error or something i can do to prevent doing this ?!

    my  new ipad 2 turnes to black screen with the apple icon in the middle while using it or if i just left it locked for a while, it just hanged and i have to restart it?! so why this is happening ?! is there is a productio error or something i can do to prevent doing this ?!
    Appreciate responding as soon as possible.

    No, it's definitely not normal. Your User's Guide recommends a series of troubleshooting steps to go through when your iPad is misbehaving: As you're already in effect doing the first of the main steps, a Restart of your iPad, and that's not curing it, move on to the next .. a Reset.
    To do this, press and hold both the Home and the Sleep/Wake buttons for about 10-12 seconds, until the display blanks and the red Power Off slider appears. Continue holding the buttons until the slider disappears, replaced by the black screen and white Apple logo.
    This shows your iPad is starting to reboot. Release the buttons and allow the process to continue until the Lock screen appears again, then slide the slider to complete the process.

Maybe you are looking for

  • ITunes create AAC version cuts track length

    I tried everything from deleting and adding the songs. and Installing uninstalling iTunes. I don't know what to do anymore. iTunes cuts down the track time of the converted version and yes, This is happening to the most of the plays. I used everytime

  • STORAGE_PARAMETERS_WRONG_SET. when uploding catalogues ( not enough memory)

    When a member of our SRM team tries to upload an xml catalogue of size 92mb the process hangs and we get a short dump STORAGE_PARAMETERS_WRONG_SET. This does not happen when we upload smaller catalogues. I changed the recommended parameters abap/heap

  • Image not printed on OAF Printable Page

    Hi All, I have developed a page and it has "Printable Page" . This page has one logo(image) and it is displayed when I am running the page but not diplayed when I click on "Printable Page" button. How to achieve this. Please help me. Thanks, Sai

  • IPad 3G Int'l Plan - Calculate Usage

    I am traveling to Spain in a couple of weeks and am considering buying an international plan but cannot figure out which plan to buy. I looked at View Account but it doesn't tell me anything about my data usage because I suspect 99% of the time I am

  • While doing risk analysis for profiles the web service is taking 20 minutes

    Hi All Iam using SAP GRC 5.2 ( As per clients requirement) Iam using  VirsaCCRiskAnalysisService web service For roles it is working fine But when iam doing risk analysis for profiles( S_A.DEVELOP and  S_CUS_CMP)  it is taking upto 20 minutes to give