Re: non ascii character

2025-08-02 Thread Todd Zullinger
Patrick Dupre via users wrote: > I used > grep -axv '.*' > > Seems OK You might want to check what 'file -i /path/to/your/file' reports. Running a quick test, it seems gedit (and the newer Gnome text editor app) both do rather poorly when it comes to opening files which are in another charset.

Re: Working with secureboot

2025-07-22 Thread Todd Zullinger
Robert McBroom via users wrote: > On 7/21/25 5:05 PM, Todd Zullinger wrote: >> The one which has the hostname should differ between each >> host, I would think. :) > > Sharing /boot/efi between the installs is apparently the > problem. Even though the hostname is different

Re: Working with secureboot

2025-07-21 Thread Todd Zullinger
Robert McBroom via users wrote: > On 7/18/25 5:54 PM, Todd Zullinger wrote: >> following command, run as root: >> >> mokutil --sb-state > Secure boot is enabled in the bios. Yes fedora recognizes that. >> If it says only "SecureBoot enabled" then try

Re: Updating SELinux alert browser's Bugzilla API key

2025-07-19 Thread Todd Zullinger
Sam Varshavchik wrote: > How do I update setroubleshoot's API key, the one it uses > to create bugzilla bugs. My key has expired, and I can't > figure out how to update it. > > The "Report Bug" option just goes through the motions, and > fails because its API key expired. A very exhaustive > searc

Re: Working with secureboot

2025-07-18 Thread Todd Zullinger
Robert McBroom via users wrote: > The drivers work for two other installed fedora systems > but the new system just goes to nouveau. Leary of doing > something that would break the working systems. Would > think there would be a way to connect to existing > certificates. I don't think I follow you

Re: Working with secureboot

2025-07-17 Thread Todd Zullinger
Tim via users wrote: > On Wed, 2025-07-16 at 13:39 -0400, Robert McBroom via users wrote: >> My understanding was that it was a new password entry > > Todd Zullinger's earlier post said: > >>> You should already have the key, which is stored at >>> /etc/pki/akmods/certs/public_key.der. The "code

Re: Working with secureboot

2025-07-14 Thread Todd Zullinger
Robert McBroom via users wrote: > Didn't get very far > > :~# mokutil --import /etc/pki/akmods/certs/public_key.der > input password: > input password again: > Failed to enroll new keys What does `mokutil --sb-state` (with root privileges) report? It should say SecureBoot enabled. If not, you'l

Re: Working with secureboot

2025-07-14 Thread Todd Zullinger
Robert McBroom via users wrote: > Need to get my NVIDIA DRIVERS  registered. Gnome tells me they are ready and > gives me a code. > > A window opens telling me to restart and enter the code when prompted. > Selecting the button brings up a new window telling me "mokutil --import" > has failed and

Re: Dell Latitude 7420's camera not working on new F42 install

2025-07-14 Thread Todd Zullinger
Ben Matteson wrote: > You can see if the camera on this particular Dell works by installing > the akmod-intel-ipu6 driver from rpmfusion-nonfree. I believe it > requires Secure Boot to be disabled (it builds an unsigned kernel > module). FWIW, the akmods utility gained the ability to sign modules

Re: perl-Alien-Build

