sickcodes

Results 384 comments of sickcodes

There are no GPS devices that I know of that the container could access to locate itself other than IP based and neighboring wifi networks. Have you tried zooming out?...

Android apparently has is in their hard fork of QEMU https://android.googlesource.com/platform/sdk/+/ics-mr0/emulator/gps/gps_qemu.c There may be an App Store app that lets you fake the location or some other HID Does google...

Try over network ```bash scp -P 50922 file.pdf user@localhost:/Users/user/Documents ``` Or by sharing a directory between you and the OSX ```bash # stat mac_hdd_ng.img SHARE=/home/user/test/1px/ docker run -it \ --device...

> @sickcodes Is there anyway or any lead on how to enable a shared clipboard between host and guest as well? Clipboard wont work because the guest doesn't have access...

Fixed folder host sharing in https://github.com/sickcodes/Docker-OSX/commit/31c95fd640f70c657235f7440eca173500c6c9ae

I also had this problem yesterday, but it was my VPN. Do you have a VPN on?

Also double check your username `ssh mobile@localhost -p 50922` and/or `-i sshkey_rsa`

> Hello @sickcodes , thanks for the reply. > > No I am not using VPN on my docker computer. > > So weird, port SSH is running, but I...

@coppercash solved the above issue with Docker-OSX podman in the following comment: https://github.com/sickcodes/Docker-OSX/issues/246

` -e "OSX_COMMANDS=/bin/bash -c \"pwd && uname -a\"" \` Is a demo command, you can change it to something else: ` -e "OSX_COMMANDS=/bin/bash -c \"echo hello\""` The container will delete...