Browsing Slovak translation

Don't show this notice anymore
Before translating, be sure to go through Ubuntu Translators instructions.
18811890 of 2030 results
1881.
There are many ways to backup a Ubuntu installation. The most import thing about backups is to develop a <emphasis>backup plan</emphasis> consisting of what to backup, where to backup it up to, and how to restore it.
(no translation yet)
1882.
The following sections discuss various ways of accomplishing these tasks.
Nasledujúce časti hovoria o rôznych spôsoboch, akými tieto úlohy vykonať.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:18(para)
1883.
Shell Scripts
Shell skripty
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:22(title)
1884.
One of the simplest ways to backup a system is using a <emphasis>shell script</emphasis>. For example, a script can be used to configure which directories to backup, and use those directories as arguments to the <application>tar</application> utility creating an archive file. The archive file can then be moved or copied to another location. The archive can also be created on a remote file system such as an <emphasis>NFS</emphasis> mount.
Jedným z najjednoduchších spôsobov, akým sa dá zálohovať systém, je použitie tzv. <emphasis>shell skriptov</emphasis> - skriptov pre príkazový riadok. Pomocou takéhoto skriptu môžeme nastaviť, ktoré priečinky sa majú zálohovať a obsah týchto priečinkov môžeme skomprimovať (zbaliť) pomocou nástroja <application>tar</application> do archívu. Archív je súbor, ktorý potom môžeme skopírovať na iné miesto. Môžeme ho vytvoriť aj na vzdialenom súborovom systéme, ktorý pripojíme pomocou systému <emphasis>NFS</emphasis>.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:23(para)
1885.
The <application>tar</application> utility creates one archive file out of many files or directories. <application>tar</application> can also filter the files through compression utilities reducing the size of the archive file.
Nástroj <application>tar</application> dokáže vytvoriť jeden archívny súbor z veľkého množstva súborov a priečinkov. Nástroj <application>tar</application> tiež zredukuje priestor potrebný na uchovanie archívu prostredníctvom kompresie.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:29(para)
1886.
Simple Shell Script
Jednoduchý skript
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:35(title)
1887.
The following shell script uses <application>tar</application> to create an archive file on a remotely mounted NFS file system. The archive filename is determined using additional command line utilities.
Nasledujúci skript použije nástroj <application>tar</application> na vytvorenie archívu na vzdialenom súborovom systéme, ktorý je pripojený pomocou systému NFS. Meno súboru s archívom sa odvodí od dátumu a názvu počítača.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:36(para)
1888.

#!/bin/sh
####################################
#
# Backup to NFS mount script.
#
####################################

# What to backup.
backup_files="/home /var/spool/mail /etc /root /boot /opt"

# Where to backup to.
dest="/mnt/backup"

# Create archive filename.
day=$(date +%A)
hostname=$(hostname -s)
archive_file="$hostname-$day.tgz"

# Print start status message.
echo "Backuping up $backup_files to $dest/$archive_file"
date
echo

# Backup the files using tar.
tar czf $dest/$archive_file $backup_files

# Print end status message.
echo
echo "Backup finished"
date

# Long listing of files in $dest to check file sizes.
ls -lh $dest
There are line breaks here. Each one represents a line break. Start a new line in the equivalent position in the translation.
There are leading/trailing spaces here. Each one represents a space character. Enter a space in the equivalent position in the translation.
(no translation yet)
1889.
<emphasis>$backup_files:</emphasis> a variable listing which directories you would like to backup. The list should be customized to fit your needs.
<emphasis>$backup_files:</emphasis> premenná, ktorá obsahuje zoznam priečinkov, ktoré sa majú zálohovať. Tento zoznam si môžeme upraviť podľa našich potrieb.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:77(para)
1890.
<emphasis>$day:</emphasis> a variable holding the day of the week (Monday, Tuesday, Wednesday, etc). This is used to create an archive file for each day of the week, giving a backup history of seven days. There are other ways to accomplish this including other ways using the <application>date</application> utility.
<emphasis>$day:</emphasis> premenná, ktorá obsahuje deň v týždni (Pondelok, Utorok, Streda, atď.). Táto premenná sa používa na vytvorenie archívu pre každý deň v týždni, čo nám poskytne sedem dňovú históriu archívov. Meno archívu môžeme vytvoriť aj inými spôsobmi. Napríklad môžeme využiť nástroj <application>date</application>.
Translated and reviewed by Peter Mráz
Located in serverguide/C/backups.xml:83(para)
18811890 of 2030 results

This translation is managed by Ubuntu Slovak Translators, assigned by Ubuntu Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: Blackbird, Connor Imes, Jozef Káčer, Martin, Matthew East, Peter Mráz, Peter Mráz, Vladimir Polony, salwator.