Minimal OS with less background process

-1

I am currently doing experiments on L1/L2/L3 cache. Measurement of L1/L2/L3 cache access time fully depends on where is my current data present, and that also depends on background process of OS running in parallel which forcefully evict my data from L1/L2 cache and influence the measurement. So I need a LINUX OS where less background process is running along with OS, so that my data will get more space in cache OR my data will be in cache for more time.

EDIT1 :

Right now I am using Ubuntu 12.04 LTS version, but so many background process is there and that is influencing my outcome.

@ techie007 : I am trying to find access time of L1/L2/L3 cache and try to achieve the result as exact as per Intel document.

Which LINUX OS version should I go for ? Any NON-GUI LINUX ? or Any special OS ?

Thanks in advance.

bholanath

Posted 2014-03-25T18:36:59.347

Reputation: 141

Question was closed 2014-03-26T16:20:32.400

1"Questions seeking product, service, or learning material recommendations are off-topic because they become outdated quickly and attract opinion-based answers. Instead, describe your situation and the specific problem you're trying to solve. Share your research." – Ƭᴇcʜιᴇ007 – 2014-03-25T18:43:07.553

Use the one you like and stop/remove the background processes you don't want or need. – Ƭᴇcʜιᴇ007 – 2014-03-25T18:44:04.733

Answers

0

Maybe an extremely light Linux distribution such as Damn Small Linux would suit your needs.

Another option could be Arch Linux as it's build is well documented and you start with a very basic distribution.

You could then disable all services that are not required, thus making the OS footprint as small as you require.

dkanejs

Posted 2014-03-25T18:36:59.347

Reputation: 675

1thanks for answering. "disable all services" that are not required - means I need to figure it out. How to figure it out to find all services ? Using top command or anything else ? – bholanath – 2014-03-25T18:43:43.150

I included a link to disabling services in my answer but a good place to start would be looking at the startup scripts in "/etc/init.d/". – dkanejs – 2014-03-25T18:47:03.163

1

Also look at How do I prevent Linux services from auto-starting?.

– dkanejs – 2014-03-25T18:48:35.560

1thanks @Geditdk. I will go with Arch linux . Will look into both the link you have provided. – bholanath – 2014-03-25T18:51:32.150