How to check server CPU and memory usage via command line (SSH)
Log in to the server via SSH.
ssh root@YOUR-SERVER-IP
Execute the command below to run top utility:
top -i

Log in to the server via SSH.
ssh root@YOUR-SERVER-IP
Execute the command below to run top utility:
top -i

I'm a freelance WordPress Developer and Project Manager. Specialize in WordPress, Woocommerce, Custom WordPress Theme and Plugin Development, and Shopify. Highly skilled in HTML5, CSS3, SCSS, JavaScript, jQuery, Ajax, ES6, Bootstrap, PHP and MySQL.
SCP (secure copy) is a command-line utility that allows you to securely copy files and directories between two locations. With scp, you can copy a file or directory: SCP copies files between hosts on a network. It uses SSH for data transfer, and uses the same authentication and provides the same security as SSH. SCP will ask for passwords or…
By Default Syntaxhighlighter Evolved plugin came with no top and bottom padding and very tight line height. If you are someone like me who love some breathing space in between every section in a WordPress post then you can try the below CSS code snippet. Screenshots are attached before and after applying the CSS code….
Rsync (Remote Sync) is the most commonly used command for copying and synchronizing files and directories remotely as well as locally in Linux/Unix systems. With the help of rsync command, you can copy and synchronize your data remotely and locally across directories, across disks, and networks, perform data backups, and mirroring between two Linux machines. Using the Rsync for Linux is somewhat tricky and you have to be…
Sometimes you want to create an offline copy of a site that you can take and view even without internet access. Using wget you can make such copy easily: wget –mirror –convert-links –adjust-extension –page-requisites –wait=2 -o log –no-parent http://example.org Explanation: –mirror // Makes (among other things) the download recursive. –convert-links // convert all the links…
There is no built-in emmet shortcut in PhpStorm to insert a <?php ?> tag. But we can set it by Going to File -> Settings -> — IDE Settings — -> Live Templates For Mac User: PhpStorm->Preferences->Editor->Live Templates, click on the PHP and add new Live Template. On right sidebar click on “+” then: Abbreviation…
If you’re managing a blog or website with regularly updated content, it’s helpful to quickly see when each post was last modified. By default, WordPress shows only the publish date in the admin panel, but you can easily add a “Last Updated” column and make it sortable with a few lines of code. In this…
I got this: command ‘top -‘ not found …
what should i do? I am using ubuntu 18.04