Sponsored Content
Full Discussion: Can somebody solve this
Top Forums UNIX for Dummies Questions & Answers Can somebody solve this Post 302230224 by sreenusola on Thursday 28th of August 2008 09:41:21 PM
Old 08-28-2008
sorry i should know the rules.....

the query not giving the expected results,, its copying only datestamp not the filename.datestamp
 

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to solve this

I have to write an script for.. CUST: 123 trans: some contents CUST: 1234 trans: some contents Now wat i have to do is this: CUST:123 akash trans: some contents CUST:1234 akash1 trans: I have been able to add... (3 Replies)
Discussion started by: akashag22
3 Replies

2. Programming

does any one know how to solve?

Hello experts, Here is my code.I can create the database.But I also want it to see standard output.Please see the blocked code.If i use them they show me weired symbols. #include <stdio.h> #include <stdlib.h> struct date { int month; int day; int year; }; struct empRec{... (14 Replies)
Discussion started by: mlhazan
14 Replies

3. Shell Programming and Scripting

Can somebody solve this please

I have to find the files older than 200 days from a path and copy them to some other directory with the current date stamp attached to it. i have written like follows: #!/bin/ksh DSTAMP=$(date +"%y%m%d%H%M") rm $CA_OUT_PATH/ftp_logs/temp touch $CA_OUT_PATH/ftp_logs/temp chmod 777... (1 Reply)
Discussion started by: sreenusola
1 Replies

4. UNIX for Advanced & Expert Users

Can somebody solve this

I have to find the files older than 200 days from a path and copy them to some other directory with the current date stamp attached to it. i have written like follows: #!/bin/ksh DSTAMP=$(date +"%y%m%d%H%M") rm $CA_OUT_PATH/ftp_logs/temp touch $CA_OUT_PATH/ftp_logs/temp chmod 777... (1 Reply)
Discussion started by: sreenusola
1 Replies

5. Homework & Coursework Questions

help me to solve it thank you

i thought about to use the commands : wc and sort and mybe more .. i need to write a bash script that recive a list of varuables kaka pele ronaldo beckham zidane messi rivaldo gerrard platini i need the program to print the longest word of the list. word in the output appears on a separate... (1 Reply)
Discussion started by: yairpg
1 Replies

6. UNIX Desktop Questions & Answers

please help me to solve it

i thought about to use the commands : wc and sort cut and mybe more .. i need to write a bash script that recive a list of varuables kaka pele ronaldo beckham zidane messi rivaldo gerrard platini i need the program to print the longest word of the list. word in the output appears on a... (0 Replies)
Discussion started by: yairpg
0 Replies
AMVAULT(8)						  System Administration Commands						AMVAULT(8)

NAME
amvault - Copy Amanda dumps from one volume to another SYNOPSIS
amvault [-o configoption...] [--dry-run | -n] [--quiet | -q] [--fulls-only] [--export] [--src-timestamp src-timestamp] --label-template label-template --dst-changer dst-changer [--autolabel autolabel-arg...] config [hostname [ disk [ date [ level [ hostname [...] ] ] ] ]] WARNING
This application is not yet in its final form, and is subject to major revision in subsequent versions of Amanda. Backward compatibility is not guaranteed. Note that Amanda restore/recover operations will request tertiary media by label when dumpfiles are not found on secondary media, but there is no provision to automatically fetch such media from a different changer Feedback on and patches to this application are invited and encouraged! DESCRIPTION
Amvault is conceptually equivalent to "amfetchdump | taper". That is, it reads specified dumps from secondary media and re-writes them on tertiary media. Amvault Copies data from the run with timestamp src-timestamp onto volumes using the changer dst-changer, and labeling new volumes with label-template. Secondary Media The dumps to be read from secondary media can be specified by any combination of dump specifications, --fulls-only, and --src-timestamp. At least one must be specified, lest amvault attempt to vault all dumps in the catalog. See amanda-match(7) for more information on dump specifications. Note that the datestamp given in the dumpspec is the dump datestamp - the run in which the backup was taken on the Amanda client. The --src-timestamp, on the other hand, is the write timestamp - the run in which the dump was written to secondary media. The latter option facilitates duplicating the results of an entire backup run, including any dumps that might have been flushed from holding disk. Tertiary Media The --dst-changer must be specified, and names the changer in which tertiary media are stored. If amanda.conf(5) contains the new part-size splitting parameters, then amvault will use them without any additional configuration. However, if the configuration still uses the old splitting parameters (tape_splitsize, split_diskbuffer, and fallback_splitsize), then amvault will need some additional configuration in order to properly split dumps to tertiary media. To do so, specify a new tapetype in amanda.conf(5), say "TERTIARY", and set the part-size and other appropriate parameters there. Then reference that tapetype in the amvault invocation: amvault -otapetype=TERTIARY ... OPTIONS
--autolabel [any] [other-config] [non-amanda] [volume-error] [empty] Works just like the autolabel parameter in amanda.conf(5), and can be specified multiple times if necessary. The default is 'empty'. --dst-changer dst-changer Specifies the changer in which tertiary media are stored. In general, this should be different from the secondary changer, to eliminate the possibility of overwriting secondary media with tertiary data. The dst-changer parameter should specify the name of a changer defined in amanda.conf(5). For example: define changer vaulting_tape { tapedev "/dev/rmt/1n" tpchanger "chg-zd-mtx" changerdev "/dev/sg0" changerfile "vaulting-changer.conf" } --dry-run, -n Cause amvault to print the dumps it would vault, but not actually perform any vaulting operations. --export Cause amvault to attempt to move completed tertiary volumes to import/export slots, where they can be more easily removed by an operator. ---fulls-only Only full (level-0) dumps are copied. --label-template label-template Specifies a label template which is used to generate new labels for tertiary volumes. --quiet, -q Eliminate non-error messages, and is useful when running amvault from cron. --src-timestamps src-timestamps Specifies the timestamps in the format 'YYYYMMDDHHMMSS' of the run to vault, can be "latest", then the most recent amdump or amflush run will be used. -o configoption See the "CONFIGURATION OVERRIDE" section in amanda(8). EXAMPLES
Vault all dump written to tape in the latest amdump or amflush run: $ amvault --src-timestamps latest --label-template "CONF-%%%" --dst-changer vault-changer CONF Vault all dump written on the run of December 7 2011 12:13:14 : $ amvault --src-timestamps 20111207121314 --label-template "CONF-%%%" --dst-changer vault-changer CONF Vault all dump dumped on any run of December 7 2011: $ amvault --label-template "CONF-%%%" --dst-changer vault-changer CONF * * 20111207 SEE ALSO
amanda(8), amanda-changers(7), amfetchdump(8) The Amanda Wiki: : http://wiki.zmanda.com/ AUTHOR
Dustin J. Mitchell <dustin@zmanda.com> Zmanda, Inc. (http://www.zmanda.com) Amanda 3.3.1 02/21/2012 AMVAULT(8)
All times are GMT -4. The time now is 05:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy