This guide outlines the steps to set up T2 System Development Environment (T2SDE) on Windows Subsystem for Linux (WSL) using a virtual machine (VM).
Visit T2SDE and download the latest ISO.
Change to the root directory:
cd /
Create a tarball of the root directory, excluding unnecessary directories/files:
tar -cvf t2sde-wsl.tar \
--exclude='t2sde-wsl.tar' \
--exclude='proc/kcore' \
--exclude='lib/firmware/*' \
--exclude='lib/modules/*' \
--exclude='usr/X11R7/*' \
--exclude='boot/*' \
--exclude='opt/*' [a-z]*
Set a password for root:
passwd root
Use scp
to copy the t2sde-wsl.tar
file from the VM to your Windows machine:
scp root@the.ip.for.vm:/t2sde-wsl.tar .
Open a Windows terminal (CMD or PowerShell) and import the TAR archive into WSL:
wsl --import T2 C:\Users\yourusername\t2sde .\t2sde-wsl.tar
Once imported, start the T2SDE instance by running:
wsl -d T2
You can now remove the tar file if no longer needed:
rm .\t2sde-wsl.tar
t2sde-wsl.tar
file and ensure it was transferred correctly.You've successfully launched T2SDE on WSL by following these procedures. Enjoy using and exploring T2SDE in the comfort of your Windows environment.
***Et voilà !***