I cannot access files saved prior to Lion download.  Help?

How can I access files from operating system prior to Lion?

Do you mean from prior backups?   If so, what kind (Time Machine, "clone," or what)?

Similar Messages

  • HT1918 I cannot access files I uploaded from an old computer.  The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address?

    I cannot access files I uploaded from an old computer. The email account to which some tracks are connected is deleted. For some reason my birth date doesn't work either. Is there some way to transfer the files to my current address and username?

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • Cannot access file from JApplet

    I have used the swingall.jar file with my JApplet for any
    version of IE. It gives one error
    i.e
    Cannot access file c:\prog\project
    I want to create a directory within c:\prog and also i want
    to write some files there. Pls help me.

    try this my friend!
    1.     Compile the applet
    2.     Create a JAR file
    3.     Generate Keys
    4.     Sign the JAR file
    5.     Export the Public Key Certificate
    6.     Import the Certificate as a Trusted Certificate
    7.     Create the policy file
    8.     Run the applet
    Susan
    Susan bundles the applet executable in a JAR file, signs the JAR file, and exports the public key certificate.
    1.     Compile the Applet
    In her working directory, Susan uses the javac command to compile the SignedAppletDemo.java class. The output from the javac command is the SignedAppletDemo.class.
    javac SignedAppletDemo.java
    2.     Make a JAR File
    Susan then makes the compiled SignedAppletDemo.class file into a JAR file. The -cvf option to the jar command creates a new archive (c), using verbose mode (v), and specifies the archive file name (f). The archive file name is SignedApplet.jar.
    jar cvf SignedApplet.jar SignedAppletDemo.class
    3.     Generate Keys
    Susan creates a keystore database named susanstore that has an entry for a newly generated public and private key pair with the public key in a certificate. A JAR file is signed with the private key of the creator of the JAR file and the signature is verified by the recipient of the JAR file with the public key in the pair. The certificate is a statement from the owner of the private key that the public key in the pair has a particular value so the person using the public key can be assured the public key is authentic. Public and private keys must already exist in the keystore database before jarsigner can be used to sign or verify the signature on a JAR file.
    In her working directory, Susan creates a keystore database and generates the keys:
    keytool -genkey -alias signFiles -keystore susanstore -keypass kpi135 -dname "cn=jones" -storepass ab987c
    This keytool -genkey command invocation generates a key pair that is identified by the alias signFiles. Subsequent keytool command invocations use this alias and the key password (-keypass kpi135) to access the private key in the generated pair.
    The generated key pair is stored in a keystore database called susanstore (-keystore susanstore) in the current directory, and accessed with the susanstore password (-storepass ab987c).
    The -dname "cn=jones" option specifies an X.500 Distinguished Name with a commonName (cn) value. X.500 Distinguished Names identify entities for X.509 certificates.
    You can view all keytool options and parameters by typing:
    keytool -help
    4.     Sign the JAR File
    JAR Signer is a command line tool for signing and verifying the signature on JAR files. In her working directory, Susan uses jarsigner to make a signed copy of the SignedApplet.jar file.
    jarsigner -keystore susanstore -storepass ab987c -keypass kpi135 -signedjar SSignedApplet.jar SignedApplet.jar signFiles
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5.     Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    The -storepass ab987c and -keystore susanstore options specify the keystore database and password where the private key for signing the JAR file is stored. The -keypass kpi135 option is the password to the private key, SSignedApplet.jar is the name of the signed JAR file, and signFiles is the alias to the private key. jarsigner extracts the certificate from the keystore whose entry is signFiles and attaches it to the generated signature of the signed JAR file.
    5: Export the Public Key Certificate
    The public key certificate is sent with the JAR file to the whoever is going to use the applet. That person uses the certificate to authenticate the signature on the JAR file. To send a certificate, you have to first export it.
    In her working directory, Susan uses keytool to copy the certificate from susanstore to a file named SusanJones.cer as follows:
    keytool -export -keystore susanstore -storepass ab987c -alias signFiles -file SusanJones.cer
    Ray
    Ray receives the JAR file from Susan, imports the certificate, creates a policy file granting the applet access, and runs the applet.
    6.     Import Certificate as a Trusted Certificate
    Ray has received SSignedApplet.jar and SusanJones.cer from Susan. He puts them in his home directory. Ray must now create a keystore database (raystore) and import the certificate into it. Ray uses keytool in his home directory /home/ray to import the certificate:
    keytool -import -alias susan -file SusanJones.cer -keystore raystore -storepass abcdefgh
    7.     Create the Policy File
    The policy file grants the SSignedApplet.jar file signed by the alias susan permission to create newfile (and no other file) in the user's home directory.
    Ray creates the policy file in his home directory using either policytool or an ASCII editor.
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant SignedBy "susan"
         permission java.security.AllPermission;
    8.     Run the Applet in Applet Viewer
    Applet Viewer connects to the HTML documents and resources specified in the call to appletviewer, and displays the applet in its own window. To run the example, Ray copies the signed JAR file and HTML file to /home/aURL/public_html and invokes Applet viewer from his home directory as follows:
    Html code :
    </body>
    </html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    width="600" height="400" align="middle"
    codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,1,2">
    <PARAM NAME="code" VALUE="SignedAppletDemo.class">
    <PARAM NAME="archive" VALUE="SSignedApplet.jar">
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.3">
    </OBJECT>
    </body>
    </html>
    appletviewer -J-Djava.security.policy=Write.jp
    http://aURL.com/SignedApplet.html
    Note: Type everything on one line and put a space after Write.jp
    The -J-Djava.security.policy=Write.jp option tells Applet Viewer to run the applet referenced in the SignedApplet.html file with the Write.jp policy file.
    Note: The Policy file can be stored on a server and specified in the appletviewer invocation as a URL.
    9.     Run the Applet in Browser
    Download JRE 1.3 from Javasoft
    save this to write.jp
    keystore "/home/ray/raystore";
    // A sample policy file that lets a JavaTM program
    // create newfile in user's home directory
    // Satya N Dodda
    grant {
    permission java.security.AllPermission;
    save this to signedAppletDemo.java
    * File: @(#)SignedAppletDemo.java     1.1
    * Comment:     Signed Applet Demo
    * @(#)author: Satya Dodda
    * @(#)version: 1.1
    * @(#)date: 98/10/01
    import java.applet.Applet;
    import java.awt.Graphics;
    import java.io.*;
    import java.awt.Color;
    * A simple Signed Applet Demo
    public class SignedAppletDemo extends Applet {
    public String test() {
    setBackground(Color.white);
         System.out.println(System.getProperty("user.home"));
         String fileName = System.getProperty("user.home") +
                        System.getProperty("file.separator") +
                        "newfile";
         String msg = "This message was written by a signed applet!!!\n";
         String s ;
         try {
         FileWriter fos = new FileWriter(fileName);
         fos.write(msg, 0, msg.length());
         fos.close();
         s = new String("Successfully created file :" + fileName);
         } catch (Exception e) {
         System.out.println("Exception e = " + e);
         e.printStackTrace();
         s = new String("Unable to create file : " + fileName);
         return s;
    public void paint(Graphics g) {
    g.setColor(Color.blue);
    g.drawString("Signed Applet Demo", 120, 50);
    g.setColor(Color.magenta);
    g.drawString(test(), 50, 100);

  • ACS 4.2.(1) build15 - replication failed with Cannot access file

    Just upgraded from 4.0 - to 4.2 then to 4.2.1 15. As you may have seen with periovous posts of mine its not been an esay ride.
    I have now managed to get it all working - backups AAA etc but for some reason i cannot get the replication to work! Its states the following...
    Within the Database Replication active log - Error OutBound database replication failed - refer to CSAuth log file.
    Other lines in the log state  its ok eg - Component logging reports was updated - being replicated to slave...
    Looking at the CSAuth log file...
    .....DBReplication thread kicked..starting sync.
    ODBC Operation failed with the folowing information: Message = [Sybase] [ODBC Driver] [Adaptive Server Anywhere] Cannot access file "D:$etworks\CiscoSecure 4.2\CSAuth\DbSyncSratch\users\users.dat~ -- Invailed argument, sqlStates=S1000, Native error = -602$
    SL:saveUserTable - execution Failed.
    Please note that the $ is a symbol that i have used because the symbol in the log is strange and i  cannot seem to be able replicate here with this text, for example $etworks - should be networks...
    Everything else seems to be working except this - any help would be great..
    Oh Merry Xmas and Happy new year to you all!
    John

    Did you find a solution?
    I have the same problem with the exact same symptoms - I can't get replication to work. The path name in the error message is missing the first letter, too.
    PS: It has nothing to do with the firewall, the replication fails even before it tries to connect to the network.
    Greetings
    Mathias Rufer

  • Cannot access files on Android phone

    Hello! I just setup a WD My Cloud 3TB and copied some pictures to a private share.  When using WD My Cloud app on my android phone, these pictures are getting listed; however, when I try to launch/open any picture, I get the message "cannot access file." Also, on WD Photos app, I get the message "No photos found." On my Windows 8 PC, using WD My Cloud, I can see and open pictures. No problem here. The problem seems to be only through remotely. I'm puzzled why I'm presented the list of pictures but when I try to open I'm not allowed to. Thanks for your attention!Ravi.

    denisdyer wrote:
    Hi,I hope you can help, I'm having exactly the sam eissue. I bought the my cloud yesterday have uploaded about 1TB of photos and video and i can access everything no problem except the photos. When I try and open any of the photos form my samsung galaxy S5 I get the spinning circle and then it says the photo cannot be accessed, do I just have to wait? Any assitance would be appreciatedWhich Android app are you using that generates the error? The WD Photos or the WD My Cloud app? May want to unsintall the app and reinstall it. Sometimes that can fix strange app behavior.

  • I can't save Logic Projects/Files since updating to Lion. Help?!

    I can't save Logic Projects/Files since updating to Lion. Help?!

    I just had the same problem, after working on a project for a couple of hours and thinking it was saved, I go back to work on it some more and all the work I had done was not there. This is totally frustrating. I posted here as well and haven't had any responses. Good luck to you.

  • I copied a lot of photos from an iphone to a DVD using a Windows 7 laptop, now I cannot access those photos on the DVD. HELP!

    I copied a lot of photos from an iphone to a DVD using a Windows 7 laptop, now I cannot access those photos on the DVD. HELP! In Windows Exlporer I can see the data on the disk in the details but when I click on it nothing appears as if there is nothing on it.

    It should. So they aren't shown in the Last Import smart album, right? Try the following:
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - Run Option #4, Rebuild Database, followed by Option #1 if needed.
    OT

  • Cannot access files on Time Capsule

    Cannot acess files on the TC HDD anymore. The TC HDD appears on the left panel in Finder, but if I doubleclick the disk, the TC drops connection and restarts. Soft, hard and factory resets of the TC did not help.
    Last months the TC has always dropped connection or acess to the HDD but a soft reset helped every time.
    File sharing in Airport Utility is on.
    The TC router works good and I have acess to the Internet as long as it restarts.
    Is there any chance to restore my data from the TC? All the media files have been stored there.
    Using Lion, TC 7.5.2.
    Thanks in advance for your hints

    I don't have a guaranteed solution to your problem, just some suggestions:
    1) Try powering down the Time Capsule for at least 15 minutes, then plug it in again and see if it works better.
    2) If you suspect that heat might be a problem, try raising the Time Capsule to give better air flow below it.  I have mine on an inverted plastic-coated-wire basket of the type used to organize kitchen drawers.
    3) If AirPort Utility can "see" the Time Capsule, you should be able to use the "archive" function (in the Disks panel, Disks tab) to write the disk's contents to a drive connected to the Time Capsule's USB port.
    4) In the worst case, you should be able to access the files on the Time Capsule's disk by opening up the Time Capsule, removing the disk drive, mounting the drive in an external enclosure, and attaching the enclosure to your Mac.

  • Cannot access sites saved to Reading List in Safari with OS 10.8.5

    I just upgraded to 10.8.5, Mountain Lion, and encountered a number of problems with overall performance. One of these problems is that I cannot access sites that I have added to Safari's reading list. When I click on the link in the list I just get another "Top Sites" window opening up.
    I'll add a second issue experienced after upgrading to OS 10.8.5. There have been random times when after awakening my MacBook Pro after extended sleep I have received a message that "drive(s) was/were improperly ejected". Since then I have had two external drives from different manufacturers quit on me - on start-up I get the message that "The disk you inserted is not readable by this computer…" even though they were readable recently. One of the manufacturers indicated that they have heard this is a Mac OS problem which is randomly not allowing the computer to wait for a drive to "dismount" properly before going into sleep mode. Anyone else with these problems? Solutions?

    Hi Russ_R,
    Welcome to the HP Forums.
    I see by your post that you would like to configure the printer on the wireless network.
    I will do my best to assist you with this issue.
    Download and install the 10.7 software for the printer so we will have the HTML software to run the wireless setup for the printer.
    HP LaserJet Full Feature Software and Driver.
    Make sure Safari is set as the default browser. (sometimes the EWS won't open if it isn't set as the default)
    Open Safari, across the top select the Safari menu, select Preferences, General, set as default.
    Close out all applications.
    On the Apple menu bar, click Go, computer, Mac Harddrive, library, printers, HP,Laserjet, P1100_P1560_P1600Series, open html config.
    Go to the network tab, select wireless on the left side, select infrastructure, select network name, select the double
    arrow button to move the network name over to the left side, fill in passwords, apply.
    You should get a solid blue wireless light in about 1 minute.
    (Note: if the html config doesn't load you will have to update the printers firmware with USB connection)
    Then go to the Apple, system preferences, print & scan, highlight the P1102w and click the minus at bottom left
    corner to delete it, then disconnect USB cable, click the plus sign in bottom left corner and highlight the P1102w bonjour printer, beside Use: make sure it shows the proper printer name and not Airprint, (Airprint is a preinstalled apple driver with basic functionality) click on the add button. You might have to click on the drop down to select your printer.
    Try and print.
    Please let me know if you need further assistance.
    Thank you for posting on the HP Forums.
    Have a great day.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • What happened to file saving options in Lion?!

    I recently upgraded my Mac to OS X Lion and Photoshop CS5 seems to be working normally, albeit a little sluggishly, since the upgrade. However, when I create a new Photoshop file, create some layers, then "Save As", all my normal format options are missing. The only choices I am offered are Large Document Format, Photoshop RAW and TIFF.
    If I open a JPG or PSD file, there's no problem. The "Save As" command gives me a normal file saving window with the normal format options. But a new file transforms itself into something totally alien! What's going on here?

    I think you're right. I was creating some banner text and did stretch the document borders out to quite a large size for convenience. I have since moved half the text to a second document and my PSD doesn't turn into a pumpkin when I open the "Save As" window.
    Thanks!

  • HP SimpleSave SD500a cannot access files

    I cannot access any of the files/folders that I had backed up HP SimpleSave SD500a USB disk. I backed up by files before using XP, Vista and Windows 8.1 and have important information on it.
    I had to restore my Dell 1545 laptop OS to factory defaults due to problems with Windows Vista Home Premium Edition and took a backup of all my files onto the SD500a where I store all my other backup data and verified that the backed up copy was fine.
    After restoring Vista and installing updates, which included Vista SP2 I went to restore my backed up files. I connected my USB drive to the laptop and I noticed that Vista automatically installed the driver and 2 new drives appeared: CD Drive G: HP Launcher and Local Disk H:.
    I then ran a virus scan using ESET Smart Security software that I had newly installed on the Vista laptop and found that the scan finished in no time. I changed the parameters to “in-depth” and this too finished quickly. Now I started to suspect that something had gone awry.
    I could not access both of them in Explorer. I checked the drive properties and I got a message: H:\ is not accessible Data error (cyclical redundancy check). Drive G: is HP Launcher. I noticed that a “blue” light on the USB drive keeps flickering on most of the time when I open Explorer. At one point I did get a message if I wanted to format the disk which I declined.
    I checked the status of both drives (G and H) in Disk Manager. Disk G: file system CDFS, capacity 1Mb, free 0Mb, status healthy and H: file system RAW, capacity 465.11Gb, free 465.11Gb, status healthy.
    I tried connecting the SD500a to a desktop with Windows 8.1 and got the same result. I am not sure if the file formats changed after I connected it to my Vista laptop following the restore of the OS (NTFS vs CDSF/RAW) but I don't know what they were originally.
    I am hoping that someone will be able to help to resolve this issue so that I can access my files.

    If in fact you have to create a new volume and start all over, there are several data recovery programs that are free that should work just fine. Like I said, it wont get every file back, but it should get most of them.
    http://www.easeus.com/
    http://www.piriform.com/recuva
    Personal commentary:
    I do not trust ANY automatic backup service that runs in the background. I also don't want my backups compiled into a proprietary format that I have to use that specific program to access that backup with. Also for reasons you just experienced.
    Although there a many different opinions about backing up files, One method that is minorley cumbersome but tried and true is Mark Russinovich's Sync Toy 2.1.  It is not automatic, I have to initiate it manually each time. But it will find and add/replace updated files when told to do so in Synchronise, Echo or Contribute modes. I can set up several categories to backup separately.  I just feel more confident its done when I manually do it myself and the files are accessible as if I drag and dropped directly.
    Just my humble opinion.
    Hope it helps. Good luck.

  • Pkg cannot install files in the Mountain Lion OS after Mavericks installation

    I installed Mavericks on second partition while Mountain Lion was installed in first partition.
    After 2 OS are ready and can be booted, I found any pkg cannot install files in the 10.8 OS, can I can solve it?
    Thanks.

    Sorry, I can't tell from your description what is going on. Are you allowed to choose the destination, or does it just install? Perhaps the package is poorly configured and has hard-coded install paths.
    Do all installers have the same problem?
    Unfortunately, I do not have a drive partitioned like that to test.

  • New user cannot access files

    I installed a TestSTand deployment as User1. Then I tried to run a test as Operator. When it tried to write a summary report it could not access the file. So's I tries it myself and I can't delete files in the test report directory created by the deployment. I see that the whole directory tree is read-only. I switched to User1 and unchecked read-only up and down the line but no good. Finally I gave Operator admin privs and rebooted and then he could access files. Why is my deployment setup this way? Is it something I did or didn't do?
    jvh

    Hi jvh,
    I'm a little confused about what you are trying to do with your deployment.  Did it not automatically generate a report after the tests had completed?  Were you trying to open up the Test Sequence Report but were being denied permission to do so?  Could you not remove the .xml report file from its directory?  Maybe it would be good if you could attach a screen shot of your directory tree, or screen shots of what you've been seeing.
    Just curious -- what permissions did you have configured for the Operator user? 
    Regards,
    Stephanie R.
    National Instruments
    Stephanie R.
    National Instruments

  • My Book & My Passport - cannot access recordings saved from Dish network receiver

    I was moving from another state and Dish talked me into not moving the receiver but to get the Hopper and other equipment. The Dish account I had was under my deceased common law husband's name. I bought both the My Book and My Passport and downloaded the movies and specials that my common law husband recorded on two receivers that we watched together and I want desperately to be able to watch since I have moved.  After I got moved the new Dish receivers will not recognize the moves and shows.  Dish said it is a copywrite issue because I had a different account. Dish never mentioned the fact that the account had to be the same and I have spent over $200 on these two hard drives.  What I want to know: Is there any way to be able to download these movies and tv specials that are now on these two hard drives that I cannot access.  I only want the material that I was told I could keep..I don't want to pirate shows to pass on to others. I think I deserve at least a one-time download of these shows to my current receiver as I was told by Dish Network in the very beginning.  Can anyone help me with this. Is there anyway to download them to a different device, Cloud, or anything so I can watch these movies/specials. I feel Dish should allow this onetime exemption for me but was searching for any info I can get from Western Digital if they can download them for me somehow if I can't get Dish to do it.

    Mt sympathy for your loss Mary.When you call, do it in the morning and for a supervisor in Technical support. Be firm about this point. Under copywrite law you can record the program for your own enjoyment. Tranfering the movies to a cloud will not change the personal enjoyment. If that were the case, you couldn't record it in the first place.I have gotten advice from one person and told the opposite later from another indivual. Good luck! .  

  • Had to reinstall os ,and cannot access itunes although backed on time machine help

    had to reinstall OS last july after exel update installed virus  and cannot access itunes although backed on time machine help

    You should still be able to recover your media through iTune's "open" feature:
    Connect your time machine drive and navigate to it in Finder.
    Open the backup.backupd (or similar) folder.
    Pick a recent date (folder)
    Pick through to your home folder
    drag the music folder onto itunes in the dock
    Hope this helps, It might not be very clear.

Maybe you are looking for

  • Youtube or similar Video sites on N96

    Hi, How do i view Youtube videos with N96, i tried accessing youtube as a webpage, and tried to access the videos, but it openes the whole page, and video doesnt open. i tried accessing with video center and doesnt work. is there another way to acces

  • BI Server - Solaris - Admin tool security configuration

    Hi, I have a BI server running on Solaris. I want to use the admin tool to configure users/groups which are configured in an LDAP database. Is this possible? Sifting through the forums, I can see that the admin tool is used to construct an offline rp

  • Buy logic pro 9. installer write that the serial number is not valid.

    buy logic pro 9. installer write that the serial number is not valid.

  • Mail client Nokia C6

    hey there, i've got a problem with my mail client, andd i hope someone's able to help my solve it. my mail client works allright, but i want the mails to stay an the normal mail server as well, so that they are on my normal client and on my phone. i

  • Custom aac importing bug

    I use itunes on my pc and when I try to import songs in AAC custom form the program returns 2 the AAC default (128KBPS\64KBPS). the custom option does work in MP3 importing and stuff and it used to work in AAC as well but now I cant shake this bug:'(