Install new module

Hai all,
R 12.1.3 on Linux 64 bit with DB 11.2.0.3 . How do I install/add  a new module in the upgrade instance R 12.1.3 from R11 ?
TIA

Pl identify which module you want to add. Typically, you would use OAM License Manager - Oracle E-Business Suite System Administrator's Guide - Maintenance
HTH
Srini

Similar Messages

  • After installing new memory modules cannot boot windows

    I have a G60-458DX with 4GB of RAM; (two 2GB modules) running Vista.  Spec's say that I can install up to 8GB. 
    After I installed two 4GB modules Windows Vista would not boot.  The power light was on but the software would not boot.  Could not turn off the power until I uplugged power cord and pulled the battery.  Put the battery and the two 2GB modules back in and had no problem with booting up the software.  The modules I tried to install were new (never used) and the same specifications as the 2GB modules.  Is there any way I can check the new modules? 

    Hi,
    If you check Page 52 of your Maintenance & Service Guide this would also indicate a maximum of 4Gb as the largest modules specified are 2GB for each slot.
    Definetely worth checking further, but I have a feeling that this apparent 4Gb limit is the problem.
    All the best,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Install new Apache module - mod-auth-token?

    Hello
    Can someone assist with directing me to a good tutorial for adding a new module to Apple's Apache install under OSX 10.5.8 Server.
    Looking to install and use the mod-auth-token module and not to sure how to install this to Apple's Apache.
    Thanks,
    Tim

    I have the same problem like you??? You already know the solution?

  • Fail installing perl modules in new sparc server

    Hi,
    I'm trying to install the perl modules needed by my applications in a sparc server SunFire V210 with solaris 9 64bit. All the attempts fail because the interpreter is compiled with forte, this is the explanation i got. I found a solution in CPAN called perlgcc but it doesn't work it build a bad Makefile, the file has a lot of mistakes. Perl.com people tell me to change parameters in the makefiles and Config.pm but it's very hard to find the correct values, i'm not sure i fix the correct things.still it doesn't work.
    I need an urgent solution it permits me to add modules without correction in the each makefile. I hope there is a standar procedure to solve it.
    Thanks!

    Hi,
    Here is your solution (I hope). I've being doing this this week and worked.
    Look the stuff is connected with the compilers used to complie perl and as you see later other stuff on the sun. At the sun the stuff is compiled with sun compiler which is not provided on the solaris 8, 9 nor 10. Fortunately there is gcc installed on the sol10.
    -bash-3.00# gcc --version<br />
    gcc (GCC) 3.4.3 (csl-sol210-3_4-branch+sol_rpath)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    -bash-3.00#
    The perl is compiled with sun compiler cc
    -bash-3.00# perl -V | more
    More
    Summary of my perl5 (revision 5 version 8 subversion 4) configuration:
    More
    Platform:
    osname=solaris, osvers=2.10, archname=sun4-solaris-64int
    uname='sunos localhost 5.10 sun4u sparc SUNW,Ultra-2'
    config_args=''
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=unde
    f
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=define use64bitall=undef uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
    Compiler:
    cc='cc', ccflags ='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_T
    S_ERRNO',
    optimize='-xO3 -xspace -xildoff',
    cppflags=''
    ccversion='Sun WorkShop', gccversion='', gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=87654321
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lsee
    ksize=8
    alignbytes=8, prototype=define
    Linker and Libraries:
    ld='cc', ldflags =''
    libpth=/lib /usr/lib /usr/ccs/lib
    libs=-lsocket -lnsl -ldl -lm -lc
    perllibs=-lsocket -lnsl -ldl -lm -lc
    libc=/lib/libc.so, so=so, useshrplib=true, libperl=libperl.so
    gnulibc_version=''
    Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-R /usr/perl5/5.8.
    4/lib/sun4-solaris-64int/CORE'
    cccdlflags='-KPIC', lddlflags='-G'
    What to do??? Yes - you are on sol10 - then do it
    1. Logon as a root
    2. Check your path and compare with
    -bash-3.00# echo $PATH
    /usr/sbin:/usr/bin:/usr/sfw:/usr/sfw/bin:/usr/sfw/lib:/usr/s fw/include:/opt/sfw:
    /opt/sfw/bin:/opt/sfw/lib:/opt/sfw/include:/usr/ccs/bin:/usr /ccs/lib
    -bash-3.00#
    if differs upto the last /usr/ccs/lib modify your profile file ( anthing ofter the last /usr/ccs/lib can be aded).
    3. Check out the the comands
    gcc --version<br />
    perl -V
    4. If everything upto this step is ok you can proceed
    5. You may do the installation of the perl modules in two ways:
    a.) with CPAN module - Internet connection MANDATORY
    b.) with perl and downloaded tar.gz module
    5.a) With CPAN module
    5.a.1) Launch the command to configure the CPAN module
    perl -MCPAN -e shell
    you will be asked to give the answers inorder to configure CPAN
    5.a.2) When you see cpan> prompt do the following:
    o conf makepl_arg 'CC=gcc CCCDLFLAGS=-fPIC CCFLAGS=" " OPTIMIZE=" " LD=gcc' press return
    5.a.3) Type "o conf commit" press return. You may install your modules now with the install command e.g. install HTML::Parser for example.
    5.b.1) Download your modules from http://www.cpan.org to your server to /var/tmp/packed or whatever folder you want.
    5.b.2) unzip then untar and cd into subfolder
    5.b.3) type ./Makefile.PL -t 'CC=gcc CCCDLFLAGS=-fPIC CCFLAGS=" " OPTIMIZE=" " LD=gcc'
    5.b.4) Type make install
    6.) In both methods you have to check if the modules are installed by issuing the commnad:
    perl -e 'use Your::Module' e.g.
    perl -e 'use HTTP::Parser'
    if no error message on the term you are ready
    Rem. The differrences are in the flags used to compile and link with these two compilers sun cc and gnu cc. There are of course problems with 64bit values on sun64bit e.g. SPARC and Intel stuff cause Perl does not support real 64bit values yet. The Perl modules should use only floating point represetnation with around 53~bit precision. But this issue depends on the module creator not you if you do not want to do the remedy.
    I hope it will help you
    good luck

  • Creation of a new module

    Hi all,
    I have some confusion about the correct way of deploying a new module. I'm reading the docs, but still it is not clear for me.
    Following the documentation I have installed ATG 10.2, Endeca, the CRS application and QuincyFunds. Running with JBOSS the server instances that I have created are ATGProduction and ATGPublishing. Everything is running great.
    Now I want to create a new module or application like CRS. These are the steps that I have followed:
        1. I have installed the eclipse plugin and I have created a new ATG Module called ATGNew that used the ATG Scenarios module.
        2. After this I have executed the command: bin/runAssembler ATGNew.ear -m ATGNew
        3. I tried deploying the .ear but with the error: Failed to resolve java:/ATGMySQLDS. After a bit of searching I read this post and I changed to command with
        4. bin/runAssembler -server ATGProduction ATGNew.ear -m ATGNew. Now it tells: Failed to resolve java:/ATGProductionDS
    Maybe should I use cim.sh to create new publishing and production servers removing the existing? I don't know. I'm a bit lost.
    Thanks!

    Hi SwamyK,
    thanks for your response. Should I use cim to configure the datasources?.
    Another question, because I still don't understand how to integrate my new module. During the installation of CRS I have use cim.sh to create to servers, ATGProduction and ATGPublishing in ATG and jboss. For my new module am I going to use the same ATG instance that runs CRS with the same server instances ATGProduction and ATGPublishing and my module will run on the same jboss server instances or should I create a new ATG installation and new jboss servers?
    Thanks a lot for your help. Really appreciated!
    Regards.

  • Install new fonts in adobe workbench designer 10

    I wanted to have the Helvetica and MS Sans sheriff fonts to be listed in designer.  Can you please help out it guiding me How to install new fonts in adobe workbench designer 10?

    Adobe document services require access to fonts that are installed with the Font Manager Module. This module contains a number of Adobe bundled fonts installed in /usr/sap/<SID>/J<xx>/j2ee/os_libs/adssap/FontManagerService/fonts/adobe.
    Create a subdirectory called fonts below the
      /usr/sap/<SID>/SYS/global/AdobeDocumentServices/FontManagerServicedirectory  
    Create a subdirectory called customer below the fonts directory created in the previous step
    Copy your font file(s) into the customer directory
    Restart the "Document Services Font Manager" for the changes to take effect.Use Visual Admin on the Adobe Document server
      i.      Expand "Server à Services "  
    ii.      Restart the Document Services Font Manager
    Also restart the application com.adobe/AdobeDocumentServices
    Expand "Server à Services à Deploy"
    Select the "Applications" button at the bottom of the screen
    Stop and start the   com.adobe/AdobeDocumentServices application

  • Hi, I have installed new HD on macbook pro 2.2. when reinstalling OS, I get flashing ? any ideas?thanks

    hi, I have installed new ssd HD on macbook pro 2.2.
    when attempting to reinstall OS, I only get flashing ?
    have tried holding down C, nothing but flashing ?...
    any ideas? thanks!

    slim1001 wrote:
    hi, I have installed new ssd HD on macbook pro 2.2.
    when attempting to reinstall OS, I only get flashing ?
    have tried holding down C, nothing but flashing ?...
    any ideas? thanks!
    The MacBook Pro 2,2 is a 15" Core 2 Duo from Octomer 2006-June 2007
    It only has a mere 1.5 Gbps SATA 1 connection which won't realize the performance of the SSD which is better suited to a SATA 3 connection at 6Gbps. So basically you put a Ferrari engine into a Yugo.
    My advice is to return the SSD and get a 7,200 RPM hard drive, is backwards compatible with your older SATA 1 connections and also provide more storage space and speed you require for that machine which has a maximum RAM limit of 3GB (4GB has to be installed, 2 - 200-pin PC2-5300 (667MHz) DDR2 SO-DIMM modules in two slots, see OtherWorld Computing or Crucial.com for Mac verified memory)
    What occurs with that model is there is a lot of memory swapping to the drive due to the 32 bit processor and it's 3GB RAM limit, so your thinking a SSD would speed things up is correct, however your SATA 1 connection is the bottleneck.
    So your resigned to using a 7,200 RPM hard drive which will give the same performance as the SSD in your case due to the slower SATA 1, it's the best you can do.
    Also, older OS X operating systems 10.6 and earlier have trouble installing on with SSD's a it's a new storage device, there is supposedly some more hoops to go through to enable TRIM etc. as the installer doesn't know what it's looking at when it see's a SSD, but it does with a hard drive.
    For that machine, even though OS X 10.8 can be eventually installed on it, it's not advised due to it's vintage age and slower CPU and graphics capability. 10.7 and 10.8 are bloated for newer mor powerful machines, thus it's only going to be a wasted effort and costly for a machine about to die shortly.
    For the best OS on that machine (with current security updates) would be OS X Snow Leopard, which you can get the $20 or so OS X 10.6. white retail disk still from Apple online store.
    Read:
    OS X 10.4/10.5 need to upgrade, 10.6.8 ok still
    Install/upgrade RAM or storage drive in Mac's
    How to erase and install Snow Leopard 10.6
    For Snow Leopard Speed Freaks
    Why is my computer slow?
    IMMO a 7,200 hard drive and 10.6 updated to 10.6.8 is the best, most cost effective solution as something else is going to croak on the machine in the new few years.
    10.8 will let you run iCloud etc., however the machine will be so slow and you will have to buy all new versions of software for a machine that's only going to expire shortly.
    Run 10.6.8 on that machine for the next few years until the wheels fall off, Apple has got your back with security updates still until it drops to like below 10% OS X market share.
    If you require to run iCloud etc., then buy a new machine for that, don't waste your effort going to 10.8 on the older machine, use it for backup purposes.

  • Labview program to unistall and install new/updated software programatically

    Hi,
     I want to create a labview program to install and uninstall teststand deployment programatically.
    Query : I have teststand deployment made and ready,wanted to deploy in 5 test PC's and for very first time it did work good. Now when I made updates in the modules, i made a new deployment with version increment. Now this time, i first uninstalled the previous deployment and reinstalled a new one. This time it took time to uninstall and install all 5 test PC's.
    I wanted to automate this process through labview. I wanted to create a labview exe or installer which continusouly running on the client PC's looking for a perticular folder for new/updated deployment. If it finds, uninstall the older version if present and install a newer version of deployment.
    I wanted to know what things i need to consider while making this type of labview program which uninstalls the older version and installs a newer one? I think i need to even reboot after uninstallation, before installing newer deployment. How make the program running even after reboot and continue the process?

    I have the MS-6968 device and i want to use driver 1.4.x or 3.0.x. I found the driver 1.4.2.10 but i cannot find any WIDCOMMSecurity code.
    So, can anyone give me a link for BTWPatcher.exe???
    It cannot be found here (Jon's Bluetooth ) anymore.
    Thanks

  • Role of Apps DBA in Implementing New Module

    Hi Friends,
    Supposing a company has a running smooth production system of EBS 11i. With modules
    FINANCIALS(GL,AR,AP,FA,CM) in it. Then the Company want to add another module HR system. Is an Apps DBA needed in the scenario? or only the SysAdmin and Functional
    Consultant only.
    What is the role of an AppsDBA in implementing a new module?
    Thank a lot

    It is the responsibility of both the System Administrator and the Apps DBA. If you need to change the status of HR module to fully installed, then you need to change the status from shared to fully installed (in case it is shared). You will also need to run DataInstall and apply hrglobal.drv driver using adpatch.
    For more details, refer to:
    Note: 374915.1 - HRMS PATCH INSTALL FAQ
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=374915.1
    Note: 175846.1 - How to find the latest version of hrglobal.drv on Metalink
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=175846.1

  • I am having problems installing new OWC Memory in my macbook 3,1

    I received 2G memory from OWC that is not working in my mac.  They shipped the wrong one as I had requested two 1G module and they sent a single 2G memory strip but they said it would work in combination with the installed .5G module.  They had me reset SMC and zap Pram but all I get with the new strip installed is a beeping sound and flashing indicator light and no start up.  Installing the old memory works fine.  Does anyone have an idea.  Can I install to different memory modules - they said it should work fine.  Frustrating.

    Thanks for the feedback.  I sent the module back and asked for a refund from OWC and did  receive it though they deducted several dollars from my refund.  I contacted them for an explanation and they have refused to listen to or respond to my complaint although on their website it says that they will respond in 48 hours.  I think OWC is not a good seller and people should be aware that they do not stand by their products and their customer service is not good.  I will never do business with them again and hope that others will think twice about buying from them.

  • Error installing new 4630 e all in one to windows xp workstation with usb

    error installing new 4630 e all in one to windows xp workstation with usb
    cannot install this hardware error occured during this installation of the device the specified module could not be found
    local printer trying to connect with usb. just purchased the printers.
    Tried:
    loading hp dectect to detect printer, can not detect it
    loaded diagnostic says nothing is wrong
    loaded drivers form hp website
    if i go into device manager the comptuers does see the printer there, with a ! next to it saying drivers are not loaded, but cant get the drivers to load.
    as the instructions say in the book received with the printer. to troubleshoot do this...  which I did, uninstalled rebooted, removed cd and unplug usb, loaded software then pluged in usb and still get same error, cannot install this hardware error occured during this installation of the device the specified module could not be found..
    someone help please

    I also just bought a 4630 and have the same problem (Windows XP) BUT after finally figuring out how to enter numbers on the key pad I was able to get the device to recognize and accept my wireless connection HOWEVER when attempting to print the software claims it could not communicate with the printer BUT the printer worked just fine and I was able to get at least 8 pages of high quality text.
    So, it looks as though HP is SNAFU, the left hand does not know what the right hand is doing.
    I'll keep playing with the software to see if I can clean up this mess.

  • Installed new Premier Elements 12 and dymamiclinkmanager has stopped working

    The Sw does not start at all I get several error messages:
    Installed new Premier Elements 12 and dymamiclinkmanager has stopped working
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    dynamiclinkmanager.exe
      Application Version:    6.0.0.0
      Application Timestamp:    523cc6d3
      Fault Module Name:    MSVCR100.dll
      Fault Module Version:    10.0.40219.1
      Fault Module Timestamp:    4d5f0c22
      Exception Code:    40000015
      Exception Offset:    0008d6fd
      OS Version:    6.3.9600.2.0.0.256.48
      Locale ID:    1035
    and after those a Message:
    Adobe Premier Elements 12 has stopped working
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    Adobe Premiere Elements.exe
      Application Version:    12.0.0.0
      Application Timestamp:    523cd4d5
      Fault Module Name:    dvamarshal.dll
      Fault Module Version:    11.0.0.0
      Fault Module Timestamp:    523cc62d
      Exception Code:    c0000005
      Exception Offset:    0000000000034961
      OS Version:    6.3.9600.2.0.0.256.48
      Locale ID:    1035
    So did I purchase piece of crap, or what should I do to get the SW working?
    Br
    -H

    First, note that this is a user-to-user forum. If you want to contact Adobe, you'll need to call or write them on their main site.
    That said, as the note says at the top of the forum, you're going to have to provide us a lot more information if you want us to help you. "Stopped working" doesn't tell us much. Does this mean that it was working in the past but then stopped? What stopped? What did it do that it's not doing now? What were you doing when it stopped? Was it when you were adding video to your project, for instance?
    What operating system are you using? If Windows, have you manually gone to Windows Update and made sure you've got the non-critical updates, which don't download automatically to your system? Have you ensured you have the latest version of Quicktime, per the program's requirements?
    How fast is your processor, how much RAM do you have and how much free, clean, defragmented space is on your hard drive?
    What model of camcorder is your video coming from and what format and resolution is it? Did you use Premiere Elements to get the video from your camcorder to your Premiere Elements project?

  • Applications Crashing After Installing New Softwarre

    Hi Folks,
    Just wondering if anyone can help with an issue I'm having. After installing certain software (1st time this happened it was Skype, 2nd time it was Google Earth), applications such as Safari and Firefox crash when I either go to Print or Page setup within those applications.
    When I use the Disk Utility (Verify Disk) it says:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Invalid sibling link
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    At this point Repair Disk is not an option. If I wipe the drive and reinstall OSX from the install dvd the disk is fine. This makes me think it is a software issue, but it is hard for me to identify what exactly is going on. This is a new system, only a few months old, so I am hoping it isn't a hardware issue.
    I've pasted in the Problem Report from Safari below.
    At any rate, any insight would be greatly appreciated!
    Cheers,
    Ryan
    Date/Time: 2007-07-22 14:48:52.594 -0400
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [57]
    Version: 2.0.4 (419.3)
    Build Version: 13
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 219
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000020
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x90848cc3 CFBundleGetFunctionPointerForName + 14
    1 ...apple.print.framework.Print 0x92cc8546 PJCPrepareAppKitPageSetupDialog + 74
    2 ...apple.print.framework.Print 0x92cc9868 PMPrepareAppKitPageSetupDialog + 98
    3 com.apple.AppKit 0x93671cfd -[NSPageLayout beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 213
    4 com.apple.AppKit 0x93601030 -[NSDocument runModalPageLayoutWithPrintInfo:delegate:didRunSelector:contextInfo:] + 230
    5 com.apple.AppKit 0x93600eeb -[NSDocument runPageLayout:] + 117
    6 com.apple.AppKit 0x9335fd88 -[NSApplication sendAction:to:from:] + 107
    7 com.apple.Safari 0x0002b083 0x1000 + 172163
    8 com.apple.AppKit 0x9340dce7 -[NSMenu performActionForItemAtIndex:] + 455
    9 com.apple.AppKit 0x9340da29 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 103
    10 com.apple.AppKit 0x9333ee16 _NSHandleCarbonMenuEvent + 477
    11 com.apple.AppKit 0x932727fc _DPSNextEvent + 1491
    12 com.apple.AppKit 0x93272056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    13 com.apple.Safari 0x00006cea 0x1000 + 23786
    14 com.apple.AppKit 0x9326bddb -[NSApplication run] + 512
    15 com.apple.AppKit 0x9325fd2f NSApplicationMain + 573
    16 com.apple.Safari 0x0005f54a 0x1000 + 386378
    17 com.apple.Safari 0x0005f471 0x1000 + 386161
    Thread 1:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92829d3a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x92829c36 -[NSRunLoop run] + 75
    5 com.apple.WebKit 0x94d30d29 +[WebFileDatabase _syncLoop:] + 198
    6 com.apple.Foundation 0x927f42e0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92829a0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
    4 com.apple.Foundation 0x927f42e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d2b3 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082cace CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x92850bc2 +[NSURLCache _diskCacheSyncLoop:] + 206
    4 com.apple.Foundation 0x927f42e0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x9001a1cc select + 12
    1 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284a26c -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.Syndication 0x999f4966 -[AsyncDB _run:] + 181
    3 com.apple.Foundation 0x927f42e0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x92cc850a ecx: 0xa0813d04 edx: 0x11fda030
    edi: 0xa2cc6244 esi: 0x00000000 ebp: 0xbffff278 esp: 0xbffff260
    ss: 0x0000001f efl: 0x00010286 eip: 0x90848cc3 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0xdbfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x1fa000 - 0x1fbfff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xe495000 - 0xe9b8fff com.macromedia.Flash Player.plugin 9.0.28 (1.0.4f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff OSServices /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9141bfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141f000 - 0x91445fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91934fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91947000 - 0x919f9fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3f000 - 0x91a55fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5a000 - 0x91a78fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7d000 - 0x91adcfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aee000 - 0x91af2fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af4000 - 0x91b7afff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d78000 - 0x91dd1fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dda000 - 0x91dfefff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e06000 - 0x9220ffff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92249000 - 0x925fdfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92796fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d7000 - 0x92a07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b21000 - 0x92b38fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b43000 - 0x92b9bfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baf000 - 0x92baffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb1000 - 0x92bc1fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd0000 - 0x92bd8fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bde000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c93fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c96000 - 0x92cb4fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc6000 - 0x92cccfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd2000 - 0x92d35fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d5c000 - 0x92d9dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc4000 - 0x92dd2fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd9000 - 0x92ddefff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de3000 - 0x930d8fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931de000 - 0x931e9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931ee000 - 0x93209fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93259000 - 0x93259fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9325b000 - 0x93911fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c92000 - 0x93d0dfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d46000 - 0x93e00fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e43000 - 0x93e43fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e45000 - 0x94006fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404c000 - 0x9408dfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94095000 - 0x940cffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d4000 - 0x940eafff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94182000 - 0x941c0fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94204000 - 0x94215fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94223000 - 0x94261fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9427d000 - 0x9428cfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94293000 - 0x9429efff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ea000 - 0x94304fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430a000 - 0x94609fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9478b000 - 0x948d1fff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9495d000 - 0x9496cfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94973000 - 0x9499cfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949a2000 - 0x949b1fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949b5000 - 0x949dafff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949e6000 - 0x94a03fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94d2e000 - 0x94dc1fff com.apple.WebKit 419.2.1 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e1b000 - 0x94e9dfff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ed6000 - 0x951b5fff com.apple.WebCore 418.22.2 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95334000 - 0x95357fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96ef0000 - 0x96f04fff com.apple.audio.CoreAudioKit 1.0.1 /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x999f2000 - 0x99a29fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x99a45000 - 0x99a57fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: iMac5,1, BootROM IM51.0090.B08, 2 processors, Intel Core 2 Duo, 2 GHz, 2 GB
    Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (4.80.79.1)
    Bluetooth: Version 1.9.0f8, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST3500641AS Q, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Primax Electronics, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    Imac 5.1   Mac OS X (10.4.10)  

    Hi Teoryan, Welcome to Apple Discussions.
    After installing new software you should repair permissions
    Repair Permissions: This should be done after all software installs and updates.
    1. Navigate to Utilities/DiskUtility and launch Disk Utility.
    2. Choose your volume (usually the second icon)
    3. Choose "First Aid" tab
    4. Click on "Repair Permissions"
    (that's an aside).
    The reason your "Repair Disk" is grayed out is that you cannot repair a disk if you are booted from it. The disk cannot be "mounted" during the repair process. What you need to do is boot from your CD/DVD:
    Also run "verify" disk. If the disk needs repair:
    Repair Disk:
    Steps for using Disk Utility
    1. Insert the Mac OS X Tiger Install disc or Install Disk 1 that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair.
    If you repair errors run it until no errors found.
    Let us know the results.
    -mj
    [email protected]
    Message was edited by: macjack

  • Installing Perl Modules from CPAN

    I am new to Perl and new-ish to Arch Linux.  I want to start to install some packages from CPAN.
    I read the perl package wiki article and while I found it on the overwhelming side, I took away that one of the recommended ways to install things from CPAN was with CPANPLUS::Dist::Arch.
    So I installed this via
    pacman -S perl-cpanplus-dist-arch
    setupdistarch
    Now I want to install some packages.  The cpanp manpage (as well as an example I found) seemed to indicate that this was now as easy as
    cpanp i <modulename>
    However, when I go to install any module, I get errors like
    monolith: ~$ cpanp i Test::Harness
    Installing Test::Harness (3.28)
    CPANPLUS::Dist::Base will be removed from the Perl core distribution in the next major release. Please install it from CPAN. It is being used at /usr/share/perl5/vendor_perl/CPANPLUS/Dist/Arch.pm, line 6.
    CPANPLUS::Dist::Build::Constants will be removed from the Perl core distribution in the next major release. Please install it from CPAN. It is being used at /usr/share/perl5/core_perl/CPANPLUS/Dist/Build.pm, line 16.
    Running [/usr/bin/perl -e use strict; BEGIN { my $old = select STDERR; $|++; select $old; $|++; $0 = shift(@ARGV); my $rv = do($0); die $@ if $@; } /home/jschwab/.cpanplus/5.18.1/build/Test-Harness-3.28/Makefile.PL INSTALLDIRS=site]...
    Checking if your kit is complete...
    Looks good
    Writing Makefile for Test::Harness
    Writing MYMETA.yml and MYMETA.json
    [MSG] Module 'Test::Harness' depends on 'ExtUtils::MakeMaker', may need to build a 'CPANPLUS::Dist::Arch' package for it as well
    [ERROR] Unknown variable name in IF block: checkdepends at /usr/share/perl5/core_perl/CPANPLUS/Module.pm line 830.
    Searching Google for the error message just returned copies of the 'Module.pm' file in which the message appears.  Could someone help me figure out what is going on?
    Last edited by wesphys (2013-09-13 22:55:13)

    wesphys wrote:
    I am new to Perl and new-ish to Arch Linux.  I want to start to install some packages from CPAN.
    I read the perl package wiki article and while I found it on the overwhelming side, I took away that one of the recommended ways to install things from CPAN was with CPANPLUS::Dist::Arch.
    So I installed this via
    pacman -S perl-cpanplus-dist-arch
    setupdistarch
    Trying to reproduce above sequence:
    [bitcoin@alarm-01 ~]$ yaourt -S perl-cpanplus-dist-arch
    [sudo] password for bitcoin:
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): perl-cpanplus-dist-arch-1.28-1
    Total Download Size: 0.04 MiB
    Total Installed Size: 0.15 MiB
    :: Proceed with installation? [Y/n] Y
    :: Retrieving packages ...
    perl-cpanplus-dist-... 43.1 KiB 6.10K/s 00:07 [######################] 100%
    (1/1) checking keys in keyring [######################] 100%
    (1/1) checking package integrity [######################] 100%
    (1/1) loading package files [######################] 100%
    (1/1) checking for file conflicts [######################] 100%
    (1/1) checking available disk space [######################] 100%
    (1/1) installing perl-cpanplus-dist-arch [######################] 100%
    [bitcoin@alarm-01 ~]$ setupdistarch
    -bash: setupdistarch: command not found
    [bitcoin@alarm-01 ~]$ cd /usr/bin/vendor_perl/
    [bitcoin@alarm-01 vendor_perl]$ ls
    cpan2aur setupdistarch
    [bitcoin@alarm-01 vendor_perl]$
    Please advise. TiA

  • Checking & installing new RAM

    Hi,
    I have a Pavilion dv7 product number VG420AV notebook with 4 GB DDR3 system memory (2 DIMM).
    I am wanting to upgrade the memory to 8 GB.
    Hp told me to buy a 4GB, 1600Mhz, PC3-12800 memory module (SHARED).
    I am not sure if I need one stick or two.
    How do I check to see if I have an avilable slot to install new RAM ,& how do I install new RAM in my notebook? 
    Thanks fo the help.

    That is a dv7t-3100 model. 2 ways to find out about the RAM. 1. Download and install CPU-Z and look at the memory tab; or, 2. Just pull the back cover off and look. 
    Here is the Service Manual:
    Manual
    Page 4-17
    And you do say you have 2 DIMM(s) which is all the slots available so to upgrade you are going to have to remove and replace existing memory.
    If this is "the Answer" please click "Accept as Solution" to help others find it. 

Maybe you are looking for

  • How do I create a ringtone for my iPhone 5 from garage band?

    How do I create ringtones from my music in iTunes for my iPhone 5 using Garage Band? Thanks

  • What version of Adobe Reader Extension  ?

    hi, I am running Adobe Reader Extension v7.0 to certify form. We have a couple of issues of form which behave differently when forms are openning in browser and form operates on Windows. Basically, the checkbox is not checked etc.. Does anybody know

  • How do I get Numbers to recognise my date formatting?

    I have my date format set in system preferences to YYYY MM DD. But Numbers seems to ignore this and only offers up its own list of possible formats, the best of which is MM DD. Also I wish time to be expressed as a 24hr clock eg 0745 for "Quarter to

  • There is no "Nigeria" as a country option in facetime.

    This omission of "Nigeria" results in my contacts not being recognized, can this be resolved?

  • Reverse Drop-Box for ARD

    I have a mac lab at our school with 20 computers. I can copy folders to the students via unix commands when I need them to have files, but I need to find out how to have a reverse drop-box so when they drag and drop a file into a specified folder, th