Re: Inhibit sleep from systemd service

2021-03-23 Thread Gordon Messmer
On 3/21/21 11:08 PM, Ed Greshko wrote: So, does your backup process work when called from crontab entry? Yes, it does, and that's part of what confused me.  However -- and this is rather embarrassing -- the real problem was a missing environment variable in the script when the process was ru

Re: btrfs system slow down with 100GB file

2021-03-23 Thread Chris Murphy
On Tue, Mar 23, 2021 at 8:39 AM Richard Shaw wrote: > > I'm getting significant iowait while writing to a 100GB file. High iowait means the system is under load and not CPU bound but IO bound. It sounds like the drive is writing as fast as it can. What's the workload? Reproduce the GUI stalls a

Re: Hooks for automount

2021-03-23 Thread Patrick O'Callaghan
On Wed, 2021-03-24 at 06:02 +0800, Ed Greshko wrote: > On 23/03/2021 18:57, Patrick O'Callaghan wrote: > > Sure, I'd like to see it. I've been testing various mods to the > > whole > > thing because I couldn't get it to work reliably, i.e. the loop > > waiting > > for the unmount would work when ru

Re: Hooks for automount

2021-03-23 Thread Ed Greshko
On 23/03/2021 18:57, Patrick O'Callaghan wrote: Sure, I'd like to see it. I've been testing various mods to the whole thing because I couldn't get it to work reliably, i.e. the loop waiting for the unmount would work when run directly from the shell, but not when run from a systemd service. I thi

Re: btrfs system slow down with 100GB file

2021-03-23 Thread Roger Heflin
This won't speed up the actual IO but it should reduce the impact on other work. if you aren't familiar, man sysctl to understand how to apply the below settings. set these 2: vm.dirty_background_bytes = 300 vm.dirty_bytes = 500 They will be 0 to start with and these 2 settings will be

Re: A problem I"m having with rpm tainted repoes

2021-03-23 Thread John Pilkington
On 23/03/2021 17:46, Francisco Tissera wrote: Hello there, How could I let the maintainers know? is there a bugzilla page or something like that? if so, where could I find it? Thanks for any answer. Best regards. Francisco On 3/23/21 1:00 PM, Joe Zeff wrote: On 3/23/21 9:25 AM, dileepa.t

Re: A problem I"m having with rpm tainted repoes

2021-03-23 Thread Francisco Tissera
Hello there, How could I let the maintainers know? is there a bugzilla page or something like that? if so, where could I find it? Thanks for any answer. Best regards. Francisco On 3/23/21 1:00 PM, Joe Zeff wrote: On 3/23/21 9:25 AM, dileepa.tissera dileepa.tissera wrote: So, after upgradi

Re: A problem I"m having with rpm tainted repoes

2021-03-23 Thread Joe Zeff
On 3/23/21 9:25 AM, dileepa.tissera dileepa.tissera wrote: So, after upgrading to Rawhide, now that everything is fixed, thanks for directing me to the test list btw, I found out that both the free and the non free rpm fusion tainted repositories give me a 404 error, only in Rawhide though. D

A problem I"m having with rpm tainted repoes

2021-03-23 Thread dileepa . tissera dileepa . tissera
Hello everyone, and sorry for dubble-posting. So, after upgrading to Rawhide, now that everything is fixed, thanks for directing me to the test list btw, I found out that both the free and the non free rpm fusion tainted repositories give me a 404 error, only in Rawhide though.Does any of you have

f33:: php not working

2021-03-23 Thread Adrian Sevcenco
Hi! I'm trying to make work something like this: cat phpinfo.php it would seem that mod_php is no longer used .. ok, i installed php_fpm (which was excluded and masked because it seems silly to me to run 2 processes for some crappy pages) i tried to increase the log level for php.ini but nothi

RE: A question about viewing package versions

2021-03-23 Thread dileepa . tissera dileepa . tissera
Hello there, Thanks for the info, I’ll do that for any package I’m curious about.Thanks again.Best regards.Francisco.From: stan via usersSent: Tuesday, March 23, 2021 3:10 PMTo: users@lists.fedoraproject.orgCc: stanSubject: Re: A question about viewing package versions On Tue, 23 Mar 2021 08:13:19

btrfs system slow down with 100GB file

2021-03-23 Thread Richard Shaw
I'm getting significant iowait while writing to a 100GB file. I have already made it nocow by copying it to another directory, marking the director nocow (+C) and using cat to re-create it from scratch. I was under the impression that this should fix the problem. On a tangent, it took about 30

Re: Fedora 33 - FIPS - Cups

2021-03-23 Thread stan via users
On Tue, 23 Mar 2021 12:17:09 +0100 Winfried de Heiden wrote: > I enabled FIPS-mode on my Fedora 33 machine (fips-mode-setup > --enable; reboot) and it all looks fine except printing using Cups. > Printing will throw an error: > > Process 10708 (bannertopdf) of user 4 dumped core. [snip] > Disab

Re: A question about viewing package versions

2021-03-23 Thread stan via users
On Tue, 23 Mar 2021 08:13:19 +0100 dileepa.tissera dileepa.tissera wrote: > Knowing that F34 is coming out soon, I’d like to confirm a thing or > two about it, regarding packages. > > I do believe that orca 40 will ship with F34, and orca is just an > example here, but, is there a way to make su

Re: skype 8.69

2021-03-23 Thread Patrick Dupre
Very good, thanks you > > My suggestion - off topic - would be: ditch the Skype. - not > in official repos but in 'copr' you will Signal (hopefully > Fedora devel/maintainers will make Signal "official" soon) > Version I use is from: > copr:copr.fedorainfracloud.org:luminoso:Signal-Desktop > cheers

Re: skype 8.69

2021-03-23 Thread lejeczek via users
My suggestion - off topic - would be: ditch the Skype. - not in official repos but in 'copr' you will Signal (hopefully Fedora devel/maintainers will make Signal "official" soon) Version I use is from: copr:copr.fedorainfracloud.org:luminoso:Signal-Desktop cheers, L On 22/03/2021 21:29, Patric

Fedora 33 - FIPS - Cups

2021-03-23 Thread Winfried de Heiden
Hi all, I enabled FIPS-mode on my Fedora 33 machine (fips-mode-setup --enable; reboot) and it all looks fine except printing using Cups. Printing will throw an error: Process 10708 (bannertopdf) of user 4 dumped core. Stack trace of thread 10708:  

Re: Hooks for automount

2021-03-23 Thread Patrick O'Callaghan
On Tue, 2021-03-23 at 14:08 +0800, Ed Greshko wrote: > On 18/03/2021 23:01, Patrick O'Callaghan wrote: > > Sure. > > > > I'll report back once I've tested for a few days. > > Today was a slow day.  So I  implemented the "dock-down" with a timer > instead of > a while loop.  Let me know if you're

A question about viewing package versions

2021-03-23 Thread dileepa . tissera dileepa . tissera
Hello everyone, Knowing that F34 is coming out soon, I’d like to confirm a thing or two about it, regarding packages.I do believe that orca 40 will ship with F34, and orca is just an example here, but, is there a way to make sure-see what packages and what versions of those will be packaged in Fedo