Pro*C 8051 problem AIX -- Linux

Hello. This is my problem trying to port an application from AIX
to Linux.
I installed redhat 6.0 on PII350 128Mb ram. kernel 2.2.5
I installed Oracle 8051 enterprise edition, the glibcpatch,
inserted
the defines:
define=_STDIO_H
define=_STRING_H
define=_STDLIB_H
into pcscfg file
I am able to compile the sample files (I tried for sample1 and
sample2, inserting the size_t definition into .pc files) so pro*C
is ok.
Trying to porting from AIX 4.3.2 to linux an application:
I inserted the demo_proc.mk file for settings into the original.
I run:
make -r VER=linux -f bz201l.mk \
/aixdev/S6/security/lib/liblinux/bz201l.a
Into the original .pc file there were
#include <stdarg.h>
#include <stddef.h>
and leaving them inside I got
Error at line 29, column 10 in file
/aixdev/S6/security/source/bz201l00.pc
#include <stdarg.h>
.........1
PCC-S-02015, unable to open include file
So I cut them from the .pc file and so:
Syntax error at line 23, column 48, file ../include/bz201.h:
Error at line 23, column 48 in file ../include/bz201.h
void(*)(),void(*)() , FILE *, ...);
...............................................1
PCC-S-02201, Encountered the symbol "FILE" when expecting one of
the following:
... auto, char, const, double, enum, float, int, long,
OCIBFileLocator OCIBlobLocator, OCIClobLocator, OCIDate,
OCINumber, OCIRaw, OCIString, register, short, signed,
sql_context, sql_cursor, static, struct, union, unsigned,
varchar, void, volatile, a typedef name, exec oracle, exec,
exec sql, exec sql begin, exec sql type, exec sql var,
The symbol "enum," was substituted for "FILE" to continue.
What is the problem? I have to add other define in pcscfg.cfg
file?
The header file bz201.h is below
*BZ201.h - definitions/declarations for BZ201_AcceptSqlcode
routine
*Purpose:
* This file defines the values and functions
* used for BZ201_AcceptSqlcode routine.
#ifndef BZ201_END_PARM_LIST
#define BZ201_END_PARM_LIST 0xF0F0F0F0,__LINE__,__FILE__
#endif
/* function prototypes */
void BZ201_AcceptWSqlcode(
void(*)(),void(*)() , FILE *, ...);
if I don't eliminate the stddef and stdarg definitions, but
add to the proc command line include= setting also these two
directories
/usr/i386-glibc20-linux/include/linux and
/usr/lib/gcc-lib/i386-glibc20-linux/egcs-2.90.29/include
I have not the errors for the stddef and stdarg but I get an
error inside the time.h header
Syntax error at line 135, column 15, file /usr/include/time.h:
Error at line 135, column 15 in file /usr/include/time.h
extern size_t strftime __P ((char *__restrict __s, size_t
__maxsize,
..............1
PCC-S-02201, Encountered the symbol "strftime" when expecting one
of the following:
and then also the one reported above in the first case for the
bz201.h header (also with a core dumped after segm fault).
Anyone knows how to set correctly the include dirs and/or the
pcscfg.cfg file?
Thanks in advance and sorry for the lenght of the message.
Gianluca
null

Gianluca Cecchi (guest) wrote:
: Hello. This is my problem trying to port an application from
AIX
: to Linux.
: I installed redhat 6.0 on PII350 128Mb ram. kernel 2.2.5
: I installed Oracle 8051 enterprise edition, the glibcpatch,
: inserted
: the defines:
: define=_STDIO_H
: define=_STRING_H
: define=_STDLIB_H
: into pcscfg file
: I am able to compile the sample files (I tried for sample1 and
: sample2, inserting the size_t definition into .pc files) so
pro*C
: is ok.
: Trying to porting from AIX 4.3.2 to linux an application:
: I inserted the demo_proc.mk file for settings into the
original.
: I run:
: make -r VER=linux -f bz201l.mk \
: /aixdev/S6/security/lib/liblinux/bz201l.a
: Into the original .pc file there were
: #include <stdarg.h>
: #include <stddef.h>
: and leaving them inside I got
: Error at line 29, column 10 in file
: /aixdev/S6/security/source/bz201l00.pc
: #include <stdarg.h>
: .........1
: PCC-S-02015, unable to open include file
: So I cut them from the .pc file and so:
: Syntax error at line 23, column 48, file ../include/bz201.h:
: Error at line 23, column 48 in file ../include/bz201.h
: void(*)(),void(*)() , FILE *, ...);
: ...............................................1
: PCC-S-02201, Encountered the symbol "FILE" when expecting one
of
: the following:
: ... auto, char, const, double, enum, float, int, long,
: OCIBFileLocator OCIBlobLocator, OCIClobLocator, OCIDate,
: OCINumber, OCIRaw, OCIString, register, short, signed,
: sql_context, sql_cursor, static, struct, union, unsigned,
: varchar, void, volatile, a typedef name, exec oracle, exec,
: exec sql, exec sql begin, exec sql type, exec sql var,
: The symbol "enum," was substituted for "FILE" to continue.
: What is the problem? I have to add other define in pcscfg.cfg
: file?
: The header file bz201.h is below
: *BZ201.h - definitions/declarations for BZ201_AcceptSqlcode
: routine
: *Purpose:
: * This file defines the values and functions
: * used for BZ201_AcceptSqlcode routine.
: #ifndef BZ201_END_PARM_LIST
: #define BZ201_END_PARM_LIST 0xF0F0F0F0,__LINE__,__FILE__
: #endif
: /* function prototypes */
: void BZ201_AcceptWSqlcode(
: void(*)(),void(*)() , FILE *, ...);
: if I don't eliminate the stddef and stdarg definitions, but
: add to the proc command line include= setting also these two
: directories
: /usr/i386-glibc20-linux/include/linux and
: /usr/lib/gcc-lib/i386-glibc20-linux/egcs-2.90.29/include
: I have not the errors for the stddef and stdarg but I get an
: error inside the time.h header
: Syntax error at line 135, column 15, file /usr/include/time.h:
: Error at line 135, column 15 in file /usr/include/time.h
: extern size_t strftime __P ((char *__restrict __s, size_t
: __maxsize,
: ..............1
: PCC-S-02201, Encountered the symbol "strftime" when expecting
one
: of the following:
: and then also the one reported above in the first case for the
: bz201.h header (also with a core dumped after segm fault).
: Anyone knows how to set correctly the include dirs and/or the
: pcscfg.cfg file?
: Thanks in advance and sorry for the lenght of the message.
: Gianluca
Can I make a suggestion? I don't know too much about the Pro*C
compiler but I do know of some useful packages on Linux. It may
be possible to use a standard Linux package called "automake" to
port the code and set it up for use in a Linux environment. What
this package basically does is take input files and automatically
outputs properly made config files to setup the program depending
on which type of Unix you are porting it to. I would suggest you
take a look at it's documentation. Here is a good URL:
http://developer.gnome.org/tools/build.html
They have a tutorial on how to use the tools and they have some
other good links ;-)
Sincerely,
Kevin M.
null

Similar Messages

  • Pro*C linker problems

    System is Linux Mandrake 6.0 with Oracle 8i, with the 8i patch
    applied.
    What a nightmare that install was! Lots of permission problems,
    unreadable directories, programs with no execute permission on
    them and so on.
    I now have a database up and running, and am trying to get Pro*C
    working. The code was written on RedHat 5.2 with Oracle 8.0.5,
    and worked fine there, so I know it is not a fundamental code
    problem!
    I have patched the pcscfg.cfg file as detailed in the patch FAQ
    (with modifications for the slightly different paths under
    Mandrake Linux).
    When I compile the Pro*c file, I get many "undefined reference
    to 'dbcon'" and "undefined reference to 'ctx'" errors from the
    linker. This occurs whether I use a pre-defined list of specific
    libraries in my own Makefile, or if I use the standard
    demo_proc.mk makefile. I have used nm(1) on every place I can
    think of, to try to find the required library/object, but to no
    avail.
    I appreciate that Oracle have so far only certified Oracle for
    Linux against Redhat 6.0, but surely Mandrake can't be THAT
    different ;-)
    Does anybody have any ideas, known problems etc? I REALLY HOPE
    that I don't have to switch to Redhat as the only solution - no
    problem with Redhat, it would just require a tedious and
    complicated system rebuild, which I don't have the time to do :-(
    TIA
    Mike Holden
    null

    Robert B     gin (self) (guest) wrote:
    : Robert B     gin (guest) wrote:
    : : Since I've last posted, I've installed RedHat 5.2 and
    ditched
    : : Slackware!
    : : (btw, what a breeze - Hat's off to RH! very nice install!).
    : : I've then installed oracle, have managed to setup
    tnsnames.ora
    : : so I can connect via sqlplus to my remote database (on
    : VAX/VMS).
    : : But now I have Pro*C linker problems with:
    : : make -f demo_proc.mk build OBJS=test.o exe=test
    : : (blah,blah,blah)
    : : /usr/lib/crt1.o(.text+0x36): undefined reference to `main'
    : : make: *** [build] Error 1
    : : Does anybody out there have a similar problem?
    : : Rob
    : Duh! forget it... (EXE has to be caps... RTFM)
    : (cryptic error message though?)
    : works great!!!
    Could you please tell me where I can get demo_proc.mk file
    for Linux (RedHat)?
    Thanks
    null

  • Path problem in linux

    hi,
    i have problem with file path accessing in linux. my java class is accessing a abc.cvs file and and getting all data. it is working fine in windows xp. but i run this same file in linux it does not access the abc.cvs file and does not get any data.
    my project structure
    Search
    abc.cvs
    search.SearchMain
    i am sccessing this cvs file in this SearchMain class by this way file name = "abc.cvs"
    It is working fine with window but problem with linux.
    when i place this abc.cvs in a folder as "./data/abc.cvs" also working fine with windows but not in linux.
    I am new for linux.
    Please give me solution.
    Thanks in advance
    Ravi

    There shouldn't be any differences between Linux and Windows here, it's all about your environment. In order to access abc.cvs class (I presume that abc is package name) from search.SearchMain class you need to have a directory (or .jar file) containing abc/cvs.class in your CLASSPATH environment variable.
    Try setting it with
    export CLASSPATH=your_dir_or_jar_file:$CLASSPATH
    and then running the app again.

  • File problem in linux OS.

    hi,
    I am creating one jar file . In my program, when I click one survey menu in my GUI,it will collect information from remote device and store it in log file located LOG folder. In my case, I put one folder " Cal" and inside it I put myjar.jar file and that log (LOG) folder.
    In Windows, when I click survey menu in GUI, the log information automatically stored in log foder as survey.txt file. And also, i create one show dialog box to show where the log file located.
    my code is,
    String  ss=new String(" HIllo"+"loginfo" );           
                     byte b[]=ss.getBytes ();
                           OutputStream f0=new FileOutputStream               ("LOG/survey.log",true);
                           f0.write(b);
                           f0.flush();                      
                           f0.close ();    the above code is file writing in txt file.
    for display dialog box,
    if(source==Survey)
                    File file = new File("LOG/Survey.log");                      
                    file = file.getAbsoluteFile(); 
                    javax.swing.JOptionPane.showMessageDialog(MainFrame, "The LOG FILE is stored at -- \t \t"+file);
                 }In windows, where can i install that Cal folder (inside it JAR file and LOG folder), and click that jar , all are working fine. The log file stored correctly inLOG folder and dialog box show the located path.
    eg. log file stored at D:/sbk/Cal/LOG/survey.log
    But my problem in linux.
    when i click survey menu, it will defaultly stored in root folder and log folder. Actually i am not creating LOG folder in root folder.
    I am changing file writer as , to store that JAR folder and want to store that log file in home directory.
    if(no_of_ssid!=null){
                    String  ss=new String(""HIllo"+"loginfo\n" );          May
                     byte b[]=ss.getBytes ();
                           OutputStream f0=new FileOutputStream ("/home/Cal/LOG/Survey.log",true);
                           f0.write(b);
                           f0.flush();                      
                           f0.close ();    but, now also that file stored in rot directory.
    what can I do.
    how can I store log file in home/Cal/Log folder in Linux.
    any one help this problem

    Use System get prop user.home?

  • Unicode filename problems in linux

    I'm running into a problem in linux (Ubuntu). The following test code will throw an exception at the "FileInputStream fis... " line with the file has a unicode filename. However, Windows passes this without problems.
    try {
         File dir = new File("a directory that exists");
         File[] files = dir.listFiles(); //get file list
         for (int i = 0; i < files.length; ++i) {
              System.out.println("file " + files.getAbsolutePath());
              FileInputStream fis = new FileInputStream(files[i]);
    } catch (Exception e) {
         System.out.println("Exception: " + e.getMessage());
    Does anyone know how to fix this? Thanks!

    But the characters are actually chinese. And since
    it's on Ubuntu, it would be in UTF-8 encoding
    wouldn't it?
    The characters display fine in ubuntu but when I try
    to read them in using FileInputStream, it fails for
    some filenames with strange characters.
    I just don't understand why some characters make it
    fail and others are fine. It seems that it should
    all work or all not work? Perhaps I'm wrong.On my Fedora Core 6,
    the result of
    echo $LANG
    is:
    ja_JP.UTF-8
    And I tried your program on a directory that has &#30334;&#24230;MP3��&#20840;.txt file in it.
    import java.io.*;
    public class AlsKdj{
      public static void main(String[] args){
        try {
          File dir = new File(".");
          File[] files = dir.listFiles();
          for (int i = 0; i < files.length; ++i) {
            System.out.println("file " + files.getAbsolutePath());
    FileInputStream fis = new FileInputStream(files[i]);
    System.out.println(" " + fis.toString());
    catch (Exception e) {
    e.printStackTrace();
    The output from the program is:
    file /root/test/./AlsKdj.class
      java.io.FileInputStream@1a46e30
    file /root/test/./&#30334;&#24230;MP3��&#20840;.txt
      java.io.FileInputStream@3e25a5
    file /root/test/./bbs.txt
      java.io.FileInputStream@19821f
    file /root/test/./WMP.txt
      java.io.FileInputStream@addbf1As shown above, the result is normal if LANG is really UTF-8.
    My Java version is:
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)

  • I have just subscribed for a monthly billing for my acorbat pro XI, the problem is i have clicked on the link on the email that have sent me to activate it but its still not allowing me to acess this and see my PDF's

    i have just subscribed for a monthly billing for my acrobat pro XI, the problem is i have clicked on the link on the email that have sent me to activate it but its still not allowing me to acess this and see my PDF's, how to i activate my new license?

    Can you explain the problem in more detail - "not allowing me to access" isn't clear to me. If you get any errors, please give the full wording. If you just don't seem to have any useful functions under TOOLS, make sure you are NOT still running Adobe Reader.

  • Titanium Fatal1ty Pro SPDIF game problem

    (Titanium Fatalty Pro SPDIF game problem hi all,
    sorry if this issue reported in the past i but i could not get any answer on any relati've posts, the terminology was so complicated
    i buy?a new pc with a Titanium Fatalty Pro sound card, i use Vista sp2 x64, the sound card is connected to my external amplifier with SPDIF out in order to get surround sound for my movies and my games and here is my problem
    any movies format with surround sound play perfect with out any problem any kind of movie DVD, dvix, mkv?files?etc
    but non of the games i play?use the surround system, why is that? is any?kind of special settings needed to be done? how is possible to get surround to movies and not to the games?
    thanks you all for your time ?

    ,Re: Titanium Fatalty Pro SPDIF game problem? this is really coincidence - I just posted on the very same topic 5 minutes ago.
    for games just go to the Console Entertainment mode > Encoder > Dolby Digital. Although this is not documented I believe what happens is that the sound card encodes the 6 digital channels onto Dolby Digital mode and transfers this over SPDIF. Kok-Choy actually recommend using the standard analogue cables (and he has a point as you are actually upcoding an existing game signal onto Dolby so that your digital receiver can then decode this down to 6 channels - seems a pretty useless overhead)
    for video - I am curious to know what you do - I can either get 96/24 bits on the display of my z5500 with a direct signal but the z5500 receiver then tells me that this signal is only in dolby ProLogic II (and not DD or DTS). As alternati've I use again the encoder and have to select for EACH FILM WHAT IS BEST DOLBY DIGITAL OR DTS. Pls explain what settings you use.
    thanks

  • Premier pro play back screen goes black a freezes every 15 minute . This is my second mac pro with identical problems.

    Premier pro play back screen goes black a freezes every 15 minute . This is my second mac pro with identical problems.

    SOLVED!!!!!
    SO I did some more digging around and read ATI cards seem to overheat easily.  I knew the fan was working, but after closer inspection I realised there was ALOT of built up dust on the card and clogging the fan and airflow.  Blew it out with alot of compressed air, stuck it back in the Mac and BAM...no black screens.  I tested it by streaming 6 video sources...doing 2 screen captures at once as well as watching a HD movie in fullscreen.  Did all this for 30 minutes and no crashes.  I also downloaded an app to monitor the temps inside the computer and the expansion bay stays at 41 degrees.  No clue what it was before but obviously it was hotter than that.  So my problem is solved!  Funny that 10.7.5 made the card work harder.  I wonder if its off loading some CPU stuff to the GPU for processing more than 10.7.4 so its just working a bit harder and so it heats up faster....

  • Canon pixma pro 9500 having problems with my print out. colors are glazed and missing colors

    canon pixma pro 9500 having problems with my print out. colors are glazed and missing colors
    i have prfiled the mac and printer wiht colormunki and uplodated the profile sucessfully
    i set the printer to correct icc profile
    print out comes out same with glazed colors and missing tones/colors
    however when i use the same printer on windows and with light room, following same icc profile, colormunki calibrated profile, the print our are excellent.
    i have also tried using printer manage profile using the Mac and Aperture and get same poor prints
    can  you please assist and thanks

    I've a Pro9000 and also use Colormunki successfully.
    When I use Colormunki, I calibrate both of my monitors and the printer/paper combination. Colormunki saves the generated profiles to the correct places -- I don't load or change any profiles after that as that would mess-up what the Colormunki had just done for me, and this would likely mess-up the prints.
    Though I double-check the settings in the print dialogue, the choice for the printer handling things is already grayed-out. Colorsync handles it all just fine.

  • HEAVY Problems with Linux x86_64 on K8T Neo

    Hello, Community!
    I experience *HEAVY* Problems with Linux on my MSI K8T Neo (FSR). Since the customer support of the german dependancy seems to ignore my call for help I'm in good hope that maybe you can help me out or give me some useful advise.
    First some Hardware Specs of my system:
    MSI K8T Neo FSR, Rev 1.1, BIOS 1.5
    AMD Athlon 64 3000+
    3x 512MB Kingston DDR400
    Enermax EG365P-VE (350W) PSU (3.3V/5V 185W Combinded)
    MSI GeForce FX5200 TDR 128
    Adaptec ATA RAID AAR1200A (HPT370A) in PCI Slot 3
    Hauppauge WinTV PCI in PCI Slot 5
    Maxtor 4K040H2 (40GB) as Primary Master
    JLMS XJ-HD166S DVD-ROM as Primary Slave
    LiteOn LDW-411S DVD+/-RW as Secondary Master
    LiteOn LTR-52327S CD-RW as Secondary Slave
    2x Maxtor 6Y060L0 (60GB) on HPT370A as Primary Master/Slave
    Seagate ST380020A (80GB) on HPT370A as Secondary Master
    Maxtor 32049U3 on HPT370A as Secondary Slave
    KeyTronic KT2001 USB Keyboard
    Microsoft Optical Wheel Mouse Blue USB
    I've downloaded Fedora Core 1 x86_64 as well as the lately released Fedora Core 2 test 3 x86_64 distribution. Both CD sets have been burnt ok.
    If I try to install Core 1 x86_64 (Kernel 2.4.22-1.2179) the kernel crashes with a "attempted to kill idle task" panic. As far as I've learned the workaround is to give idle=poll as kernel parameter. This resolves the kernel panic, but the installer randomly crashes with segfaults at a random stage; sometimes while loading anaconda, sometimes during package install.
    If I try to install Core2 test 3 x86_64 (Kernel 2.6.5) I get a, completely new, error message while the kernel does the PCI Scan:
    ******* Your BIOS seems to not contain a fix for K8 errata #93
    ******* Working around it, but it may cause SEGVs or burn power
    ******* Please consider a BIOS update
    ******* Disabling USB legacy in the BIOS may also help
    I removed my USB keyboard, connected a PS/2 keyboard, disabled to USB Legacy option (I need it enabled in order to use Ghost) in the BIOS and booted again.
    The error message is gone now, but as in Core 1 the installer still crashes randomly with segfaults. I'm still unable to go all the way through the installation routine.
    I even tried to install Fedora Core 1 "i386": again there are segfaults during install.
    Contrary to the problems I experience while trying to install Linux my Windows XP (32-Bit), as well as a test installation of Windows XP 64-Bit, run like a charm without any problems. Strange but true.
    Since I already read trough several posts in this forum I already tried running my system with memory sticks from another manufacturers as well as with a more powerful PSU. I even removed my tv-card and raid-controller.
    Nogo - Linux still crashes randomly and Windows still works without any flaws.
    Has anyone a clue what I can/must do to successfully install Linux?
    Might it be that the BIOS has some flaws that might cause the problems?
    Has anyone managed to install Linux (what distribution) on this Mainboard?
    I would greatly appreciate any help. If you need to know something I haven't provided here please feel free to ask. I'll answer ASAP.
    Thank you in advance.
    P.S.: The system is *NOT* overclocked in any way.

    And now even the last problem is solved ...
    Since I was successful in installing a basic Gentoo system but still failed to install Fedora I reflashed BIOS 1.5. This time I cleared the CMOS by unplugging the PSU, setting the jumper and removing the backup battery.
    Yesterday I only flashed it with the /a switch, which should have cleared the CMOS as well - so far for the theory. However, it once went fine as I upgraded from BIOS 1.1 to 1.4.
    After setting up the BIOS options again I gave it another try and booted from Fedora (Core 2 test 3) install CD: No more complains about the CPU errata, although USB legacy is enabled, and I even went through the installation without any problems.
    It seems as I will stick with Gentoo as my primary distribution since the kernel makes a more "mature" impression than the one from Fedora (i.e. the K8 PowerNOW! Driver seems to be missing in Fedora's Kernel 2.6.5).
    By using an spare Athlon XP Mainboard I worked out that only one of my three Kingston memory sticks had errors - I'm going to replace the faulty stick tomorrow.
    Now for the conclusio:
    Thanks, especially you JLP, for helping me with my issue. Without the advise to use Gentoo, and the included MemTest86, I wouldn't have been able to track down the error to a faulty memory stick that fast since Windows always ran fine.

  • I have imported my music from my iPhone to my Mac book pro. The problem is that now I can't listen to it. It's stating that my computer is not authorized. How can I authorize??

    Hi

    Please don't make multiple posts, your question has been answered in your other thread.
    I have imported my music from my iPhone to my Mac book pro. The problem is that now I can't listen to it. It's stating that my computer is not authorized. How can I authorize??

  • Pros and cons  Windows vs Linux platform

    Hi Everybody
    I want to know pros and cons Windows vs LInux.Please provide technical explantion only

    This is a "SAP" discussion forum.
    If you want OS info you can find plenty available on the net.
    Read the "Rules of Engagement"
    Regards
    Juan

  • Macbook pro touchpad/curser problems.

    macbook pro touchpad curser problems.  typing randomly jumps to wherever the curser is resting at the time.  unbelievably maddening.  multiple devices same all have same problem.  hard to believe we cannot find anything on the apple site about this.  MANY complaints outside of this site on this issue... clearly a touchpad/battery design flaw being ignored by Cupertino.  during the writing of this post, the curser jumped randomly and started typing in a different location six times.  IMPOSSIBLE to use as a word processor since typing becomes quite frustrating.  HELP.  any ideas?  Fanboy and shareholder.  three macbook pros in the house...all the same problem. (please do not offer separate keyboard as solution...this is a laptop, not a Surface Pro...)

    Go step by step and test.
    1. Restart
    2. Shut down the computer.
        Clean the trackpad with moist not wet microfiber cloth.
        System Preferences > Point & Click
        Try turning off three finger dragging and then turning it on after  testing.
    3. Is there any Bluetooth device nearby with failing batteries? If so, replace the batteries.
      4. Reset PRAM:   http://support.apple.com/kb/PH14222
    5. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    6. Close all windows and quit all applications.
        Click the Spotlight -the magnifying glass icon- in the menu bar. Enter Disk utility in the box.
        Select Disk Utility from the drop down. When the Disk utility window opens up,
        select  Macintosh HD, then First Aid.
        Click Repair Disk Permissions button.
        Ignore the  time remaining estimate.

  • HT1414 Why do I get 'This message has no content' with some e-mails on my iPad when the same messages can be received on my MacBook Pro without any problem, and how can I fix it?

    Why do I get - 'This message has no content' - with some e-mails on my iPad when the same messages can be received on my Mac Book Pro without any problem and how can I fix it?

    Is this a POP (POP3) email account?  If so, you MacBook Pro may be retrieving the email and deleting it off the server before your phone can.  Another possibility is that both your Mac and your phone are trying to retrieving it at the same time, and the POP server, which will only allow a single email client connection at a time, is locking out your phone resulting in the "has not been downloaded from the server" error.

  • Updates fail with error 1328.   I have re-installed Acrobat XI Pro twice without problems.

    Updates fail with error 1328  I have re-installed XI Pro twice without problems.

    2
    William D. Burstow, CPG, QP
    Consulting Economic Geologist
    Tel:   541.573.1078
    Email:  <mailto:[email protected]> [email protected]

Maybe you are looking for

  • Export a datagrid to an excel using com.as3xls.xls.Sheet class

    I am trying to export a datagrid to an excel in Flex using com.as3xls.xls.Sheet class. But the contents of the cells in the excel are overlapping so I need to wordwrap the cells and also change the width of the cells. How can I do that in flex?

  • Preuut and postuut sequences are not executing when run using UI. They run when using the sequence editor.

    I am using TestStand 3.5 and LabVIEW 8 in a Windows XP environment. I have a sequence that runs properly when run from the sequence editor.  I have made a few minor mods to the simple Operator Interface that ships with TestStand.  When I run my seque

  • Validating XML in SAX

    Hi How should i validate the XML. I have a XSD (schema ) and i am using the "SAX parser". The following is the portion of code written to call the SAX parser RequestHandler rh = new RequestHandler(); -> I mentioned this class below TextMessage textMe

  • How to make SAPScript to display special character?

    Hi all,          How to make SAPScript to display special character like character in 'Wingdings 2' font type? Now, I cant make SAPScript to display those special characters in the font type. Best Regards, Chee Boon

  • Cinema Booking System

    Hi there, I need help on this program. It has to be simple and I need to use "array". The program must be displayed in a system( black screen) Write a complete Java program for a cinema booking system. In this system, the program will help you to kee