Dell PowerVault Storage Area Network Manual

Download Manual  of Dell PowerVault DR4100 Desktop, Server for Free or View it Online on All-Guides.com. This version of Dell PowerVault DR4100 Manual compatible with such list of devices, as: PowerVault DX6104, PowerVault DX6112, PowerVault Storage Area Network, PowerVault LTO3-080, PowerVault LTO4-120HH

Dell PowerVault DR4100 Manual  - Page 1
1
Dell PowerVault DR4100 Manual  - Page 2
2
Dell PowerVault DR4100 Manual  - Page 3
3
Dell PowerVault DR4100 Manual  - Page 4
4
Dell PowerVault DR4100 Manual  - Page 5
5
Dell PowerVault DR4100 Manual  - Page 6
6
Dell PowerVault DR4100 Manual  - Page 7
7
Dell PowerVault DR4100 Manual  - Page 8
8
Dell PowerVault DR4100 Manual  - Page 9
9
Dell PowerVault DR4100 Manual  - Page 10
10
Dell PowerVault DR4100 Manual  - Page 11
11
Dell PowerVault DR4100 Manual  - Page 12
12
Dell PowerVault DR4100 Manual  - Page 13
13
Dell PowerVault DR4100 Manual  - Page 14
14
Dell PowerVault DR4100 Manual  - Page 15
15
Dell PowerVault DR4100 Manual  - Page 16
16
Dell PowerVault DR4100 Manual  - Page 17
17
Dell PowerVault DR4100 Manual  - Page 18
18
Dell PowerVault DR4100 Manual  - Page 19
19
Dell PowerVault DR4100 Manual  - Page 20
20
Dell PowerVault DR4100 Manual  - Page 21
21
Dell PowerVault DR4100 Manual  - Page 22
22
Dell PowerVault DR4100 Manual  - Page 23
23
Dell PowerVault DR4100 Manual  - Page 24
24
Dell PowerVault DR4100 Manual  - Page 25
25
Dell PowerVault DR4100 Manual  - Page 26
26
Dell PowerVault DR4100 Manual  - Page 27
27
Dell PowerVault DR4100 Manual  - Page 28
28
Dell PowerVault DR4100 Manual  - Page 29
29
Dell PowerVault DR4100 Manual  - Page 30
30
Dell PowerVault DR4100 Manual  - Page 31
31
Dell PowerVault DR4100 Manual  - Page 32
32
Dell PowerVault DR4100 Manual  - Page 33
33
Dell PowerVault DR4100 Manual  - Page 34
34
Dell PowerVault DR4100 Manual  - Page 35
35
Dell PowerVault DR4100 Manual  - Page 36
36
Dell PowerVault DR4100 Manual  - Page 37
37
Dell PowerVault DR4100 Manual  - Page 38
38
Dell PowerVault DR4100 Manual  - Page 39
39
Dell PowerVault DR4100 Manual  - Page 40
40
Dell PowerVault DR4100 Manual  - Page 41
41
Dell PowerVault DR4100 Manual  - Page 42
42
Dell PowerVault DR4100 Manual  - Page 43
43
Dell PowerVault DR4100 Manual  - Page 44
44
Dell PowerVault DR4100 Manual  - Page 45
45
Dell PowerVault DR4100 Manual  - Page 46
46
Dell PowerVault DR4100 Manual  - Page 47
47
Dell PowerVault DR4100 Manual  - Page 48
48
Dell PowerVault DR4100 Manual  - Page 49
49
Dell PowerVault DR4100 Manual  - Page 50
50
Dell PowerVault DR4100 Manual  - Page 51
51
Dell PowerVault DR4100 Manual  - Page 52
52
Dell PowerVault DR4100 Manual  - Page 53
53
Dell PowerVault DR4100 Manual  - Page 54
54
Dell PowerVault DR4100 Manual  - Page 55
55
Dell PowerVault DR4100 Manual  - Page 56
56
Dell PowerVault DR4100 Manual  - Page 57
57
Dell PowerVault DR4100 Manual  - Page 58
58
Dell PowerVault DR4100 Manual  - Page 59
59
Dell PowerVault DR4100 Manual  - Page 60
60
Dell PowerVault DR4100 Manual  - Page 61
61
Dell PowerVault DR4100 Manual  - Page 62
62
Dell PowerVault DR4100 Manual  - Page 63
63
56 Setting up NetVault Backup Native Virtual Tape Library on the Dell™ DR4X00 Disk Backup
Appliance
media_prefix=”YN1D”
vtlpath=/vtl2/VTL2
library_name=VTL2
logfile=/tmp/logddclean.log
rm -rf /tmp/mediatmp
# ================================================
# Grab media info on tapes in the VTL
# ================================================
$nvutil/nvreport -class media -exclude "%Librarystatus = Unknown" -include "%reuse = yes" -format "%label %mediagroup %barcode"
-sort "%label" | grep $media_prefix > /tmp/mediatmp
echo "===================================="
echo "Processing the following media list:"
echo "===================================="
cat /tmp/mediatmp|awk '{print $1}'
read expired_media < /tmp/mediatmp
# ================================================
# Create an array and throw data into it
# Run commands against the data in the array
# ================================================
#Open file for reading
exec 10</tmp/mediatmp
let count=0
while read LINE <&10; do
barcodes[$count]=$(echo $LINE | awk '{print $3}')
tempstring=${barcodes[$count]}
barcodes[$count]=${tempstring%" "}
labels[$count]=$(echo $LINE | awk '{print $1}')
tempstring=${labels[$count]}
labels[$count]=${tempstring%" "}
groups[$count]=$(echo $LINE | awk '{print $2}')
tempstring=${groups[$count]}
groups[$count]=${tempstring%" "}
media_avail[$count]=$LINE
((count++))
done
array_num_avail=0
while [ $count -gt 0 ]; do
echo "================================================"
echo "Cleaning Media with label ${labels[$array_num_avail]}"
echo "Cleaning Media from group ${groups[$array_num_avail]}"
echo "Cleaning Media with barcode ${barcodes[$array_num_avail]}"
echo "================================================"
sleep 1
echo $nvutil/nvexportmedia -barcode ${barcodes[$array_num_avail]}
$nvutil/nvexportmedia -barcode ${barcodes[$array_num_avail]}
echo "================================================"
sleep 1
echo "Opening the Entry/Exit Port in $library_name"
$nvutil/nvopeneeport -libraryname $library_name
echo "================================================"
echo "Renaming media with barcode ${barcodes[$array_num_avail]} to ${barcodes[$array_num_avail]}.disabled"
echo mv $vtlpath/media/${barcodes[$array_num_avail]} $vtlpath/media/${barcodes[$array_num_avail]}.disabled
mv $vtlpath/media/${barcodes[$array_num_avail]} $vtlpath/media/${barcodes[$array_num_avail]}.disabled
echo "================================================"
echo "Creating a new piece of media, this may take some time based on size of media"
echo $nvutil/nvmakemedia $media_size mediafiles $vtlpath/media/${labels[$array_num_avail]}