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

Complete Guide to Emacs: Features, Use Cases, Architecture, and Getting Started

What is Emacs? Emacs is an open-source, extensible text editor used primarily for programming, though it can be used for a variety of tasks, from writing and editing to project management. Originally created by Richard Stallman in 1976, Emacs has since evolved into one of the most powerful and customizable text editors in the world, … Read more

Unix command to find memory usage

rajeshkumar created the topic: unix command to find memory usage Monitor processes continuously. Updates every 3 seconds by default. Displays useful information such as total memory, memory in use, % of total memory used by each process, % cpu usage of each process, and process ID (PID) of each process. Type ‘h’ for help or … Read more

Find Application Instance Directory In Unix

scmuser created the topic: find application instance directory in unix How to find installed application directory in unix? rajeshkumar replied the topic: Re:find application instance directory in unix use Which command I mean which java which perl which ant which p4 which svn You will get location of the apps installed in your machine. Regards, … Read more

Memory Usage In UNIX

aparna created the topic: memory usage in Unix I have a map file and I need to test this file and get all the information about the memory usage such as, RAM usage. Can I do that by using unix or is there any other good program to use? Any help please? rajeshkumar replied the … 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

20 vmstat Commands Examples in Linux / UNIX | vmstat Commands Tutorials

vmstat-commands

vmstat – Report virtual memory statistics. vmstat is a tool that collects and reports data about your system’s memory, swap, and processor resource utilization in real time. It can be used to determine the root cause of performance and issues related to memory use. vmstat reports information about processes, memory, paging, block IO, traps, and … Read more

20 Xargs Commands Examples in Linux / UNIX | Xargs Commands Tutorials

xargs-commands

Under Development The xargs command is extremely useful when we combine it with other commands.This tutorials explains the usage of xargs command using few simple examples. 1. Xargs Basic Example The xargs command (by default) expects the input from stdin, and executes /bin/echo command over the input. When you execute xargs without any argument, or … Read more