Unable to use snd-aloop audio driver in AWS EC2 ubuntu 16.04 instance
On running modprobe on snd-aloop
$modprobe snd-aloop
modprobe: FATAL: Module snd-aloop not found in directory /lib/modules/4.4.0-1052-aws
Kernels in AWS matchine are -
/lib/modules/4.4.0-1049-aws
/lib/modules/4.4.0-1052-aws
/lib/modules/4.4.0-116-generic
Current kernel loaded
$uname -r
4.4.0-1052-aws
"/lib/modules/4.4.0-116-generic" kernel. location - /lib/modules/4.4.0-116-generic/kernel/sound/drivers/snd-aloop.ko
I have already gone through the following doc's
1.https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html - Aws doc guide to change kernels.
I can't recall the other links but i have searched a lot.
Please point me in the right direction. How can i use audio driver sdn-aloop in AWS EC2 Ubuntu 16.04 instance?
Steps to update default kernel boot item (without modification of /boot/grub/menu.lst):
Find needed menu and sub-menu item in grub.cfg:
cat /boot/grub/grub.cfg
For example you can have menu structure like this (default for AWS Ubuntu 16.04):
In this case if you need to load "Ubuntu, with Linux 4.4.0-116-generic" your default boot setting would be "1>2"
Edit default grub file:
vim /etc/default/grub
and set
GRUB_DEFAULT=“1>2”
Run update-grub
reboot now
to take this in effectuname -a
which should give 4.4.0-116-genericAfter this modprobe snd-aloop
should work fine.