Sponsored Content
Special Forums Cybersecurity Template for Disaster Recovery Post 39420 by steiner on Monday 18th of August 2003 08:15:34 AM
Old 08-18-2003
Template for Disaster Recovery

Hello,

I am trying to make a disaster recovery of my Unix System.

Is there a site where I can find template from Disaster Recovery Domain. So this can help me to have the principals chapter to make a good report.


Thanks a lot ........
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

Please Tell Me About Disaster Recovery

please tell me if this thinkin is correct, if not, please corret me: disaster recovery means when something bad happens and you need to retrieved a backed up file, all you have to do is cd into the tape drive and then look for the file you want and extract it from the drive. is this... (3 Replies)
Discussion started by: TRUEST
3 Replies

2. UNIX for Advanced & Expert Users

Disaster Recovery

Can anyone tell me of what to expect? I've been nominated to join a team of unix admins to do a DR testing. we already have the guys who are gono be doing the restores. besides the restore, anybody know what else to look forward to?? (2 Replies)
Discussion started by: TRUEST
2 Replies

3. UNIX for Dummies Questions & Answers

disaster recovery

I am looking into disaster recovery and I wanted to know what files and/or other information do I need to keep copies of to sucessfully restore my system from the ground up..... Any help is greatly appreciated. I am running Solaris 8 on an Ultra 60. (5 Replies)
Discussion started by: rod23
5 Replies

4. Solaris

Disaster Recovery

Recovering Solaris to an alternate server I was just wondering if anyone could give me some points on restoring a Solaris 9 backup to an alternate server. Basically, we use netbackup 6 and I was wondering what the best procedures are for doing this? What things do we need to take into... (3 Replies)
Discussion started by: aaron2k
3 Replies

5. Solaris

Sun Solaris Disaster Recovery Plan ...

Hi all, I'm new in this domain, and on this operating system, but in my job, i have to find a way to make a disaster recovery plan for our server (sun solaris) which has the oracle database. I don't have any standby servers to be used for data replication, i only want to use CD's to put on... (4 Replies)
Discussion started by: sam212
4 Replies

6. AIX

AIX disaster recovery

Are there any products out there that provide a disk imaging solution for AIX (and HPUX and Solaris for that matter)? In a development environment where users are looking to restore an OS quickly back to a certain point in time, what is there available for this besides opening up the system,... (7 Replies)
Discussion started by: tb0ne
7 Replies

7. AIX

hacmp and disaster recovery question

Hi Guys, is it possible to failover a hacmp cluster in one datacentre via SRDF to a single node in another datacentre, or do I need a cluster there in any case? This is only meant as worst case scenario and my company doesn't want to spend more money than absolutely necessary. I know the... (3 Replies)
Discussion started by: zxmaus
3 Replies

8. UNIX for Dummies Questions & Answers

Disaster Recovery - Help needed

We have a SCO OpenServer Unix server that has been damaged. Fortunately we have a good backup of the entire system (using BackupEdge.) On a new server, if we install SCO from original SCO CD's (we have all necessary activation codes) then drop the tape (we can restore with tar), will the... (3 Replies)
Discussion started by: jmhohne
3 Replies

9. Red Hat

Disaster Recovery

Hi, I just want to throw something out there for opinions and viewpoints relating to a Disaster Recovery site. Besides the live production environment, do you think a DR environment should include: - pre-production environment - QA Environment ......or would this be considered to be OTT... (3 Replies)
Discussion started by: Duffs22
3 Replies
Template::Multilingual(3pm)				User Contributed Perl Documentation			       Template::Multilingual(3pm)

NAME
Template::Multilingual - Multilingual templates for Template Toolkit SYNOPSIS
This subclass of Template Toolkit's "Template" class supports multilingual templates: templates that contain text in several languages. <t> <en>Hello!</en> <fr>Bonjour !</fr> </t> Specify the language to use when processing a template: use Template::Multilingual; my $template = Template::Multilingual->new(); $template->language('en'); $template->process('example.ttml'); You can also provide the name of the template variable that will hold the language: my $template = Template::Multilingual->new(LANGUAGE_VAR => 'foo'); $template->process('example.ttml', { foo => 'en' }); METHODS
new(\%params) The new() constructor creates and returns a reference to a new template object. A reference to a hash may be supplied as a parameter to provide configuration values. Configuration values are all valid "Template" superclass options, and one specific to this class: LANGUAGE_VAR The LANGUAGE_VAR option can be used to set the name of the template variable which contains the current language. my $parser = Template::Multilingual->new({ LANGUAGE_VAR => 'global.language', }); If this option is set, your code is responsible for setting the variable's value to the current language when processing the template. Calling "language()" will have no effect. If this option is not set, it defaults to language. language($lcode) Specify the language to be used when processing the template. Any string that matches "w+" is fine, but we suggest sticking to ISO-639 which provides 2-letter codes for common languages and 3-letter codes for many others. process Used exactly as the original Template Toolkit "process" method. Be sure to call "language" before calling "process". LANGUAGE SUBTAG HANDLING
This module supports language subtags to express variants, e.g. "en_US" or "en-US". Here are the rules used for language matching: o Exact match: the current language is found in the template language template output fr <fr>foo</fr><fr_CA>bar</fr_CA> foo fr_CA <fr>foo</fr><fr_CA>bar</fr_CA> bar o Fallback to the primary language language template output fr_CA <fr>foo</fr><fr_BE>bar</fr_BE> foo o Fallback to first (in alphabetical order) other variant of the primary language language template output fr <fr_FR>foo</fr_FR><fr_BE>bar</fr_BE> bar fr_CA <fr_FR>foo</fr_FR><fr_BE>bar</fr_BE> bar AUTHOR
Eric Cholet, "<cholet@logilune.com>" BUGS
Multilingual text sections cannot be used inside TT directives. The following is illegal and will trigger a TT syntax error: [% title = "<t><fr>Bonjour</fr><en>Hello</en></t>" %] Use this instead: [% title = BLOCK %]<t><fr>Bonjour</fr><en>Hello</en></t>[% END %] The TAG_STYLE, START_TAG and END_TAG directives are supported, but the TAGS directive is not. Please report any bugs or feature requests to "bug-template-multilingual@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Template-Multilingual>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SEE ALSO
If you are already using your own "Template" subclass, you may find it easier to use Template::Multilingual::Parser instead. ISO 639-2 Codes for the Representation of Names of Languages: http://www.loc.gov/standards/iso639-2/langcodes.html COPYRIGHT &; LICENSE Copyright 2009 Eric Cholet, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.0 2009-01-18 Template::Multilingual(3pm)
All times are GMT -4. The time now is 05:02 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy