Sun Performance library or just a tuned BLAS for Solaris x86?

Hi,
I know the sun performance library is not available on Solaris x86, but is
there at least a tuned blas library available?
thanks,
tim

The compilation line you list is correct. One way to see if there are outstanding unsatisfied references is to use the ldd command on the shared library that you created:
% CC -dalign -xarch=v9a -G -o LA.so $(OBJECTS) -library=sunperf -staticlib=sunperf
% ldd LA.so
I assume that one or more of the .o files in the $(OBJECTS) list makes calls to Perflib routines. Does your application (the code that is linking to the LA.so shared library) also make calls to Perflib routines? If so, these will not have been satisfied in the previous creation of the LA.so shared library.

Similar Messages

  • Sun Performance Library and OpenMP applications

    Hi list,
    I have a code that uses BLAS/Lapack libraries. This code requires the BLAS/Lapack to run in serial mode. If and when it runs in parallel this is a disaster. The code runs in parallel with OpenMP directives in SMP systems. I specify the number of threads by setting
    OMP_NUM_THREADS
    to the number of threads desired. Unfortunately if OMP_NUM_THREADS > 1 then sunperf runs in parallel as well. Is there anyway to tell to the sunperf library to run in serial mode no matter what the value of OMP_NUM_THREADS is?
    For example GOTO BLAS library provides the environmental variable GOTO_NUM_THREADS which is dedicated to the threads of the GOTO library. So by setting GOTO_NUM_THREADS = 1, the library always runs in serial mode no matter what the value of OMP_NUM_THREADS is.
    How could I achieve the same effect with Sun Performance Library?

    Take a look at Perflib's USE_THREADS routine :
    man -s 3p use_threads
    Doing a call to USE_THREADS with the value of "1", before calling Perflib routines may work for you.
    Also, I've noticed applications that have lots of small chunks of parallel work, need the threads to be very responsive. (And not sleep in between work chunks)
    A way to make the threads not sleep is with the ${SUNW_MP_THR_IDLE} environment variable. I always set the value to "SPIN" :
    % setenv SUNW_MP_THR_IDLE SPIN
    You can see other settings for this in the OpenMP User's Guide, page 18 :
    http://docs.sun.com/app/docs/doc/819-5270
    Hope this helps.

  • CBLAS in sun performance library coming with solaris studio 12.2

    Hello,
    In sunperf library coming with sun studio 12u1 (linux x86) I can use cblas callings using the standard names cblas_xxxx. This interface do not appears in sunperf.h (you can use standard cblas.h) but the objects are in libsunperf.(a|so).
    But in solaris studio 12.2 libsunperf cblas_xxxx objects do not exists. Is this normal? Contains libsunperf a standard c blas interface?
    Thanks

    Hello again,
    In this blog post
    http://www.mlds-networks.com/index.php/component/option,com_mojo/Itemid,29/p,35/
    is explained how to link the ACML (AMD core math library) in order to use the standard CBLAS interface (ACML do not provides a standard CBLAS). I tried it and all runs OK. I did the same for the sun performance library in solstudio 12.2 and the compilation proccess runs ok, but in the testing step all functions fails becaude an incorrect argument in each function.
    Exists any way for use the standard CBLAS interface with sun performance library? As I noted in my previous post, version 12.1 of sunstudio libsunperf contains the standard CBLAS interface, but I would like to use version 12.2
    Thanks

  • Unable to link to sun performance library

    I am using SS12 with nevada build 70. When trying to link to sun performance library routine from F90 code, I am getting errors. See the code and output below,
    PROGRAM DeepWell
         USE SUNPERF
         IMPLICIT NONE
         INTEGER, PARAMETER :: N=5          ! No. of nucleons in consideration
         INTEGER :: i,j,k,ios
         DOUBLE PRECISION,DIMENSION(N,N) :: S,H
         DOUBLE PRECISION,DIMENSION(N) :: eig
         DOUBLE PRECISION :: tmp
         DO i=1,N
              DO j=i,N
                   k = i+j
                   IF (MOD(k,2) == 0) THEN
                        S(i,j) = 2.0/(k+5.0) - 4.0/(k+3.0) + 2.0/(k+1.0)
                        H(i,j) = 8*(k+2.0*i*j-1)/(k+3.0)/(k+1.0)/(k-1.0)
                   ELSE
                        S(i,j) = 0.0
                        H(i,j) = 0.0
                   ENDIF
    ENDDO
         ENDDO
         call sygy(1,'V','U','N',H,B=S,W=eig)
    END PROGRAM DeepWell
    Output:
    Running "/usr/bin/dmake -f Makefile CONF=Release" in /export/home/mbkumar/Thissjen/C3/This_C3_P1_VC
    dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    bharat1 --> 1 job
    /usr/bin/dmake -f nbproject/Makefile-Release.mk SUBPROJECTS= .build-conf
    bharat1 --> 1 job
    mkdir -p build/Release/Sun12-Solaris-x86
    f90 -xtarget=opteron -m64 -dalign -xlic_lib=sunperf -c -O3 -w1 -o build/Release/Sun12-Solaris-x86/VC.o VC.f90
    bharat1 --> Job output
    mkdir -p build/Release/Sun12-Solaris-x86
    f90 -xtarget=opteron -m64 -dalign -xlic_lib=sunperf -c -O3 -w1 -o build/Release/Sun12-Solaris-x86/VC.o VC.f90
    (/export/home/mbkumar/Thissjen/C3/This_C3_P1_VC)VC.f90:
    call ssygy(1,'V','U','N',H,B=S,W=eig)
    ^
    "VC.f90", Line = 41, Column = 30: ERROR: An actual argument keyword is being used when an explicit interface is not known.
    ^
    "VC.f90", Line = 41, Column = 34: ERROR: An actual argument keyword is being used when an explicit interface is not known.
    f90comp: 44 SOURCE LINES
    f90comp: 2 ERRORS, 0 WARNINGS, 0 OTHER MESSAGES, 0 ANSI
    :(/export/home/mbkumar/Thissjen/C3/This_C3_P1_VC)VC.f90
    *** Error code 1
    dmake: Fatal error: Command failed for target `build/Release/Sun12-Solaris-x86/VC.o'
    Current working directory /export/home/mbkumar/Thissjen/C3/This_C3_P1_VC
    *** Error code 1
    dmake: Fatal error: Command failed for target `.build-impl'
    Build failed. Exit value 1.

    please ignore the above question. I called non-existing routine.

  • FLTBOUNDS coredump, relative to sun performance library

    Hi,
    I got an core dump, the "truss" log is:
    27346: lwp_kill(1209, SIG#0) Err#3 ESRCH
    27346: lwp_create(0xFFBEF088, LWP_SUSPENDED, 0xFFBEF084) = 1210
    27346: lwp_create() (returning as new lwp ...) = 0
    27346: lwp_continue(1210) = 0
    27346: lwp_schedctl(SC_STATE|SC_PREEMPT, 0, 0xFDEFBDA4) = 0
    27346: sigprocmask(SIG_SETMASK, 0xFF35819C, 0x00000000) = 0
    27346: lwp_exit()
    27346: lwp_wait(1210, 0xFFBEF24C) = 0
    27346: lwp_wait(1210, 0xFFBEF24C) Err#3 ESRCH
    27346: lwp_kill(1210, SIG#0) Err#3 ESRCH
    27346: lwp_create(0xFFBEF088, LWP_SUSPENDED, 0xFFBEF084) = 1211
    27346: lwp_create() (returning as new lwp ...) = 0
    27346: lwp_continue(1211) = 0
    27346: lwp_schedctl(SC_STATE|SC_PREEMPT, 0, 0xFDEFBDA4) = 0
    27346: Incurred fault #6, FLTBOUNDS %pc = 0xFEF7756C
    27346: siginfo: SIGSEGV SEGV_MAPERR addr=0xFF194000
    27346: Received signal #11, SIGSEGV [default]
    27346: siginfo: SIGSEGV SEGV_MAPERR addr=0xFF194000
    27346: *** process killed ***
    I used "/mnts/cdstools/SunCC-7.0.5/solaris-sparc-2.8/bin/CC test.C -xlic_l=sunperf -g -mt -lthread -R/usr/lib/lwp/" to compile.
    I suspect there is a bug in dgemm(one function from Sun Performance Library), since if I comment it out, anything become ok.
    Any one have similar problem?
    Thanks.
    ljg

    Can you post a testcase of your code so I can try to replicate the problem?
    Also, what is is your per-thread stack size set to? A large (4MB) stacksize is required if libsunperf is called from a user created thread.
    See the following for more info if it is indeed a stacksize issue..
    http://docs.sun.com/source/816-2463/plug_optimizing.html#pgfId-19550
    -Moazam

  • OEM Grid Control Release (not just agent) for Solaris x86?

    I see management agents that can be downloaded off of OTN, but is there an official release of Grid Control for Solaris on x86?
    "Oracle Enterprise Manager 10g Grid Control *Release 5* (10.2.0.5) for Solaris Operating System *(SPARC)*"
    "Oracle Enterprise Manager 10g Grid Control *Management Agent Release 1* (10.1.0.3) for Solaris *x86*"

    Please throw me some more meat on that bone. I'm still waiting for my Metalink access. (i.e., can you cut and paste the note text onto this forum message.)Sharing(Cut&Paste) Metalink Notes is not legal.
    Oracle has no plans for 10.2.0.4 and for 10.2.0.5 it's expected by Q3 on x86(32&64)

  • How to integrate a Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi Hisham,
    hishooooo wrote:
    Dear Gents,
    I have one X86 Solaris Server configured and installed to be Sun Management Center Server.
    successfully i could monitor the Sun Solaris Servers after i have installed the SMC agent on them.
    my problem is that i could not install the SMC agent on Red Hat Linux. as i could not find an easy document or steps to do so.
    could you guide please?If you still have a copy of your SunMC media around, the same ["es-inst"|http://docs.sun.com/app/docs/doc/820-2215/command-line-1?l=en&a=view] program you use to install Solaris Agents should work on Linux as well. It autodetects OS type and will install Solaris packages or RPMs as appropriate.
    Regards,
    [email protected]
    http://www.HalcyonInc.com

  • How to integrate Solaris x86 server on Sun Management Center ?

    Hello people,
    I want to integrate a Solaris x86 server on Sun Management Center platform.
    If I'm not wrong, SunMC doesn't run for Solaris x86, server and client only as console with Java.
    In speat of it, I try to install Sun Management Center 3.0 Agent for Solaris x86.
    It seems to be ok, install packages, but when execute es-setup script, intents to create the following directory:
    /opt/SUNWsymon/base/bin/sparc-sun-solaris2.8
    I supose that in this directory, SunMC will install sparc binary files
    At this point, I can't follow the installation and abort it.
    Can anybody give me ideas to install and integrate my solaris x86 server on SunMC ?
    Thanks

    Hi
    From the Unix prompt enter oemapp console(for v9.x). If you are using earlier versions it is oemapp console (for starting the console) and oemapp dbastudio(for starting dba studio)
    For starting OMS enter: oemctrl start oms.
    Hope this helps
    sarath

  • Native performance library not loading in weblogic 9.1. help

    I'm trying to review an application and this is my first exposure to weblogic9.1. I've noticed that the native library failed to load in the logs but even after adding the right path, i keep seeing the same error message.
    This surely affect the performance of the application running under this evironment i'm reviewing. Can someone else locate the resolve this problem?
    ####<Jun 27, 2007 3:40:13 PM EDT> <Info> <Server> <lydmtltst06> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973213868> <BEA-002609> <Channel Service initialized.>
    ####<Jun 27, 2007 3:40:13 PM EDT> <Error> <Socket> <lydmtltst06> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973213916> <BEA-000438> <Unable to load performance pack. Using Java I/O instead. Please ensure that a native performance library is in: '/opt/java/1.5.0/jre/lib/sparc/server:/opt/java/1.5.0/jre/lib/sparc:/opt/java/1.5.0/jre/../lib/sparc::/usr/dt/lib:/usr/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/ucb/lib:/usr/bin:/usr/ucb:/etc:/opt/bea/weblogic91/domains/lineage/server/native/solaris/sparc:/opt/bea/weblogic91/domains/lineage/server/native/solaris/sparc/oci920_8:/usr/lib'
    >
    ####<Jun 27, 2007 3:40:13 PM EDT> <Info> <Socket> <lydmtltst06> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973213932> <BEA-000447> <Native IO Disabled. Using Java IO.>
    ####<Jun 27, 2007 3:40:14 PM EDT> <Info> <IIOP> <lydmtltst06> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973214947> <BEA-002014> <IIOP subsystem enabled.>
    ####<Jun 27, 2007 3:40:22 PM EDT> <Debug> <Deployment> <lydmtltst06> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973222439> <000000> <Add DeploymentEventListener weblogic.security.service.DeploymentListener@6cc2a4>
    ####<Jun 27, 2007 3:40:22 PM EDT> <Debug> <Deployment> <lydmtltst06> <AdminServer> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1182973222483> <000000> <Add VetoableDeploymentListener: weblogic.security.service.DeploymentListener@6cc2a4>
    The hardware used is a sunfire machine running solaris 9 (32).

    Stating the obvious, but it is in the mbeantypes folder isn't it?
    Did you let the upgrade wizard automatically upgrade the security provider? I used the domain upgrade wizard which converted my security provider, once I'd done that, I just took that new file (not sure what it changed) and I've been using it without problems.
    Pete

  • Performance Tuning Certification for Application Developer

    Hi,
    Can you please advise if there is any Oracle Performance Tuning certification for an Application Developer and Oracle 9i to 10G migration certification? If yes, can you please let me know its Oracle examination number?
    I have already passed 1Z0-007 and 1Z0-147 in Oct 2008.
    Thanks in advance,
    Sandeep Kumar

    ... if there is any Oracle Performance Tuning certification for an Application Developer ...There is no performance tuning related certification for application developers. There is one for the DBA track.
    Also -- to answer your question in the other thread:
    So to clear this certification do I need to re-appear all the 3 exams as they were given in 2008 or just 1Z0-146 is enough.Having passed 1Z0-007 and 1Z0-147, if you pass 1Z0-046, you will gain the certification: Oracle Advanced PL/SQL Developer Certified Professional

  • Some photos don't show in LIbrary view--just the outlines of them

    Tonight I tried to transfer a bunch of digital photos from a CD my daughter burned into my iPhoto library, into the 2006 year folder.
    I opened the CD and in the icon view, the pictures looked fine--jpeg files.
    After I transferred them, these pictures don't show in my initial iPhoto window (the one that opens first when you click on iPhoto in the Dock, and shows all the pictures in my Library sorted by (in my case) roll/date.
    Then photo thumbnails from years prior to 2005 show up, fine, but for the most recent year of pictures, all I get are the outlines of where the thumbnails ought to show. When I click on one of the blank thumbnails, of course I get a blank ...but the frame in the lower left shows the ID info for the picture and the picture counts, etc.
    I can open the folders from the Pictures file and see them...they just won't show up in the overall Library window.
    So...I moved the transferred ones out of the iPhoto library and just put them in the Pictures folder for now.
    But what did I do? And how do I "fix it" to make all the thumbnails show up again? This is probably some simple thing...but I can't figure it out. I tried showing just the last 12 months...and I get all the blank outlines.
    G4 iBook   Mac OS X (10.3.9)   Using iPhoto 5, 768MB RAM,

    Hi john,
    First problem. You need to import photos into the iPhoto Library the correct way which is while iPhoto is open. Drag the photos out of where you put them (you already did) now you can import them into iPhoto from there.
    Read on for more info....--First thing to know and remember is this...Do not drag any images, folder of images into the iPhoto Library in the Finder. Images have to be imported into iPhoto within the application. Do not scan images and save them into the iPhoto Library folder in the Finder. Save them to another location such as the Pictures folder or even the desktop. You can then import them into iPhoto.
    If you have already put files/folders in the iPhoto Library folder in the Finder then you will also find out that if you try to import them into iPhoto you will get an error message. No worry, just drag them to the desktop and import from there.
    --All images that you import are shown in the library view. You can choose how you want to view, by rolls, by date, by rating, etc. When you put images in an Album, slideshow, book, etc, you are actually just putting pointers to those images in the library. You are not adding more images. If you delete an image from the Album it will still be in the library. If you delete an image from the library it is deleted from iPhoto's database and your hard drive (unless you have it backed up somewhere else)
    --You have a folder of images on your hard drive and want to import them into iPhoto. Drag the folder of images into an open iPhoto Library window and the folder of photos will be copied into the library, resulting in a new roll with the name of the folder. You now have two copies of those photos, the ones in iPhoto's database and the ones on your desktop. You can keep the ones on your desktop that you just imported as backup or you can delete that folder.
    -- you scan a picture/pictures and save it in a folder. You cannot scan directly into iPhoto or the iPhoto Library folder in the Finder.
    You want all your photos in iPhoto so you import them into iPhoto.
    Now you have two copies of that picture/pictures, so you can delete the originals that were in the scanned folder and keep the one/ones that were imported into iPhoto.
    -- You download pictures from your camera into iPhoto.
    There is now one copy of each of the pictures. (DO NOT HAVE IPHOTO DELETE THE IMAGES FROM YOUR CAMERA! DELETE THEM MANUALLY WITH THE CAMERA-if something goes wrong with the import and they are never imported and then they are deleted from the camera you might end up losing those images)
    You want to change something about a picture you imported, such as
    cropping it or changing the size, or changing the orientation.
    Once you do that to a picture, you now have two copies of the picture
    in iPhoto, the original and the edited one. The edited one will be in the library organize view. The original is packed away in an Original folder in your iPhoto Library folder under the date of the roll. You can always revert to the original by control clicking on the photo and choose "revert to orginal" You will not have this choice if you used iPhoto Diet to get rid of the Originals.
    (a quick note on cropping within iPhoto...when you are in edit mode, you automatically will be in the crop mode with cross hairs to highlight the crop area. To finish cropping you must click the crop button and then go back to library view and your cropped picture will be there.
    3.You want to use Photoshop or another graphic program to edit a picture in your iPhoto library.
    You can open up prefs for iPhoto and choose "when double clicking on
    photo ..do" choose "other" and select Photoshop. Now you can edit all
    pictures in your iPhoto library in PhotoShop by double clicking. If you save the photo with the same name and as a flattened file it will be saved right into iPhoto and you will see the changes. If you don't want to save it into iPhoto then do a "save as" and save to the desktop. You will then have the original photo still in iPhoto and your new edited photo on the desktop.
    Or, with iPhoto open, you can drag a picture from the library window
    to your desktop (you see a + sign on the pic you are dragging). You now
    have two of the same picture, one in the iPhoto library and one on your desktop. You can open up the one on your desktop in any graphic program and work on it. The one in iPhoto stays the same. You can also share/export the picture/pictures to your desktop or folder to work on them or do batch processing, etc. You will still have the originals in your iPhoto Library.
    Or, you can open up the ~/Pictures/iPhoto Library/folders and option drag any
    picture out of the folder to your desktop. Notice that you will see a plus sign while dragging the photo. This is copying the file to your desktop
    I would advise anyone not to do this as they might forget to use the option key and drag the photo out. Next time you open iPhoto the photo will be missing.
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Don't forget that in Library view you can Control click on any picture and get a contextual menu with many options. One is to revert to original.
    Now to get to your next problem...do a "get info" on your iPhoto Library folder.
    Get info on the iPhoto Library folder
    Make sure the owner is you and you have read/write" permission. If not, click the lock to unlock and change to you as the owner with Read/write. Click the button at the bottom.
    iPhoto Library Info
    Get back with results or any more info.

  • Just set up iTunes for windows but when I try to sync my iPhone to this it says I have another iTunes library on my power book. It than asks if I want to erase this iPhone and sync with this iTunes library. I used the same  library on the windows is blank

    Just set up iTunes for windows but when I try to sync my iPhone to it this is what it says, I have another iTunes library on my power book. It than asks if I want to erase this iPhone and sync with this iTunes library. I used the same password on this windows pc system same log on etc..I don't have anything loaded on it. All I want is for the info that's on the power book in iTunes and my iPhone to snyc/update etc on the windows pc.  How do I do this? My power book is dead to the world. 

    Read here.
    https://discussions.apple.com/message/18565125#18565125

  • Recently wiped out my mac do to mavericks update going wrong. If i add this computer with my itunes match will it put all the music i had back in my itunes library or just upload the little bit of music i purchased on itunes in the past?

    Recently erased my entire mac HD do to mavericks update going wrong. I do not have a back up for my music. But my itunes match account  has all my music. If i add this computer with my itunes match will it put all the music i had back in my itunes library or just upload the little bit of music i purchased on itunes in the past that im only seeing now in my itunes? I do not want itunes match to  sync  or upload the little bit of purchased music i have on my itunes now..Please Help Thanks..

    Hello gogreenj14,
    If you had iTunes Match updated with all of your non iTunes purchased content already, then yes, when you enable iTunes Match with the following article it will have all the content that has been uploaded to iTunes Match will be available for download.
    iTunes: How to add a computer or iOS device to iTunes Match
    http://support.apple.com/kb/ht4913
    Open the latest version of iTunes on the computer you intend to add. You can download the latest version of iTunes here.
    Sign in with the Apple ID you use with iTunes Match.
    Choose Store > Turn On iTunes Match.
    Click the Add This Computer button.
    When prompted, enter your Apple ID password.
    iTunes will automatically begin scanning your computer's library for matches.
    A status indicator will allow you to track progress. You may also manually pause and resume the process at any time by clicking the Stop or Start button.
    Once iTunes has completed matching and uploading your iTunes library, your music in iCloud will be integrated into your local music library. A download button will appear to the right of any content that you have in iCloud that doesn't already exist on your computer.
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • I created a new library so I can use it for just my music, but now my ipod will only sync to my old library and not the new one I created, even though I'm in the new library when I open itunes.  Any solutions?

    I created a new library so I can use it for just my music, but now my ipod will only sync to my old library and not the new one I created, even though I'm in the new library when I open itunes.  Any solutions?

    The point is that there are four i product users for one computer in my house, and not everyone wants the same music on their device.  Like I said before, the ipod is not syncing to the new library even though I plug it in when the new itunes library is pulled up.  It keeps syncing to the old library...

  • HT1338 I am trying to upload photos onto e.bay from i photo. When I click choose file the I photo icon comes up but when i select it, instead of taking me in to the photo library it just downloads the iPhoto icon ! Help

    I am trying to upload photos onto e.bay from i photo. When I click choose file the I photo icon comes up but when i select it, instead of taking me in to the photo library it just downloads the iPhoto icon ! Help

    Export copies of the photo(s) from iphoto onto your desktop and use that to upload to ebay

Maybe you are looking for

  • Preview icons not appearing

    ust recently, the previews that show up for pictures and videos stopped appearing. For example, if I had a group of photos and I waited for a couple of seconds while looking at them, small thumbnails of the photos would replace the generic "preview"

  • My iWeb page is not displaying correctly?

    hi I created a site in iWeb 08 (version 2.0.4. - 830A43), exported to a folder, and then uploaded to the web via ClassicFTP (Mac). Does not display correctly, but not sure why. temp URL is http://223.130.24.65/~vstacoma/Site/home.html The font appear

  • How do I delete applications?

    Hi everyone, I know this is probably the stupidest question you've ever heard, but how do I delete the applications on my Tour that I didn't download? I don't use AIM, Yahoo! Messenger, or anything like that, and I can't figure out how to delete them

  • I am having kernal panic problems.

    I have had Kernal Panic problems over time. It happened when I was running Second Life in my 4GB MacBook Pro. Yesterday I had 8 GB installed (Kensington) and it has Panicked twice. Here are my Panic Notes.  Can anyone tell me what the problem might b

  • S there a way that I can send a monthly reminder to fill out this form?

    Is there a way that I can send a monthly reminder to have the form completed ?