2025-07-07 Thread Todd Zullinger
Patrick Dupre via users wrote: > Trying to build rpm package from perl-Alien-Build, I get > RPM build errors: > File not found: > /home/pdupre/rpmbuild/BUILD/perl-Alien-Build-2.84-build/BUILDROOT/usr/lib64/perl5/vendor_perl/auto/* > File not found: > /home/pdupre/rpmbuild/BUILD/perl-Alien

Re: multiple spaces in bash strings.

2025-07-03 Thread Todd Zullinger
Francis Montagnac via users wrote: > On Tue, 1 Jul 2025 21:42:20 -0600 > >> me@road-runner:~$ cat spaces1.bash >> #!/bin/bash > >> $longstring="${startstring} ${longstring}" > > The error is here: Well, `s/The/An/` there. ;) The OP had multiple attempts to work out the issue, but the primary

Re: multiple spaces in bash strings.

2025-07-02 Thread Todd Zullinger
home user via users wrote: > f42 workstation. > > I'm trying to prepend a string and multiple spaces to another string.  I > can't get it to work.  How do I do it?  See 3 attempts below.  I really do > want multiple spaces between the startstring and the longstring. You need to quote the argument

Re: script to loop through dates

2025-06-27 Thread Todd Zullinger
olivares33561 via users wrote: > We can use awk for this too! We can seq like George > pointed out. We use whichever tool as long as the output > looks as I wanted it to look. > > There are two or three options and they all work. Thanks > to all who have responded. As the Perl mongers among

Re: script to loop through dates

2025-06-27 Thread Todd Zullinger
olivares33561 via users wrote: > On Friday, June 27th, 2025 at 8:52 AM, Todd Zullinger > wrote: >> olivares33561 via users wrote: >> >> I'm curious why you'd want the start date printed 4 >> times? > > I have high blood pressure (hypertension). I

Re: F41 /etc/postfix/main.cf file, please

2025-06-27 Thread Todd Zullinger
Robert Moskowitz via users wrote: > You are right, in part, in "working out of the box". And > it is why I went off into left field.  Not necessarily a > bad thing. Indeed. I've learned a lot from wandering around left field. Reminds me of the old quote: Two wrongs don't make a right. But

Re: F41 /etc/postfix/main.cf file, please

2025-06-27 Thread Todd Zullinger
Robert Moskowitz via users wrote: > I want to create a simple howto for local mail delivery with postfix. > I did a LOT with postfix ~7 years ago, and found many of my notes this > morning. > > Thing is that google AI did not show the preferred way to edit main.cf which > is to use "postconf -e 'l

Re: script to loop through dates

2025-06-27 Thread Todd Zullinger
olivares33561 via users wrote: > It does not print start day four times. Almost there. I'm curious why you'd want the start date printed 4 times? To do that, you'd want to move your for loop outside of the while loop, I think. Though there is, as usual, more than one way to do it. ;) I think t

Re: script to loop through dates

2025-06-27 Thread Todd Zullinger
olivares33561 via users wrote: > Dear Will, thanks for your help. I was able to do it. > The following does the job! > -- > #!/bin/bash > start=$1 > end=$2 > > start=$(date -d $(echo $start | sed 's/\./-/g') +%Y%m%d) > end=$(date -d $(echo $end | sed 's/\./-/g') +%Y%m%d) This is a minor imp

Re: postfix setup challenges

2025-06-26 Thread Todd Zullinger
Robert Moskowitz via users wrote: > Or set up postfix local delivery to just use mailbox. > > More googling. The default is mbox. :) You mentioned having to change some postfix settings, perhaps sharing what those were might help? I started a Fedora Workstation 42 Live image, installed mailx an

Re: Getting crontab to send an email

2025-06-26 Thread Todd Zullinger
Samuel Sieb wrote: > On 6/26/25 3:22 PM, Robert Moskowitz wrote: >> Try mailx for starters? >> >> Or does it need more... > > To get the terms right, you need an MDA or LDA, not an MTA. :-) > Something that can do local mail delivery and it seems that there are no > options available other than t

Re: pympress

2025-06-21 Thread Todd Zullinger
Patrick Dupre via users wrote: > python3-pympress-1.8.6-1.fc40.noarch.rpm: Already downloaded If you're running Fedora 40, that's well out of support. If you're not running Fedora 40, then there seems to be something wrong with the repo config you have for this COPR. -- Todd signatur

Re: [Solved] is there a way to disable dnf from ignoring conflicting requests

2025-06-16 Thread Todd Zullinger
Ranjan Maitra via users wrote: > However, trying to eliminate all possibilities led me to > the answer. And that is, it likely was the case that the > tarball that was created and I was using had this outdated > libssl.so.1.1 included inside it. So, I created a new > tarball (with the code that was

Re: Strange problem with chroot

2025-06-16 Thread Todd Zullinger
Robert McBroom via users wrote: > From the Fedora 41 installation > ~]# ld.so --help [...] > Subdirectories of glibc-hwcaps directories, in priority order: >  x86-64-v4 >  x86-64-v3 >  x86-64-v2 None of those say "supported, searched" which indicates it doesn't support x86-64-v2 or newer. Here is

Re: is there a way to disable dnf from ignoring conflicting requests

2025-06-15 Thread Todd Zullinger
Hi, Ranjan Maitra via users wrote: > I have a program called gbuffy which is very old, but used to compile fine in > F41 (and even in F42). > > I am able to create a RPM but I have a strange problem in that while > installing it, I get: > > $ sudo dnf install ../RPMS/x86_64/gbuffy-0.2.8-3.fc4

Re: waterfox rpms?

2025-06-14 Thread Todd Zullinger
ToddAndMargo via users wrote: > All the information necessary to assist me with my question > was provided in my initial post and subsequent posts. > Somewhere you got lost or confused. Would you like me > to go over each of your points above and explain what you > missed point by point? Wow. T

Re: Strange problem with chroot

2025-06-14 Thread Todd Zullinger
Barry Scott wrote: > Run this to find out what your hardware supports: > >ld.so --help You should turn off whatever "helpful" part of your mail chain converts things it thinks are URLs. :) For shell commands, having something stick redirect characters and URLs into them autom

Re: waterfox rpms?

2025-06-13 Thread Todd Zullinger
ToddAndMargo via users wrote: > On 6/13/25 5:51 PM, Todd Zullinger wrote: >> ToddAndMargo via users wrote: >>> On 6/13/25 3:28 PM, ToddAndMargo via users wrote: >>> Open SUSE pulled a "NOTTRUSTED". >> [...] >>> 2) if so, what is the workaround? &

Re: waterfox rpms?

2025-06-13 Thread Todd Zullinger
ToddAndMargo via users wrote: > On 6/13/25 3:28 PM, ToddAndMargo via users wrote: > Open SUSE pulled a "NOTTRUSTED". [...] > 2) if so, what is the workaround? > > # dnf install waterfox-6.5.9-4.1.x86_64.rpm Not sure why you're installing it manually to be honest. I tested it in an F41 container

Re: waterfox rpms?

2025-06-13 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Fri, 2025-06-13 at 14:19 -0700, ToddAndMargo via users wrote: >> Found where I got them from from an old note of mine >> (hawkeye116477). >> >> But I can't seem to get the dnf command correct >> >> >> # dnf config-manager add-repo >> --from-repo=https://download.

Re: DMESG Messages after Sudo DNF Upgrade

2025-06-12 Thread Todd Zullinger
Stephen Morris wrote: > If the systemd warnings are because livesys hasn't been > updated, and with the specified file not being owned by > any package, how do I upgrade livesys given that standard > system version upgrades haven't refreshed it? You can simply remove those initscripts (IIRC, there

Re: After upgrade to F42, mutt + postfix no longer able to send email

2025-06-11 Thread Todd Zullinger
I wrote: > Mutt's default for $sendmail uses /usr/sbin/sendmail. You > can check the value in your mutt, via `:set ?sendmail` and > then verify the path exists. It is likely a symlink to > /etc/alternatives/mta which is then a symlink to something > like /usr/sbin/sendmail.postfix. > > I just in

Re: After upgrade to F42, mutt + postfix no longer able to send email

2025-06-11 Thread Todd Zullinger
Ranjan Maitra via users wrote: >> After an upgrade to F42, I am no longer able to send >> email. When I press "send on mutt" after composing, I get >> >> Error sending message, child exited 127 (Exec error.). >> >> Any suggestions on what the error could be? > > I wanted to add that I upgraded usin

Re: List available packages in a repo

2025-06-06 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Thu, 2025-06-05 at 19:48 -0400, Todd Zullinger wrote: >> Essentially, the list command behaves as though '--installed >> --available' are passed if neither are given. >> > > Well, no. If "--available" is give

Re: List available packages in a repo

2025-06-05 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Thu, 2025-06-05 at 23:27 +0100, Patrick O'Callaghan wrote: >>> My conceptual problem is that this makes no logical sense. If I don't >>> include '--available' than I get a long list of packages which are >>> *not* from the repo I explicitly asked for. This violates t

Re: Failed to download metadata for repo 'pgdg-common'

2025-06-05 Thread Todd Zullinger
John Mellor wrote: > On 04/06/2025 22:58, Sbob wrote: >> I am trying to install PostgreSQL on RHEL10 and getting this error: >> >> Error: Failed to download metadata for repo 'pgdg-common': repomd.xml >> GPG signature verification error: Signing key not found >> >> >> I have tried this: >> >> #

Re: List available packages in a repo

2025-06-04 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Wed, 2025-06-04 at 14:37 -0700, ToddAndMargo via users wrote: >> Whenever I do a "dnf list", I always add >>   ... | grep -i  fragment_of_what_I_am_looking_for >> >> Makes me a happy camper. > > Yes I know. I'm still trying to get my head around the actual logic of

Re: List available packages in a repo

2025-06-04 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Wed, 2025-06-04 at 13:18 -0400, Todd Zullinger wrote: >> Leaving it off makes more sense, IMO. > > Of course. I did know that in fact. :) > Nonetheless when I wanted to list the packages from a specific repo > (rather than everything

Re: List available packages in a repo

2025-06-04 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Wed, 2025-06-04 at 11:25 -0400, Todd Zullinger wrote: >> The man page (dnf5-list) says in the synopsis: >> >>     dnf5 list [options] [...] >> >> and in the examples it shows: >> >>     dnf5 list kernel* >

Re: List available packages in a repo

2025-06-04 Thread Todd Zullinger
Patrick O'Callaghan wrote: > The man page for dnf5 says: > >list > List installed or available packages. > > However it doesn't appear to give any more detail, and if I try it: > > $ dnf list --available fedora.repo > Updating and loading repositories: > Repositories loaded

Re: ssh forward agent

2025-06-03 Thread Todd Zullinger
Chris Adams wrote: > Once upon a time, Tim said: >> Bob Marčan: >>> BTW, it's "sudo -i" >> >> No, it's not. When I said I typed "su -" I meant that I typed "su -". >> >> I'm not sudo-ing when I'm doing a plethora of things, I've become root >> with the "su" command, and using "su -" with the ad

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-06-01 Thread Todd Zullinger
Hi, Ranjan Maitra via users wrote: > On Sun Jun01'25 09:09:55PM, Todd Zullinger wrote: >> 'ln -s' works because it doesn't actually need the target to >> create the link. If you did a build in mock and then looked >> for the target file in the chr

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-06-01 Thread Todd Zullinger
Ranjan Maitra via users wrote: > [As a note, upstream is in trouble because the maintainer > is quite unwell, judging by the ticket responses on the > slimfork site. I hope he recovers well and soon, at least > for his sake.] Yes, I hope they get well soon. > So, I think that there are two option

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-06-01 Thread Todd Zullinger
Ranjan Maitra via users wrote: > Thank you to both! > > OK, dealing with the pam first, here is the problem. > >> >>> Another point: /etc/pam.d/slim uses pam_console.so that is not >>> provided (any more ?) on F42. >> >> The pam_console.so was removed from pam in Fedora 39: >> >> https://fedor

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-06-01 Thread Todd Zullinger
francis.montag...@inria.fr wrote: > On Sun, 01 Jun 2025 07:48:16 +0200 francis.montag...@inria.fr wrote: > >> I don't know slim, but being a display manager, it's him that starts >> Xorg. Look thus for slim traces in the journal, and also in it's >> logfiles: /var/log/slim.log > > I installed sli

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-06-01 Thread Todd Zullinger
Hi, Ranjan Maitra via users wrote: > Btw, I noticed that 1.4.1 has the following as changelog: > > * Adjusted how/when the pseudo-root window is created and removed, in > preparation for handling multiple monitors in SLiM > * Adjusted slimlock to use the panel class in the way it was

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-05-31 Thread Todd Zullinger
Ranjan Maitra via users wrote: > Todd, > > Thank you for this! > > On Sat May31'25 04:18:49PM, Todd Zullinger wrote: >> I know nothing about slim, but that seems like a problem. >> The package does include /var/run/slim and has a >> tmpfiles.d config

Re: F41 -> F42 (openbox+slim: X does not get started)

2025-05-31 Thread Todd Zullinger
Ranjan Maitra via users wrote: > On Sat May31'25 07:48:07AM, francis.montag...@inria.fr wrote: >> Then look at the logs from tty9: journalctl -b, /var/log/Xorg.0.log > > I am able to get into one of these machines and was able to look at > /var/log/Xorg.0.log. > > Here it is: > > https://paste

Re: How to setup certs for https access for Fedora 42?

2025-05-31 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Fri, 2025-05-30 at 17:11 -0700, Samuel Sieb wrote: >> On 5/30/25 3:19 AM, Tim via users wrote: >>> On Thu, 2025-05-29 at 20:05 -0400, Jeffrey Walton wrote: Also see and t

Re: How to setup certs for https access for Fedora 42?

2025-05-29 Thread Todd Zullinger
Michael D. Setzer II via users wrote: > On 29 May 2025 at 18:08, Todd Zullinger wrote: >> And chage the file there means you now have to track future >> changes to it yourself rather than picking them up via the >> normal package updates. > > Don't understand this?

Re: How to setup certs for https access for Fedora 42?

2025-05-29 Thread Todd Zullinger
Barry wrote: > > >> On 29 May 2025, at 16:38, Michael D. Setzer II via users >> wrote: >> >> No need to setup a Virtual Host. Don't know why they don't list this >> option. > > My guess is because almost everyone uses VirtualHost sections. And chage the file there means you now have to track

Re: How to setup certs for https access for Fedora 42?

2025-05-27 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Tue, 2025-05-27 at 19:59 +0930, Tim via users wrote: >>> If you have it all fully automated, it shouldn't hurt to use >>> the shorter lifetime, but for the purposes being discussed >>> here, it _seems_ like a moot point. >> >> I'm not sure I believe in their automat

Re: How to setup certs for https access for Fedora 42?

2025-05-26 Thread Todd Zullinger
Charles Dennett wrote: > On 5/26/25 6:49 AM, Patrick O'Callaghan wrote: >> On Mon, 2025-05-26 at 00:23 -0700, Samuel Sieb wrote: >>> If you want a recognized certificate, you either have to buy one or you >>> can use certbot to get a free one from https://letsencrypt.org/.  You >>> need to remember

Re: How to setup certs for https access for Fedora 42?

2025-05-26 Thread Todd Zullinger
Michael D. Setzer II via users wrote: > On 26 May 2025 at 11:49, Patrick O'Callaghan wrote: >> On Mon, 2025-05-26 at 00:23 -0700, Samuel Sieb wrote: >>> If you want a recognized certificate, you either have to buy one or you >>> can use certbot to get a free one from https://letsencrypt.org/.  You

Re: How to setup certs for https access for Fedora 42?

2025-05-26 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Mon, 2025-05-26 at 00:23 -0700, Samuel Sieb wrote: >> If you want a recognized certificate, you either have to buy one or you >> can use certbot to get a free one from https://letsencrypt.org/.  You >> need to remember to renew it regularly.  I think they're valid

Re: F42: whither xsane-gimp?

2025-05-24 Thread Todd Zullinger
Jeffrey Walton wrote: > On Sat, May 24, 2025 at 12:19 PM Sam Varshavchik > wrote: >> >> In gimp I'm missing the File/Create option to pull an image from a scanner. >> Google results mention the xsane-gimp package, but dnf in F42 knows nothing >> about it. >> >> I did find /usr/share/sane/xsane/do

Re: dev null placement?

2025-05-24 Thread Todd Zullinger
ToddAndMargo via users wrote: >> This worked: >>    ...  > /dev/null 2>&1 > > And it is exactly what Patrick told me to do. I kept > reversing things in my mind. It is well worth reading the Bash documentation on redirection: https://www.gnu.org/software/bash/manual/bash.html#Redirections

Re: How to select text-based "system-upgrade reboot" progress indication?

2025-04-22 Thread Todd Zullinger
Ron Flory via users wrote: > On 4/22/2025 3:40 PM, Samuel Sieb wrote: >> On 4/22/25 2:26 PM, Ron Flory via users wrote: >>> I don't launch my Linux systems into GUI-mode by default If you don't want to use the graphical boot in general, removing `rhgb quiet` (or just `rhgb`) from the kernel comman

Re: qemu-kvm running machine at host shutdown/reboot?

2025-04-05 Thread Todd Zullinger
ToddAndMargo via users wrote: > On 3/28/25 4:49 PM, Samuel Sieb wrote: >> On 3/28/25 2:41 PM, ToddAndMargo via users wrote: >>> What happens to a running qemu-kvm virtual machine >>> when the host shuts down or reboots? >>> >>> Does the hypervisor issue a shutdown to the VM? >>> Or freeze and save

Re: SOLVED - Re: follow-up: searching a directory sub-tree.

2025-03-27 Thread Todd Zullinger
home user via users wrote: > On 3/26/25 8:02 PM, home user via users wrote: >> On 3/26/25 7:40 PM, Sam Varshavchik wrote: >>> home user via users writes: > >> By the way, grep's behavior suggests that the order of >> the options matters.  I did not expect that.  Does the >> order of the options rea

Re: Errors in DMESG After System Update

2025-03-16 Thread Todd Zullinger
Stephen Morris wrote: >     Just a query first off, why do I need to run dmesg under sudo for it to > produce its output? In Fedora 39 (or there about), the CONFIG_SECURITY_DMESG_RESTRICT kernel config was changed. The commit in the Fedora kernel source tree provides some useful details¹: Tu

Re: Turning off current directory display in a terminal window

2025-03-12 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Wed, 2025-03-12 at 15:48 +0100, Marco wrote: >> On 12.03.2025 10:42 Robert Moskowitz wrote: >> >>> How might I turn off (or change) the display of the current path in a >>> terminal window? >> >> That is being controlled by $PS1 in bashrc (or the config of another

Re: Turning off current directory display in a terminal window

2025-03-12 Thread Todd Zullinger
Robert Moskowitz wrote: > How might I turn off (or change) the display of the current path in a > terminal window? > > For example I have one terminal window with: > > rgm@LX140e-3:~/data/htt/Projects/Critical/drafts/draft-ietf-drip-rid/dki-try2$ > > That is the whole line is taken up with the c

Re: dnf behavior

2025-03-02 Thread Todd Zullinger
Paolo Galtieri wrote: > Folks, >  a long time ago I installed a number of i686 packages on my system.  I now > want to remove them.  When I try to remove one particular package I get some > unexpected behavior. > > I do > > dnf remove pixman.i686 > > and I get: > > Package A

Re: Which package to file a bug against for the Live ISO?

2025-02-04 Thread Todd Zullinger
Jeffrey Walton wrote: > On Tue, Feb 4, 2025 at 7:41 AM Richard Shaw > wrote: >> I agree that Gparted would be good to have but I just use >> System Rescue CD in these situations. > > The Live ISO's come with fdisk, but not gdisk. If a tool > is going to be supplied on x86_64, it should be gdisk >

Re: Update failure in Fedora 40

2025-01-23 Thread Todd Zullinger
Robert Nichols via users wrote: > I am trying to upgrade my laptop to Fedora 41, but I cannot get a clean > update state in the current Fedora 40. I ran "dnf update" successfully and it > installed many updates including a new kernel. After a reboot, much to my > surprise dnfdragora reported 18

Re: rclone on F41: mounting proton drive

2025-01-12 Thread Todd Zullinger
Ranjan Maitra via users wrote: > Thanks for the clarifications and explanations! What would > you suggest for mounting a Proton drive. I basically want > to copy my files out of it. Unfortunately, I don't have any direct experience with Proton Drive. Hopefully someone else will be able to help.

Re: rclone on F41: mounting proton drive

2025-01-12 Thread Todd Zullinger
Ranjan Maitra via users wrote: > On Sun Jan12'25 01:08:52PM, Todd Zullinger wrote: >> Per https://bugzilla.redhat.com/2336979#c1: >> >>> Backend is disabled for now >>> https://src.fedoraproject.org/rpms/rclone/blob/rawhide/f/rclone.spec#_6 >> > >

Re: rclone on F41: mounting proton drive

2025-01-12 Thread Todd Zullinger
Ranjan Maitra via users wrote: > According to the manpage for Rclone, it seems to me that I > an option with a number for mounting Proton drive using > rclone on F41 (when we get to Storage). However, I tried > both v1.67.0 and v1.68.2 (that is on updates-testing) but > I can not find this option.

Re: experimental jit support in python 3.13?

2025-01-11 Thread Todd Zullinger
Neal Becker wrote: > Thanks, but just to verify I asked chatgpt how to tell if it was enabled at > compile time and it suggested: > import sysconfig > print(sysconfig.get_config_var("WITH_EXPERIMENTAL_FOO")) > which prints "None". I guess if I needed any more confirmation that things like ChatGPT

Re: experimental jit support in python 3.13?

2025-01-10 Thread Todd Zullinger
Neal Becker wrote: > I believe experimental jit support in python 3.13 needs to > be enabled both at compile time and at runtime. Does > Fedora's python3.13 have this enabled? Knowing nothing about this, I searched the fine web and checked the Python 3.13 release notes which explain this and how

Re: Colorized vtty text...

2024-12-30 Thread Todd Zullinger
Felix Miata wrote: > dnf repolist enabled no longer works, and neither dnf5 > repolist enabled. As dnf5 is a major rewrite, many of the options are different than they were in previous dnf releases. Running `dnf -h` and `dnf repolist -h` are worth while. The latter reports: Usage: dnf

Re: OT: Question on winehq-devel and wine-devel

2024-12-15 Thread Todd Zullinger
Michael D. Setzer II via users wrote: > On machines with Fedora 40 it updated fine. > wine-devel-10.0.rc2-1.1.x86_64 > winehq-devel-10.0.rc2-1.1.x86_64 > > But on Fedora 41 machines it finds the winehq-devel rc2, but > reports that nothing provides the wine-devel rc2? > > Only shows the wine-dev

Re: Non-sensical DNF Functionality

2024-12-06 Thread Todd Zullinger
Stephen Morris wrote: > Yes, but this still highlights the final question as "sudo dnf download > symlinks-1.7-11.fc41.src" does the download but as shown above "sudo dnf > install symlinks-1.7-11.fc41.src" won't do the install. > > How do I find where the source has been installed to when under d

Re: Fedora 41 systemd or its dependencies now includes qemu

2024-12-04 Thread Todd Zullinger
Dave Close wrote: > Patrick Mansfield wrote: > >> Why does the most recent systemd update pull in qemu? >> That seems excessive. >> >> Currently running Fedora 41 with systemd version 256.8-1, >> looks like the update moves me to systemd version >> 256.9-2. https://bugzilla.redhat.com/show_bug.cg

Re: Bash initialization

2024-12-01 Thread Todd Zullinger
Will McDonald wrote: > On Sun, 1 Dec 2024 at 17:10, Patrick O'Callaghan > wrote: > >> On Sun, 2024-12-01 at 11:16 -0500, Todd Zullinger wrote: >>> One thing which is new is the bash-color-prompt package was >>> added. This installs /etc/profile.d/b

Re: Bash initialization

2024-12-01 Thread Todd Zullinger
Hi, GianPiero Puccioni wrote: > I just upgraded to F40 and my bash prompt has changed, I > have it set up in .bash_profile and it worked before. > > I thought that the default config /etc/profile and > /etc/bashrc were read first and than the user > .bash_profile and .bashrc so you can change the

Re: F41 DNF bogus error

2024-11-23 Thread Todd Zullinger
Go Canes wrote: > I have not upgraded to F41 but from what I have seen on the list, it > seems to me that: > 1) dnf5 is implemented in python > 2) dnf5 is using "argparse" to parse command line options > 3) dnf5 is using "argparse subparsers" to implement the dnf5 commands It is true that dnf5 par

Re: Python 2 to 3 conversion

2024-11-20 Thread Todd Zullinger
Andras Simon wrote: > Le mar. 19 nov. 2024, 16:16, Todd Zullinger a écrit : > >> [...] >> >> ¹ I'm sure many people swear by pip, but I think it's barely >> better than running `curl ... | bash` to install things, >> which I consider to be a bad

Re: Python 2 to 3 conversion

2024-11-20 Thread Todd Zullinger
Jeffrey Walton wrote: > On Tue, Nov 19, 2024 at 10:16 AM Todd Zullinger wrote: >> ¹ I'm sure many people swear by pip, but I think it's barely >> better than running `curl ... | bash` to install things, >> which I consider to be a bad practice. > > cURL

Re: Python 2 to 3 conversion

2024-11-19 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Tue, 2024-11-19 at 14:01 +, Will McDonald wrote: >> On Tue, 19 Nov 2024 at 14:00, Will McDonald wrote: >> >>> On Tue, 19 Nov 2024 at 13:45, Patrick O'Callaghan >>> wrote: >>> I'm attempting to convert a small Python-2 script to Python-3. >>> >> By

Re: Python 2 to 3 conversion

2024-11-19 Thread Todd Zullinger
Go Canes wrote: > On Tue, Nov 19, 2024 at 8:45 AM Patrick O'Callaghan > wrote: >> >> I'm attempting to convert a small Python-2 script to Python-3. > > How small? It might be easy to do by-hand. I.e., if it is aborting > on things like "print 'something'", that just needs to be changed to > "pr

Re: Adding a repo using dnf / signal-desktop

2024-11-18 Thread Todd Zullinger
Max Pyziur wrote: >> On 11/18/2024 4:01 AM EST Barry wrote: >>> On 18 Nov 2024, at 02:32, Max Pyziur wrote: >>> >>> With the recent upgrade from Fedora 40 to Fedora 41, I >>> lost signal-desktop. The repo as listed for the F40 >>> version is: >>> >>> Signal Messaging Devel Project (Fedora_40) >

Re: DNF Group Issue

2024-11-11 Thread Todd Zullinger
Stephen Morris wrote: >     While we are on this groups topic, I used to be able to issue commands > dnf grouplist and dnf groupinstall as alternatives to dnf group list and dnf > group install, but the first two commands don't work anymore, was this a > deliberate alias removal and if so why? It

Re: Remove disk encryption in Maintenance Mode

2024-11-08 Thread Todd Zullinger
Roger Heflin wrote: > I am not sure what version mine last worked on. I would guess the > default changed on 39 or 40. > > What fixed it for me (type plain password from stdin) was adding > --hash ripemd160 (they appear to have changed the default hash, BAD > developer). > > Guessing related to

Re: dnf5 skip-broken

2024-10-23 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Wed, 2024-10-23 at 04:39 -0700, ToddAndMargo via users wrote: >> On 10/23/24 02:54, Patrick O'Callaghan wrote: >>> Yet another reason to be discussing this on the Test list. >> >> They are not very responsive over there. > > They'll still want to hear about bugs. A

Re: dnf5 skip-broken

2024-10-23 Thread Todd Zullinger
ToddAndMargo via users wrote: > On 10/22/24 2:04 AM, ToddAndMargo via users wrote: >> What replaces --skip-broken in dnf5? >> >> # dnf --releasever=40 --skip-broken upgrade >> Unknown argument "--skip-broken" for command "dnf5". Add "--help" for >> more information about the arguments. [...] > It

Re: terminal open errors

2024-10-23 Thread Todd Zullinger
ToddAndMargo via users wrote: > On 10/22/24 16:11, ToddAndMargo via users wrote: >> Hi All, >> >> Fedora 40 (perhaps) >> bash-completion-2.11-14.fc40.noarch >> >> When I open a (bash) terminal, I get the following errors >> >> bash: _comp_deprecate_func: command not found >> bash: _comp_deprecat

Re: terminal open errors

2024-10-22 Thread Todd Zullinger
ToddAndMargo via users wrote: > Fedora 40 (perhaps) > bash-completion-2.11-14.fc40.noarch > > When I open a (bash) terminal, I get the following errors > [...] > bash: _comp_deprecate_func: command not found > bash: _comp_deprecate_var: command not found Searching the fine web tells you that thi

Re: Apache suspend/resume (again)

2024-09-22 Thread Todd Zullinger
Chris Adams wrote: > Once upon a time, Patrick O'Callaghan said: >> On suspend: >> Sep 09 01:01:44 Bree systemd[1]: Starting systemd-suspend.service - System >> Suspend... >> Sep 09 01:01:44 Bree systemd[1]: httpd.service: Sent signal SIGWINCH to main >> process 332400 (httpd) on client request.

Re: Apache suspend/resume (again)

2024-09-22 Thread Todd Zullinger
francis.montag...@inria.fr wrote: > On Sun, 22 Sep 2024 12:16:59 +0100 Patrick O'Callaghan wrote: > >> I enabled httpd.socket (and made no other changes), did a daemon- >> reload, then manually stopped Apache, but connecting to it doesn't >> restart it again. > > You need to start httpd.socket,

Re: Apache suspend/resume (again)

2024-09-21 Thread Todd Zullinger
Patrick O'Callaghan wrote: > 1. I run httpd via systemd for a small personal web service. This > works. > > 2. I suspend my system overnight and wake it automatically in the > morning). This turns out to be irrelevant, because the problem reported > here occurs even when I do it manually. > > 3.

Re: I need grep . help

2024-09-10 Thread Todd Zullinger
Patrick O'Callaghan wrote: > On Mon, 2024-09-09 at 22:32 -0400, Jon LaBadie wrote: >> Double and single quotes seem equivalent here.  But note that inside >> single quotes the backslash is always literal, not special, while inside >> double quotes it depends on the character following the backslash

Re: I need grep . help

2024-09-09 Thread Todd Zullinger
ToddAndMargo via users wrote: > Hi All, > > I am literally looking for "9.4.5" with grep. Grep thinks > I want the dots to be wild cards. What am I doing wrong? > > $ curl -L "https://sourceforge.net/projects/crystaldiskinfo/files/"; -o - | > grep -i '9.4.5' To take another tangent, the curl `

Re: Fedora 40 server - /etc/systemd/*.conf files missing etc

2024-08-10 Thread Todd Zullinger
I wrote: > These files are marked %ghost to prevents them from being > removed *if they existed and were modified* prior to commit > 4c7acde (Do not remove modified config files, 2023-12-13)¹ > on the f40 branch of the systemd package. > > ¹ https://src.fedoraproject.org/rpms/systemd/c/4c7acde An

Re: Fedora 40 server - /etc/systemd/*.conf files missing etc

2024-08-10 Thread Todd Zullinger
Franta Hanzlík via users wrote: > And I also lived in the fact that it is not enough for the package file > to be marked as config - for the verification to pass if it is missing. > I thought they must have some "phantom" attribute or something similar. > I have to look into it more closely... Th

Re: key updating (was: Signal-Desktop & nodejs-electron GPG key problem)

2024-08-08 Thread Todd Zullinger
Tim via users wrote: >> If you remove the key and run dnf again, it should prompt >> you to install the current key, which will (hopefully) work. >> >> In other words: >> >> $ sudo rpm -e gpg-pubkey-17280ddf > > I've encountered that kind of thing before, but why does it require > manual int

Re: Signal-Desktop & nodejs-electron GPG key problem

2024-08-07 Thread Todd Zullinger
I wrote: > Max Pyziur wrote: >> >> Greetings, >> >> When updating via dnf update I get the following error messages: >> The GPG keys listed for the "Signal Messaging Devel Project (Fedora_40)" >> repository are already installed but they are not correct for this package. >> Check that the correct

Re: Signal-Desktop & nodejs-electron GPG key problem

2024-08-07 Thread Todd Zullinger
Max Pyziur wrote: > > Greetings, > > When updating via dnf update I get the following error messages: > The GPG keys listed for the "Signal Messaging Devel Project (Fedora_40)" > repository are already installed but they are not correct for this package. > Check that the correct key URLs are conf

Re: Unable to build Fedora own package (samba): Empty %files file debugsourcefiles.list

2024-08-04 Thread Todd Zullinger
Franta Hanzlík via users wrote: > When trying rebuild RPM package from Fedora repo, I ends with error: > > $ dnf download --source samba > > $ rpm -Uv samba-4.20.2-1.fc40.src.rpm > > $ rpmbuild -ba samba.spec > ... (some ~18 MB and ~24000 lines output) [...] > Processing files: samba-debugsource

Re: logrotate service failing

2024-07-20 Thread Todd Zullinger
Paolo Galtieri wrote: > It's interesting that both packages are available on F39. > Is there a reason to have both?  And if only one should be > installed which? It's not really different than having multiple web browsers or desktop environments. Some folks like rsyslog, some like syslog-ng. You

  1   2   3   4   5   6   >