
Anything that can get more complicated will get more complicated. Boot loaders seem to be an example. It used to be straightforward to read /boot/efi/EFI/fedora/grub.cfg. Now, building the list of kernels for the menu is farmed out to blscfg (a grub module). I needed to have a Fedora box default to booting a kernel that isn't the latest (because the latest cannot bring up the display on my computer). 1. I needed to make updates not delete the working kernel. Normally updates keep only the last three kernels. As of today, two are duds. Fix: change /etc/dnf/dnf.conf's installonly_limit from 3 to 0 2. Find the list of kernels known to grub: sudo ls /boot/loader/entries/*.conf 3. set the default to one of those. Use the filename, without the directory and without the .conf sudo grub2-set-default 2733f1c892a5422c98bdb188c4f62737-5.10.9-201.fc33.x86_64 I don't know how long this sticks.

On 2/8/21 4:01 PM, D. Hugh Redelmeier via talk wrote:
Anything that can get more complicated will get more complicated. Boot loaders seem to be an example.
It used to be straightforward to read /boot/efi/EFI/fedora/grub.cfg. Now, building the list of kernels for the menu is farmed out to blscfg (a grub module).
I needed to have a Fedora box default to booting a kernel that isn't the latest (because the latest cannot bring up the display on my computer).
1. I needed to make updates not delete the working kernel. Normally updates keep only the last three kernels. As of today, two are duds. Fix: change /etc/dnf/dnf.conf's installonly_limit from 3 to 0
2. Find the list of kernels known to grub: sudo ls /boot/loader/entries/*.conf
3. set the default to one of those. Use the filename, without the directory and without the .conf sudo grub2-set-default 2733f1c892a5422c98bdb188c4f62737-5.10.9-201.fc33.x86_64
I don't know how long this sticks.
Normally I don't play around with grub but from memory default settings are either a) written forever or b) until a new kernel or grub is installed. I would doubt it's the second as that's rare i.e. I've also never seen it but if your talking kernel packages it may occur from memory. Sometimes package managers will overwrite the default kernel if it's a newer version then any installed. Maybe this helps a little, Nick
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

On Mon, 8 Feb 2021 at 16:01, D. Hugh Redelmeier via talk <talk@gtalug.org> wrote:
Anything that can get more complicated will get more complicated. Boot loaders seem to be an example.
It used to be straightforward to read /boot/efi/EFI/fedora/grub.cfg. Now, building the list of kernels for the menu is farmed out to blscfg (a grub module).
I needed to have a Fedora box default to booting a kernel that isn't the latest (because the latest cannot bring up the display on my computer).
1. I needed to make updates not delete the working kernel. Normally updates keep only the last three kernels. As of today, two are duds. Fix: change /etc/dnf/dnf.conf's installonly_limit from 3 to 0
2. Find the list of kernels known to grub: sudo ls /boot/loader/entries/*.conf
3. set the default to one of those. Use the filename, without the directory and without the .conf sudo grub2-set-default 2733f1c892a5422c98bdb188c4f62737-5.10.9-201.fc33.x86_64
I don't know how long this sticks.
A couple comments: - I think raw GRUB still works from a single .conf file that can be edited by hand. The problem you're seeing is that most distros have built out a complex system to construct and replace that .conf file whenever a new kernel arrives. The assumption is of course that mere mortals shouldn't be touching that config. I learned a lot about GRUB2 configuration at one time, but I don't mess with Fedora's GRUB config system. - Nicholas mentioned the in-place replacement of kernels: I think(?) I've seen that behaviour on Debian with same-version kernels with security updates, but I don't think I've ever seen it for any reason on Fedora. - if you have a separate /boot/ partition (very likely these days) and you're never deleting kernels, you stand a good chance of over-filling that partition and getting into trouble, particularly on Fedora which likes to push a new kernel every couple weeks. You'll want to keep an eye on the space remaining in /boot/ and delete some of the newer kernels you don't need by hand. -- Giles https://www.gilesorr.com/ gilesorr@gmail.com

| From: Giles Orr via talk <talk@gtalug.org> | | - I think raw GRUB still works from a single .conf file that can be | edited by hand. The problem you're seeing is that most distros have | built out a complex system to construct and replace that .conf file | whenever a new kernel arrives. The assumption is of course that mere | mortals shouldn't be touching that config. I learned a lot about | GRUB2 configuration at one time, but I don't mess with Fedora's GRUB | config system. Yes. Fedora follows a proposed standard. I discovered this in boilerplate comments in Fedora's grub.cfg, albeit with an obsolete URL (I submitted a bugzilla about this). <https://systemd.io/BOOT_LOADER_SPECIFICATION/> | - Nicholas mentioned the in-place replacement of kernels: I think(?) I don't think so. But maybe. | I've seen that behaviour on Debian with same-version kernels with | security updates, but I don't think I've ever seen it for any reason | on Fedora. Are you talking about on-the-fly kernel updates? kexec? kGraft/kpatch/ksplice? <https://en.wikipedia.org/wiki/Kexec> They've always seemed scary. | - if you have a separate /boot/ partition (very likely these days) and | you're never deleting kernels, you stand a good chance of over-filling | that partition and getting into trouble, particularly on Fedora which | likes to push a new kernel every couple weeks. You'll want to keep an | eye on the space remaining in /boot/ and delete some of the newer | kernels you don't need by hand. Good point. I see no point in a separate /boot so I never configure one. Is there a point? Does /boot have enough to fsck / before mounting it? /boot/efi is the ESP (EFI System Partition), a dedicated FAT partition that is required by UEFI. Generally kernels are not placed there. So it doesn't grow that much. If you did put the kernel+intramdisk in the ESP, you could probably boot Linux via UEFI without the aid of GRUB. I don't know of distros that do this. It's kind of tempting to cut out a whole layer of complexity. (You may have discussed this on your blog -- I don't remember.)

Howdy! Any experiences with any of the above? Which is my worst choice? Just looking at some stuff.. looking to replace my DELL Vostro 220S 4G machine with something. Cant go to Movies anyMore. GoTa bring the Movie to Me. -steve

Howdy!
Any experiences with any of the above? Which is my worst choice?
Just looking at some stuff.. looking to replace my DELL Vostro 220S 4G machine with something.
Cant go to Movies anyMore.
GoTa bring the Movie to Me.
-steve
Ooops forgot Ubuntu 18.04 Bionic Beaver. This is my last upgrade ever, and the perfect place to stop. -steve
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

| From: steve--- via talk <talk@gtalug.org> | Subject: Re: [GTALUG] HP Z420 + rx5600 + MSI MAG272CQR ? Does HP support linux on its workstations? That would be nice. For some reason AMD video support has seemed slow to settle. Is the rx5600 support solid? I've never needed that much video horsepower. But plenty of people do. | > Just looking at some stuff.. looking to replace my DELL Vostro | > 220S 4G machine with | > something. I take it that it has an Intel Core 2 Duo processor. Yeah, it's probably worth upgrading. On the other hand, if you've lived with that, an middle-of-the-road current machine should be fine. The z420 is probably expensive overkill. Is it old? I saw a review from 2013. Are you buying used? If you don't want to fuss, I kind of like the Lenovo ThinkCentre M75q Tiny computer (but I am having a problem with the WiFi 6 driver): <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> Or if you wish to choose things (like DVD burner) <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> This second thread mentions a deal for the m75q, a Small Form Factor variant that allows more expansion. The m75q has all mod cons. Since you're old too, you probably remember that term. For others: all modern conveniences. WiFi6, some magic USB-c stuff, HDMI (dongle, supplied) USB-3.x, 1G ethernet, support for gobs of RAM. NVMe. I think that it has a 2.5" bay but I'm too lazy to check. Note that HP z series and Lenovo ThinkCentre are not cheap consumer junk. (I don't mind cheap consumer junk.) Monitors are very personal. For me, a decent but inexpensive 40" UltraHD TV beats a 27" monitor every time. Gamers would disagree because the refresh rates can be better on monitors. | > Cant go to Movies anyMore. | > | > GoTa bring the Movie to Me. You will want quiet, then. Not guaranteed with a workstation. You also need to take a little care with the video, depending on your monitor (the rx5600 would be fine). For our household, a separate, non-computer solution is better for watching movies. Example device: a $65 Google ChromeCast with Google TV. We do have a dedicated tiny PC connected to our TV for viewing the few things that our Android TV device does not support. | Ooops forgot Ubuntu 18.04 Bionic Beaver. | | This is my last upgrade ever, and the perfect place to stop. 18.04 is already 2 years stale. Surely 20.04 LTS would be a wiser choice. And more likely to support the rx5600 (just a guess). And don't say never. Not a good way to think about computers. They are kind of disposable (not quite as badly as mobile phones). Planning for the distant future is hard. Perfection is the enemy of getting things done. I know.

On Tue, 9 Feb 2021 at 00:06, D. Hugh Redelmeier via talk <talk@gtalug.org> wrote:
| From: steve--- via talk <talk@gtalug.org>
| Subject: Re: [GTALUG] HP Z420 + rx5600 + MSI MAG272CQR ?
Does HP support linux on its workstations? That would be nice.
For some reason AMD video support has seemed slow to settle. Is the rx5600 support solid?
I've never needed that much video horsepower. But plenty of people do.
| > Just looking at some stuff.. looking to replace my DELL Vostro | > 220S 4G machine with | > something.
I take it that it has an Intel Core 2 Duo processor. Yeah, it's probably worth upgrading. On the other hand, if you've lived with that, an middle-of-the-road current machine should be fine.
The z420 is probably expensive overkill. Is it old? I saw a review from 2013. Are you buying used?
If you don't want to fuss, I kind of like the Lenovo ThinkCentre M75q Tiny computer (but I am having a problem with the WiFi 6 driver): <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> Or if you wish to choose things (like DVD burner) <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> This second thread mentions a deal for the m75q, a Small Form Factor variant that allows more expansion.
The m75q has all mod cons. Since you're old too, you probably remember that term. For others: all modern conveniences. WiFi6, some magic USB-c stuff, HDMI (dongle, supplied) USB-3.x, 1G ethernet, support for gobs of RAM. NVMe. I think that it has a 2.5" bay but I'm too lazy to check.
Note that HP z series and Lenovo ThinkCentre are not cheap consumer junk. (I don't mind cheap consumer junk.)
Monitors are very personal. For me, a decent but inexpensive 40" UltraHD TV beats a 27" monitor every time. Gamers would disagree because the refresh rates can be better on monitors.
| > Cant go to Movies anyMore. | > | > GoTa bring the Movie to Me.
You will want quiet, then. Not guaranteed with a workstation.
You also need to take a little care with the video, depending on your monitor (the rx5600 would be fine).
For our household, a separate, non-computer solution is better for watching movies. Example device: a $65 Google ChromeCast with Google TV. We do have a dedicated tiny PC connected to our TV for viewing the few things that our Android TV device does not support.
| Ooops forgot Ubuntu 18.04 Bionic Beaver. | | This is my last upgrade ever, and the perfect place to stop.
18.04 is already 2 years stale. Surely 20.04 LTS would be a wiser choice. And more likely to support the rx5600 (just a guess).
And don't say never. Not a good way to think about computers. They are kind of disposable (not quite as badly as mobile phones).
Planning for the distant future is hard. Perfection is the enemy of getting things done. I know.
Going to add a few "me too" votes to a couple things Hugh said. Are you a gamer? Because if you're not, the card and the monitor sound like overkill - expensive and not necessary for your declared use case (movies). Keep in mind that retro-gaming doesn't count as "gaming" in this context: retro-games don't require a high-end video card. I haven't purchased a specialty video card in 15 years, and I watch movies frequently on my built-in video cards - works fine up to 1080p, although I admit I see tearing and problems at 4K. The built-ins are also usually a lot easier to get running in Linux for a lower cost. However, like Hugh, I do most of my video watching either on a first gen Apple TV (I got it free ...) that acts as a Netflix box, or on an Asus O!Play Mini, both of which are hooked to my TV. I'd also like to back Hugh's recommendation of a larger and cheaper (or perhaps equally priced) 40" monitor over the 27", unless your eyesight is a lot better than mine. I'm finding larger monitors to be a huge blessing as I get older, and the properties a gamer monitor might provide aren't usually of any use to me. -- Giles https://www.gilesorr.com/ gilesorr@gmail.com

Hi, This week received a HP Z420, 32G RAM, 1TB SATA, 3.0GHz 4 core. Nice machine! Well built / designed. Best $300 i ever spent. I asked them not to install an OS, but it came with Windows 10. Glad it did, the hardware I am looking at has tools that only run on Windoz. Last time I used Windows it was running under OS 2. Documentation says the Z420 runs Linux SUSE, RedHat et al.. The HP Z420 is very quiet running under Windows. It came with a FirePro VP3900 graphics. 2 days later got the MSI MAG272CQR.!! Amazing! got 1920 X 1080 60Hz up and couldn't believe it! Compared to the 19" DELL 1440 X 900 I have been using for 10 years, blew my MIND!! The MAG272 is a bit of overkill, but may want to cross over the gaming side a little, or not, but good to know it is there. Also the 16:9 on 27" is nice, with the 1500mm radius it really is a pleasure to look at from the right distance.. Need a better graphics card to drive the monitor to greater resolution. they are scarce!... But I think I see a rx5600 that could work. Havent tried to boot Linux yet but looking at Ubuntu 20. If they haven't messed it up much more that 18.04... but may have to swallow the mess to get better drivers or something. Will keep the Windows 10, and install Linux on another drive and will make a comparison Will post a summary of the LInux experience. Rumour is the fans may be problem under Linux.... -steve
On Tue, 9 Feb 2021 at 00:06, D. Hugh Redelmeier via talk <talk@gtalug.org> wrote:
| From: steve--- via talk <talk@gtalug.org>
| Subject: Re: [GTALUG] HP Z420 + rx5600 + MSI MAG272CQR ?
Does HP support linux on its workstations? That would be nice.
For some reason AMD video support has seemed slow to settle. Is the rx5600 support solid?
I've never needed that much video horsepower. But plenty of people do.
| > Just looking at some stuff.. looking to replace my DELL Vostro | > 220S 4G machine with | > something.
I take it that it has an Intel Core 2 Duo processor. Yeah, it's probably worth upgrading. On the other hand, if you've lived with that, an middle-of-the-road current machine should be fine.
The z420 is probably expensive overkill. Is it old? I saw a review from 2013. Are you buying used?
If you don't want to fuss, I kind of like the Lenovo ThinkCentre M75q Tiny computer (but I am having a problem with the WiFi 6 driver): <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> Or if you wish to choose things (like DVD burner) <https://forums.redflagdeals.com/lenovo-canada-lenovo-thinkcentre-m75q-tiny-gen-2-amd-ryzen-7-pro-4750ge-win10-4gb-500gb-hdd-570-2438949/> This second thread mentions a deal for the m75q, a Small Form Factor variant that allows more expansion.
The m75q has all mod cons. Since you're old too, you probably remember that term. For others: all modern conveniences. WiFi6, some magic USB-c stuff, HDMI (dongle, supplied) USB-3.x, 1G ethernet, support for gobs of RAM. NVMe. I think that it has a 2.5" bay but I'm too lazy to check.
Note that HP z series and Lenovo ThinkCentre are not cheap consumer junk. (I don't mind cheap consumer junk.)
Monitors are very personal. For me, a decent but inexpensive 40" UltraHD TV beats a 27" monitor every time. Gamers would disagree because the refresh rates can be better on monitors.
| > Cant go to Movies anyMore. | > | > GoTa bring the Movie to Me.
You will want quiet, then. Not guaranteed with a workstation.
You also need to take a little care with the video, depending on your monitor (the rx5600 would be fine).
For our household, a separate, non-computer solution is better for watching movies. Example device: a $65 Google ChromeCast with Google TV. We do have a dedicated tiny PC connected to our TV for viewing the few things that our Android TV device does not support.
| Ooops forgot Ubuntu 18.04 Bionic Beaver. | | This is my last upgrade ever, and the perfect place to stop.
18.04 is already 2 years stale. Surely 20.04 LTS would be a wiser choice. And more likely to support the rx5600 (just a guess).
And don't say never. Not a good way to think about computers. They are kind of disposable (not quite as badly as mobile phones).
Planning for the distant future is hard. Perfection is the enemy of getting things done. I know.
Going to add a few "me too" votes to a couple things Hugh said.
Are you a gamer? Because if you're not, the card and the monitor sound like overkill - expensive and not necessary for your declared use case (movies). Keep in mind that retro-gaming doesn't count as "gaming" in this context: retro-games don't require a high-end video card. I haven't purchased a specialty video card in 15 years, and I watch movies frequently on my built-in video cards - works fine up to 1080p, although I admit I see tearing and problems at 4K. The built-ins are also usually a lot easier to get running in Linux for a lower cost.
However, like Hugh, I do most of my video watching either on a first gen Apple TV (I got it free ...) that acts as a Netflix box, or on an Asus O!Play Mini, both of which are hooked to my TV.
I'd also like to back Hugh's recommendation of a larger and cheaper (or perhaps equally priced) 40" monitor over the 27", unless your eyesight is a lot better than mine. I'm finding larger monitors to be a huge blessing as I get older, and the properties a gamer monitor might provide aren't usually of any use to me.
-- Giles https://www.gilesorr.com/ gilesorr@gmail.com --- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

On Sat., Feb. 13, 2021, 13:26 steve--- via talk, <talk@gtalug.org> wrote:
Havent tried to boot Linux yet but looking at Ubuntu 20. If they haven't messed it up much more that 18.04...
If it's snapd that annoys you (it was for me) it's fairly easy to remove. In 20.10, I think, they made snapd not gum up your mounted filesystem list, but I'm still not a fan. For big messy programs with complex dependencies, AppImages at least don't need system-level installation. snapd is not my friend. Stewart

On Sat., Feb. 13, 2021, 13:26 steve--- via talk, <talk@gtalug.org> wrote:
Havent tried to boot Linux yet but looking at Ubuntu 20. If they haven't messed it up much more that 18.04...
If it's snapd that annoys you (it was for me) it's fairly easy to remove. In 20.10, I think, they made snapd not gum up your mounted filesystem list, but I'm still not a fan.
Well there is a few things... snapd is evil.. so is anything that comes out of systemctl list-units | grep -i apt systemctl list-units | grep -i upgrad systemctl list-units | grep -i unattend unattended apt or upgrades is just evil. DISABLE!. When did this start? broke my chrome on 18.04 LTS. Even server install has unattended-upgrade running. Just bad. -steve
For big messy programs with complex dependencies, AppImages at least don't need system-level installation. snapd is not my friend.
Stewart
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

On 2021-02-15 1:49 p.m., steve--- via talk wrote:
broke my chrome on 18.04 LTS
Ah, you're really not gonna like Ubuntu now, then. Chrome is *only* available as a snap. The deb is a stub that reinstalls snapd and the Chrome snap.

Chromium is a */pain/* to build. If you're not being paid to work on it, it's a low-value, high cost effort. This has caused even some folks to reconsider offering it, except as a binary blob with less functionality than the Chrome binary blob. --dave On 2021-02-15 10:55 p.m., Stewart C. Russell via talk wrote:
On 2021-02-15 1:49 p.m., steve--- via talk wrote:
broke my chrome on 18.04 LTS Ah, you're really not gonna like Ubuntu now, then. Chrome is *only* available as a snap. The deb is a stub that reinstalls snapd and the Chrome snap.
Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
-- David Collier-Brown, | Always do right. This will gratify System Programmer and Author | some people and astonish the rest dave.collier-brown@indexexchange.com | -- Mark Twain

Just installed Ubuntu 20.04. No issues of any kind, seems to work great.. Was easier getting my rx5600 up to full res than on windoz.... checking out some colour linux colour calibration stuff. So.. what is a "good" OS browser? These days. -steve
Chromium is a */pain/* to build. If you're not being paid to work on it, it's a low-value, high cost effort.
This has caused even some folks to reconsider offering it, except as a binary blob with less functionality than the Chrome binary blob.
--dave
On 2021-02-15 10:55 p.m., Stewart C. Russell via talk wrote:
On 2021-02-15 1:49 p.m., steve--- via talk wrote:
broke my chrome on 18.04 LTS Ah, you're really not gonna like Ubuntu now, then. Chrome is *only* available as a snap. The deb is a stub that reinstalls snapd and the Chrome snap.
Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
-- David Collier-Brown, | Always do right. This will gratify System Programmer and Author | some people and astonish the rest dave.collier-brown@indexexchange.com | -- Mark Twain
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

I have been using Vivaldi since the first alpha build as my daily driver, and I am very happy with it. It's built on webkit, so it's compatible with everything. Brave browser is a good one too, I started using it here and there, no issues either. Mauro https://www.maurosouza.com - registered Linux User: 294521 Scripture is both history, and a love letter from God. Em ter., 16 de fev. de 2021 às 14:07, steve--- via talk <talk@gtalug.org> escreveu:
Just installed Ubuntu 20.04. No issues of any kind, seems to work great..
Was easier getting my rx5600 up to full res than on windoz.... checking out some colour linux colour calibration stuff.
So.. what is a "good" OS browser? These days.
-steve
Chromium is a */pain/* to build. If you're not being paid to work on it, it's a low-value, high cost effort.
This has caused even some folks to reconsider offering it, except as a binary blob with less functionality than the Chrome binary blob.
--dave
On 2021-02-15 10:55 p.m., Stewart C. Russell via talk wrote:
On 2021-02-15 1:49 p.m., steve--- via talk wrote:
broke my chrome on 18.04 LTS Ah, you're really not gonna like Ubuntu now, then. Chrome is *only* available as a snap. The deb is a stub that reinstalls snapd and the Chrome snap.
Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
-- David Collier-Brown, | Always do right. This will gratify System Programmer and Author | some people and astonish the rest dave.collier-brown@indexexchange.com | -- Mark Twain
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
--- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk

On Mon, Feb 08, 2021 at 08:54:40PM -0500, steve--- via talk wrote:
Howdy!
Any experiences with any of the above? Which is my worst choice?
Just looking at some stuff.. looking to replace my DELL Vostro 220S 4G machine with something.
Cant go to Movies anyMore.
GoTa bring the Movie to Me.
I wouldn't consider 2560x1440 a convinient resolution for watching movies, given they tend to be 1920x1080 these days. I had enough problems with ATI video cards under linux in the past that I don't even try anymore. Somehow they just never seemed able to write reliable working drivers for any OS no matter how good their hardware was. Maybe they have got it better now. No idea. They do seem to have some open source driver stuff happening which is at least something, although given the size of some of the dumps they do, it makes you wonder if anyone outside can even contribute to it at all. I don't know that particular HP. Might be OK. I have always built my own desktop machines from parts although not lately given I haven't had a reason to upgrade in almost a decade now. I think I may have gone a bit overboard on the last upgrade. -- Len Sorensen

On 2021-02-08 4:01 p.m., D. Hugh Redelmeier via talk wrote:
Anything that can get more complicated will get more complicated. Boot loaders seem to be an example.
It used to be straightforward to read /boot/efi/EFI/fedora/grub.cfg. Now, building the list of kernels for the menu is farmed out to blscfg (a grub module).
I needed to have a Fedora box default to booting a kernel that isn't the latest (because the latest cannot bring up the display on my computer).
1. I needed to make updates not delete the working kernel. Normally updates keep only the last three kernels. As of today, two are duds. Fix: change /etc/dnf/dnf.conf's installonly_limit from 3 to 0
2. Find the list of kernels known to grub: sudo ls /boot/loader/entries/*.conf
3. set the default to one of those. Use the filename, without the directory and without the .conf sudo grub2-set-default 2733f1c892a5422c98bdb188c4f62737-5.10.9-201.fc33.x86_64
I don't know how long this sticks. --- Post to this mailing list talk@gtalug.org Unsubscribe from this mailing list https://gtalug.org/mailman/listinfo/talk
I have to do the same thing on my mythtv station to prevent the 5.10 series of kernels from installing/running. Debian lets you do this by placing specific revision number packages on "hold", disabling further updating. Fedora seems to have the same sort of feature. Can't you use it? https://www.tecmint.com/yum-lock-disable-blacklist-certain-package-update-ve... -- Michael Galea

| From: Michael Galea via talk <talk@gtalug.org> | I have to do the same thing on my mythtv station to prevent the 5.10 series of | kernels from installing/running. Debian lets you do this by placing specific | revision number packages on "hold", disabling further updating. | | Fedora seems to have the same sort of feature. Can't you use it? | https://www.tecmint.com/yum-lock-disable-blacklist-certain-package-update-ve... Good and useful point. I've used this with Ubuntu when Thunderbird grew a bug (actually, it was a library bug, but the effect was the same). I want kernel updates to install. I keep hoping that the bug will be fixed so I need to test each one. But I don't wish to accidentally test them :-) Unfortunately, I've left that fix in the Ubuntu installation because it is so awkward to test. Unlike kernels, most other packages expect only one version to be installed at a time. (I don't count python2 and python3 to be "the same package" in this sense.)
participants (10)
-
D. Hugh Redelmeier
-
Dave Collier-Brown
-
Giles Orr
-
lsorense@csclub.uwaterloo.ca
-
Mauro Souza
-
Michael Galea
-
Nicholas Krause
-
steve@linuxsuite.org
-
Stewart C. Russell
-
Stewart Russell