About 256,000 results
Open links in new tab
  1. How to run a bash script on wsl with powershell? - Stack Overflow

    May 7, 2022 · On my current directory on Windows, I have the following script file simple_script.sh: #!/bin/bash echo "hi from simple script" I wish to run this script on …

  2. Can Windows containers be hosted on Linux? - Stack Overflow

    No, you cannot run Windows containers directly on Linux. But you can run Linux on Windows. Windows Server 2016 and above comes packaged with a base image of the Ubuntu OS (after …

  3. Single script to run in both Windows batch and Linux Bash?

    Jul 7, 2013 · Here's a full, dual-compatible program that runs in Windows cmd.exe and in Bash, either in Git Bash in Windows, or in Bash in Linux. In Windows, this program updates the …

  4. Is it possible to run linux docker image on windows

    Apr 15, 2016 · As long as the docker server/engine is running under a Linux kernel, it is always possible to run the Linux docker image under it. In your case, yes! because docker engine is …

  5. How does Docker for Windows run Linux containers?

    Jan 9, 2017 · Docker for Windows still uses a Linux VM to run Linux containers. But instead of using Virtual Box (which is what is used with Docker Toolbox), the Linux VM is run using …

  6. How can I run a Windows executable from WSL (Ubuntu) Bash

    Along with Windows 10 Anniversary update for summer 2016, came the possibility to run ubuntu binaries inside the new Windows Subsystem for Linux (WSL), a "lightweight" virtualized …

  7. Linux Docker Container on Windows Server 2022 - Stack Overflow

    Dec 2, 2022 · This solution changes the Engine for my Windows-User but not for the Windows-Service. On my Windows-User I can run Linux-Containers without a Problem. My Question is: …

  8. Packaging a Python script on Linux into a Windows executable

    I have a Python script that I'd like to compile into a Windows executable. Now, py2exe works fine from Windows, but I'd like to be able to run this from Linux. I do have Windows on my …

  9. Docker command line to switch to running linux containers on …

    Jul 17, 2019 · I inherited a Windows Server Core machine, and I want to run linux-based containers in docker on that machine. It is currently set up to run windows-based containers, …

  10. How to compile for Windows on Linux with gcc/g++?

    One option of compiling for Windows in Linux is via mingw. I found a very helpful tutorial here. To install mingw32 on Debian based systems, run the following command: sudo apt-get install …