Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
osak
tools
Commits
666f33cc
Commit
666f33cc
authored
Mar 26, 2015
by
moebius/ALUG
Committed by
Christopher Spinrath
Jan 21, 2016
Browse files
Updated blkwrite.sh to display a progress bar
parent
a431d8f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
MassStorageCloner/blkwrite.sh
View file @
666f33cc
...
...
@@ -32,12 +32,18 @@ fi
SRC
=
"
$1
"
TGT
=
"
$2
"
if
[
!
-
b
"
$
TGT
"
]
if
[
!
-
r
"
$
SRC
"
]
then
echo
"
need a blockdevice as parameter 2
"
echo
"
Source file >
$SRC
< is not readable. Exit.
"
exit
2
fi
if
[
!
-b
"
$TGT
"
]
then
echo
"need a blockdevice as parameter 2. Exit."
exit
3
fi
if
[
"x
${
TGT
%%[0-9]*
}
"
==
"x
$TGT
"
]
then
# have a "master" block device
...
...
@@ -47,9 +53,9 @@ fi
echo
"Start copy operation"
# live version
pv
-trabe
-B8m
$SRC
|
dd
bs
=
8M
iflag
=
fullblock
of
=
"
$TGT
"
oflag
=
sync
pv
-trabe
p
-B8m
$SRC
|
dd
bs
=
8M
iflag
=
fullblock
of
=
"
$TGT
"
oflag
=
sync
# debug version
#pv -trabe -B8m $SRC | dd bs=8M iflag=fullblock of=/dev/null oflag=sync
#pv -trabe
p
-B8m $SRC | dd bs=8M iflag=fullblock of=/dev/null oflag=sync
res
=
"
$?
"
echo
"Result code
$res
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment