Re: Compressed arecord out -

2021-02-03 Thread Tim via users
On Wed, 2021-02-03 at 12:14 -0500, Bob Goodwin wrote: > How can I put them together in one command or if there is a simpler > and better way, how to get a compressed output file from arecord? When you say compressed, do you really mean MP3, or would any compressed audio format suffice? And does

Re: libcrypto vs XnView

2021-02-03 Thread edward via users
On 2/2/21 9:05 AM, Patrick Dupre wrote: To run XnView, here is what it is recommended: you need to remove lib/libcrypto* from package https://newsgroup.xnview.com/viewtopic.php?p=165437#p165437 What do you think ? libcrypto* belong to openssl-libs When I try to remove the package, I get

Re: Change UId range, renumber user ids

2021-02-03 Thread Todd Zullinger
Roberto Ragusa wrote: > while IFS=":" read a b c x; do [ $c -eq 0 ] && c=1;echo > "$a:$[10*c]:65536";done /etc/subuid Nice example. I enjoy reading a useful one-liner here. The "$[]" caught my eye, as it has come up a few times on the bash list. For anyone unfamiliar, it's an older,

Re: Change UId range, renumber user ids

2021-02-03 Thread Friedrich Schäuffelhut
> On Wed, Feb 03, 2021 at 08:41:56PM -, Friedrich Schäuffelhut wrote: > > You should probably be aware that subuid/subgid isn't populated for > sssd/ldap accounts, so youll have to manage those manually. Thank you, I do understand that and I know how to manage it. > I think there are some

Re: Key was rejected by service

2021-02-03 Thread stan via users
On Wed, 3 Feb 2021 15:42:54 -0500 Jonathan Billings wrote: > On Wed, Feb 03, 2021 at 01:34:02PM -0700, stan via users wrote: > > > > On Wed, 3 Feb 2021 14:59:16 -0500 > > Jonathan Billings wrote: > > > > > The only alternative is to sign the kernel modules with your own > > > certificate,

Re: Change UId range, renumber user ids

2021-02-03 Thread Jonathan Billings
On Wed, Feb 03, 2021 at 08:41:56PM -, Friedrich Schäuffelhut wrote: > > > On 2/3/21 6:18 PM, Friedrich Schäuffelhut wrote: > > > > If I understand correctly moving your IPA range may be problematic > > since you are actively using the uids. > > Moving user ids is not a concern. We are in a

Re: Key was rejected by service

2021-02-03 Thread Jonathan Billings
On Wed, Feb 03, 2021 at 01:34:02PM -0700, stan via users wrote: > > On Wed, 3 Feb 2021 14:59:16 -0500 > Jonathan Billings wrote: > > > The only alternative is to sign the kernel modules with your own > > certificate, and load that certificate into the firmware as a valid > > Secure Boot CA. > >

Re: Change UId range, renumber user ids

2021-02-03 Thread Friedrich Schäuffelhut
> On 2/3/21 6:18 PM, Friedrich Schäuffelhut wrote: > > If I understand correctly moving your IPA range may be problematic > since you are actively using the uids. Moving user ids is not a concern. We are in a transition phase where most users still have a local account and use local uids. We are

Re: Key was rejected by service

2021-02-03 Thread stan via users
On Wed, 3 Feb 2021 14:59:16 -0500 Jonathan Billings wrote: > The only alternative is to sign the kernel modules with your own > certificate, and load that certificate into the firmware as a valid > Secure Boot CA. > >

Re: Change UId range, renumber user ids

2021-02-03 Thread Samuel Sieb
On 2/3/21 12:27 PM, Samuel Sieb wrote: On 2/3/21 9:18 AM, Friedrich Schäuffelhut wrote: I am a bit hesitant trying this without understanding what complications I could run in. Other than the need to "chown" all the home directories, it should be ok.  sssd caches the ids, but it should pick

Re: Change UId range, renumber user ids

2021-02-03 Thread Samuel Sieb
On 2/3/21 9:18 AM, Friedrich Schäuffelhut wrote: I am a bit hesitant trying this without understanding what complications I could run in. Other than the need to "chown" all the home directories, it should be ok. sssd caches the ids, but it should pick up the new ones at login and I can't

Re: Compressed arecord out -

2021-02-03 Thread Bob Goodwin
On 2021-02-03 12:45, stan via users wrote: I'm not completely clear on what you are trying to accomplish, but if you are trying to record using aplay and get an mp3 file, you should be able to do this with sox. A command like arecord tstxx | sox -t wav - tstxx.mp3 should do the trick. I

