By editor, 16 July, 2016 Install and Update Composer Tags Server Composer Linux Install Composer wget https://getcomposer.org/installer php installer unlink installer sudo mv composer.phar /usr/local/bin/composer.phar alias composer='/usr/local/bin/composer.phar'
By editor, 13 July, 2016 Mount and fstab on Linux Tags Server Linux Mount & Umount Mount is use to mount and unmount a disk temporally / or for the current session on Linux.
By editor, 9 July, 2016 Add PhpStorm icon To Linux ubuntu Menu Tags Linux Add Icon to the Desktop 1. Locate the PhpStorm and bin folder (Here : /Software/PhpStorm) 2. Create a file on the desktop named PhpStorm.desktop and write following datas
By editor, 6 July, 2016 Command Line Editors on Linux (vim & nano) Tags Linux Shell Vi - Vim Ccommand line editor's Usefull commands vim filename.txt (to create or open a file)
By editor, 6 July, 2016 Linux Apache Settings Tags Server Linux Start linux apache as another user 1.Change all www files owner to the new user sudo chown -R theusername:theusername /var/www
By editor, 3 July, 2016 Set file Permissions on Linux and ACL Tags Server Shell Linux Using chmod, chown chgrp Change File / Directories permissions. chmod 0777 . -R # chmod g+s /var/www # chmod +x *.sh # Change File / Folder Owner. chown www-data:www-data -R . Change File / Directories Group.
By editor, 1 July, 2016 Install LAMP On Debian based Linux Tags Linux Shell Server Install Apache 2 server sudo apt-get install apache2 #Test Apache 2 #Open : http://localhost/
By editor, 28 June, 2016 Access control with Apache .htaccess Tags Server Linux 1. Access control by IP : (Example) order deny,allow deny from all allow from [YOUR_IP_ADDRESS]
By editor, 13 June, 2016 .bashrc File - Configure bash aliases functions commands... on Linux Unix and MacOSX Tags Linux Shell The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. It is just the shortcut to the commands allows the user to launch any command or group of commands.
By editor, 11 June, 2016 Images processing using ImageMagick (convert) Tags Shell Linux Images Crop images using convert (ImageMagick) Example (Single file): convert input.jpg -crop 1300x950+312+72 crop.jpg convert input.jpg -crop 1300x950-100-50 crop.jpg