View Single Post
int_ua's Avatar
Posts: 676 | Thanked: 1,067 times | Joined on Jul 2010 @ Kyiv, Ukraine
#15
Originally Posted by Nobless View Post
I read it and I checked old thread but that instructions is very very old if you talking about that instructions in the first post If someone could create video and upload how to install it will be much clearly
The instructions still apply for 12.10, little has changed
Originally Posted by riv64 View Post
update-initramfs -c -k $(ls /lib/modules)
Thanks, I'll give it a try Update: but what if there will be multiple kernels?

Update 2:
Code:
kernels=$(ls /lib/modules)
kernel_version=$(basename ${kernels[-1]})
... I clearly don't like update-initramfs laziness.


Update 3: aargh


Update 4:
Code:
kernel_version=$(ls -t1 /lib/modules | head -n1)

Last edited by int_ua; 2012-09-25 at 17:23.
 

The Following 3 Users Say Thank You to int_ua For This Useful Post: