From 84b8295f508b7c8c5ffd11612dc4c655bcb77257 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Sun, 13 May 2018 17:27:52 +0000 Subject: [PATCH] Rename bzImage to vmlinuz --- debian9-x86_64.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian9-x86_64.sh b/debian9-x86_64.sh index 26cf178..5c682cd 100644 --- a/debian9-x86_64.sh +++ b/debian9-x86_64.sh @@ -24,10 +24,13 @@ echo 'deb http://deb.debian.org/debian stretch-backports main' > /etc/apt/source apt-get update wget -O /tmp/linux-image-4.14.24-mptcp-64056fa.amd64.deb http://www.openmptcprouter.com/kernel/linux-image-4.14.24-mptcp-64056fa.amd64.deb wget -O /tmp/linux-headers-4.14.24-mptcp-64056fa.amd64.deb http://www.openmptcprouter.com/kernel/linux-headers-4.14.24-mptcp-64056fa.amd64.deb +cd /boot +for file in bzImage* ; do mv $file ${file/bzImage/vmlinuz} ; done #apt-get -y install linux-mptcp dpkg -i /tmp/linux-image-4.14.24-mptcp-64056fa.amd64.deb dpkg -i /tmp/linux-headers-4.14.24-mptcp-64056fa.amd64.deb + #apt -t stretch-backports -y install shadowsocks-libev ## Compile Shadowsocks wget -O /tmp/shadowsocks-libev-3.1.3.tar.gz http://github.com/shadowsocks/shadowsocks-libev/releases/download/v3.1.3/shadowsocks-libev-3.1.3.tar.gz