fstab

2024-06-01 Thread Patrick Dupre via users
Hello, With ext4 filesystems, I used to set ext4noauto,errors=remount-ro1 2 in the fstab. With btrfs FS it does not like the option errors=remount-ro mount: /mnt/backup_2: wrong fs type, bad option, bad superblock on /dev/sdc5, missing codepage or helper program, or other error.

chroot

2024-06-01 Thread Patrick Dupre via users
Hello, To update a system installed on a specific partition that way? (after dnf update --refresh) mount /dev/sdx /mnt/linux chroot /mnt/linux dnf system-upgrade download --releasever=40 Thanks === Patrick DUPRÉ

Re: chroot

2024-06-01 Thread Tom Horsley
On Sat, 1 Jun 2024 17:33:19 +0200 Patrick Dupre via users wrote: > Hello, > > To update a system installed on a specific partition that way? > (after dnf update --refresh) > mount /dev/sdx /mnt/linux > chroot /mnt/linux > dnf system-upgrade download --releasever=40 I wouldn't trust it. I'll ofte

Issue with logrotate and mariadb?? After upgrade to Fedora 40

2024-06-01 Thread Michael D. Setzer II via users
Worked fine with Fedora before 40, but now get message. Line in /etc/logrotate.d/mariadb /usr/bin/mariadb-admin $EXTRAPARAM --local flush-error-log \ flush-engine-log flush-general-log flush-slow-log #OUTPUT #/usr/bin/mariadb-admin: connect to server at 'localhost' failed #error: 'Access de

multiboot/grub2

2024-06-01 Thread Patrick Dupre via users
Hello, I guess that I have an EFI machine ls /boot/efi/EFI/fedora/ -rwx--. 1 root root 112 Mar 19 01:00 BOOTIA32.CSV -rwx--. 1 root root 110 Mar 19 01:00 BOOTX64.CSV -rwx--. 1 root root 673992 Mar 19 01:00 mmia32.efi -rwx--. 1 root root 848080 Mar 19 01:00 mmx64.efi -rwx-

Re: Issue with logrotate and mariadb?? After upgrade to Fedora 40

2024-06-01 Thread Roger Heflin
That would have to have been a mariadb config file/code change to no longer allow root at localhost to access without a password. Based on this change adding the root@localhost type auth on Windows then it should work. https://jira.mariadb.org/browse/MDEV-26715 Those changes were 10.11.0 so I won

Re: chroot

2024-06-01 Thread Roger Heflin
you need to add these mounts to allow full function under a rescue boot+mnt+chroot. mount -o bind /proc /mnt/linux/proc mount -o bind /sys /mnt/linux/sys mount -o bind /dev /mnt/linux/dev mount -o bind /dev/pts /mnt/linux/dev/pts Typed from memory. I have done way too many live cd rescue boots.

Re: fstab

2024-06-01 Thread Roger Heflin
man btrfs But In general I always use defaults for the option and then override any others. And remount-readonly is a default option on ext4 and I don't believe it was ever necessary to supply it. On the above I would use defaults,noauto,nofail On Sat, Jun 1, 2024 at 10:06 AM Patrick Dupre via

Re: chroot

2024-06-01 Thread Go Canes
On Sat, Jun 1, 2024 at 11:34 AM Patrick Dupre via users wrote: > To update a system installed on a specific partition that way? > (after dnf update --refresh) > mount /dev/sdx /mnt/linux > chroot /mnt/linux > dnf system-upgrade download --releasever=40 dnf has "--installroot=". Requires absolute

Re: chroot

2024-06-01 Thread Francis . Montagnac
Hi. On Sat, 01 Jun 2024 13:12:49 -0400 Go Canes wrote: > On Sat, Jun 1, 2024 at 11:34 AM Patrick Dupre via users > wrote: >> To update a system installed on a specific partition that way? >> (after dnf update --refresh) >> mount /dev/sdx /mnt/linux >> chroot /mnt/linux >> dnf system-upgrade down

Re: chroot

2024-06-01 Thread Go Canes
On Sat, Jun 1, 2024 at 2:02 PM wrote: > On Sat, 01 Jun 2024 13:12:49 -0400 Go Canes wrote: > > dnf has "--installroot=". Requires absolute path. No idea if > > it works with system-upgrade. > > I don't see this option in its man page, but since the goal if not to > upgrade the current system, b

Re: chroot

2024-06-01 Thread Francis . Montagnac
On Sat, 01 Jun 2024 20:02:09 +0200 francis.montag...@inria.fr wrote: > On Sat, 01 Jun 2024 13:12:49 -0400 Go Canes wrote: >> On Sat, Jun 1, 2024 at 11:34 AM Patrick Dupre via users >> wrote: >>> To update a system installed on a specific partition that way? >>> mount /dev/sdx /mnt/linux Beware,

Re: chroot

