Menu Close

Script To Upgrade Kernel To v3.2-rc7-precise For Ubuntu 11.10

Here is another script for those who like to test new kernels. As always … use on our own risk it might break your system. Works fine for me on my Dell Intel® Coreâ„¢ i7 CPU 920 @ 2.67GHz × 8 with an GeForce GT 220/PCI/SSE2, 3.9 GiB memory, 32 bit system. Probably won’t work with ATI cards.


First download the file and extract the content into your download folder. After that make the file executable using the following command line in a terminal window (press Ctrl+Alt+T to open a terminal window):

For 32 bit systems:
chmod +x Downloads/upgrade-kernel-to-3.2-rc7-precise-32bit

For 64 bit systems:
chmod +X Downloads/upgrade-kernel-to-3.2-rc7-precise-64bit


To run the script copy+paste the following line:

For 32 bit systems:
sudo ./Downloads/upgrade-kernel-to-3.2-rc7-precise-32bit

For 64 bit systems:
sudo ./Downloads/upgrade-kernel-to-3.2-rc7-precise-64bit


Download the script for 32 bit systems
Download the script for 64 bit systems

0 0 votes
Article Rating
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

5 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Luis Gonzalez
Luis Gonzalez
12 years ago

There’s alway a mistake to make the script executable for 32bits system. Download folder is wrote with 2 “W”.

Thanks for these scripts. Are very usefull…

Daniel Fletcher
Daniel Fletcher
12 years ago

You can also merge your scripts into one by so:

if $(uname -a | grep ‘x86_64’); then
#insert your 64-bit script here
else
#insert your 32-bit script here
fi