Category: Linux

Linux

Lxc Container

lxc-create -t download -n my-container The download template will show you a list of distributions, versions and architectures to choose from. A good example would be “ubuntu”, “trusty” (14.04 LTS) and “i386”. How to ssh into lxc as root: 1:lxc-attach -n my-container 2:to apt-get install ssh 3:vim /etc/ssh/sshd_config 4:Go to line 28: “PermitRootLogin” Change it […]

Linux Php

Time Zone for PHP & Linux

Linux System Time ln -sf /usr/share/zoneinfo/Asia/Kuala_Lumpur localtime Reference : http://www.thegeekstuff.com/2010/09/change-timezone-in-linux/     Php Time Method 1 : Add #date_default_timezone_set(‘Asia/Kuala_Lumpur’); At the starting of your script Method 2 : Find for /etc/php5/apache2/php.ini file Update to date.timezone = ‘Asia/Kuala_Lumpur’ LINE 883 /etc/init.d/php5-fpm restart  

Linux

Unzipping files & Zipping files

UNZIP BZ files , tar -xjf <Filename> GZ files, tar -xzf<Filename> ZIP tar -zcvf archive_name.tar.gz directory_to_compress Zip Command To compress: zip squash.zip file1 file2 file3 or to zip a directory zip -r squash.zip dir1 To uncompress: unzip squash.zip this unzips it in your current working directory.

Back To Top