MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

How to Uninstall/Remove Package in Laravel?

composer remove VenderName/PackageName – The remove command removes packages from the composer.json file from the current directory. Syntax :- composer remove VenderName/PackageName Syntax:- composer remome VenderName/PackageName1 VenderName/PackageName2 If you want to remove more than one package then you have to run this command. Ex:- composer remove fzaninotto/faker –dev: It remove packages form require-dev This means, … Read more

How to Install/Add-Package in Laravel?

composer require VendorName/PackageName – This command installs a package and any packages that it depends on. syntax example composer require VendorName/PackageName composer require fzaninotto/faler composer require VendorName/PackageName:tag composer require fzaninotto/faker:dev-master composer require VendorName/PackageName:version composer require fzaninotto/faker:1.9.0 –dev: Add packages to require-dev. composer require VendorName/PackageName –dev https://packagist.org/ This is the website, from where you will get … Read more

How to set up a new or existing package?

Manually Creating composer.json file You have to create a composer.joson file and write JSON code yourself with the required properties. composer config –global(-g) – Operate on the global config file located at $COMPOSER_HOME/comfig.json by default. Without this option, this command affects the local composer.json file. composer config –list (-l) __ It shows all the current … Read more

Ansible Adhoc Commands Lab & Excercise – Part 1

Execution Mode – Local Write a Ansible Adhoc Commands to create a group called “deploy” Write a Ansible Adhoc Commands to create a user called “deploy-user” which is part of group called “group” and with /bin/bash shell. Write a Ansble Adhoc commands install package named “httpd” in RHEL/centos. Write a Ansible Adhoc commands to start … Read more

Use of p4 change commands

rajeshkumar created the topic: Use of p4 change commands Updating changelist number p4 change To View the changelist info p4 change -o To Delete the changelist number p4 change -d Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

How to Start and Stop Nagios Core | Nagios Tutorial

starting-and-stopping-nagios-core

Starting Nagios Core Init Script: The easiest way to start the Nagios Core daemon is by using the init script like so: /etc/rc.d/init.d/nagios start Manually: You can start the Nagios daemon manually with the -d command line option like so: /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg Restarting Nagios Core Restarting/reloading is nececessary when you modify your configuration files … Read more

20 pmap Commands Examples in Linux / UNIX | pmap Commands Tutorial

pmap-commands

You can find the memory used by a program (process) by looking into /proc directory or using standard command such as ps or top. However, you must calculate all memory usage by hand i.e. add Shared Memory + mapped file + total virtual memory size of the process + Resident Set Size + non-swapped physical … Read more

20 mpstat Commands Examples in Linux / UNIX | mpstat Commands Tutorial

mpstat-commands

If you are using SMP (Multiple CPU) system, use mpstat command to display the utilization of each CPU individually. mpstat Report processors related statistics which includes Collecting and displays performance statistics for all logical processors in the system.. This display CPU statistics of individual CPU (or) Core. How to install mpstat? 1. Ensure you are … Read more

20 iostat Commands Examples in Linux / UNIX | iostat Commands Tutorial

iostat command is a command that used for monitoring system input/output device loading by observing the time the devices are active in relation to their average transfer rates. The iostat create reports that can be used to change system configuration to better balance the input/output between physical disks. You can use iostat command which report … Read more