1

I left my default GPU setting at 64. Will this affect my installed packages in a negative way? I have a raspberry pi 3 and I am getting the hang of things so if there is a better setting I would like to know what it is and why? Thank you in advance!

Pismurf
  • 313
  • 1
  • 14
  • The Pi has thousands of default settings. Do you plan on checking each default? – joan Apr 20 '17 at 07:57
  • Maybe...maybe not, the more I earn and the better I get I may be curious as to what changes would be positive or negative. Is there something wrong with that approach to learning? – Pismurf Apr 20 '17 at 08:02
  • @Pismurf There's nothing inherently wrong with this approach, but be prepared for most changes made out of pure curiosity and without a specific goal in mind to have a negative effect. – Dmitry Grigoryev Apr 20 '17 at 10:05

1 Answers1

3

The setting doesn't affect "installed packages" specifically, but affects the amount of memory you have available for graphics operations and how much system RAM you're left with.

You need at least 16 MB of graphics memory for the system to run at all. That's also enough for a 1920x1080 16-bit color display, or even 32-bit color (though graphics memory might get a bit tight there). Graphics operations that use the GPU, such as video decoding may want more GPU memory. The biggest use of graphics memory would typically be games, especially 3D games with a lot of textures to load in to memory.

More system RAM is always a good thing; even if you have plenty to run your programs, "unused" RAM will be used to cache disk (SD card) data, giving you faster access to files in many cases. There are a variety of different tools available to help monitor how much memory is currently in use, but I find htop (in the Raspbian package of the same name) to be the most convenient.

It's perfectly safe to play around with your memory split and see what the effects are. The answers to What is the optimum split of main versus GPU memory? will be helpful to you here.

Dmitry Grigoryev
  • 26,688
  • 4
  • 44
  • 133
cjs
  • 833
  • 1
  • 6
  • 15
  • Thank you for the response. I was using noob at first but I mirrored Raspian and expanded the SD card and it is a notable difference. I am no longer intimidated knowing that if i am backed up I can experiment tolearn more. Thanks again! – Pismurf Apr 24 '17 at 03:49