免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1131 | 回复: 0
打印 上一主题 下一主题

OS Backup Commands [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-09-06 21:46 |只看该作者 |倒序浏览
This article contains a summary of the operating system backup commands you might encounter whilst backing up Oracle databases:

ntbackup
Under WindowsNT and Windows2000 filesystem backups are done using the ntbackup
program. This is a GUI tool with easy to
use wizards to get you started, but it is also accessible from the
command line. The command line parameters differ between WindowsNT
and Windows2000. Under WindowsNT a typical backup command would look
like:
ntbackup backup c: /d "Daily Backup" /hc:on /l "C:ackup.log" /e /t normal /v
c:                : The drive to backup.
/d "Daily Backup"  : The name of the backup set.
/hc:on             : Harware compression on.
/l "C:ackup.log" : Location of the logfile.
/e                 : Log exceptions only.
/t normal          : Backup type normal.
/v                 : Verify backup.
Under Windows2000 a similar command would look like:
ntbackup backup c: /D "Daily Backup" /HC:on /L:s /M normal /P DLT /V:yes /UM
c:                : The drive to backup.
/D "Daily Backup"  : The name of the backup set.
/HC:on             : Harware compression on.
/L:s               : Summary data only in log.
/M normal          : Backup type normal.
/P DLT             : Media pool assignment (Backup/DLT).
/V:yes             : Verify backup.
/UM                : Unmanaged.
The Windows2000 backup logs always appear in:
C:Documents and SettingsLocal SettingsApplication DataMicrosoftWindows NTNTbackupData
Where user-name is the user who ran ntbackup.
The Windows2000 is rather troublesome regarding reuse of tapes. Using
the following procedure should alleviate most of these problems:
  • From the task bar click "Start" -> "Run..."
  • Enter "ntbackup" and click "OK".
  • From the ntbackup menu select "Tools" -> "Options" and click on the "General" tab.
  • Check the "Always move new import mediato the Backup media pool" option and click "OK".
  • Exit ntbackup.

If there are still issues you must right-click the appropriate tape drive in "Computer Management" and select the
"Mark as clean" option. At this point the tape should be reused properly.
tar
The tar command can be used to backup and restore files to another filesystem or an offile storage device:
# Create archive.
cd /u01/app/oracle
tar -cvf /tmp/admin.tar admin
# Restore archive.
cd /tmp
tar -xvf admin.tar
If a full path is used during the archive creation the extract locations are fixed rather than relative. The process is similar
when accessing a tape device except the destination is the mounted device:
# Mount and rewind the tape.
mt -f /dev/rmt/2m rew
# Create archive.
tar -cvf /dev/rmt/2m /u01/*
# Restore archive.
tar -xvf /dev/rmt/2m
dd
The dd command is similar to the tar command:
# Mount and rewind the tape.
mt -f /dev/rmt/2m rew
# Create archive.
dd if=/u01/app/oracle/* of=/dev/rmt/2m BS=32K
# Restore archive.
dd if=/dev/rmt/2m of=/u01/app/oracle BS=32K
cpio
The cpio command deals with the standard input so filesystem paths must be piped to it:
# Create archive.
cd /u01/app/oracle
find admin | cpio -oc > /tmp/admin.cpio
# Restore archive.
cd /tmp
cpio -idmv
If a full path is used during the archive creation the extract locations are fixed rather than relative:
find /u01/app/oracle/admin | cpio -oc > /tmp/admin.cpio
vdump, rvdump, vrestore and rvrestore
Full level 0 backup of a local filesystem (/u01) to a local device (/dev/tape/tape1_d6):
/sbin/vdump -0 -u -f /dev/tape/tape1_d6 /u01
Full level 0 backup of a local filesystem (/u01) to a remote device (server2:/dev/tape/tape1_d6):
/sbin/rvdump -0 -u -f server2:/dev/tape/tape1_d6 /u01
Restore a vdump or rvdump archive from a local device (/dev/tape/tape1_d6) to a local filesystem (/u01):

/sbin/vrestore -xf /dev/tape/tape1_d6 -D /u01
Restore a vdump or rvdump archive from a remote device (server2:/dev/tape/tape1_d6) to a local filesystem (/u01):

/sbin/rvrestore -xf server2:/dev/tape/tape1_d6 -D /u01

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/4387/showart_46428.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP