Linux Testdrive on 32 bit system

I notice there is only Testdrive fro 64bit system on Linux. Is there a way which I can install the Testdrive at my 32bit system?

>
Hannes Kuehnemund wrote:
> Dear Mohammad,
>
> you can obtain the 32-bit version of the N4S Testdrive which comes with IBM DB2 as database. You can order it for free in the SAP Knowledge Shop.
>
> Thanks,
>   Hannes
Hi,
I checked the SAP Knowledge shop, and ordred the DVDs, there are two DVDs available:
1) SAP Netweaver 2004s Testdrive power edition SAP Web Application server for linux on power and IBM db2
2) SAP Netweaver 2004s Testdrive (Maxdb 7.6)
and in the index.html file of both DVDs it is indicated: "It is mandatory that you use the 64-Bit OS version."
So it seems that there is no more 32-bit Netweaver for linux.
Regards,
Dariyoosh

Similar Messages

  • Testdrive for 64 Bit Linux Systems?

    Will there be a NW4 Testdrive for 64 Bit Linux Systems?
    Regards,
    Tobias

    Will there be a NW4 Testdrive for 64 Bit Linux Systems?
    Regards,
    Tobias

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Java plugin not working on any browser (64-bit system)

    Hi there!
    I'm having a major problem with running Java plugin on all of my browsers (Opera, Chromium and Firefox) under my Arch Linux 64-bit system. The system is fully up-to-date, and Java plugin is being displayed among other plugins on "about:plugins" screen. The Java Environment was installed from Community
    [zbyszek@barca ~]$ yaourt -Qs jre
    community/jre 6u24-1
    Sun/Oracle's Java Runtime Environment
    Any ideas how to solve this?

    Hi,
    Maybe (just maybe, dont shoot me afterwards ) this link can help:
    http://plugindoc.mozdev.org/linux-amd64.html#java-sun
    Thor

  • ORA-27102 in SUSE Linux 10.1 (64 bit)

    Hi all,
    We are migrating our Sun solaris OS to SUSE Linux 10.1 64 bit and database is oracle 9.2.0.6
    In sun solaris server we are having 8GB physical memory but when are allocating 4gb to oracle memory, we are getting error at the time of nomount stage
    ORA-27102: out of memoryThe following parameter have been set at a OS level
    ai-oracle:/proc/sys/kernel # cat shmall
    4194304
    ai-oracle:/proc/sys/kernel # cat shmmax
    2147483648
    ai-oracle:/proc/sys/kernel # cat shmmni
    128
    ai-oracle:/proc/sys/kernel # cat sem
    250     32000   100     128
    ai-oracle:/proc/sys/kernel #
    ai-oracle:/proc/sys/kernel # free
                 total       used       free     shared    buffers     cached
    Mem:       8305776    6736700    1569076          0      91376    6423060
    -/+ buffers/cache:     222264    8083512
    Swap:     16779884          0   16779884
    ai-oracle:/proc/sys/kernel # uname -a
    Linux ai-oracle 2.6.16.21-0.8-bigsmp #1 SMP Mon Jul 3 18:25:39 UTC 2006 i686 i
    686 i386 GNU/Linux
    ai-oracle:/proc/sys/kernel # ipcs -lm
    ------ Shared Memory Limits --------
    max number of segments = 128
    max seg size (kbytes) = 2097152
    max total shared memory (pages) = 4194304
    min seg size (bytes) = 1
    ai-oracle:/proc/sys/kernel # getconf PAGE_SIZE
    4096
    ai-oracle:/proc/sys/kernel #
    ai-oracle:/proc # cat meminfo
    MemTotal:      8305776 kB
    MemFree:       1104276 kB
    Buffers:         93024 kB
    Cached:        6874760 kB
    SwapCached:          0 kB
    Active:        5515856 kB
    Inactive:      1602096 kB
    HighTotal:     7468300 kB
    HighFree:       404892 kB
    LowTotal:       837476 kB
    LowFree:        699384 kB
    SwapTotal:    16779884 kB
    SwapFree:     16779884 kB
    Dirty:             152 kB
    Writeback:         120 kB
    Mapped:         260168 kB
    Slab:            35036 kB
    CommitLimit:  20932772 kB
    Committed_AS:  1611264 kB
    PageTables:      26288 kB
    VmallocTotal:   112632 kB
    VmallocUsed:     16664 kB
    VmallocChunk:    93836 kB
    HugePages_Total:     0
    HugePages_Free:      0
    HugePages_Rsvd:      0
    Hugepagesize:     2048 kB
    ai-oracle:/proc #
    ai-oracle:/proc # ipcs -m
    ------ Shared Memory Segments --------
    key        shmid      owner      perms      bytes      nattch     status
    0x00000000 65536      gdm       600        196608     2          dest
    0x889396d8 131073     oracle    640        322961408  450Please suggest me....
    Edited by: user00726 on Jun 21, 2009 9:33 PM

    i am getting the below error in alert log file
    WARNING: EINVAL creating segment of size 0x0000000081400000
    fix shm parameters in /etc/system or equivalent
    Sun Jun 21 14:13:23 2009
    Starting ORACLE instance (normal)
    Sun Jun 21 14:13:23 2009
    WARNING: EINVAL creating segment of size 0x0000000081400000
    fix shm parameters in /etc/system or equivalent
    Sun Jun 21 14:20:42 2009
    Starting ORACLE instance (normal)
    Sun Jun 21 14:20:42 2009
    WARNING: EINVAL creating segment of size 0x0000000081400000
    fix shm parameters in /etc/system or equivalent
    Sun Jun 21 14:28:36 2009
    Starting ORACLE instance (normal)
    Sun Jun 21 14:28:36 2009
    WARNING: EINVAL creating segment of size 0x0000000081400000
    fix shm parameters in /etc/system or equivalent
    Sun Jun 21 14:29:48 2009
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    SCN scheme 2but i have crosschecked the same in oracle metalink 151496.1
    and i got to know that
    The error is reported by Oracle during allocation of the SGA and will happen
    in cases where the kernel parameter SHMMAX/SHM_MAX is not set high enough.
    The SHMMAX kernel parameter decides the maximum size of a shared memory segment
    that can be allocated in the system. Since Oracle implements SGA using shared
    memory, this parameter should be set appropriately. The value of the SHMMAX
    kernel parameter should be higher than the maximum of SGA sizes of the Oracle
    instances used in the server. In cases where the SHMMAX is smaller than the SGA
    size, Oracle tries to fit the entire SGA into a single shared memory segment,
    which will fail, and you will see the warning message in the alert.log.
    The recommended value for this parameter is 4294967295 (4 GB), or the size of
    physical memory, or half the size of physical memory, depending on platform.
    Setting the SHMMAX to recommended value in the kernel parameter configuration
    file and rebooting the server will get rid of the warning messages. See the
    platform specific Oracle installation guide for detailed information on how to
    modify the SHMMAX/SHM_MAX kernel parameter.but i had also set the value half of physical memory i.e 4gb but still i am getting the same error

  • How to confirm Linux distribution is 32 bit or 64 bit ?

    I installed vm ware work station 6.5 on my laptop. Afterr that i install redhat 5.5 on this vm workstation.
    Now i am not sure that this Linux distribution is 32 bit or 64 bit.
    PLease tell me how i can confirm that .
    PLease reply

    Herb is right, but let me elaborate, the command returns quite a lot of information.
    Here is a typical 32-bit system:
    $ uname -a
    Linux localhost.localdomain 2.6.18-238.5.1.0.1.el5 #1 SMP Tue Mar 1 20:34:56 EST 2011 i686 i686 i386 GNU/LinuxHere is a typical 64-bit system:
    $ uname -a
    Linux localhost.localdomain 2.6.35.11-83.fc14.x86_64 #1 SMP Mon Feb 7 07:06:44 UTC 2011 x86_64 x86_64 x86_64 GNU/LinuxIt is also possible to run a 32-bit kernel on a 64-bit machine, but I don't have one of those handy.

  • Labview 8 for 64 bit system

    can labview be installed in 64 bit systems? (say, labview version 8)

    In addition to Saverio's comments, your question is way too vague.
    Is this under windows or Linux?
    If Windows, what is the windows version? (64 bit XP, vista, or 7)
    LabVIEW 8.0 is very old and obsolete. It is no longer even listed on the LabVIEW OS support matrix.
    (For example LabVIEW 2009 is the first version supported on Windows 7 (32 or 64 bit))
    Please provide more detail.
    LabVIEW Champion . Do more with less code and in less time .

  • Is it possible to Install Oracle Linux 6.2 64-bit in Itanium Server?

    Hi Gurus,
    I have 2 intel Itenium servers of same configuration. I like to install Oracle Linux 6.2 64-bit in both Itanium Servers and Install Oracle 11gr2 RAC there. I have installed OEL 6.2 64-bit in x86-64 architecture server and installed Oracle 11gr2 there, but never done that in Itenium servers. Now I am confused if it is possible. To know the answer is very important for me and earlier the better.
    Regards
    Hasan Al Mamun
    Systems Analyst
    Bangladesh Bank
    Dhaka, Bangladesh.

    HasanAlMamun wrote:
    I have 2 intel Itenium servers of same configuration. I like to install Oracle Linux 6.2 64-bit in both Itanium Servers and Install Oracle 11gr2 RAC there. I have installed OEL 6.2 64-bit in x86-64 architecture server and installed Oracle 11gr2 there, but never done that in Itenium servers. Now I am confused if it is possible. To know the answer is very important for me and earlier the better.It's not possible. We do not provide Oracle Linux 6 for Itanium.

  • After rebooting my Windows Vista 64 bit system, could not access iTunes; after uninstalling I tried reinstalling, but it has been running for more than 24 hrs. Should I cancel installation?

    I had been updating my Windows Vista 64 bit system and as a result of a problem, had to reboot my system. Afterwards, I was no longer able to access iTunes.  I got a message stating that there was a problem with some of the files associated with the application.  A phone rep at Apple's Customer Service provided me with emails linking instructions on completely uninstalling and reinstalling iTunes. I did the uninstall, then checked for lingering iTunes files and couldn't completely remove some, but tried intalling the latest version of iTunes. It has been running for roughly 24 hours.  The status bar is green all the way across, and when I try to cancel, I get the following message: "Are you sure you want to cancel iTunes installation?"  I keep hitting "no," but am staring to wonder if there is a problem with the install.  Should it take this long if I have roughly 134 gigs of music?  I can still see the music in my computer's C drive, so I am worried that there is an error, perhpas because I didn't clear out all the lingering C:\Program Files\Common Files\Apple\ and all the lingering C:\Program Files\iTunes\.  Any thoughts?

    It is not just the HP. I have 3 HP computes and 2 Dell computers. 2 of the HP and 1 Dell suffer the iTunes internet block. Took me a while to figure it out also. But, the one thing that is different on the Dell, is that I can leave iTunes installed and not open it and everything works. As soon as I open it, internet access goes down. BUT secure sites (https:) works fine.

  • Having a problem with wireless connection. On my Windows XP 32 bit system and a 6510 printer, initi

    On my Dell Latitude D620, Windows XP 32 bit system and my 6510 printer wireless connection (Linksys EA4500) , everything works fine after the computer is booted.  After a period of time (usually overnight), I lose connection to the printer (the scanner icon with a red x is shown on my Windows task bar and I can't print.  Ran Windows Fix and the HP fix programs.  The only thing that solves it is to reboot the computer.  A second symptom is that my IE8 stops connecting to the internet at the same time (gives a 'waiting for' response that never changes).  Firefox still connects OK when this is happening.  So I suspect the problem isn't with the printer, but with my Windows set up.  It is a fresh XP SP3 install (hard drive crashed, but it happened before also).  I reset IE, checked my proxy, no malware, happens with or without firewalls and security programs.
    Hoping that someone else has run into this problem.  Been all over Google, and the IE doesn't work / Firefox works is fairly common, but none of the fixes helps. 

    If you want you can reload Firefox 4.0 or the last "old" version is 3.6.16 and is available here:
    http://www.mozilla.com/en-US/firefox/all-older.html
    Just reinstall your choice of FF. The bookmarks are in a different directory and are NOT overwritten. Some of the Add-ons that worked in 3.6 DO NOT work with 4.0, pay attention and head any warnings when you start 4.0.
    I had to disable extensions: Flashblock and WOT
    Firefox SafeMode? - A troubleshooting mode.
    1.You can open the Firefox 4.0 SafeMode by holding the Shft key when you use the Firefox desktop or Start menu shortcut.
    To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.
    For more help, see this: http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    Hope this helps you out.
    Feedback is appreciated especially if this helps you out.

  • Unable to install iTunes 10.5.0.142 on Windows 7 64 bits system

    I am not able to install the latest version of itunes, version 10.5.0.142, released by Apple last week.
    I think it is important to note that there are three pending updates on my system (Windows 7, 64 bit), which keep on failing again and again no matter what the mode of update (manual via microsoft website or automatic via the program provided by microsoft). These are:
    1. Security Update for Windows 7 for x64-based Systems (KB2556532)
    2. Security Update for Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package (KB2538242)
    3. Security Update for Microsoft Visual C++ 2008 Service Pack 1 Redistributable Package (KB2538243)
    The methods that I have tried to install the latest version of itunes (all have failed as of now):
    a. Automatic via the previous version of itunes. This tries to download and install itunes in parts, but ultimately leads to the error originally pointed in this thread. Failed.
    b. Uninstalling the previous version of itunes completely as mentioned here: http://support.apple.com/kb/HT1923 and also using Microsoft Fixit and then trying to install the new version. Failed.
    c. Uninstalling all but apple software update, and then trying to update manually from the software update file available in c:\Program Files (x86)\Apple Software Update folder. Failed.
    d. Uninstalling all the versions of visual c++ (2005 and 2008), and then trying to install the latest version of itunes. Then re-installing the latest versions of c++ (2005, 2008 and 2010) along with updates but three as pointed above, and then trying to install the latest version of itunes. Failed.
    e. I have tried various permutations and combinations of keeping the firewall, antivirus and even the internet off and on. Failed.
    The combination of errors that I have received:
    - An error occurred during the installation of assembly ‘Microsoft.VC80.CRT,version=“8.0.50727.6195″,type=“win32,publicKeyToken=“1fc8b3 b9a1e18e3b”,processorArchitecture=“x86”. Please refer to Help and Support for more information. HRESULT: 0x80073712
    - Error 7 indicating installation of microsoft .net framework 4.0 for me (http://support.apple.com/kb/TS3074) and
    - Error 2 - "Apple Application Support was not found. Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again. Error 2 (Windows error 2)
    However, I have seen on some websites that people have been able to install the latest version of itunes on their windows 7 64 bits system (surprising, but yeah).
    I would appreciate any pointers as to:
    ?1 How do I install the latest version of itunes on my system.
    ?2 If the steps are not included in the solution to ?1, how do I update 1., 2., and 3. mentioned above.
    ?3 If I am able to install itunes 10.5.0.142 on my windows 7 64 bit, would I be able to successfully my iPad2 to iOS5?
    Many thanks.

    I should have posted this earlier, but anyway. I restored my laptop to factory version after backing up any useful data, and the first thing I the laptop was restored was connect to the internet, download and install the latest version of iTunes. And Bingo! It worked.
    Apple helps you find Original Sin with the Windows.

  • WIndows 7 64-bit system printing to a Windows 2000 server configured as a print server

    Is there any way to configure a new Windows 7 64-bit computer to use a Windows 2000 server configured as a print server ?
    The printer that I would like to connect to is an HP 4240n LaserJet. I appears that there is only a 64-bit Universal Print Driver available. The server currently uses HP 32-bit PCL5e or PCL6 drivers for all other connected computers. Connection is through a Hewlett-Packard Network Port, using DLC/LLC transport for the embedded 4240n print server.  
    Installing  the HP 64-bit UPD to the WIndows 7 64-bit system, and then attempting to redirect the local port to the Win2k network print server has not worked.
    Thanks for any advice.

    Hi:
    See if this works...
    Run msconfig.
    In the System Configuration screen, Boot tab, Advanced Options, if there is a check mark in the box next to Maximum memory. Remove that checkmark and save your changes.
    Reboot and hopefully Windows recognises all the Ram ( minus the reserved ) after restarting.
    Please give that a try, and post back and let us know if that frees up some system memory for you.
    Paul

  • How do I retrieve a hWnd required to draw an image created by an ActiveX object on a windows 7 64-bit system?

    I'm calling to the NaturalPoint Optitrack SDK using activex controls and am trying to pull tracking data from a trackIR 5.  I have connected to the camera and wanted to start by just viewing a captured frame.  The Optitrack COM provides a function to draw the frame, but needs a hWnd handle for a window to draw to.  I tried to call FindWindow from the user32.dll, but only found FindWindowA, FindWindowExA, FindWindowW, and FindWindowExW.  I'm using Labview 8.6 (32-bit) on a Windows 7 64 bit system (trying to figure out how access the universities liscense manger to install LV2010 64 bit).  Thanks
    Jarad

    The other functions are variants, depending on how you're dealing with strings:
    FindWindowW : Unicode names
    FindWindowA: ANSI names
    FindWindowEx: Searches child windows for the window that has the specified name. You can provide a parent window handle as a starting point. The "A" and "W" follow the same Unicode/ANSI names as FindWindow.
    You'd want to use FindWindowA or FindWindowExA since LabVIEW doesn't support Unicode.

  • Crystal Reports XI R2 SP2 on Windows Server 2008 ( 32 bit system)

    Hi Forum,
    I am trying to run a .NET application on a windows server 2008( 32 bit system) with Crystal Reports X1 R2 SP2 installed.
    The application does not run and throws the following error in the event log.
    Faulting application w3wp.exe, version 7.0.6002.18005, time stamp 0x49e023cf, faulting module unknown, version 0.0.0.0, time stamp 0x00000000, exception code 0xc0000005, fault offset 0x0171ab98, process id 0x%9, application start time 0x%10.
    The same application runs fine on a windows server 2003.Also, the same application runs fine, when i remove the crystal reports code. It loads the .NET pages fine.
    Please suggest me if i am missing something. Please let me know how can i debug this issue?

    Hello,
    Crystal reports XIR2 is not supported on Windows server 2008.
    Check the supporting platforms guide here.
    [Crystal Reports XI Release 2 SP2 - Supported Platform Info|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/7081b21c-911e-2b10-678e-fe062159b453]
    Thanks,
    Bhushan.

  • Will photos created on a 32 bit Windows Vista Home Premium be readable on a Windows 7 64 bit system?

    I have around 25,000 photos in jpeg and tiff and in version sets plus some slide shows and blurb books created in the 32 bit system of Windows Vista Home Premium with PSE 10.0 and Premier and have to change to a 64 bit  Windows 7  system since Adobe is discontinuing the Photoshop Elements programs in early April of 2013. Will these photos created in 32 bit be readable and editable in the 64 bit system?

    Yes. PSE works on both 32bit and 64 bit systems.
    PSE is not being discontinued. The on-line service at Photoshop.com is simply moving to Adobe Revel.

Maybe you are looking for

  • Uploading of Master Schema in CCM 2.0 error

    Hi All, We are implementing CCM 2.0 SRM 5.0 TREX 7.0 My /CCM/INITIALIZE_CME  ran sucessfully and gave the message "predefined datatype and characteristics were intialized". When I tried to edit the Master catalog it says " No schema found for catalog

  • My mini won't update apps.  I tried a few suggestions found in search but nothing helps.

    SSo when I. The App Store updates section I try to click update nd all it does is take me to the app, never updates it.  The update all button is brayed out so I can't use that either.  Any ideas?

  • Best Practise: How to disable an obsolete RFC-Connection?

    Hello experts, Happy new year first of all. I have a brief question. We have an SRM System which is connected to several 4.x and ECC-systems. As the world changes the systems also changes. From time to time an RFC-connection needs to be set to obsole

  • DNS GUI will not display Zone entries

    Hi I have an Apple Intel Xserve running 10.5.8 I have added hundreds of entries into our DNS using the GUI I have just tried to add a new CNAME Server admin then "stopped responding" - I used force quit to kill off the application Now when I launch S

  • Error. Lightroom catalog can't open

    Hello I keep getting the error: 'The Lightroom catalog named Lightroom 5 catalog cannot be opened because another application already has it opened' when opening Lightroom. There is no other application using it. there is only one file available, no