Difference between revisions of "HOWTO Run Gluex Software on Windows"

From GlueXWiki
Jump to: navigation, search
(Introduction)
Line 11: Line 11:
  
  
WSL provides a Linux-compatible kernel interface (containing no Linux kernel code), with user-mode binaries from Ubuntu running on top of it. Roughly saying ''it is Ubuntu running on Windows kernel inside Windows.''  
+
WSL provides a Linux-compatible kernel interface (containing no Linux kernel code), with user-mode binaries from Ubuntu running on top of it.  
 +
 
 +
 
 +
Roughly saying ''it is Ubuntu running on Windows kernel inside Windows.''  
  
  

Revision as of 06:20, 2 April 2017

Introduction

Gluex software runs on windows 10 out of the box*

Bash on windows chan what.jpeg

Is it 1 April joke? - No. It is April 2nd and it is not a joke.


How? - Windows now comes with a new feature which is known by several names (common for all devilish): "Windows subsystem for linux"(WSL) or "Bash on Windows" or "Bash on Ubuntu on Windows" or even "lxrun".


WSL provides a Linux-compatible kernel interface (containing no Linux kernel code), with user-mode binaries from Ubuntu running on top of it.


Roughly saying it is Ubuntu running on Windows kernel inside Windows.


Links:

Wikipedia article

GitHub page

MSDN page


Out of the box - WSL now comes with ALL versions of Windows 10. It is just one command to install and activate it.


WSL vs. Virtual machines vs. Cygwin

  • Compared to VMs - WSL is a thin layer, which addresses linux system calls to NT kernel. Potentially performance is not wasted by virtualization, no problems like space on virtual disks. WSL has full access to windows file system and resources. Actually, it IS Windows running Ubuntu rig.
  • Compared to Cygwin - Cygwin works in similar way but there is a huge difference. Software is built for cygwin. WSL is intended to be binary compatible with Ubuntu. And other-compatible too. So one can grab .deb package and use it. Or ctrl+c ctrl+v command from askubuntu.com and it will just work. Because of this gluex software runs on WSL out of the box.


Windows 15063.11 - known as "Creators update". Officially release is planned on April 11 of 2017 but RC available now. Starting with this version WSL comes with Ubuntu 16.04 (was 14.04 before). Historically, when WSL appeared in 2016 as an alfa feature, it had a number of bugs like no stubs for DBUS, etc. Now even if it is still a beta, many things where significantly improved and works smoothly (like running X11 apps).

GlueX offline software was (roughly) tested on 15063.11. It most probably should work on older versions too, but it is recomended to use Windows version 15063+.

Installation

WSL installation:

  • One has to enable "Developer mode" (type it in the search bar, and click that switch)
  • Open terminal and write lxrun /install. After several questions installation is complete.
  • To run it just print bash in terminal


Because native windows terminal is a shame, it is a good idea to use something like xfce-terminal. To do this:

  • put export DISPLAY=:0 in .bashrc
  • install xfce4-terminal (sudo apt-get install xfce4-terminal)
  • run it: bash -l -c xfce4-terminal

Stackoverlow question with more details


Gluex prerequesties

This Ubuntu version comes without compilers. Before installing hdpm prerequisites one has to also install build-essential

   > sudo apt install build-essential


Gluex software

Just use hdpm as usual including installation of prerequesties printed by hdpm.


Run GlueX software

Features that where verified to work:

  • JANA and co - HDGeant runs OK. For a sake of experiment, resulting hddm file was moved to some external Windows NTFS disk. Jana was able to process it.
  • ROOT - root works. All features that where tested (like root files, DSelector) run without problems
  • OpenGL - Surprisingly, GlueX geometry works even with OpenGL (does it rendered with DirectX under the hood???)
   Bash on windows geometry opengl.png
  • Geant 4 - Has not been tested yet.


TL; DR; It was tested that our software runs on WSL, which is Ubuntu with windows kernel running on windows.