2024-06-01 Thread Patrick Dupre via users
Currently I am hesitating to do chroot The point is the following running grub2-mkconfig I get Found Fedora Linux 38 (Thirty Eight) on /dev/sdc4 but efibootmgr does not the distribution and grub2 does not show it In addition at boot EFI does not offer me the option to boot to this sdc4 partiti

Re: Network install options?

2024-06-01 Thread Jonathan Billings
If you can just point at an ISO, use the Everything boot.iso https://dl.fedoraproject.org/pub/fedora/linux/releases/40/Everything/x86_64/os/images/ If you have a bootloader of some sort, you can download the vmlinuz and initrd.img from here: https://dl.fedoraproject.org/pub/fedora/linux/release

Re: chroot

2024-06-01 Thread Francis . Montagnac
On Sat, 01 Jun 2024 14:16:41 -0400 Go Canes wrote: > On Sat, Jun 1, 2024 at 2:02 PM wrote: >> On Sat, 01 Jun 2024 13:12:49 -0400 Go Canes wrote: >> > dnf has "--installroot=". Requires absolute path. No idea if >> > it works with system-upgrade. >> I don't see this option in its man page, but

Re: chroot

2024-06-01 Thread Patrick Dupre via users
Should I run grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg and not grub2-mkconfig -o /boot/grub2/grub.cfg. ? > To: users@lists.fedoraproject.org > Cc: "Community support for Fedora users" , > "Patrick Dupre" > Subject: Re: chroot > > Currently I am hesitating to do chroot > > The point is the

Re: chroot

2024-06-01 Thread Francis . Montagnac
On Sat, 01 Jun 2024 20:35:35 +0200 Patrick Dupre via users wrote: > Should I run > grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg > and not > grub2-mkconfig -o /boot/grub2/grub.cfg. > ? No: since a few fedora versions, /boot/efi/EFI/fedora/grub.cfg simply redirect to /boot/grub2/grub.cfg. Can y

Re: chroot

2024-06-01 Thread Sam Varshavchik
Patrick Dupre via users writes: Hello, To update a system installed on a specific partition that way? (after dnf update --refresh) mount /dev/sdx /mnt/linux chroot /mnt/linux dnf system-upgrade download --releasever=40 A bunch of other stuff will likely need to be mounted. Pretty much anythi

Re: RAID options during install?

2024-06-01 Thread Alex
> > > We have some documentation about RAID installation. > > - Fedora Server Installation Guide > https://docs.fedoraproject.org/en-US/fedora-server/installation/ > > - Fedora Server interactive local installation -> Raid configuration > > https://docs.fedoraproject.org/en-US/fedora-server/insta

Re: RAID options during install?

2024-06-01 Thread Alex
Hi, Just when I thought my fedora40 server installation via IPMI/VNC was going okay, it stalls at the "Preparing transaction from installation source" step. What happens here that might cause this? When I first started, I could go to console 2 and ping an IP outside the network, so I know routing

Re: RAID options during install?

2024-06-01 Thread Doug Herr
On Sat, Jun 1, 2024, at 12:33 PM, Alex wrote: >> >> We have some documentation about RAID installation. >> >> - Fedora Server Installation Guide >> https://docs.fedoraproject.org/en-US/fedora-server/installation/ >> >> - Fedora Server interactive local installation -> Raid configuration >>

Re: RAID options during install?

2024-06-01 Thread Jonathan Billings
On Jun 1, 2024, at 17:17, Doug Herr wrote: > > On Sat, Jun 1, 2024, at 12:33 PM, Alex wrote: >>> >>> We have some documentation about RAID installation. >>> >>> - Fedora Server Installation Guide >>> https://docs.fedoraproject.org/en-US/fedora-server/installation/ >>> >>> - Fedora Server int

Re: Network install options?

2024-06-01 Thread T.C. Hollingsworth
On Fri, May 31, 2024 at 11:27 PM Samuel Sieb wrote: > On 5/31/24 7:02 PM, T.C. Hollingsworth wrote: > > OVH uses iPXE so you can upload a script that points to any HTTPS > > server, even a public one like https://netboot.xyz/ But PXE doesn't > > provide any kind of graphical access at all, unless

Re: RAID options during install?

2024-06-01 Thread T.C. Hollingsworth
On Sat, Jun 1, 2024 at 12:45 PM Alex wrote: > I don't see anything else on any of the other consoles that would indicate a > problem. Perhaps the installer's log files will be more revealing: https://docs.fedoraproject.org/en-US/quick-docs/anaconda-logging/ > During install, there were repeated

Re: RAID options during install?

2024-06-01 Thread Alex
Hi, >> - Can (should?) I put /boot/efi on RAID5? It lets me choose the option, > >> but then complains and wants it on RAID1. Does it set up RAID1 with a > >> failover? > > > > I was thinking about this thread and just started a test. My thinking > was that /boot/efi is small and thus raid 1 made