In Laravel development, I came across the situation to get the client’s browser or user agent details in server side. Here I am going to share how I have solved it. Solution: First we have to import the necessary library. To import library run the following command from the project’s root folder. This will add […]
Category: How To
How to schedule specific timing to shutdown the system
Schedule shutdown timing in Linux systems are easy and it can be done through simple commands. Various Shutdown commands 1. To Shutdown/Halt/Reboot the system immediately. 2. To schedule the system to Halt in particular time in the same day. The Option -h denotes, halt the system. It means it leaves the system powered on in […]
How to delete all .svn sub folders recursively
Objective To delete all .svn folders from all sub folders recursively. Run the following command from terminal Command explanation: find – First portion of the command will search all .svn folder recursively. print – Second portion of the command will print the list of folders retrieved from first portion. rm – Third portion of the […]
Important commands to find size of the files and folders in linux
Some useful commands to find size of the files and folders in linux 1. To find the size of all partitions in the linux system 2. To find the total size of the folder 3. To find the largest files or folders from the selected folder 4. To find the total size by excluding specific […]
How to Install PostgreSQL 9.6 in Fedora 30/31/32
This guide explains about, How to install PostgreSQL 9.6 in Fedora 30/31/32. As of now PostgreSQL supports its latest version PostgreSQL 12 in Fedora 32. But still if you wish to install PostgreSQL 9.6 because of your application/language compatibility, this step by step guide will help you. Step 1: Install PostgreSQL 9.6 Repo Installing this repo will […]
Error: PDF could not be generated! Command Error: QSslSocket: cannot resolve CRYPTO_num_locks in wkhtmltopdf or Pdfkit – Solved
QSslSocket Issue The following issue raised while creating pdf using these libraries wkhtmltopdf_binary, wkhtmltopdf, PdfKit. Reason for issues: The above issue may be occurred for any one the following reasons. Recently you may be downgraded some libraries or removed it. You might be tried to install the latest version of ruby through rvm, but failed […]
How to install or update Zoom Client in Fedora
Zoom is the Video Communication software which is mainly useful for Video Conferencing, Meeting, Webinars, Conference Rooms, Phone Systems and Chatting. It is the Free software but with some limitations in the resource. In this blog I am explaining about how to install or update zoom Client If you are doing new installation of Zoom, […]