• Most COVID-19 rules have ended in New Zealand.
    • You must still isolate for 7 days if you have COVID-19.
    • You must wear a face mask in healthcare facilities, such as hospitals. International travellers will not need proof of COVID-19 vaccination.
    From 13 September 2022, to enter New Zealand, you do not need proof of vaccination.

How to move TrueNAS SCALE VM disk from one pool to another pool

Andy

Administrator
Creative Team
User ID
1
Joined
7 Jan 2019
Messages
829
Reaction score
32
Points
28
Simplify the process of transferring your TrueNAS VM disk with these two easy steps. Follow this quick tutorial to learn how to move your TrueNAS VM disk from one pool to another in no time.
Bash:
# zfs snapshot -r pool/dataset/VMname-rnd0m@relocate

Then use the following command to move it to the new pool:
Bash:
# zfs send pool/dataset/VMname-rnd0m@relocate | zfs receive -v newpool/newdataset/VMname-rnd0m
receiving full stream of pool/dataset/VMname-rnd0m@relocate into newpool/newdataset/VMname-rnd0m@relocate
received 10.2G stream in 56 seconds (186M/sec)

Hint: You can also put a new zvol name by putting the new name on the zfs receive command; just make sure that the name doesn't currently exist.

Feel free to leave a comment down below for any questions or comments you have.
 
 Short URL:
Top