Problem in coding of problem in linux

i m a student in 3 rd year bcs and doing a project in java .
my project is that when u click on a folder which is protected by my program should redirect the person accessing the folder to another memory location which i specified e.g.recycle bin.it works on windows i have used a some remade extension made by windows system. but when i try the dame in linux it cant protect the folder
is there any way to apply the same concept of windows to the problem
or any other solution
my project is similar to that of fake folder software
the problem is i want it to work on linux
pls send messages on my email id
[email protected]

I'm not an expert but i had the same problem when I untarred the download file and burned a CD in windows. I would suggest that you put the tar file on a CD and untar it in unix/linux

Similar Messages

  • Performance problems with jdk 1.5 on Linux plattform

    Performance problems with jdk 1.5 on Linux plattform
    (not tested on Windows, might be the same)
    After refactoring using the new features from java 1.5 I lost
    performance significantly:
    public Vector<unit> units;
    The new code:
    for (unit u: units) u.accumulate();
    runs more than 30% slower than the old code:
    for (int i = 0; i < units.size(); i++) units.elementAt(i).accumulate();
    I expected the opposite.
    Is there any information available that helps?

    Here's the complete benchmark code I used:package test;
    import java.text.NumberFormat;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.Vector;
    public class IterationPerformanceTest {
         private int m_size;
         public IterationPerformanceTest(int size) {
              m_size = size;
         public long getArrayForLoopDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testArray[index]);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayForEachDuration() {
              Integer[] testArray = new Integer[m_size];
              for (int item = 0; item < m_size; item++) {
                   testArray[item] = new Integer(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testArray) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForLoopDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListForEachDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getArrayListIteratorDuration() {
              ArrayList<Integer> testList = new ArrayList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForLoopDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testList.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListForEachDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testList) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getLinkedListIteratorDuration() {
              LinkedList<Integer> testList = new LinkedList<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testList.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testList.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForLoopDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (int index = 0; index < m_size; index++) {
                   builder.append(testVector.get(index));
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorForEachDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              for (Integer item : testVector) {
                   builder.append(item);
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
         public long getVectorIteratorDuration() {
              Vector<Integer> testVector = new Vector<Integer>();
              for (int item = 0; item < m_size; item++) {
                   testVector.add(item);
              StringBuilder builder = new StringBuilder();
              long start = System.nanoTime();
              Iterator<Integer> iterator = testVector.iterator();
              while(iterator.hasNext()) {
                   builder.append(iterator.next());
              long end = System.nanoTime();
              System.out.println(builder.length());
              return end - start;
          * @param args
         public static void main(String[] args) {
              IterationPerformanceTest test = new IterationPerformanceTest(1000000);
              System.out.println("\n\nRESULTS:");
              long arrayForLoop = test.getArrayForLoopDuration();
              long arrayForEach = test.getArrayForEachDuration();
              long arrayListForLoop = test.getArrayListForLoopDuration();
              long arrayListForEach = test.getArrayListForEachDuration();
              long arrayListIterator = test.getArrayListIteratorDuration();
    //          long linkedListForLoop = test.getLinkedListForLoopDuration();
              long linkedListForEach = test.getLinkedListForEachDuration();
              long linkedListIterator = test.getLinkedListIteratorDuration();
              long vectorForLoop = test.getVectorForLoopDuration();
              long vectorForEach = test.getVectorForEachDuration();
              long vectorIterator = test.getVectorIteratorDuration();
              System.out.println("Array      for-loop: " + getPercentage(arrayForLoop, arrayForLoop) + "% ("+getDuration(arrayForLoop)+" sec)");
              System.out.println("Array      for-each: " + getPercentage(arrayForLoop, arrayForEach) + "% ("+getDuration(arrayForEach)+" sec)");
              System.out.println("ArrayList  for-loop: " + getPercentage(arrayForLoop, arrayListForLoop) + "% ("+getDuration(arrayListForLoop)+" sec)");
              System.out.println("ArrayList  for-each: " + getPercentage(arrayForLoop, arrayListForEach) + "% ("+getDuration(arrayListForEach)+" sec)");
              System.out.println("ArrayList  iterator: " + getPercentage(arrayForLoop, arrayListIterator) + "% ("+getDuration(arrayListIterator)+" sec)");
    //          System.out.println("LinkedList for-loop: " + getPercentage(arrayForLoop, linkedListForLoop) + "% ("+getDuration(linkedListForLoop)+" sec)");
              System.out.println("LinkedList for-each: " + getPercentage(arrayForLoop, linkedListForEach) + "% ("+getDuration(linkedListForEach)+" sec)");
              System.out.println("LinkedList iterator: " + getPercentage(arrayForLoop, linkedListIterator) + "% ("+getDuration(linkedListIterator)+" sec)");
              System.out.println("Vector     for-loop: " + getPercentage(arrayForLoop, vectorForLoop) + "% ("+getDuration(vectorForLoop)+" sec)");
              System.out.println("Vector     for-each: " + getPercentage(arrayForLoop, vectorForEach) + "% ("+getDuration(vectorForEach)+" sec)");
              System.out.println("Vector     iterator: " + getPercentage(arrayForLoop, vectorIterator) + "% ("+getDuration(vectorIterator)+" sec)");
         private static NumberFormat percentageFormat = NumberFormat.getInstance();
         static {
              percentageFormat.setMinimumIntegerDigits(3);
              percentageFormat.setMaximumIntegerDigits(3);
              percentageFormat.setMinimumFractionDigits(2);
              percentageFormat.setMaximumFractionDigits(2);
         private static String getPercentage(long base, long value) {
              double result = (double) value / (double) base;
              return percentageFormat.format(result * 100.0);
         private static NumberFormat durationFormat = NumberFormat.getInstance();
         static {
              durationFormat.setMinimumIntegerDigits(1);
              durationFormat.setMaximumIntegerDigits(1);
              durationFormat.setMinimumFractionDigits(4);
              durationFormat.setMaximumFractionDigits(4);
         private static String getDuration(long nanos) {
              double result = (double)nanos / (double)1000000000;
              return durationFormat.format(result);
    }

  • Keyboard Problem while running Swing App on LINUX

    Hi All,
    We have a Swing based Application running on Windows Platform. We need to run the Application on LINUX. The Application does not have any problem and runs without problems for a few minutes but after that the keyboard stops to respond inside the application. Keyboard runs fine outside the application but no key events are recognized inside the application. Mouse is working fine even after the keyboard stops responding.
    Key Points:
    �     The keyboard is a PS/2 keyboard.
    �     Read Hat Fedora 5.0 is being used.
    �     The problems occur on both KDE and GNONE.
    �     The Java Version is jdk1.5.0_09
    The application is data entry application using EJB at server side. The client UI has lot of JTables and Desktop Panes/ Internal Frames. User use ctrl+tab, ctrl+shift+tab, tab, shift+tab, and other hot keys to navigate between Components. Listeners on keyboard Focus Owner are also used. We are unable to diagnose the problem because of the undeterminable nature of the problem. The problem occurs at anytime and does not occur on any special key/ combinations press.
    Thanks and Regards,
    Nishant Saini
    http://www.simplyjava.com

    I've just installed the JDK 1.4 on my debian box. I
    can compile and run a basic Hello World app using
    System.println, but when I try to run a simple swing
    app, I get an error like:
    Exception in thread "main"
    java.lang.NoClassDefFoundError
    at java.lang.Class.forName0(Native Method)
    at java.lang.... etc, etc.
    It goes on with about 30 different classes. It
    compiles fine, with no errors, but when it comes time
    to run, that's what I get. This is what I have in my
    .bash_profile as far as environment variables go:
    export JAVA_HOME="/usr/local/j2sdk1.4.1_01"
    export PATH="$JAVA_HOME/BIN:$PATH"
    export
    CLASSPATH="$JAVA_HOME/jre/lib/:$JAVA_HOME/lib:."The code works fine in Windows, so unless there's
    something platform-specific, I don't think there's a
    problem there. I've checked to make sure I'm not
    running kaffe by accident and I'm definitely running
    the right java and javac. I'm out of ideas. Any
    suggestions would be greatly appreciated.
    -dudley
    I may just be crazy, but your PATH looks a little screwy to me. I was under the impression that the standard java installation has its executables in the 'bin' directory, not the 'BIN' directory. Unless Debian has fallen to the evil empire, then I'm fairly sure file names are case-sensitive. I don't know if that will fix your problem though. Do you compile from the command line, or do you use an IDE???

  • The Install problem 10.1.0.3 on linux itanium

    hi.
    I met the installation problem 10.1.0.3 on linux itanium due to ntcontab.o.
    When I stoped and restarted the installation (too many times!), it break in the same point... (99%)
    The log file produced:
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/rm -f ntcontab.*
    (if [ "compile" = "compile" ] ; then \
    /oracle/bin/gennttab > ntcontab.c ;\
    /usr/bin/gcc -c ntcontab.c ;\
    rm -f /oracle/lib/ntcontab.o ;\
    mv ntcontab.o /oracle/lib/ ;\
    /usr/bin/ar rv /oracle/lib/libn10.a /oracle/lib/ntcontab.o ; fi)
    ntcontab.c:7:23: sys/types.h: No such file or directory
    mv: cannot stat `ntcontab.o': No such file or directory
    /usr/bin/ar: /oracle/lib/ntcontab.o: No such file or directory
    make: *** [ntcontab.o] Error 1
    at present
    gcc version: 3.4
    g++ version: 3.4
    any hints?
    thanks

    Thanks for your answer.
    cpu information:
    oracle@dr_re_01d:/etc> cat redhat-release
    Red Hat Enterprise Linux AS release 4 (Nahant Update 4)
    processor : 0
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 32614.90
    siblings : 1
    processor : 1
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 10.48
    siblings : 1
    processor : 2
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 8.38
    siblings : 1
    processor : 3
    vendor : GenuineIntel
    arch : IA-64
    family : 32
    model : 0
    revision : 7
    archrev : 0
    features : branchlong, 16-byte atomic ops
    cpu number : 0
    cpu regs : 4
    cpu MHz : 1598.002498
    itc MHz : 400.000000
    BogoMIPS : 8.38
    siblings : 1
    I don't have the patch list for 10r1, rh4 ( it can't find in metalink).
    so, I am processing in reference to the patch list for 10r1, rh3.
    I passed a part of ntcontab.o error, now.
    I received two new message about O.S patch: ultra search and EM
    thanks

  • Problem with executing shell script on linux through java code.

    i am facing problem to kill jboss process on linux that is my application requirement. for that i created one shell script that will get all the process for jboss instance and kill them when i am running that script from command prompt on linux its working perfectly.
    The command i am using ---
    /opt/RW9/jboss/v4.0.5.GA/bin/restartjboss.sh.
    but when i am running through java code its not working.
    the java code i am using is:-
    pp = Runtime.getRuntime().exec(new String[]{"/bin/sh", "-c", "/opt/RW9/jboss/v4.0.5.GA/bin/restartjboss.sh"});
    could anyone tell me what is the problem ?
    Edited by: akm198110 on Sep 2, 2008 9:24 AM

    I got the problem after long struggle ,after doing proper path i am able to execute the shell script..

  • Coding mask problem

    Hi All,
    I am facing the problem in coding mask.
    I have existing project coding  mask let say abcd :000/0/0/00 like this. here i am using project id of 4 char and remaing 20 for coding.
    i will like to use project id as abc and remain 21char for coding but
    system is not allowing me to create new error says abc already present.
    then i tried with different char like xyz but still it is restricting me to use 20 digit only in coding mask
    what is  problem ? how can we solve it
    regards
    shiv

    Hi Martina,
    I have one doubt.Suppose we configure Length of coding key= 1, define a coding mask A-0000 and create a operative project A-0001. Then sytem doesnot allow us to change the length as operative project exists. Now if we have had length 2 earlier (instead of 1) then system will allow us to change the length to 1,3,4 or 5. If we change the length to 3,4,5 we can go back to length 2/1 later. But if we change length to 1 then our existing project will get assigned to existing coding mask and system will not allow to change the length later on.
    Does this mean that, though we have 1 to 5 options for coding key length, once we have selected a particular length and have coding mask of that particular length, create a operative project with that mask, then we cant change the length of coding key? In short we need to decide the length only for once, at the start of implementation and cant change it once we have operative projects. Or you know any method to go back to earlier key length in case opeartive projects exist?
    Request you to please comment.
    Regards

  • Problem of executing a process under Linux using Runtime.exec

    Hi, All
    I am having a problem of executing a process under Linux and looking for help.
    I have a simple C program, which just opens a listening port, accept connection request and receive data. What I did is:
    1. I create a script to start this C program
    2. I write a simple java application using Runtime.exec to execute this script
    I can see this C program is started, and it is doing what it supposed to do, opening a listening port, accepting connection request from client and receiving data from client. But if I stop the Java application, then this C program will die when any incoming data or connection request happens. There is nothing wrong with the C program and the script, because if I manually execute this script, everying works fine.
    I am using jre1.4.2_07 and running under Linux fedora 3.0.
    Then I tried similar thing under Windows XP with service pack2, evrything works OK, the C program doesn't die at all.

    Mind reading is not an exact science but I bet that you are not processing either the process stdout or the stderr stream properly. Have you read http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html ?

  • New Airport Extreme problems or DSL router problems

    Hi all,
    List of what I have: Time Warner Cable (motorola modem) DSL, Latest Airport Extreme (with 2.4Ghz channel 5 & 5GHz channel 149) with the updated version 7.6.1, 2008 MBP4,1 with 2.4GHz Core 2 Duo with Mac OS X 10.5.8.
    Now the problem, when I am on my MBP on the web internet slows to a stop, I will go to Systems Preferences, Network, (at this point Airport shows connected Full bars for the ant symble and a green light), then go to: Assist me... , I click Diagnostics, (On the left side) List: Airport (Green), Airport settings (green), Network Settings (green), ISP (either amber or red), Internet (either amber or red) and Server (amber or red).
    So, basicly I keep looseing ISP, Internet and Server, now for the kicker, It does not happen every time i'm on my MBP or every day. But if it happens in the morning it will happen all day long.
    This was happening with my old Airport Extreme so I up graded to the new one, worked without a problem for about a week, then started again reset & re installed several times changed channels (now back to default settings) I was hopeing that getting the new AE would take care of the problem so I coild start useing streaming TV but I'm not going to spend the money if I can't have the internet all the time.
    By the way we just moved from one state to Maine never had this problem before, both area's are rural, & both are with TWC.
    So the question is: do I have a TWC Modem problem or Airport Extreme Problem or is it just my MBP?
    I have a Win7 desktop hard wired in, and my wife has an ipad2 but she is not home much and dosent seem to be around or on the web when this happens.
    I am a serious NOVICE  so if you give advise please be very basic, Step by step!!!
    Thank you all in advance,
    Not So Mad Max, But Getting there!!!!

    P.S. I do have my AE set to be hidden with WPA2 set and a discoverable Guest also with WPA2 set!!
    Thanks
    Not So Mad Max

  • How come my external hard drive is no longer visible in finder even after ticking it in preferences? it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help.

    it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help. also my external hard drive is a seagate free agent go, 500GB. it is visible on my tv but has no files in it… i'm scared i've lost everything?

    Honestly i cannot remember sorry, i got it like 5 maybe 6 yrs ago and just started downloading things to it as the memory on the computer started filling up and when i wanted to see photos/videos on my TV.
    My wife did tell me after i had written this post that she did try and record TV to it as it was plugged in. I think by doing so somehow has deleted everything.   It reads on my TV yet has no files in it but won't show up on my computer. hope this helps.
    Starting to think it is going to cost more to retrieve files on it than it will be to buy a newer and larger one.

  • Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the pag

    Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the page, so it suits size automatically) to a mobile web page to be displayed not on a normal browser, but in a WebView.

    Hi, I'm having problems with viewing a web page created with Adobe Muse CC latest release, I followed the various guides provided by Adobe, but the problem persists. The problem especially concerns the distorted display (the contents do not fit on the page, so it suits size automatically) to a mobile web page to be displayed not on a normal browser, but in a WebView.

  • Is this a PSE9 problem or a LR4 problem?

    When I export an image from LR4 to Bridge for final retouching in PSE9 (as a 16-bit PSD file), the file doesn't show a thumbnail image on Bridge, only static. I can call it up, do editing and change it to 8-bit, but when I try to save it, I get this message: "Could not save as (filename) because the file is already in use or was left open." Is this a LR4 problem or a PSE9 problem or something else? I can save the image under a new file name, but I want to make sure there's not some underlying problem that's going to start corrupting files.

    Why are you putting bridge into the equation? Wouldn't it be simpler just to set PSE as your external editor?

  • When submitting a target survey I get back an error.... I think this may be a safari problem or mountain lion problem as I used to be able to submit surveys on their survey site.

    When submitting a target survey I get back an error.... I think this may be a safari problem or mountain lion problem as I used to be able to submit surveys on their survey site.  This problem occurs if I use my MacBook Pro or my iPad.  I want try  to win a 5000 gift card and can't win if I can't submit the survey.  It lets me fill out everything and only after I hit submit I receive an error.  Target says it's not their problem.  I curious to know if anyone else has tried and receive back an error after hitting the submit button.

    Thanks.....I'll try that the next time I get a new receipt from target.  My old receipts are older than 72 hours now so I can't try Firefox with them.  I appreciate the response and will certainly try this and post a reply if I was successful in submitting the target survey.

  • HT1222 Please Help.. When I update to 7.0.6 I remark a very low battery lifetime I does not complete 2 hours.. I update to 7.1 to get rid of this problem but unforeately the problem still.. Could you please guide what to do?

    Please Help.. When I update to 7.0.6 I remark a very low battery lifetime I does not complete 2 hours.. I update to 7.1 to get rid of this problem but unforeately the problem still.. Could you please guide what to do?

    Restore as New (no backup)... then Re-Sync your Content.
    Make sure you have the Latest Version of iTunes (v11.1.5) Installed on your computer
    iTunes free download from www.itunes.com/download

  • How to disable Setting button in Tools - Options - Advanced - Network..i've read an article that solved this problem..but thats problem contains web adress that couldn't be opened..any other solution??? thanks before best regard

    How to disable Setting button in Tools - Options - Advanced - Network..i've read an article that solved this problem..but thats problem contains web adress that couldn't be opened..any other solution???
    thanks before
    best regard
    -ariansyah-

    You can disable or remove that button, but that won't prevent users from making the changes on the about:config page directly.<br />
    You can lock the related network.proxy prefs if you do not want users to change the connection settings.
    See:
    *http://kb.mozillazine.org/Locking_preferences
    * http://kb.mozillazine.org/network.proxy.type
    * http://kb.mozillazine.org/network.proxy.%28protocol%29
    * http://kb.mozillazine.org/network.proxy.%28protocol%29_port

  • How to resolve this: Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode.

    Keep getting this message while using Gmail "Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode. "
    I have to use the older version of gmail for it to work properly.

    now i cant even send emails out of gmail, except when using the older version.

Maybe you are looking for

  • Plugin check not working

    The Firefox plugin checker is reporting "Update Now" for VLC media player Web Plugin 2.1.0. The 'update now' link invites me to download Plugin 2.1.2. but i already have 2.1.2 installed so the plugin checker is detecting the wrong version. I have had

  • J2ee web services

    Hi; I would like to communicate two applications ( but can be more) which are written differently (one in C++ with a heavy customer and another in J2ee but can be another in PHP...) on different platforms (Windows and linux). The Web service technolo

  • Google Chrome He Kernel Panic on MBPr / OSX 10.9.3

    On both of my MacBook Pro Retinas (similar specs - 16GB RAM, biggest SSD HD, plenty of disk space) Google Chrome causes a kernel panic randomly, usually in the graphics driver (I assume based on call stack.) I know there were problems with this ackno

  • Reliability of restoring from a disk image vs from a "normal" backup file

    How would you rate the reliability of restoring your data from a disk image file (a sparseimage file, in this case/question) versus from a 'normal' file, e.g. one created by the Backup 3 app? I read a few discussions here that mention corrupted disk

  • HT201272 audio books on my ipod transfered to new computer

    where do I find my Audio books, any ideas?