Skip to content

Instantly share code, notes, and snippets.

@wizardishungry
Last active February 12, 2018 18:49
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wizardishungry/2660808 to your computer and use it in GitHub Desktop.
Save wizardishungry/2660808 to your computer and use it in GitHub Desktop.
Vagrant snippet to set VirtualBox guest CPU count to the number of host cores on Linux or OS X (broken 2018)
gem 'concurrent'
require 'concurrent'
config.vm.provider "virtualbox" do |vb|
v.cpus = Concurrent.physical_processor_count
end
@CpuID
Copy link

CpuID commented Jul 10, 2013

Works well :)

@amberj
Copy link

amberj commented Jul 26, 2013

You can use this snippet:
grep "^processor" /proc/cpuinfo | wc -l
instead of:
awk "/^processor/ {++n} END {print n}" /proc/cpuinfo 2> /dev/null || sh -c 'sysctl hw.logicalcpu 2> /dev/null || echo ": 2"' | awk \'{print \$2}\'

@dmichael
Copy link

Great stuff.

@aygee
Copy link

aygee commented May 9, 2014

You can use this to get the count of physical cores only

grep "^core id" /proc/cpuinfo | sort | uniq | wc -l | tr -d '\n'

@neutrinus
Copy link

or just use nproc.to_i :)

@Trophime
Copy link

Trophime commented Dec 6, 2017

cpus=`nproc`.to_i
cpus = cpus / 2

This becomes problematic when cpus=1. What shall I do to prevent cpus to return 0? Is there some kind of min/max functions somewhere?

@wizardishungry
Copy link
Author

updated for 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment