kitematic icon indicating copy to clipboard operation
kitematic copied to clipboard

still is the problem on win 8.1 pro with hyper-v enabled

Open Wolvverine opened this issue 7 years ago • 2 comments

https://github.com/docker/kitematic/issues/673

https://agup.tech/2015/08/14/hacking-at-kitematic-with-hyper-v-on-windows-10/

Wolvverine avatar May 10 '18 12:05 Wolvverine

is this issue resolved ???

sahilrajput03 avatar Dec 01 '20 15:12 sahilrajput03

I managed to solve the problem via a script i made. Just running below script solves the problem of mounting as it mounts e drive:

mkdir ~/morePackages
cd ~/morePackages
wget http://distro.ibiblio.org/tinycorelinux/5.x/x86_64/tcz/cifs-utils.tcz
wget http://distro.ibiblio.org/tinycorelinux/5.x/x86_64/tcz/samba.tcz
wget http://distro.ibiblio.org/tinycorelinux/5.x/x86_64/tcz/samba-libs.tcz

tce-load -i cifs-utils.tcz
tce-load -i samba.tcz
tce-load -i samba-libs.tcz

sudo mkdir /e
sudo mount -t cifs -o username=chetan,password=<your-password>,domain=insidebug //192.168.18.2/e /e

sahilrajput03 avatar Dec 02 '20 14:12 sahilrajput03