There are various tools available which can be used to check and troubleshoot memory usage on a Linux/Ubuntu/Photon OS machines. I have tried listed few of them here. Please note all of the command line tools have the same source: the proc/meminfo virtual file. – top :- The top command is useful to check live/real time memory […]
Month: July 2022
Install a Debian (Ubuntu) package
To install a downloaded Debian (Ubuntu) package (.deb) :- # sudo dpkg -i packagename.deb # sudo dpkg -i /home/jay/Downloads/net-tools_1.60+git20181103.0eebece-1ubuntu5_amd64.deb Selecting previously unselected package net-tools. (Reading database … 197399 files and directories currently installed.) Preparing to unpack …/net-tools_1.60+git20181103.0eebece-1ubuntu5_amd64.deb … Unpacking net-tools (1.60+git20181103.0eebece-1ubuntu5) … Setting up net-tools (1.60+git20181103.0eebece-1ubuntu5) … Processing triggers for man-db (2.10.2-1) … # To […]