I have a raspberry pi 2 with ubuntu sever installed and need to know how to lower the gpu settings from 64 megs to 16 megs.
Ubuntu Server does not come with raspi-config installed.
This is an option set in /boot/config.txt, presuming Ubuntu mounts the first partition there:
gpu_mem=16 It may be mounted on a slightly different path in a subdirectory of /boot, try find /boot config.txt.1 Also, because it is in the small first partition on the card formatted vfat, you should be able to access it from any computer.
You need to reboot for any changes in config.txt to take effect.
Ubuntu Server does not come with raspi-config installed.
It's just a shell script and currently can be downloaded from: https://github.com/RPi-Distro/raspi-config
mount | grep mmcblk0, since /dev/mmcblk0 is the SD card, and it's partitions are /dev/mmcblk0p1 (the boot partition), /dev/mmcblk0p1, etc. If mmcblk0p1 isn't there, just mount it yourself.config.txt may not actually be required, but I would be very surprised if it were not there. In any case, try find /boot bootcode.bin, since that does need to be there. If it isn't, the boot partition can be mounted wherever and accessed, it is the first partition on the drive, /dev/mmcblk0p1, I've edited in an easier way to find that above.