If you are a MacOS user then you must have seen creation of .DS_Store file automatically inside folders which is sometimes quite annoying. .DS_Store files store folder level meta data information. However that is completely fine in MacOS. But there is a work around to avoid creation of .DS_Store files if you are annoyed of it. Specially if you are a developer and those .DS_Store files are created … [Read more...]
How to delete .DS_Store from an existing git repository?
If you are using Mac OS for development then you must have seen .DS_Store files created automatically which is quite painful. However there is a work around to delete it from an existing git repository using following few commands. [crayon-6513af54bcc33232758046/] Above command will delete all .DS_Store files, and now you can add in .gitignore file to avoid commit of this file in … [Read more...]
Configuring Static IP in Ubuntu 18.04.2 LTS (Bionic Beaver)
The method of configuring static ip in Ubuntu 18.04.2 LTS is different from its previous variants. Previously it was to configure in /etc/network/interfaces file, however in Ubuntu 18.04.2 LTS, it is setup in /etc/netplan/50-cloud-init.yaml file. [crayon-6513af54bcdcc467729182/] Content of this file is [crayon-6513af54bcdce014570094/] I have edited this file like … [Read more...]
How to disable Google Search bar from home page of Google Chrome ?
After recent upgrade of Google Chrome, Google Search bar is placed on the home/landing page of Google Chrome along with the recently opened tab. I felt it quite annoying, and I hope there will be several other people feeling it annoying. To disable this google search from home/landing page of Google Chrome, Open new Tab in Chrome Write “chrome://flags/” in Address bar and it … [Read more...]
SolusVM: Installing OpenVZ OS template in SolusVM through command line
OpenVZ save templates in /vz/template/cache [crayon-6513af54bcea3293785731/] Therefore you can manually downloading OS templates in this location using wget command then then sync them from SolusVM to added OS templates in SolusVM. Now, Sync template in SolusVM And added them. … [Read more...]
SolusVM: Installing OpenVZ OS template in SolusVM.
SolusVM comes with one OpenVZ template by default which is of CentOS 5 32bit. You can download OS templates for OpenVZ from OpenVZ website and install them. Upload template in SolusVM Once uploaded, sync template and now you can add template in SolusVM. … [Read more...]
SolusVM: How to add IP addresses Block in SolusVM?
Adding block of IP addresses in SolusVM is very easy. Click on IP BLOCKS >> Add IPv4 Block Enter the following information Block name Netmask Nameservers Select the Node for which you want to add ip block. and click on “Add block” button and you will get success message After that click on “here” in the success message and you will get screen to add a single ip … [Read more...]
Installing FFMPEG-PHP Extension after ffmpeg in CentOS 6.x / Red Hat 6.x
Must read: How to install ffmpeg in CentOS or Red Hat Once you have installed ffmpeg, now you need to install php extension of ffmpeg to work ffmpeg via php. [crayon-6513af54bcf5e916399438/] Locate php.ini [crayon-6513af54bcf5f402346991/] Edit php.ini and add [crayon-6513af54bcf60808240506/] Add following at the end of … [Read more...]
Upgrading Nginx to latest version in LNMP – Nginx Autoinstaller
Nginx Autoinstaller is a ready made script to install a server with Nginx webserver, MySQL and PHP. How to install Nginx,MySQL,PHP using LNMP-Nginx Autoinstaller Default LNMP comes with Nginx 1.0.0, however LNMP-Nginx Autoinstaller provide a script to upgrade Nginx to latest available version. Procedure: Check latest version number from nginx download page. Currently latest version … [Read more...]