Berkeley DB 5.0.21 on OpenSolaris 2009.06 with Sun Studio CC v12 update 1

Dear all,
I have compiled Berkeley DB on OpenSolaris 2009.06 x86 with following C/C++ compilers:
semihc@giant$ uname -a
SunOS giant 5.11 snv_111b i86pc i386 i86pc Solaris
semihc@giant$ cc -V
cc: Sun C 5.10 SunOS_i386 2009/06/03
semihc@giant$ CC -V
CC: Sun C++ 5.10 SunOS_i386 128229-02 2009/09/21
I did however observe an issue with the configure script which incorrectly deduced that Sun C++ compiler cannot support templates. When inspected I noticed that configure script is using an invalid C++ code to validate template support. Followings are the diff file to resolve this issue.
semihc@giant$ diff configure configure.org
18031d18029
< return 0;
18039d18036
< return 0;
18153c18150
< //dbstl_configure_test::max<double>(4,4.2); // instantiate T as double
dbstl_configure_test::max<double>(4,4.2); // instantiate T as doubleAfter this change I managed to compile BDB with following settings:
../dist/configure prefix=/stow/db-5.0.21 enable-debug enable-diagnostic enable-cxx enable-stl enable-sql enable-sql_codegen enable-sql_compat
I would appreciate if Berkeley DB team amend confiigure script to reflect above changes.
Regards

Thank you for the update,
Once the work was underway it was realized that a
a standards-compatible C++ compiler is needed to build dbstl.
From the documentation:
At:
http://download-llnw.oracle.com/docs/cd/E17076_02/html/installation/build_unix_conf.html
If your compiler is not ISO C++ compliant, the configure may fail with this argument specified because the STL API requires standard C++ template features. In this case, you will need a standard C++ compiler. So far gcc is the best choice, we have tested and found that gcc-3.4.4 and all its newer versions can build the Berkeley DB C++ STL API successfully.
and At:
http://download-llnw.oracle.com/docs/cd/E17076_02/html/programmer_reference/stl.html#stl_intro_portability
For this reason, you need a standards-compatible C++ compiler to build dbstl. As of this writing, the following compilers are known to build dbstl successfully:
*MSVC8
*gcc3.4.4 and above
*Intel C++ 9 and above
For *nix platforms, if you can successfully configure your Berkeley DB build script with --enable-stl, then you should be able to successfully build dbstl library and application code using it.
Sandra

