Sponsored Content
Full Discussion: Share NTFS for Backups
Special Forums Windows & DOS: Issues & Discussions Share NTFS for Backups Post 302791015 by Mack1982 on Sunday 7th of April 2013 03:47:31 PM
Old 04-07-2013
Thanks.

Yes it is temporary and will be staged to tapes later. I just want to take the load off the network during peak hours.
 

9 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Backups

I have been using the hostdump.sh backup script for over a year now and have recently run into a problem. I'm now getting the following error at the end of my jobs; /bin/mt -f: error fsf'ing tape. This script uses the native 'ufsdump'. So, I try to go back and read the last dump on the tape... (11 Replies)
Discussion started by: Solaris
11 Replies

2. UNIX for Dummies Questions & Answers

backups

When using hostdump.sh to backup a system I can do it fine. But how can I restore what I backuped up? :) Thx in advance (2 Replies)
Discussion started by: merlin
2 Replies

3. UNIX for Dummies Questions & Answers

Backups.

Hello everyone my ? is about backups. I'am running SCO OS 505 and currently backing up the hole HD. Well the back up is taking too long and this is becoming a problem for the users since we are a 24-7 bussines, I whant stop backing up every thing on the HD. What are the most important files and... (1 Reply)
Discussion started by: kikkin
1 Replies

4. UNIX Desktop Questions & Answers

Backups too CD

I've been handed the task of backing up some of our system files on a Solaris box. No probs. Zipped the logs that needed backing up but my superiors do not want it on tape, they want it spanned on CD's. The CD-Writer is available on a MS box. FTP'd the zipped logs across too the MS Machine but now... (1 Reply)
Discussion started by: mccrack_2003
1 Replies

5. UNIX for Advanced & Expert Users

How to Mount a Remote NTFS Share for Read/Write under Linux

I've done this in the past, but I didn't save the syntax. I'm still kicking myself about that... I am trying to mount \\server_name\share_name for read/write under CentOS 5.2 (a "generic" version of RedHat). As I recall, there was a fairly simple (maybe a oneline) command that would allow NTFS... (2 Replies)
Discussion started by: shew01
2 Replies

6. AIX

AIX 6.1 Backups

Hello, I've got multiple AIX LPARs running on VIOS, within a blade environment. I need to dump a mksysb backup to backup rootvg and a couple of other volume groups. mksysb -i "destination"; works however I'd like to make sure its being done correctly. on the other volume groups, ive... (2 Replies)
Discussion started by: ollie01
2 Replies

7. Shell Programming and Scripting

Help with data reformat if share share content

Input data: read1_data1 read1_data1 read2_data1 read3_data1 read4_data1 read4_data1 read4_data1 read5_data1 . . Desired output result: read1_data1 read1_data2 read2_data1 read3_data1 read4_data1 (3 Replies)
Discussion started by: perl_beginner
3 Replies

8. Shell Programming and Scripting

Backups using rsync

Hello all, I'm using nas4free as a SAN and am having troubles getting a backup of it's data to work properly. I've posted in the nas4free forums, but haven't received much help. Here is the code I'm using: #!/bin/sh {... (1 Reply)
Discussion started by: dpatino
1 Replies

9. Solaris

Ntfs-3g help?

I am trying to get ntfs-3g to work, so I can mount ntfs partitions. I installed ntfs-3g from SFE - Software Packages for Solaris, OpenIndiana and OmniOS | Get your favourite software for (TM) Solaris 11, OpenIndiana Hipster, OmniOS as ready-to-use IPS packages Repository There are VLC, Wine, etc.... (0 Replies)
Discussion started by: kebabbert
0 Replies
tmpnam(3S)																tmpnam(3S)

NAME
tmpnam(), tempnam() - create a name for a temporary file SYNOPSIS
DESCRIPTION
and generate file names that can safely be used for a temporary file. Always generates a file name using the path-prefix defined as in the header file. If s is NULL, leaves its result in an internal static area and returns a pointer to that area. The next call to destroys the contents of the area. If s is not NULL, it is assumed to be the address of an array of at least bytes, where is a constant defined in places its result in that array and returns s. For multi-thread applications, if s is a NULL pointer, the operation is not performed and a NULL pointer is returned. allows the user to control the choice of a directory. The argument dir points to the name of the directory in which the file is to be created. If dir is NULL or points to a string that is not an appropriate directory name, the path-prefix defined as in the header file is used. If that directory is not accessible, is used as a last resort. This entire sequence can be up-staged by providing an envi- ronment variable in the user's environment, whose value is the name of the desired temporary-file directory. In order to request the default behavior for either or a NULL value must be passed in dir and pfx for or in s for If valid parameters are not passed in, behavior is undefined. Many applications are written such that temporary files have certain initial character sequences in their names. Use the pfx argument to define a given prefix. The argument can be NULL or point to a string of up to five characters to be used as the first characters in the temporary-file name. uses (see malloc(3C)) to get space for the constructed file name, and returns a pointer to this area. Thus, any pointer value returned from can serve as an argument to (see malloc(3C)). If cannot return the expected result for any reason; i.e., failed, or none of the above mentioned attempts to find an appropriate directory was successful, a NULL pointer is returned. Notes and generate a different file name each time they are called, but start recycling previously used names if called more than times in a sin- gle process. Files created using these functions and either or (see fopen(3S) and creat(2)) are temporary only in the sense that they reside in a direc- tory intended for temporary use, and their names are unique. It is the user's responsibility to use unlink(2) to remove the file when it is no longer needed. WARNINGS
Between the time a file name is created and the file is opened, it is possible for some other process to create a file with the same name. This can never happen if that other process is using these functions or and the file names are chosen such that duplication by other means is unlikely. SEE ALSO
creat(2), unlink(2), malloc(3C), mktemp(3C), fopen(3S), tmpfile(3S), thread_safety(5). STANDARDS CONFORMANCE
tmpnam(3S)
All times are GMT -4. The time now is 01:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy