skip to Main Content

Install PHP 7.2 MCrypt extension

## How to install mcrypt in php7.2 ## ## https://lukasmestan.com/install-mcrypt-extension-in-php7-2/ ## # # Check version php and pecl # php -v # if default php is not 7.2 then use /usr/bin/php7.2 instead php pecl version sudo apt-get install php-pear sudo…

Read More

Mount Windows Share on Ubuntu

$ sudo apt-get install cifs-utils $ sudo mount //WINSRV/SHARE -t cifs -o uid=1000,gid=1000,username=winuser /mnt/path where 'winuser' is the windows domain user, and optionally we can supply domain using domain=windomain with options.   Note: to find out linux user's uid and…

Read More

Import Your VM as an EC2/AMI Image

http://docs.aws.amazon.com/vm-import/latest/userguide/import-vm-image.html   After exporting your VM from your virtualization environment, you can import it to Amazon EC2. The import process is the same regardless of the origin of the VM. Tasks Prerequisites Import the VM Check the Status of the…

Read More
Back To Top