Similar Messages

  • I have macbook mid 2009, with os leopard and I updated it till yosemite now while deleting partition I erased the main hitachi drive , now I have no backups and while switching on it shows folder with question mark,inserting the grey dvd it keep spin

    Have macbook mid 2009, with leopard,  updated to yosemite,  while erasing partition erased hd, dot have backups, powerup shows folder with question mark, inserting grey dvd shows apple and spinning wheel, please help

    Clean Install of Snow Leopard
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. Be sure you configure your initial admin account with the exact same
             username and password that you used on your old drive. After you finish Setup
             Assistant will complete the installation after which you will be running a fresh
             install of OS X.  You can now begin the update process by opening Software
             Update and installing all recommended updates to bring your installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1. From here you can upgrade to Yosemite by re-downloading it from the Purchases page in the App Store.

  • Sigsegv accessing va_arg with Sun Studio 12 Update 1 on OpenSolaris 2009.06

    $ uname -a
    SunOS ultra 5.11 snv_111b i86pc i386 i86pc Solaris
    $ cc -V
    cc: Sun C 5.10 SunOS_i386 2009/06/03
    usage: cc [ options] files. Use 'cc -flags' for details
    $ cat testva.c
    #include <stdarg.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    static void local_vformatter(char *buf, size_t len,
    const char *format, va_list ap)
    char *str;
    ssize_t bigval;
    str = va_arg(ap, char *);
    printf("arg %s\n", str);
    str = va_arg(ap, char *);
    printf("arg %s\n", str);
    bigval = va_arg(ap, /* ssize_t */ unsigned long);
    printf("arg %lld\n", bigval);
    str = va_arg(ap, char *);
    printf("arg %s\n", str);
    static void local_snprintf(char *buf, size_t len,
    const char *format, ...)
    va_list ap;
    va_start(ap, format);
    local_vformatter(buf, len, format, ap);
    va_end(ap);
    int main(void)
    char buf[800];
    char key, val;
    ssize_t len;
    key = "KEY1";
    val = "VAL1";
    len = strlen(key);
    local_snprintf(buf, sizeof buf, "%sKey %s (%ld) Value %s\n",
    "->",
    key,
    len,
    val);
    /* printf(buf); */
    $ cc -m64 -O0 -g testva.c
    $ ./a.out
    arg ->
    arg KEY1
    arg 4
    Segmentation Fault (core dumped)
    $ dbx ./a.out core
    Reading a.out
    core file header read successfully
    Reading ld.so.1
    Reading libc.so.1
    program terminated by signal SEGV (no mapping at the fault address)
    Current function is local_vformatter
    21 str = va_arg(ap, char *);
    (dbx) where
    =>[1] local_vformatter(buf = 0xfffffd7fffdff510 "°õßÿ^?ýÿÿ^H÷ßÿ^?ýÿÿ", len = 800U, format = 0x4011d0 "%sKey %s (%ld) Value %s\n", ap = 0xfffffd7fffdff4a8), line 21 in "testva.c"
    [2] local_snprintf(buf = 0xfffffd7fffdff510 "°õßÿ^?ýÿÿ^H÷ßÿ^?ýÿÿ", len = 800U, format = 0x4011d0 "%sKey %s (%ld) Value %s\n", ... = 0x4010c8, ...), line 31 in "testva.c"
    [3] main(), line 49 in "testva.c"
    (dbx) regs
    current frame: [1]
    r15     0x0000000000000000
    r14     0x00000000004011f0
    r13     0x0000000000000004
    r12     0x00000000004011f8
    r11     0x0000000000000246
    r10     0x0000000000000000
    r9     0xfffffd7fff35afa0
    r8     0x00000000ffdff4e8
    rdi     0xfffffd7fffdff4e0
    rsi     0x00000000ffdff4e0
    rbp     0xfffffd7fffdff3c0
    rbx     0xfffffd7fffdff4a8
    rdx     0x00000000ffdff4e0
    rcx     0xfffffd7fff2c463a
    rax     0xfffffd7fffdff4a8
    trapno     0x000000000000000e
    err     0x0000000000000004
    rip     0x0000000000400f65:local_vformatter+0x249 movq (%rsi),%rsi
    cs     0x0000000000000053
    eflags     0x0000000000010212
    rsp     0xfffffd7fffdff2f0
    ss     0x000000000000004b
    fs     0x0000000000000000
    gs     0x0000000000000000
    es     0x0000000000000000
    ds     0x0000000000000000
    fsbase     0xfffffd7fff1a2a00
    gsbase     0x0000000000000000
    (dbx)
    It looked to me that the top 32 bits of rsi got whacked somehow.
    AFAICT, it only occurs with "-O0". Omit -O0, or use -O1, -O2, etc. and it works.
    The simple code above is based on the same issue in critical Apache Portable Runtime code (apr_snprintf() et al) that renders APR useless for httpd and probably many other apps.

    Your code won't compile as shown. I suspect that the source code has been munged by the forum display formatter, because it was not enclosed in "code" brackets.
    Here is what I think your example looked like: #include <stdarg.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    static void local_vformatter(char* buf, size_t len,
    const char *format, va_list ap)
        char *str;
        ssize_t bigval;
        str = va_arg(ap, char*);
        printf("arg %s\n", str);
        str = va_arg(ap, char*);
        printf("arg %s\n", str);
        bigval = va_arg(ap, /*ssize_t*/ unsigned long);
        printf("arg %lld\n", bigval);
        str = va_arg(ap, char*);
        printf("arg %s\n", str);
    static void local_snprintf(char* buf, size_t len,
    const char *format, ...)
        va_list ap;
        va_start(ap, format);
        local_vformatter(buf, len, format, ap);
        va_end(ap);
    int main()
        char buf[800];
        char *key, *val;
        ssize_t len;
        key = "KEY1";
        val = "VAL1";
        len = strlen(key);
        local_snprintf(buf, sizeof buf, "%sKey %s (%ld) Value %s\n",
        "->", key, len, val);
        printf(buf);
    } I was able to reproduce your problem only with -O0, as you found.
    The short answer is, don't use -O0. It serves no useful purpose, except for compiler testing.
    Either use no -O option, best for debugging, or use -O2 or above to get optimization.
    If you would like to see a fix for this problem, please file a bug report at
    [http://bugs.sun.com]

  • My macbook (late 2009 with snow leopard) will not update it's software!

    I got a macbook for Christmas (for writing and browsing the web), and I want to update it to Mavericks, and my stats are supposed to be compatible! Any ideas why it's not updating!?

    Welcome to Apple Support Communities
    OS X Mavericks is an upgrade you have to download from the Mac App Store, so first open  > Software Update, and install the most recent Mac OS X Snow Leopard version.
    Then, open the Mac App Store and download OS X Mavericks. Make a backup of your files with Time Machine before upgrading and check that your applications are compatible > http://www.roaringapps.com

  • Installing weblogic 10.3 in OpenSolaris 2009.6

    Hi,
    I am trying to install weblogic 10.3 in open solaris 2009.6.
    When I try server103_linux32.bin (x86), the output was as follows
    :/var/wl103# chmod a+x server103_linux32.bin
    :/var/wl103# ./server103_linux32.bin
    server103_linux3: Cannot find /lib/ld-linux.so.2
    When I try server103_solaris32.bin (SPARC), the output was as follows
    :/var/wl103# chmod a+x server103_solaris32.bin
    :/var/wl103# ./server103_solaris32.bin
    bash: ./server103_solaris32.bin: Invalid argument
    My system Hardware config is;
    Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz with 2GB RAM
    Note: I have formated Windows XP and installed OpenSolaris.
    I am able to download weblogic 10.3 for opensolaris 2009.06-SPARC
    Where can I download weblogic 10.3 for opensolaris 2009.06-x86?
    Please help me to solve this issue.
    Thanks in advance
    Sathish
    Edited by: user11225372 on Jun 4, 2009 1:53 AM

    Thats an interesting issue for me too. I would also like to know if there are some binaries for x86 or x64 or some workarounds for the installation on such architectures.
    Has anyone done it already?
    BR
    Alex

  • New X2270 won't boot OpenSolaris 2009-06 from internal disk

    Is anyone having any problems with recent X2270 servers? I took delivery of two of these last week. They are without the ILOM card because Sun are having quality issues with them - a firmware bug I believe. They are fun to install as my only eyes is via a serial port that seems to have some kind of bios video text to serial ascii emulation which has quite a delay on it.
    Basically after installing Solaris it won't boot from the internal disk. So far I've tried net installs of SXCE b105 and also the latest OpenSolaris 2009-06 and in both cases the install completes correctly without any errors (that I've detected) but after rebooting they fail to load the kernel. Here is what's left on my serial console:
    Press F2 to run Setup (CTRL+E on Remote Keyboard)
    Press F12 if you want to boot from the network (CTRL+N on Remote Keyboard)At this point the hard drive activity light flashes twice and then the machine appears frozen. The Solaris banner is never shown. I've left it like this for hours just be sure.
    I've chosen ZFS for the whole disk in both instances. I wonder if this has something to do with it.
    Presumably OpenSolaris has the drivers for the disk interface cards otherwise it wouldn't have been able to install onto the disks.
    Any advice greatly appreciated.
    Kind Regards
    Jesse

    The solution for my problem was reinstalling linux-firmware & linux. Maybe this can help you too.
    I have booted from a live cd and doing these steps:
    RAID Array scan
    mdadm --examine --scan > /etc/mdadm.conf
    RAID Array start
    mdadm --assemble /dev/md1
    mdadm --assemble /dev/md2
    mdadm --assemble /dev/md3
    mdadm --assemble /dev/md4
    LVM scan & aktivieren
    vgscan
    vgchange -a y
    Mounten von „root“ & „boot“
    mount /dev/mapper/root-root /mnt/root/
    mount /dev/md1 /mnt/root/boot/
    In „chroot“ wechseln
    cd /mnt/root/
    „dev“, „proc“, „sys“ einbinden
    mount -t proc proc proc/
    mount -t sysfs sys sys/
    mount -o bind /dev/ dev/
    Nun / ändern
    chroot ./
    Reinstalling packages with
    pacman -S linux-firmware linux
    May I could help you
    jesus loves you

  • I want to connect my MacBook Pro (2009) with Apple TV

    I want to connect my MacBook Pro (2009) with Apple TV
    I updated my Mac to Mountain Lion OS X 10.8.2 (12C60)
    I had tried connecting my Mac for many time but I could not.
    iTunse is connected with Apple TV

    Read this link.  http://support.apple.com/kb/ht5404
    2009 MBP is not supported for native AirPlay Mirroring.  Sorry.
    There are a couple of other pay-for apps that do this, but they're not as good... some people have had success.

  • HT2998 Hi, I try to conect Mac Mini from 2009 with my HD Tv Samsung F 6400 . With Mini Dvi conection and adapter to HDMI input in TV I got picture but not sound! I have analog cable from the phones out from mac but imposible to conect to TV? Can you HLP

    Hi, I try to conect Mac Mini from 2009 with my HD Tv Samsung F 6400 . With Mini Dvi conection and adapter to HDMI input in TV I got picture but not sound! I have analog cable from the phones out from mac but imposible to conect to TV? Can you HLP?

    You really need a newer Mac Mini with a true HDMI output, because that Mac Mini's DVI output does not support Audio.
    You might try a 3.5mm to RCA adapter
    from the Mac Mini's headphone jack to the TV's audio input,
    but that would require being able to select the Audio input in the TVs menu while using it's HDMI input.
    Optionally you could also use an external 2.1 Speaker System or patch the audio from the Mac Mini to your home stereo system to enhance that older Mac Mini's audio.

  • Hi, I got my Mac in 2009 with photoshop elements on it - it's recently been wiped, however before the process we put Photoshpp onto a hard drive, we then copied it back over and it no longer works, I'm getting error code 150:30 and I'm being asked for a p

    Hi, I got my Mac in 2009 with photoshop elements on it - it's recently been wiped, however before the process we put Photoshop onto a hard drive, we then copied it back over and it no longer works, I'm getting error code 150:30 and I'm being asked for a password... any ideas how to get it working again?

    You can never, never migrate an installed copy of PSE. It's just too complex and you can't get to all the bits and bobs.
    First you will have to download and run this:
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    which will not seem to do anything, but is necessary to break the links within PSE so that you can pitch the bits manually. Then you will have to go around, not only to applications, but also to your username>library>preferences and most importantly to the library at the top level of your hard drive>application support>adobe, and remove everything you can find. Spotlight will not help with this kind of search, so don't try that.
    Then you can install PSE from scratch.

  • I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).

    I need to know which update(s) I can apply to help stabalize the system.

    Typing the body of the thread message in the title, huh? -)
    I am working on a MacBook Pro (13-inch, Mid 2009) with boot camp running Windows 7 pro 64-bit.  Windows crashes quite often now-a-days and I need to get this fixed. I heard that updating boot camp can help.  Currently I am running Version 3.0.4 (322).
    Only Apple could hamstring and tie Mac OS to Windows. There isn't any other than whether you can download the drivers into Windows (you can) but Apple puts a block on the installer setup even if your mac does not support it.
    Windows 7 needs at least Boot Camp 3.1 and 3.3 is what you should already have. And you are not getting security updates if you don't have at least 10.6.8 as was pointed out.  --- you arent using Software Update as you should. And you should backup and clone Mac (and Windows) as well.
    You need Mountain Lion to use Boot Camp 5.x which supports Windows 7 & 8 and 64-bit.
    I would upgrade to Lion if you can realizing that Rosetta and PowerPC are no longer supported though.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Boot Camp 5.0 Drivers
    http://support.apple.com/kb/DL1638
    Frequently asked question
    http://support.apple.com/kb/HT4818
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdf
    http://manuals.info.apple.com/en/Boot_Camp_Install-Setup_10.6.pdfcreate a Windows support software (drivers) CD or USB storage media
    http://support.apple.com/kb/HT4407
    The Boot Camp Assistant can burn Boot Camp software (drivers) to a DVD or copy it to a USB storage device, such as a flash drive or hard drive. These are the only media you can use to install Boot Camp software.
    https://support.apple.com/kb/HT4569
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    Instructions for all features and settings.
    Boot Camp 4.0 FAQ Get answers to commonly asked Boot Camp questions.
    Windows 7 FAQ Answers to commonly asked Windows 7 questions.
    http://www.apple.com/support/bootcamp/
    Is there a download of the Boot Camp 5 Support Software if I'm not using OS X Mountain Lion v10.8.3?
    Yes, you can download the Boot Camp 5 Support Software here.
    http://support.apple.com/kb/DL1638
    How do I use the Boot Camp 5 Support Software I downloaded from the web page?
    The download file is a .zip file. Double click it to uncompress it.
    Double-click the Boot Camp disk image.
    Copy the Boot Camp and "$WinPEDriver$" folders to the root level of a USB flash drive or hard drive that is formatted with the FAT file system (see question below for steps on how to format).
    Install Windows, leaving the flash or hard drive attached to the USB port of your Mac.
    Installation of the drivers can take a few minutes. Don't interrupt the installation process. A completion dialog box will appear when everything is installed. Click Finish when the dialog appears.
    When your system restarts your Windows 8 installation is done.
    Note: If the flash drive or hard drive was not attached when you installed Windows and was inserted after restarting into Windows 8, double-click the Boot Camp folder, then locate and double click the "setup.exe" file to start the installation of the Boot Camp 5 Support Software.
    How do I format USB media to the FAT file system?
    Use Disk Utility to format a disk to use with a Windows computer. Here's how:
    Important: Formatting a disk erases all the files on it. Copy any files you want to save to another disk before formatting the disk.
    Open Disk Utility.
    Select the disk you want to format for use with Windows computers.
    Click Erase, and choose one of the following from the Format pop-up menu:
    If the size of the disk is 32 GB or less, choose MS-DOS (FAT).
    If the size of the disk is over 32 GB, choose ExFAT.
    Type a name for the disk. The maximum length is 11 characters.
    Click the Erase button and then click Erase again.
    Which versions of Windows are supported with Boot Camp 5?
    64-bit versions of Windows 8 and Windows 7 are supported using the Boot Camp 5 Support Software. If you need to use a 32-bit version, you need to use Boot Camp 4 Support Software, and you must use Windows 7. 32-bit versions of Windows 8 are not supported via Boot Camp. For a complete list of Windows OS support, click here.

  • I have a macbook purchased in dec 2009 with OS 10.6.8, i can't install Mavericks as it is not finding any place to install. It says it cant be install on the harddrive and i dont have any other option to select .. what to do?

    i have a macbook purchased in dec 2009 with OS 10.6.8, i can't install Mavericks as it is not finding any place to install. It says it cant be install on the harddrive and i dont have any other option to select .. what to do?

    imnyaar wrote:
    ... It says it cant be install on the harddrive
    What does the message say, exactly?
    Try this:
    From the Finder's Go menu, choose Computer:
    Double-click your hard disk icon. It is usually named "Macintosh HD":
    Look for this folder:
    If it appears in that window, drag it to the Trash.

  • I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solveby myself? (Mountain Lion, Mavericks, Yosemite?)

    I have a Macbook pro 2009 with Snow Leopard.  Which system can I install without running into complicated problems which I will not be able to solve by myself- a person with limited problem solving abilities. (Mountain Lion, Mavericks, Yosemite?)

    It will make it easier to help you w/ your problem to know the  size and RAM installed.
    "Yesterday I couldn't update the maps on my Garmin because it said the OS I had wouldn't work"
    What OS will your Garmin work with? Funny there was someone else that did that and upgraded to Yosemite and regretted it.
    I'd say Lion if your Garmin is compatible.
    Both Lion and Mountain Lion are downloadable from the Apple Store:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    The OSs will get more resource hungry the higher you go.

  • My Mac is a 21.5-inch Late 2009 with a 1 TB Seagate HD that must be replaced, according to Apple support, but they denied me that right because the serial is not part of the replacement program: any suggestions to get a plausible solution to this problem?

    My Mac is a 21.5-inch Late 2009 with a 1 TB Seagate HD that must be replaced, according to Apple support Panama, but they denied me that right because the serial is not part of the replacement program: any suggestions to get a plausible solution to this problem?
    I would want to know what are the criteria used by the people al espresslane support to deny the opportunity presented by the replacement program, given the situation that these 1 TB Seagate HD´s have had problems and certainly not only in the batch they accepted, but probable in other batches too.
    The second question is about the powerpc support that is lost when updating from Snow Leopard to Lion X: I can not read my medical application UPTODATE.
    I hope that there wil be some kind of support to help me solve that problem, this is my first petition actually.
    Now, I do not have access to my yahoo email, intermitent access to Apple home page, unpredictable access to Apple store and no access to iCloud in my iMac: when I try to access these web sites, the blue web address bar is interrupted and never goes to the end, no filling up the whole bar.
    I do not know what is the first problem, the Seagate HD or the Lion X, but my life is becoming a miserable one, not having the opportunity to enter in the raplacement program, losing the powerpc support because of the updating to Lion X, the necessity to buy Lion X again because it used to appear as a paid program, but not anymore, and finally having no access to my yahoo email, Apple home website and Apple store and no access at all to the iCloud: I am done.
    Chao, Elías.

    You can have Apple or a competent service shop replace the internal HD for a fee, unless you have AppleCare and the iMac is within its warranty period in which case it will cost nothing. If you must pay the cost will be approximately $350 US.
    PowerPC support is gone with Lion. You can install or retain Snow Leopard on another partition, and boot Snow Leopard as necessary.
    The inability to load web pages is a different problem, unless it is related to your failing hard disk.

  • I had iLife pre-installed on my aluminium Macbook 2009 with OSX Leopard on it. My hard drive broke but got most of the info off it and just installed snow Leopard on to a new drive and then downloaded and installed Mountain Lion over it. Now I don't have

    I had iLife pre-installed on my aluminium Macbook 2009 with OSX Leopard on it. My hard drive broke but got most of the info off it and just installed snow Leopard on to a new drive and then downloaded and installed Mountain Lion over it. Now I don't have iLife anymore. How do I get it back?

    Welcome to Apple Support Communities
    Mac OS X doesn't come with iLife applications, so you have to install them manually after installing Mac OS X.
    Insert the Applications disc or Mac OS X Install Disc 2 DVD and install iLfe applications. Then, open  > Software Update, and install the latest update. If you want, you can purchase iMovie, GarageBand and iPhoto in the App Store, so you will get the most recent version

  • I tried to install OS X Mavericks but my Mac Book Pro (of mid-2009 with OS X 10.7.5) crashed

    I tried to install OS X Mavericks but my Mac Book Pro (of mid-2009 with OS X 10.7.5) crashed. I had to change the Hard Disk. How can I install OS X Mavericks on my Mac laptop safely without going to another crash? I checked and found that my lap top is eligible for the upgrade to Mavericks. Can't understand what happened. Please help and advise how to do the upgrading. Thanks.

    I could not report the crash as my lap top was out of order. So now it's working. Should I report the crash and to whom? Do you have any link for that?

Maybe you are looking for

  • Report for Pending F& C forms(stock transfers& sales)for tax requirement &

    Dear all, I have query regarding pending forms, F form required fields are, from wherehouse to wherehouse doc type, inv no, invdate, product code, description, quantity, standard cost, amount. C forms required fields are, Customer code, name and addr

  • Different due dates for the same SC

    Hi dear experts, We are facing a problem with our customer, the customer wants to have the flexibility in the system to create SC´s with 2 different characteristics, the first category are plans which work with the standard and we already have them w

  • Flash in Dreamweaver not working

    I recently upgraded from Dreamweaver CS3 to Dreamweaver CS4, and im having an issue using .SWF files on my site. The code is very different between the 2 when choosing "Media:SWF" from the "Common" section of the "Insert" menu. When i preview the sit

  • How do I NOT connect to a foreign WLAN?

    Hello, Sometimes, when my MacBook is up before my WLAN becomes active, AirPort connects to one of my neighbours' WLAN. Is there any way to mark that SSID or ethernet address as undesired so that AirPort won't connect to it automatically anymore? Thx

  • Missing thumbnails in the pages window of InDesign

    When you go to window > pages, the pages and master pages thumbnails are all missing. How do you get the thumbnails back for preview?