Bash On Ubuntu On Windows(Windows Subsystem for Linux)

After Windows 10 Build 14316 or later you can enable Microsoft Windows Subsystem for Linux feature so you can run Ubuntu in your Windows box. Check build version C:\>systeminfo | findstr /B /C:”OS Name” /C:”OS Version” OS Name: Microsoft Windows 10 Enterprise Evaluation OS Version: 10.0.14393 N/A Build 14393 C:\> […]

Full Screen Ubuntu/Fedora in Hyper-V

——————Fedora / CentOS————————- grubby –update-kernel=ALL –args=”video= hyperv_fb:1920×1080″ ——————Ubuntu / Kali————————- sudo nano /etc/dafault/grub change GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” to… GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash video=hyperv_fb:1920×1080″ (in my case my screen resolution is 1920×1080) sudo reboot ————-after reboot —— sudo update-grub sudo reboot ——————————————