Friday, March 8, 2019

ASUS e203MAH


Entering Bootloader of ASUS E203 MAH laptop:
  1. Power on the Asus S200e laptop
  2. Press and hold F2 key when powering on the Asus S200e laptop to enter the bios.
  3. Switch to the “Boot” tab and set “Launch CSM” to Enabled.
  4. Switch to the “Security” tab and set “Secure Boot Control” to Disabled.
  5. Press F10 to save and exit.
  6. Press and hold ESC key to launch the boot menu while the Asus S200e laptop is powering up.
source: https://www.rgb.ie/2015/03/26/how-to-boot-from-usb-drive-on-a-asus-s200e-laptop/
 

Friday, January 18, 2019

Python3 on CentOS 7

  • yum -y install https://centos7.iuscommunity.org/ius-release.rpm
  • yum -y install python36u
  • yum -y install python36u-pip
  • yum -y install python36u-devel

 

Create python3 virtual environment:

  • python3.6 -m venv myWorkEnvironment
  • source myWorkEnvironment/bin/activate
 

Note: python3 is now available by default distros repository and no need to install iuscommunity. Its available directly "sudo yum install -y python3"