On 28/04/2020 19.30, Per Jessen wrote:
Marc Chamberlin wrote:
Hi all who have pitched in to help, thank you and thanks Per Jessen for summarizing for me! Wow I didn't think I would stir up such a discussion ruckus! ;-) I will answer some of the questions that have been asked but it sounds like I should just resign myself to doing another upgrade to 15.2.
Carlos' suggestion of just upgrading the kernel to whatever is currently in 15.2 sounds good. I think that'll give you exactly what you're after, 'mkiss'.
I will submit a bug report also but doesn't sound like it will do much good LOL,
It is a bit late in the game for 15.1, yeah, and it looks like it was already spotted by someone.
You can simply download the 15.2 kernel as an RPM, and install it with rpm or zypper.
The way I do it is: Create directory to use as repository. Say, "/data/LocalRPMs_15.1-15.2-kernel/". cd to it, write this script: #!/bin/bash echo echo "****************** Processing oss/64" echo lynx -listonly -dump -nonumbers "http://download.opensuse.org/distribution/leap/15.2/repo/oss/x86_64" > 0list_1 uniq 0list_1 0list_2 grep -e "kernel.*rpm\|nfs-kernel.*rpm\|virtualbox.*rpm" 0list_2 | grep -v "\.mirrorlist\|.drpm" > 0list_3 aria2c --continue --allow-overwrite=false --auto-file-renaming=false --input-file=0list_3 echo echo "****************** Processing oss/noarch" echo lynx -listonly -dump -nonumbers "http://download.opensuse.org/distribution/leap/15.2/repo/oss/noarch/"/ > 0list_1 uniq 0list_1 0list_2 grep -e "kernel.*rpm\|nfs-kernel.*rpm\|virtualbox.*rpm" 0list_2 | grep -v "\.mirrorlist\|.drpm" > 0list_3 aria2c --continue --allow-overwrite=false --auto-file-renaming=false --input-file=0list_3 echo echo "****************** Processing update/oss/64" echo lynx -listonly -dump -nonumbers "http://download.opensuse.org/update/leap/15.2/oss/x86_64/" > 0list_1 uniq 0list_1 0list_2 grep -e "kernel.*rpm\|nfs-kernel.*rpm\|virtualbox.*rpm" 0list_2 | grep -v "\.mirrorlist\|.drpm" > 0list_3 aria2c --continue --allow-overwrite=false --auto-file-renaming=false --input-file=0list_3 echo echo "****************** Processing update/oss/noarch" echo lynx -listonly -dump -nonumbers http://download.opensuse.org/update/leap/15.2/oss/noarch/ > 0list_1 uniq 0list_1 0list_2 grep -e "kernel.*rpm\|nfs-kernel.*rpm\|virtualbox.*rpm" 0list_2 | grep -v "\.mirrorlist\|.drpm" > 0list_3 aria2c --continue --allow-overwrite=false --auto-file-renaming=false --input-file=0list_3 rm *meta4 *.aria2 Then run it. Then, add that repo using yast or zypper. Finally, open up YaST and switch to this new repo. Each time you want to update the machine, run that script first. -- Cheers / Saludos, Carlos E. R. (from 15.1 x86_64 at Telcontar)