Re: Change UId range, renumber user ids

2021-02-03 Thread Roberto Ragusa
On 2/3/21 6:18 PM, Friedrich Schäuffelhut wrote: We would like to fix this without reinstalling FreeIPA. We have already a number of hosts, users and certificates enrolled. I am now looking for a way to move the FreeIPA UID range to a different area, e.g. 10.000 - 20.000. We run 3 replicas

Re: Key was rejected by service

2021-02-03 Thread Jonathan Billings
On Wed, Feb 03, 2021 at 11:53:04AM -0800, Paolo Galtieri wrote: > > Jorge, >   thank you for the information, however, since there is a good reason to > have secure boot enabled and since Fedora 33 boots with it enabled I would > like to find a solution that does not require this.  Additionally

Re: Key was rejected by service

2021-02-03 Thread Paolo Galtieri
Jorge,   thank you for the information, however, since there is a good reason to have secure boot enabled and since Fedora 33 boots with it enabled I would like to find a solution that does not require this.  Additionally this system boots to Windows so I really don't want to mess around with

Re: Key was rejected by service

2021-02-03 Thread Jorge Fábregas
On 2/3/21 2:33 PM, Paolo Galtieri wrote: > vmmon: Loading of unsigned module is rejected This looks like you're booting off UEFI in "secure mode" where kernel and its modules need to be signed. Try disabling "secure mode" in the machine's firmware setup. HTH, Jorge

Key was rejected by service

2021-02-03 Thread Paolo Galtieri
Folks,  I have installed vmware on Fedora 33.  It does not start due to the following error: modprobe vmmon modprobe: ERROR: could not insert 'vmmon': Key was rejected by service modprobe vmnet modprobe: ERROR: could not insert 'vmnet': Key was rejected by service dmesg shows vmmon:

[389-users] Re: ACI with groupdn to target multiple groups

2021-02-03 Thread Ludwig Krispenz
On 03.02.21 16:23, N R wrote: Hi everyone, I'm not an English native speaker, so please forgive me if there's mistakes in this e-mail. OS : Fedora 30 389ds version / build number : 1.4.1.14 / 2020.023.2226 I'm struggling with ACI and despite hours of documentation reading, I don't understand

Re: Compressed arecord out -

2021-02-03 Thread stan via users
On Wed, 3 Feb 2021 12:14:52 -0500 Bob Goodwin wrote: > arecord tstxx will produce a wav file and ffmpeg -i  tstxx.mp3 to a > file aplay will play. > > How can I put them together in one command or if there is a simpler > and better way, how to get a compressed output file from arecord? I'm not

Change UId range, renumber user ids

2021-02-03 Thread Friedrich Schäuffelhut
Hello, last year I set up a FreeIPA installation. It works very well! I lately discovered a problem with /etc/subuid and /etc/subgid used by rootless Podman (may be also Docker) containers. During setup we decided to start the UID range exactly at 100.000. We picked that for no real reason

Compressed arecord out -

2021-02-03 Thread Bob Goodwin
arecord tstxx will produce a wav file and ffmpeg -i  tstxx.mp3 to a file aplay will play. How can I put them together in one command or if there is a simpler and better way, how to get a compressed output file from arecord? Bob -- Bob Goodwin - Zuni, Virginia, USA FEDORA-32/64bit LINUX

[389-users] ACI with groupdn to target multiple groups

2021-02-03 Thread N R
Hi everyone, I'm not an English native speaker, so please forgive me if there's mistakes in this e-mail. OS : Fedora 30 389ds version / build number : 1.4.1.14 / 2020.023.2226 I'm struggling with ACI and despite hours of documentation reading, I don't understand how to make it work as I want.

[389-users] Announcing 389 Directory Server 1.4.4.12

2021-02-03 Thread Mark Reynolds
389 Directory Server 1.4.4.12 The 389 Directory Server team is proud to announce 389-ds-base version 1.4.4.12 Fedora packages are available on Fedora 33. Fedora 33: https://koji.fedoraproject.org/koji/taskinfo?taskID=61137714

Re: Plasma on Xorg Fails to Start After Last System Update

2021-02-03 Thread Ed Greshko
On 03/02/2021 14:09, Stephen Morris wrote: For me systemctl status gdm gives: gdm.service - GNOME Display Manager Loaded: loaded (/usr/lib/systemd/system/gdm.service; enabled; vendor  preset: enabled) Active: active (running) since Wed 2021-02-03 13:37:47 AEDT; 3h 27min ago    Main