-
Notifications
You must be signed in to change notification settings - Fork 25
/
update-to-the-last-stable-4.9-22-v1.sh
executable file
·42 lines (24 loc) · 1.36 KB
/
update-to-the-last-stable-4.9-22-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
set -e
#
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK.
#
##################################################################################################################
# latest kernel check the following url
# http://kernel.ubuntu.com/~kernel-ppa/mainline/
# cleaning tmp
[ -d /tmp/kernelupdate ] && rm -rf /tmp/kernelupdate
mkdir /tmp/kernelupdate
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.22/linux-headers-4.9.22-040922_4.9.22-040922.201704120731_all.deb -P /tmp/kernelupdate/
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.22/linux-headers-4.9.22-040922-generic_4.9.22-040922.201704120731_amd64.deb -P /tmp/kernelupdate/
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.9.22/linux-image-4.9.22-040922-generic_4.9.22-040922.201704120731_amd64.deb -P /tmp/kernelupdate/
cd /tmp/kernelupdate
sudo dpkg -i linux*
rm -rf /tmp/kernelupdate
echo "################################################################"
echo "############### Kernel is installed ############"
echo "############### Files have been deleted ############"
echo "########## Reboot and keep your fingers crossed ############"
echo "################################################################"