Detect "Ubuntu on Windows" vs native Ubuntu from bash script [duplicate]
Can a bash script detect if it's running in "Ubuntu on Windows" vs native Ubuntu? If so, how?
I ran env
on both machines and didn't see any obvious environmental variable differences. I could test for the existence of the /mnt/c
directory, but that is not foolproof because that directory could potentially also be present on native Ubuntu.
Solution 1:
It looks like /proc/version
in Ubuntu on Windows contains:
Linux version 3.4.0-Microsoft ([email protected]) (gcc version 4.7 (GCC) ) #1 SMP PREEMPT Wed Dec 31 14:42:53 PST 2014
and my version of Ubuntu has:
Linux version 4.4.0-31-generic (buildd@lgw01-16) (gcc version 5.3.1 20160413 (Ubuntu 5.3.1-14ubuntu2.1) ) #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016
This code is working for me to detect which version of Ubuntu the script is running on:
if grep -q Microsoft /proc/version; then
echo "Ubuntu on Windows"
else
echo "native Linux"
fi