Ubuntu GUI on Windows 10

I got it working by installing x11-apps to get the X subsystem, then running a X listener like XMING or XManager on the Windows10 side. export DISPLAY=:0 (You also can add export DISPLAY=:0 to the last line of your user’s .bashrc file) Then run xclock to verify. https://superuser.com/questions/1075659/open-ubuntu-bashs-gui-applications-on-windows-10

» Read more

PHP 7.2 for Ubuntu

1. Add PPA ondrej/php sudo add-apt-repository ppa:ondrej/php sudo apt update 2. Current PHP packages dpkg -l | grep php | tee packages.txt 3. Install PHP 7.2 sudo apt install php7.2 php7.2-common php7.2-cli php7.2-fpm If you are using Apache with prefork MPM (type apachectl -V to see the MPM used), you’d need to install libapache2-mod-php7.2 instead of php7.2-fpm. 4. Install additional modules Take a look at the packages.

» Read more