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
1,121
Reaction score
57
Points
48
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.
 
Hi Andy, worked for me as a charme. Thx, Gero
 
Hi Andy, worked for me as a charme. Thx, Gero
Hi @Gero, I'm glad to hear it worked for you like a charm! You're welcome, and if you have any more questions or need further assistance, feel free to ask. Thanks for your feedback!
 
 Short URL:
Back
Top