parent
248c1f033b
commit
f2df1ca2b8
@ -0,0 +1,4 @@ |
||||
#!/bin/bash |
||||
|
||||
read -p "Press [Enter] to continue..." |
||||
clear |
||||
@ -0,0 +1,3 @@ |
||||
#!/bin/bash |
||||
|
||||
reboot |
||||
@ -0,0 +1,8 @@ |
||||
#!/bin/bash |
||||
|
||||
DISK=/dev/sda |
||||
INTERFACE=eth0 |
||||
|
||||
udp-receiver --interface $INTERFACE | dd of=$DISK bs=512 count=1 |
||||
|
||||
. $(dirname $0)/pause.sh |
||||
@ -0,0 +1,8 @@ |
||||
#!/bin/bash |
||||
|
||||
DISK=/dev/sda1 |
||||
INTERFACE=eth0 |
||||
|
||||
udp-receiver --interface $INTERFACE | lzop -d | partclone.extfs -r -s - -o $DISK --logfile /tmp/partclone.log |
||||
|
||||
. $(dirname $0)/pause.sh |
||||
@ -0,0 +1,8 @@ |
||||
#!/bin/bash |
||||
|
||||
DISK=/dev/sda |
||||
INTERFACE=eth0 |
||||
|
||||
udp-receiver --interface $INTERFACE | sfdisk $DISK |
||||
|
||||
. $(dirname $0)/pause.sh |
||||
Loading…
Reference in new issue