yuk7 / wsldl

Advanced WSL launcher / installer. (Win10 FCU x64/arm64 or later.)
https://git.io/wsldl
MIT License
1.76k stars 131 forks source link

How to create the file rootfs.tar.gz #63

Closed datdinhquoc closed 4 years ago

datdinhquoc commented 4 years ago

The file rootfs.tar.gz is stated in this guide: https://github.com/yuk7/wsldl#install-with-any-rootfs

The matter is how to create it? Is it a dump file from file system of any Linux installation (physical installation)?

yuk7 commented 4 years ago

Yes. rootfs.tar.gz contains all files on linux filesystem. You can execute tar command for create rootfs.tar.gz e.g.:

sudo tar -zcpf rootfs.tar.gz *

in /.

datdinhquoc commented 4 years ago

tks for the command <3