View Swap File Contents

How can I view the contents of a swap file (e.g. swapfile0)? I know I can use the grep to serach for strings, but I would like to copy, then open the entire swapfile for analysis; anyone tried/know how?
I am doing research for live forensic response, and would like to document what info I can pull off a running mac.

Niel,
Thanks for the response.
I am able to easily copy and move the file via finder or the terminal window, but how can I view the contents?
When I try viewing with textedit all I see is "????????????????????????" on every line. I can still use 'grep' on the file to search for strings, but I would like to peruse the file for content or strings that cannot be easily predefined.
Any additional thoughts?

Similar Messages

  • How to view the file content from the directory? getting Error:ORA-21560

    SQL> create directory READ_LOB_DIR as 'D:\Prj\Comm\Data';
    CREATE OR REPLACE Procedure READ_FILE_LOB IS
    -- Input Directory as specified in create directory
    l_dir CONSTANT VARCHAR2(30) := 'READ_LOB_DIR';
    -- Input File which is read word by word
    l_fil CONSTANT VARCHAR2(30) := 'testfile.txt';
    -- Separator Character between words is a BLANK (ascii = 32)
    l_seb CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(32));
    -- Character at the end of the file is NEWLINE (ascii = 10)
    l_sen CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(10));
    -- Pointer to the BFILE
    l_loc BFILE;
    -- Current position in the file (file begins at position 1)
    l_pos NUMBER := 1;
    -- Amount of characters have been read
    l_sum BINARY_INTEGER := 0;
    -- Read Buffer
    l_buf VARCHAR2(500);
    -- End of the current word which will be read
    l_end NUMBER;
    -- Return value
    l_ret BOOLEAN := FALSE;
    BEGIN
    -- Mapping the physical file with the pointer to the BFILE
    l_loc := BFILENAME(l_dir, l_fil);
    -- Check if the file exists
    l_ret := DBMS_LOB.FILEEXISTS(l_loc) = 1;
    IF (l_ret) THEN
    dbms_output.put_line('File ' || l_fil || ' in Directory ' || l_dir ||
    ' exists');
    -- Open the file in READ_ONLY mode
    DBMS_LOB.OPEN(l_loc, DBMS_LOB.LOB_READONLY);
    LOOP
    -- Calculate the end of the current word
    l_end := DBMS_LOB.INSTR(l_loc, l_seb, l_pos, 1);
    -- Process end-of-file
    IF (l_end = 0) THEN
    l_end := DBMS_LOB.INSTR(l_loc, l_sen, l_pos, 1);
    l_sum := l_end - l_pos - 1;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    EXIT;
    END IF;
    -- Read until end-of-file
    l_sum := l_end - l_pos;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    l_pos := l_pos + l_sum + 1;
    END LOOP;
    DBMS_LOB.CLOSE(l_loc);
    ELSE
    dbms_output.put_line('File ' || l_fil || ' in Directory ' || l_dir ||
    ' does not exist');
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Error:' || SQLERRM);
    DBMS_LOB.CLOSE(l_loc);
    END;
    The Text file content is...
    Copyright 1996,2001 Oracle Corporation.     All Rights Reserved
    This file contains installation instructions for installing the
    Oracle8 ODBC Driver software.
    It is divided into four parts:
    o Part I: Summary of systems supported by Oracle8 ODBC client
    software
    Lists the platforms on which the Oracle8 ODBC Client software can
    be installed.
    o Part II: Oracle8 ODBC Driver software.
    Describes the files, and installation prerequisites for the Oracle8
    ODBC driver software.
    o Part III: Exploding the kit onto your system
    Describes how to explode the kit onto your system hard drive.
    o Part IV: Installation Instructions
    Describes how to install the Oracle8 ODBC driver.
    Part I: Systems supported by the Oracle8 client software
    You can install the ODBC client software on any of the following systems:
    o Windows 2000
    o Windows NT X86
    o Windows 95
    o Windows 98
    The Oracle8 ODBC Driver provides support for ODBC connections
    from Windows 2000, Windows NT, Windows 95, and Windows 98 systems
    to Oracle databases.
    o Part II: Oracle8 ODBC Driver software.
    Refer to the following files for information about the Oracle8 ODBC Driver:
    LICENSE.TXT - Oracle8 ODBC Driver License Agreement. Read carefully
    before installing and/or using this product. Enclosed in
    your software distribution kit.
    SQORA.HLP - A Window's Help file which is the primary reference
              manual for the Oracle8 ODBC Driver.
    ODBCRelnotes.WRI - The release notes for the Oracle8 ODBC Driver
    which contains information which may have not been
    included in the Help file.
    Installation Prerequisites
    See the Oracle8 ODBC Driver release notes (ODBCRelnotes.WRI),
    for a complete list of software products required and their versions.
    Time Required
    The installation of the Oracle8 ODBC Driver takes approximately 5
    minutes. The actual time may be shorter or longer, depending upon
    your hardware configuration.
    Disk Space Required
    The Oracle8 ODBC driver installation requires approximately 2
    megabytes of available storage space. The space required depends upon
    what files you already have installed. The installation procedure
    checks to see if you have enough available disk space. If you do not,
    the installation fails.
    Part III: Exploding the Kit onto your system
    Expand the self-extracting archive file onto your hard drive.
    C:\> ORA8174.EXE
    Part IV: Installation Instructions
    Oracle8 ODBC Driver 8.1.7.4.0
    This section assumes the following:
    1. MS Windows 2000, Windows NT, Windows 95 or Windows 98 is running.
    2. Oracle Universal Installer shipping with 8.1.7 has already been
    installed on your system.
    3. Part III has been completed.
    Software fixes:
    Refer to release notes (ODBCRelnotes.wri) for a complete list of
    Software fixes.
    Installation Instructions
    Once the self-extracting archive file ORA8174.EXE has been
    exploded it will create an installable directory structure
    onto your hard drive. Run the Oracle Universal Installer from
    your local drive.
    1. On the screen "File Locations" use the "Browse" button of
    the source path to choose the file 'products.jar' from the
    folder that ORA8174.EXE was extracted to. Choose 'Next'.
    2. You will receive a warning that some of the dependencies of
    this product are not found in the staging area. This warning
    is OK. The ODBC driver depends on the Net8 Client being already
    installed on the system. Answer 'Yes' to continue.
    Oracle is a registered trademark of Oracle Corporation.
    Microsoft, MS are registered trademarks of Microsoft Corporation.
    Microsoft Windows, Windows NT, Windows 95, Windows 98 and Open Database
    Connectivity are trademarks of Microsoft Corporation.
    All other trademarks and registered trademarks are the property
    of their respective owners.
    The output was...
    File testfile.txt in Directory READ_LOB_DIR exists
    Copyright
    1996,2001
    Oracle
    Corporation.     
    All
    Rights
    Reserved
    This
    file
    contains
    installation
    instructions
    for
    installing
    the
    Oracle8
    ODBC
    Driver
    software.
    It
    is
    divided
    into
    four
    parts:
    o
    Part
    I:
    Summary
    of
    systems
    supported
    by
    Oracle8
    ODBC
    client
    Error:ORA-21560: argument 2 is null, invalid, or out of range
    I want to diplay/view as per file content format from the file under that specified directory.
    Have any other method / any help or suggestions would be really appreciated.

    I changed the code like...
    CREATE OR REPLACE Procedure READ_FILE_LOB_tmp IS
    -- Input Directory as specified in create directory
    l_dir CONSTANT VARCHAR2(30) := 'READ_LOB_DIR';
    -- Input File which is read word by word
    l_fil CONSTANT VARCHAR2(30) := 'testfile.txt';
    -- Separator Character between words is a BLANK (ascii = 32)
    l_seb CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(32));
    -- Character at the end of the file is NEWLINE (ascii = 10)
    l_sen CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(10));
    -- Pointer to the BFILE
    l_loc BFILE;
    -- Current position in the file (file begins at position 1)
    l_pos NUMBER := 1;
    -- Amount of characters have been read
    l_sum BINARY_INTEGER := 0;
    -- Read Buffer
    l_buf VARCHAR2(4000);
    -- End of the current word which will be read
    l_end NUMBER;
    -- Return value
    l_ret BOOLEAN := FALSE;
    BEGIN
    -- Mapping the physical file with the pointer to the BFILE
    l_loc := BFILENAME(l_dir, l_fil);
    -- Check if the file exists
    l_ret := DBMS_LOB.FILEEXISTS(l_loc) = 1;
    IF (l_ret) THEN
    dbms_output.put_line('File ' || l_fil || ' in Directory ' || l_dir ||
    ' exists');
    -- Open the file in READ_ONLY mode
    DBMS_LOB.OPEN(l_loc, DBMS_LOB.LOB_READONLY);
    LOOP
    -- Calculate the end of the current word
    l_end := DBMS_LOB.INSTR(l_loc, l_sen, l_pos, 1);
    -- Process end-of-file
    IF (l_end = 0) THEN
    EXIT;
    END IF;
    -- Read until end-of-file
    l_sum := l_end - l_pos;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    l_pos := l_pos + l_sum + 1;
    END LOOP;
    DBMS_LOB.CLOSE(l_loc);
    ELSE
    dbms_output.put_line('File ' || l_fil || ' in Directory ' || l_dir ||
    ' does not exist');
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Error:' || SQLERRM);
    DBMS_LOB.CLOSE(l_loc);
    END;
    Now its working fine with one addtional line...
    The file content is...
    This is My Content
    This is My Content
    This is My Content
    This is My Content
    This is My Content
    But The output was...
    File testfile.txt in Directory READ_LOB_DIR exists
    This is My Content
    This is My Content
    This is My Content
    This is My Content
    This is My Content
    here, i want to delete that additonal line...?

  • Is Quick View (preview of file contents under search results) supported in SharePoint 2013 Foundation?

    We recently deployed SharePoint 2013 Foundation but can't make Quick View (seeing the contents of a file when you hover the mouse cursor over it) work in the search results.
    All Site Collection/Site Features are turned on.  Not sure what else to do.
    Does anyone have this feature working in SharePoint 2013 Foundation?
    Thank you!

    Hi Charlie,
    To view the Preview of the Search Results you need to Install/Configure Office Web Apps Server in your farm.
    Please check the below links for reference.
    http://technet.microsoft.com/en-us/library/ee855124(v=office.15).aspx
    http://technet.microsoft.com/en-in/library/ff431687(v=office.15).aspx
    If you think is helpful,Vote As Helpful! And if you see a reply being an answer to the question of the thread, click Mark As Answer.
    Mahesh

  • Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help.. Thanks in Advance

    Hi I am using Iframe with src="abc.mht" file. i want to view the mht file content in same window.please help..
    Thanks in Advance

    This is not a Java problem, this is a WEBBOT problem.
    I suggest that you research the topic in your FrontPage help files.
    Yes, we do know how to solve this problem using ordinary HTML and JSP. The sample code that you've posted implies that you are looking for an extremely different solution. To put it another way, it looks like you're logging onto the Federal Aviation Administration's forums and asking them how to go from Chicago to New York by train.
    But in any case, if you can't find the information in FrontPage, I'm 100% certain that if you went to www.microsoft.com and searched for FrontPage and downloads, and skipped the results that actually want you to download FrontPage, you'll get some sample code.

  • How to view the file using the content

    Hi all,
    I have uploaded the data from a binary file to an internal table using GUI_UPLOAD.
    Could you please suggest any way how i can view the file using the content.
    The binary content looks as follows.
    345DCC27F35A291DFD5496E0609E8ED08F3405AF5FE3DDC574166CDE0D79B7A174BC6
    D87597FA824B3E56E82E451D4C2B4D32A423279A668BB6690C7E9956E90CFE766CB37
    39E70D650300006D08000011000000776F72642F73657474696E67732E786D6C9C56D
    69B6197B7F5BDD4C58841ECC06943522630781EC71767DF5504F0B6B3C4674DEE0D46
    Thanks,
    Vishnu

    Hi all,
    Thanks a lot for the reply.
    Here, my requirement is to open the content as a file.
    I have used 'GUI_UPLOAD' FM to upload the contents & need the same file(PDF, JPG, DOC etc) to be displayed using the content.
    Eg., If i upload an Image using the FM 'GUI_UPLOAD', based on the contents & extention can i see an image?
    Please help me in the regard,
    Thanks,
    Vishnu

  • File content retrive/view problem using DBMS_LOB...?

    Below this procedure working fine but getting buffer length/file content display problem...
    CREATE OR REPLACE Procedure READ_FILE_LOB_tmp IS
    l_dir CONSTANT VARCHAR2(30) := 'READ_LOB_DIR';
    l_fil CONSTANT VARCHAR2(30) := 'testfile.txt';
    l_sen CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(10));
    l_loc BFILE;
    l_pos NUMBER := 1;
    l_sum BINARY_INTEGER := 0;
    l_buf VARCHAR2(400);
    l_end NUMBER;
    l_getlength NUMBER;
    l_ret BOOLEAN := FALSE;
    BEGIN
    l_loc := BFILENAME(l_dir, l_fil);
    l_getlength := DBMS_LOB.getlength(l_loc);
    l_ret := DBMS_LOB.FILEEXISTS(l_loc) = 1;
    IF (l_ret) THEN
    DBMS_LOB.OPEN(l_loc, DBMS_LOB.LOB_READONLY);
    LOOP
    l_end := DBMS_LOB.INSTR(l_loc, l_sen, l_pos, 1);
    IF l_end >= l_getlength THEN
    EXIT;
    END IF;
    l_sum := l_end - l_pos;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    l_pos := l_pos + l_sum + 1;
    END LOOP;
    DBMS_LOB.CLOSE(l_loc);
    END IF;
    END;
    My file content:
    Test Content1
    Test Content2
    Test Content3
    Test Content4
    Test Content5
    When i run this procedure, get the output like below format:
    Test Content1
    Test Content2
    Test Content3
    Test Content4
    Test Content5
    But I want to display as per file content format...

    I changed the code like...
    CREATE OR REPLACE Procedure READ_FILE_LOB IS
    l_dir CONSTANT VARCHAR2(30) := 'READ_LOB_DIR';
    l_fil CONSTANT VARCHAR2(30) := 'testfile.txt';
    l_seb CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(32));
    l_sen CONSTANT RAW(100) := UTL_RAW.CAST_TO_RAW(CHR(10));
    l_loc BFILE;
    l_pos NUMBER := 1;
    l_sum BINARY_INTEGER := 0;
    l_buf VARCHAR2(4000);
    l_end NUMBER;
    l_ret BOOLEAN := FALSE;
    l_getlength NUMBER;
    BEGIN
    l_loc := BFILENAME(l_dir, l_fil);
    l_getlength := DBMS_LOB.getlength(l_loc);
    --dbms_output.put_line(l_getlength);
    If l_getlength > 0 then
    l_ret := DBMS_LOB.FILEEXISTS(l_loc) = 1;
    IF (l_ret) THEN
    DBMS_LOB.OPEN(l_loc, DBMS_LOB.LOB_READONLY);
    LOOP
    l_end := DBMS_LOB.INSTR(l_loc, l_sen, l_pos, 1);
    IF l_end = 0 THEN
    l_sum := l_getlength - l_pos + 1;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    EXIT;
    END IF;
    l_sum := l_end - l_pos;
    DBMS_LOB.READ(l_loc, l_sum, l_pos, l_buf);
    DBMS_LOB.TRIM(l_buf, (l_sum * 2) - 2);
    dbms_output.put_line(UTL_RAW.CAST_TO_VARCHAR2(l_buf));
    l_pos := l_pos + l_sum + 1;
    END LOOP;
    DBMS_LOB.CLOSE(l_loc);
    END IF;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Error:' || SQLERRM);
    DBMS_LOB.CLOSE(l_loc);
    END;
    Now its working fine with my format

  • Cannot view jpg files in full page mode. Contents of jpg files are enlarged so that it requires 4 pages to print one page.

    When people send me jpg files that contain a page of information, I cannot view the file in full page mode. I can only view 1 quadrant of the page at a time. If I print the jpg file, it uses 4 pieces of paper (1 quadrant per page). Others who receive this file can view it fine.
    == This happened ==
    Every time Firefox opened
    == It has always worked this way.

    There is an option for the Initial View that is "Magnification:" "Fit Page".  And this works for the initial page when the PDF is opened and it does not matter what the page size it, Acrobat/Reader will automatically fill the screen with the page. If you want the zoom type to change with each page then you need  add a page open script to each page to set the pages zoom type to "zoomtype.fitP"
    this.zoomType = zoomtype.fitP;

  • Kernel[0]: (default pager): [KERNEL]: Swap File Error.

    Hello,
    I am hoping that I can get some help in understanding what might have gone wrong here to create the mass hanging of many apps as depicted in the attached image below.
    This is what I pulled from the logs:
    Sep 11 08:47:10 steve kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    Sep 11 08:47:10 steve kernel[0]: low swap: suspending pid 622 (Adobe Photoshop )
    Sep 11 08:47:10 steve kernel[0]: (default pager): [KERNEL]: Swap File Error.
    Sep 11 08:47:14 steve com.apple.launchd[1] (com.apple.sleepservicesd[12240]): Exited: Killed: 9
    Sep 11 08:47:14 steve kernel[0]: memorystatus_thread: idle exiting pid 12240 [SleepServicesD]
    Sep 11 08:47:14 steve com.apple.launchd[1] (com.apple.xpcd.0A040000-0000-0000-0000-000000000000[12237]): Exited: Killed: 9
    Sep 11 08:47:14 steve kernel[0]: memorystatus_thread: idle exiting pid 12237 [xpcd]
    Sep 11 08:47:16 steve kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    Sep 11 08:47:16 steve kernel[0]: (default pager): [KERNEL]: Swap File Error.
    Sep 11 08:47:16 steve kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    Sep 11 08:47:16 --- last message repeated 2 times ---
    Sep 11 08:47:16 steve kernel[0]: (default pager): [KERNEL]: Switching ON Emergency paging segment
    Sep 11 08:47:18 steve kernel[0]: Sandbox: sandboxd(12246) deny mach-lookup com.apple.coresymbolicationd
    Sep 11 08:47:19 steve.local sandboxd[12246] ([12245]): fontworker(12245) deny file-read-data /Volumes/Users/Users/steve/Library/Preferences/ByHost/.GlobalPreferences.7FC032 09-A3F5-5B8F-ADA4-A2EA48544DC8.plist
    Sep 11 08:47:19 steve.local sandboxd[12246] ([12245]): fontworker(12245) deny file-read-data /Volumes/Users/Users/steve/Library/Preferences/.GlobalPreferences.plist
    Sep 11 08:47:19 steve.local sandboxd[12246] ([12245]): fontworker(12245) deny file-read-data /Volumes/Users/Users/steve/.CFUserTextEncoding
    Sep 11 08:48:07 steve com.apple.launchd[1] (com.apple.sleepservicesd[12243]): Exited: Killed: 9
    Sep 11 08:48:07 steve kernel[0]: memorystatus_thread: idle exiting pid 12243 [SleepServicesD]
    Sep 11 08:48:08 steve kernel[0]: ]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:48:08 steve kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:48:09 --- last message repeated 403 times ---
    Sep 11 08:48:09 steve kernel[0]: nd HI_WAT_ALERT
    Sep 11 08:48:09 steve kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:48:39 --- last message repeated 171 times ---
    Sep 11 08:49:04 steve.local fseventsd[36]: SLOWDOWN: client 0x7fd92b015e00 (pid 622) sleeping due to too many errors (num usleeps 21)
    Sep 11 08:49:17 steve kernel[0]: Sandbox: sandboxd(12256) deny mach-lookup com.apple.coresymbolicationd
    Sep 11 08:49:18 steve.local sandboxd[12256] ([12255]): fontworker(12255) deny file-read-data /Volumes/Users/Users/steve/Library/Preferences/ByHost/.GlobalPreferences.7FC032 09-A3F5-5B8F-ADA4-A2EA48544DC8.plist
    Sep 11 08:49:18 steve.local sandboxd[12256] ([12255]): fontworker(12255) deny file-read-data /Volumes/Users/Users/steve/Library/Preferences/.GlobalPreferences.plist
    Sep 11 08:49:18 steve.local sandboxd[12256] ([12255]): fontworker(12255) deny file-read-data /Volumes/Users/Users/steve/.CFUserTextEncoding
    Sep 11 08:49:28 steve com.apple.launchd.peruser.89[451] (com.apple.cfprefsd.xpc.agent[12253]): Exited: Killed: 9
    Sep 11 08:49:28 steve kernel[0]: memorystatus_thread: idle exiting pid 12253 [cfprefsd]
    Sep 11 08:49:28 steve kernel[0]: (default pager): [KERNEL]: System is out of paging space.
    Sep 11 08:49:28 steve kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:49:28 steve kernel[0]: low swap: suspending pid 7864 (Microsoft PowerP)
    Sep 11 08:49:28 steve kernel[0]: low swap: suspending pid 658 (Google Chrome)
    Sep 11 08:49:28 steve kernel[0]: (default pager): [KERNEL]: Swap File Error.
    Sep 11 08:49:28 steve kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:49:29 --- last message repeated 8 times ---
    Sep 11 08:49:29 steve kernel[0]: te_cluster - send HI_WAT_ALERT
    Sep 11 08:49:29 steve kernel[0]: (default pager): [KERNEL]: ps_allocate_cluster - send HI_WAT_ALERT
    Sep 11 08:49:34 --- last message repeated 224 times ---
    Sep 11 08:49:34 steve.local QuickLookUIHelper[12258]: [QL] QuickLookUIHelper is stuck - force quit now
    Sep 11 08:50:02 steve.local fseventsd[36]: SLOWDOWN: client 0x7fd92e809400 (pid 593) sleeping due to too many errors (num usleeps 42)
    Sep 11 08:50:02 steve.local fseventsd[36]: SLOWDOWN: client 0x7fd92e805400 (pid 1988) sleeping due to too many errors (num usleeps 42)
    Sep 11 08:51:07 steve.local fseventsd[36]: SLOWDOWN: client 0x7fd92b015e00 (pid 622) sleeping due to too many errors (num usleeps 75)
    Other notes that might help yuo help me.
    Machine is an iMac with 16gig of RAM.
    There are two partitions on the drive... one for the OS and one for users.
    The OS has an 80gig Partition with 50% free space.
    The User partition is much more with about 75% free space.
    In the past I have noticed Photoshop to be using over 8gig of RAM so maybe it is photoshop.
    Thanks
    Morgs

    There is excessive swapping of data between physical memory and virtual memory. That can happen for two reasons:
    You have a long-running process with a memory leak (i.e., a bug), or
    You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination.
    When you notice the swap activity, open the Activity Monitor application and select All Processes from the menu in the toolbar, if not already selected. Click the heading of the Real Mem column in the process table twice to sort the table with the highest value at the top. If you don't see that column, select
    View ▹ Columns ▹ Real Memory
    from the menu bar.
    If one process (excluding "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more real memory over time without ever releasing it. Here is an example of how it's done.
    The process named "Safari Web Content" renders web pages for Safari and other applications. It uses a lot of memory and may leak if certain Safari extensions or third-party web plugins are installed. Consider it a prime suspect.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.
    The next suggestion is only for users familiar with the shell. For a more precise, but potentially misleading, test, run the following command: 
    sudo leaks -nocontext -nostacks process | grep total
    where process is the name of a process you suspect of leaking memory. Almost every process will leak some memory; the question is how much, and especially how much the leak increases with time. I can’t be more specific. See the leaks(1) man page and the Apple developer documentation for details.

  • Chrome - Adobe-Acrobat/Reader can not be used to view PDF files in a web browser.

    I can't view PDF files via Chrome (it works on Internet Explorer but I prefer Chrome)  -  the error below has arisen recently on Chrome, though I can't see what has changed.
    "Acrobat plug-in
    The Adobe-Acrobat/Reader that is running can not be used to view PDF files in a web browser. Please exit  Adobe Acrobat/Reader and exit your Web Browser and try again."
    I have looked through Forum articles on similar errors and have tried the following(text copied from other Forum entries)
    Repair Adobe Acrobat (from Acrobat)
    Repair Adobe Acrobat (from Control Panel
    Configure Acrobat  as a helper application: Choose Edit > Preferences., Select Internet on the left., Deselect Display PDF In Browser Using [Acrobat application], and then click OK.Quit Acrobat or Reader
    Create a registry item for Acrobat: with Regedit: If the registry item doesn't exist on the system, do the following: Go to Edit > New > Key and create the missing HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe.Go to Edit > New > String Value and name this key (Default).Select (Default), and then go to Edit > Modify. Type the Adobe Acrobat path in the "Value data" for your product.,restart your computer
    Repair the HKCR\AcroExch.Document registry key: Navigate to HKEY_CLASSES_ROOT\AcroExch.Document., Right-click AcroExch.Document and select Delete; make sure that you have the correct key, and click Yes on any prompts, Right-click AcroExch.Document.7 and select Delete; make sure that you have the correct key, and click Yes on any prompts. Repair your Acrobat  installation
    None has solved the problem. However it still works ok with IE. But I want to stick with Chrome because I find IE is so slow!
    I am using Vista, with Adobe Acrobat standard 9.5.2 and Google Chrome version 23.0.1271.64 m which is marked on Chrome as 'up to date'
    Does anyone know why I might be getting this error on Chrome but not IE?

    I think I have discovered the answer to my own question!
    I have disabled Adobe Reader plug-in, and can now see PDFs in Chrome.
    (Steps: Chrome Menu, Settings option, Click Advanced Settings link, then Content Settings button, then select Disable Individual Plug-Ins, and a list of plug-ins is offered to enable or disable).
    I then get a different result depending on whether or not Chrome PDF viewer is enabled - with it enabled I see the PDF document in Chrome, or with it disabled then the option is offered to download it, but either way I can get it it via Chrome without having to run Internet explorer in another browser window.

  • Reader 9.2 - "can not be used to view PDF files in a web browser"

    Hello,
    I recently deployed Adobe 9.2 within our organization. I used the Adobe Customization Wizard 9 to transform the install set, and selected the "Display PDF in Browser" option as default.
    When opening a PDF linked from a web URL, we get the message: "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Adobe Acrobat/Reader version 8 or 9 is required. Please exit and try again." This occurs under IE8 and IE6, in both Windows XP SP2 and Windows 7.
    If I launch Adobe Reader and unselect "Display PDF in Browser" in preferences, PDFs open normally.

    I think I have discovered the answer to my own question!
    I have disabled Adobe Reader plug-in, and can now see PDFs in Chrome.
    (Steps: Chrome Menu, Settings option, Click Advanced Settings link, then Content Settings button, then select Disable Individual Plug-Ins, and a list of plug-ins is offered to enable or disable).
    I then get a different result depending on whether or not Chrome PDF viewer is enabled - with it enabled I see the PDF document in Chrome, or with it disabled then the option is offered to download it, but either way I can get it it via Chrome without having to run Internet explorer in another browser window.

  • When click on restore down button in firefox 32.0.3 the veritical scroll ba is missing and I am not able to view my gmail content or any other data properly..

    After openig Gmail or trying to search any information in google,when i click on restore down buton which is appear near close button,the vertical scroll bar is not showing,I have to maximize the window and then only I am able to view the hole content.

    You can check for problems caused by a corrupted localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • How to view multiple files' info in a single window

    I remember I can view multiple files' info in a single window before, but now I have to viewed multiple files' info in each their own window. It's very inconvenient to me, I want to get a solution to resolve it. Please do me favor, Many Thanks!
    Message was edited by: 5imacintosh

    Select them and press the Option, Command, and I keys at once. The resulting window will change its content based on the selection.
    (45010)

  • How to display the field name in the tabulated view for a content query web part

    I have added a content query web part changed the web part file to include custom columns imported and reffered itemstyle.xsl
    to include the tabulated view for the content query.
    However the way it is displayed is such that only the content is displayed.
    As i am using a tabular view wto display the data, i want to display their field names as well.

    Hi  ,
    According to your description, my understanding is that you need to display the field in the tabulated view for a content query web part.
    For your issue, please refer to the code as below:
    <xsl:template name="VendorCustomStyle" match="Row[@Style='VendorCustomStyle']" mode="itemstyle">
    <html>
    <table width="100%">
    <xsl:if test="count(preceding-sibling::*)=0">
    <tr>
    <td width="8%" valign="top"><div class="item"><b>Vendor ID</b></div></td>
    <td width="12%" valign="top"><div class="item"><b>Vendor Name</b></div></td>
    <td width="50%" valign="top"><div class="item"><b>Vendor Description</b></div></td>
    <td width="10%" valign="top"><div class="item"><b>Vendor Country</b></div></td>
    <td width="10%" valign="top"><div class="item"><b>Vendor Date</b></div></td>
    <td width="10%" valign="top"><div class="item"><b>Created By</b></div></td>
    </tr>
    </xsl:if>
    <tr>
    <td width="8%" valign="top"><div class="item"><xsl:value-of select="@VendorID" /></div></td>
    <td width="12%" valign="top"><div class="item"><xsl:value-of select="@Title" /></div></td>
    <td width="50%" valign="top"><div class="item"><xsl:value-of select="@Vendor_x005F_x0020_Description" disable-output-escaping="yes" /></div></td>
    <td width="10%" valign="top"><div class="item"><xsl:value-of select="@Vendor_x005F_x0020_Country" /></div></td>
    <td width="10%" valign="top"><div class="item"><xsl:value-of select="@Vendor_x005F_x0020_Date" /></div></td>
    <td width="10%" valign="top"><div class="item"><xsl:value-of select="@Author" /></div></td>
    </tr>
    </table>
    </html>
    </xsl:template>
    For more information, please have a look at the blog:
    http://www.codeproject.com/Articles/756834/Customizing-the-Content-Query-Web-Part-and-Item-St
    http://msdn.microsoft.com/en-us/library/ms497457.aspx
    http://clarksteveb.hubpages.com/hub/Customized-Content-Query-Web-Part-CQWP-in-SharePoint-2007-with-results-Tabbed-Grouped-and-in-an-HTML-Table
    http://blog.sharepointexperience.com/customitemstyle/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How can i view my iphone contents on PC. How can i view my backup data in itunes. How can i see my SMS and contact on PC

    Hi,
    Can anybody help me out on the follwoing questions
    how can i view my iphone contents on PC. How can i view my backup data in itunes. How can i see my SMS and contact on PC

    The data isn't actually stored in iTunes.  iTunes is like a card catalog that allows you to access information from the various places that it's stored on the computer.  SMS and contact info will be viewable in whatever program you sync contact information.  The backup actually keeps the files, but doesn't make them viewable, I'm pretty sure.  You can only see the info you've actually synced.

  • View XML files in Firefox without using source view

    Whenever I open an XML file in Firefox, the tags are all stripped off and I see just plain text like this [[http://i.imgur.com/pBhUM.png|XML File 1 in Firefox]]. The same file displays in Internet Explorer like this [[http://i.imgur.com/CT8Zb.png|XML File 1 in Internet Explorer]]
    For an average user, this is the preferred view, as he can see the text content of the XML file without worrying about the tags in the document. For other more advanced users like myself, this is very inconvenient.
    There are even some cases where Firefox does not display anything because all the tags are stripped off like in this case
    [[http://i.imgur.com/hAkBd.png|XML File 2 in Firefox]]
    here is the same file in Internet Explorer [[http://i.imgur.com/juOzs.png|XML File 2 in Internet Explorer]].
    The workaround I use now is to view the file's source so that I get to see everything. I must say, however, that this is very inconvenient. If the user does not specify any style sheet for formatting the XML file, I believe the file should be left as-is; it should not be touched.
    Kindly review this so we can confidently use Firefox as our default browser without having to switch to IE from time to time.

    '''@cor-el'''
    I am aware of the solution you're proposing. I even stated it as the workaround I use currently.
    My point is that the browser should have an option to display the raw XML without stripping off all the tags just like Internet Explorer or even Chrome (see attached image).

Maybe you are looking for