Could not stat error message

Ask a Question related to SCO, Design and Development.

  1. #1

    Default Re: Could not stat error message

    Joe Burns typed (on Mon, Aug 11, 2003 at 09:43:38PM -0400):
    | I am trying to create a "tar" output file of the "/usr2" filesystem into a
    | storage location on a different volume - for the purposes of this, we'll
    | call the new location "/usr3". The "/usr3" location does not currently have
    | a copy of this output file and there is more than enough room on the "/usr3"
    | filesystem for the output. Also, I am running this "tar" command while
    | logged in as "root". The command being used is:
    |
    | tar cvf /usr2 /usr3/newfile
    |
    | When I do this, the command runs and the tar command appears to work
    | correctly until the end of the job when I get the error stating that the job
    | could not stat "/usr3/newfile" and the output file is never created. What
    | is causing this error and how do I fix it?
    |

    By contructing your command properly:

    tar cvf /usr3/newfile /usr2

    [I'd find this more mnemonically useful:

    tar cvf /usr3/usr2.tar /usr2
    ]

    --
    JP
    Jean-Pierre Radley Guest

  2. Similar Questions and Discussions

    1. How To Supress Acrobat Error Message And Alert Message
      Is there any way to supress those pop up message? If can't, is there any way to catch it?
    2. Error Message When Sending Message In Windows Mail
      Am I the only one getting an error message when replying to a posted message using Windows Mail. Every time I send a message I get a popup error...
    3. Error Message "A drawing error ocurrred which is probably due to an out-of-memory condition. Try qu
      I am running Acrobat Reader 5.0 on a Mac Powerbook running OS 9.2 and keep getting "A drawing error occurred which is probably due to an out of...
    4. Uploading large files - error "stat failed"
      Hello, I have a page where i can upload binary file (using the HTML input type=file approach). This works fine for relatively small files...
    5. strange error "Unsuccessful stat on filename "
      Pitt wrote: Based solely on the error message (don't have Unix system to verify), I think this:: MM_Unix.pm line 2775 is the line of Perl code...
  3. #2

    Default Re: Could not stat error message

    "Joe Burns" <joeburns@callageek.com> wrote in message
    news:fDXZa.26139$tf.13378@lakeread03...
    > I am trying to create a "tar" output file of the "/usr2" filesystem into
    a
    > storage location on a different volume - for the purposes of this, we'll
    > call the new location "/usr3". The "/usr3" location does not currently
    have
    > a copy of this output file and there is more than enough room on the
    "/usr3"
    > filesystem for the output. Also, I am running this "tar" command while
    > logged in as "root". The command being used is:
    >
    > tar cvf /usr2 /usr3/newfile
    >
    > When I do this, the command runs and the tar command appears to work
    > correctly until the end of the job when I get the error stating that the
    job
    > could not stat "/usr3/newfile" and the output file is never created.
    What
    > is causing this error and how do I fix it?
    How much data is on /usr2/ ? More than 2GB?

    As you've failed to say which OS you're actually using, it's hard to say
    exactally which fault causes this.

    I'm picking it's the usual 2GB file-size limit which is in place on most of
    the SCO Unix/Unixware products (Unixware after 7 has 'largefile' abilities
    though).

    If you want to create a backup-file (image-file), then you might want to
    compress it as you go, rather than creating a flat-file first.

    Give us details, and we'll give 'em back.

    bkx


    Stuart J. Browne Guest

  4. #3

    Default Re: Could not stat error message

    Sorry for the delay in responding and thanks. I was on vacation. All I can
    say is "Oops". This shows that I don't work enough with SCO to try to do
    these commands by memory. I should have had the cheat sheet with me.

    Thanks for the help. I'm sure that I can get the project done.

    Joe Burns

    "Stuart J. Browne" <stuart@promed.com.au> wrote in message
    news:3f3881db$1@dnews.tpgi.com.au...
    >
    > "Jean-Pierre Radley" <jpr@jpr.com> wrote in message
    > news:20030812023007.GA6778@jpradley.jpr.com...
    > > Joe Burns typed (on Mon, Aug 11, 2003 at 09:43:38PM -0400):
    > > | I am trying to create a "tar" output file of the "/usr2" filesystem
    > into a
    > > | storage location on a different volume - for the purposes of this,
    > we'll
    > > | call the new location "/usr3". The "/usr3" location does not
    currently
    > have
    > > | a copy of this output file and there is more than enough room on the
    > "/usr3"
    > > | filesystem for the output. Also, I am running this "tar" command
    while
    > > | logged in as "root". The command being used is:
    > > |
    > > | tar cvf /usr2 /usr3/newfile
    > > |
    > > | When I do this, the command runs and the tar command appears to work
    > > | correctly until the end of the job when I get the error stating that
    > the job
    > > | could not stat "/usr3/newfile" and the output file is never created.
    > What
    > > | is causing this error and how do I fix it?
    > > |
    > >
    > > By contructing your command properly:
    > >
    > > tar cvf /usr3/newfile /usr2
    > >
    > > [I'd find this more mnemonically useful:
    > >
    > > tar cvf /usr3/usr2.tar /usr2
    > > ]
    >
    > wow.. completely missed that ..
    >
    >

    Joe Burns Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139