From 1b8ce14a1b05a591ebe3c687627924977ad85a2e Mon Sep 17 00:00:00 2001 From: Bertrand Neron <bneron@pasteur.fr> Date: Thu, 8 Sep 2022 00:39:55 +0200 Subject: [PATCH] add example to mount mk1c on wsl --- source/Installation/linux_admin.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/Installation/linux_admin.rst b/source/Installation/linux_admin.rst index d53bd44..12afe04 100644 --- a/source/Installation/linux_admin.rst +++ b/source/Installation/linux_admin.rst @@ -386,6 +386,22 @@ To do each time you need to connect the Pc to the mk1c ls -l /mnt/mk1c +.. note:: + + If you use WSL (**W**indows **S**ubsystem for **L**inux) the fylesystem type `-t` option to use is `drvfs` + So the command to use to mount the mk1c on the Pc is + + .. code-block:: shell + + $ sudo mount -t drvfs //192.168.0.10/data -ousername=minit,uid=1000,gid=1000 /mnt/mk1c + passowrd ****** + + +.. note:: + + In the 2 examples above the you need to know the IP of you mk1c and replace the IP example + 192.168.0.10 by the mk1c IP + Conversely, the `umount` command will detach it again. -- GitLab