@samitouri / QOSAMI-WSL / commits / 6c6fb8a0

Create CONTRIBUTING.md

David Manouchehri committed Jul 11, 2016 at 02:41 UTC 6c6fb8a025a9727d3fa864c23a22d61b2fc4502e
1 file changed +29
CONTRIBUTING.md new
+29
@@ -0,0 +1,29 @@
1 +When reporting a bug, please be sure post the following information:
2 +
3 +1. The build of Windows you're running. Example:
4 +```cmd
5 +C:\Users\Dave>ver
6 +
7 +Microsoft Windows [Version 10.0.14385]
8 +```
9 +
10 +2. The exact command you tried to run. Example:
11 +```cmd
12 +dave@remoteoffice2.nsa.gov:~$ ps aux
13 +Error: /proc must be mounted
14 + To mount /proc at boot you need an /etc/fstab line like:
15 + proc /proc proc defaults
16 + In the meantime, run "mount proc /proc -t proc"
17 +```
18 +
19 +3. The strace log of the command that failed to run. Please paste this into [Gist](https://gist.github.com/) or another paste service. Example:
20 +```cmd
21 +dave@remoteoffice2.nsa.gov:~$ strace whoami
22 +execve("/usr/bin/whoami", ["whoami"], [/* 16 vars */]) = 0
23 +brk(NULL) = 0x2423000
24 +access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
25 +.... this file will be very large ....
26 +close(2) = 0
27 +exit_group(0) = ?
28 ++++ exited with 0 +++
29 +```