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' => ...
随机推荐
- 解决ubuntu下安装mysql使用service无法启动问题
启动的时候发现service mysql start Rather than invoking init scripts through /etc/init.d, use the service(8) ...
- python self introspection
http://www.ibm.com/developerworks/cn/linux/l-pyint/index1.html
- FWT
Fast Walsh-Hadamard Transform .pre 今天本来想看FFT的应用的...翻翻picks的博客发现了好东西Fast Walsh-Hadamard Transform,感觉挺 ...
- stty命令使用
stty [ -a ] [ -g ] [ Options ] stty(set tty)命令用于显示和修改当前注册的终端的属性. UNIX系统为键盘的输入和终端的输出提供了重要的控制手段,可以通过 ...
- 《oracle每天一练》Oracle冷备份与数据恢复
相关帖子 转自http://blog.csdn.net/nsj820/article/details/5611361 备份 直接拷贝oracle目录下的admin.oradata(datafile, ...
- 【leetcode】Gas Station
Gas Station There are N gas stations along a circular route, where the amount of gas at station i is ...
- cat -n与nl的区别
cat -n filename:空行也算一行 nl filename:空行不算一行
- 解读Unity中的CG编写Shader系列十 (光滑的镜面反射(冯氏着色))
前文完成了最基本的镜面反射着色器,单平行光源下的逐顶点着色(per-vertex lighting),又称为古罗着色(Gouraud shading).这篇文章作为后续讨论更光滑的镜面反射方式,逐像素 ...
- ABAP 销售范围
*&---------------------------------------------------------------------* *& Report ZSDR008 ...
- [Android] RelativeLayout, LinearLayout,FrameLayout
Android RelativeLayout 属性 // 相对于给定ID控件 android:layout_above 将该控件的底部置于给定ID的控件之上; android:layout_below ...