EMC DATA DOMAIN 2200 filesys destroy(數據清空及重建)
EMC 數據清空
1.數據清空
這裡會清空file system的所有東西包括tapes
sysadmin@FSEMC01# filesys destroy
The "filesys destroy" command irrevocably destroys all data in
all the MTrees, including all virtual tapes, archive units and replication contexts.
The 'filesys destroy' operation will take about 2-3 minutes.
File access is disabled during this process.
Are you sure? (yes|no|?) [no]: yes
ok, proceeding.
Please enter sysadmin password to confirm 'filesys destroy':
......
The filesystem is now disabled.
Destroying the filesystem.
The filesystem has been destroyed.
2.重建
sysadmin@FSEMC01# fi st --檢查文件系統是否存在
The filesystem doesn't exist.
sysadmin@FSEMC01# vtl tape show all --顯示tape狀態
Processing tapes....
VTL info cache is unavailable.
Please use the "vtl status" command to verify that vtl is enabled and the VTL process is running
sysadmin@FSEMC01# filesys create --文件系統創建
A filesystem of approximate size 15.83 TiB will be created.
Do you want to continue? (yes|no) [yes]: yes
ok, continuing.
This will take 5 - 10 minutes.
Provisioning storage...
########################################### [100%]
Initializing filesystem...
########################################### [100%]
snapshot schedules deleted
You now have a freshly initialized filesystem.
Enable the filesystem using 'filesys enable'.
sysadmin@FSEMC01# filesys enable --enable文件系統
Please wait.............
The filesystem is now enabled.
sysadmin@FSEMC01# vtl status --檢查vtl的狀態
VTL admin_state: enabled, process_state: starting, licensed
sysadmin@FSEMC01# vtl tape show all --檢查tape
Processing tapes....
No tapes.
然後我們去創建tape在圖形界面
點擊create tapes 填入Number of Tapes, Starting barcode,Tape capacity
這樣destroy 和重建就完成了。剩下去NBU備份那裡重新掃描這些磁帶。
regards!
juncai.chen 2016-03-24
EMC DATA DOMAIN 2200 filesys destroy(數據清空及重建)的更多相关文章
- ionic 向後台請求json 數據 在頁面上的顯示問題
我向服務器請求數據,獲取到的數據竟然不能顯示在頁面上 我那個氣啊..... <ul> <!-- <li ng-repeat="phone in phones&quo ...
- Big Data應用:以"玩家意見"之數據分析來探討何謂"健康型線上遊戲"(上)
首先,所有資料都可以從網路上找到,只是我做了一些分析與整理而已.純粹分享心得~~ 最近再做研究的時候我跟我的同事K先生在某次偶然的討論中發現了一件有趣的事情. [疑~~~~~~~新楓之谷的玩家人氣指數 ...
- Grafana展示報表數據的配置(二)
一.Grafana以圖表的形式展示KPI報表的結果數據1.按照日期顯示數據達標量與未達標量2.顯示當前報表的最大值.最小值.平均值.總量3.報表結果數據的鏈接分享與頁面嵌入,用戶無需登錄直接訪問報表統 ...
- oracle系統表、數據字典介紹與日常問題診斷
oracle系統表.數據字典介紹與日常問題診斷 數據字典是由唯讀的table和view組成的,產生於$oracle_home\rdbms\admin\catalog.sql.裡面儲存Oracle資料庫 ...
- C#在Excel的簡單操作--適用:與DB數據的簡單交互
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.I ...
- C#在sql中使用變量訪問Oracle數據庫
1.首先創建一個測試數據表 CREATE TABLE people ( SNO BYTE), SNAME BYTE), SSEX BYTE), SAGE number, SDEPT BYTE), BT ...
- MVC+Ninject+三层架构+代码生成 -- 总结(四、數據層)
1.數據層使用了SqlSugar 庫類 . 數據層使用了SqlSugar 庫類 ,有興趣的 可以學習 http://www.codeisbug.com/Doc/8/1133,個人覺得比EF 簡單,容 ...
- Linux Kernel中所應用的數據結構及演算法
Linux Kernel中所應用的數據結構及演算法 Basic Data Structures and Algorithms in the Linux kernel Links are to the ...
- PHP CURL header 设置HOST主机头进行访问并 POST提交數據
$host = array("Host: act.qzone.qq.com");// 域名不帶http://$data = array( 'aa' => ...
随机推荐
- apache2 + virtualenv +djangocms
命令记录: cd /var/www makedir django cd django/ virtualenv env --no-site-packages source /var/www/django ...
- html5——canvas画直线
<html> <head> <title>canvas demo</title> </head> <body> <canv ...
- host位置
windows xp/2003/vista/2008用户HOSTS文件是在“c:\windows\system32\drivers\etc”
- 【leetcode】Scramble String
Scramble String Given a string s1, we may represent it as a binary tree by partitioning it to two no ...
- Wince常见操作
1.获取本地代码启动路径 //在代码启动路径下存在 Files 文件夹 Path.GetDirectoryName(Assembly.GetExecutingAssembly().GetName(). ...
- NGUI 滑动页(UIToggle和UIToggledObjects)
1.NGUI->Create->Scroll View 2.给Scroll View添加一个 UIGrid,自己设置Arragement(横向竖向) 3.给Grid添加元素 4.给元素添加 ...
- tortoiseSVN svn+ssh
2015年6月28日 11:45:10 星期日 今天实验用小海龟svn客户端的svn+ssh协议去链接版本库, 期望会快一点儿 首先在设置里 记着将连接ssh用的用户名和密码一块儿写到输入框中: -l ...
- C# 读写十六进制bin 文件
读一个十六进制的bin文件,在bin文件添加四行头,生成新的bin文件.bin文件可以用vs打开查看. using System; using System.Collections.Generic; ...
- ACM/ICPC 之 数论-素数筛选法 与 "打表"思路(POJ 1595)
何为"打表"呢,说得简单点就是: 有时候与其重复运行同样的算法得出答案,还不如直接用算法把这组数据所有可能的答案都枚举出来存到一个足够大的容器中去-例如数组(打表),然后再输入数据 ...
- 18. javacript高级程序设计-JavaScript与XML
1. JavaScript与XML IE采取了下列方式: l 通过ActiveX对象来支持处理XML,而相同的对象也可以用来构建桌面应用程序 l Windows携带了MSXML库,JavaScript ...