Check if cpu supports 64 bit
If the below produces lm (long mode) flags, then the cpu has support for x86_64 architecture.# grep lm /proc/cpuinfoI have seen quite a few dedicated servers with support for x86_64 architecture, but...
View Articlemysql if using too much CPU of my VPS.
Can anybody help me? Basically my app is for an email marketing, so using a while statement its reads from a db (mysam) and make updatesThank in advance!!This is the info about my VPS (when typing )...
View ArticleDetermine cpu bit
You can try this to find out if your CPU/Processor is 32 bit or 64 bit:cat /proc/cpuinfo | grep flags | grep lmlm means Long Mode = 64 bit CPUAlso:getconf LONG_BITShould display 32 or 64.read more
View ArticleRun process with least cpu and IO priority
Below is command to run process with the least CPU and IO priority.nice -n 19 ionice -c 3 <command>You could also include the same in the beginning of the script:#!/bin/bash# Make process...
View ArticleLinux cpu processor cores and threads
/proc/cpuinfo has the info you need to identify the number of processors, cores and threads.To get the total number of processors/cpu cores:grep -c processor /proc/cpuinfoTotal number of physical...
View Article