Archive

Archive for November, 2018

Windows Subsystem for Linux

November 22nd, 2018 No comments

Windows Subsystem for Linux (WSL) is a compatibility layer for running Linux binary executables (in ELF format) natively on Windows 10 and Windows Server 2019.

WSL provides a Linux-compatible kernel interface developed by Microsoft (containing no Linux kernel code), which can then run a GNU user space on top of it, such as that of Ubuntu, openSUSE, SUSE Linux Enterprise Server, Debian and Kali Linux. Such a user space might contain a Bash shell and command language, with native GNU/Linux command-line tools (sed, awk, etc.), programming language interpreters (Ruby, Python, etc.), and even graphical applications (using a X11 server at the host side). (wikipedia)

 

Show/Execute History in Windows Command Line Prompt

November 7th, 2018 No comments

At Linux BASH shell, we can type in history command to print a list of the commands that have been entered in the current shell.

At windows command prompt, you can show a Graphical History window by pressing the F7 key.

Alternatively, you can press F9 function key to enter the specific command you want to execute in the command history.

Source