Re: Dell XPS15 9570

2018-08-17 Thread Tim via users
Allegedly, on or about 15 August 2018, Thomas Letherby sent:
> I tried with LightDM, which gave the same black screen, with the
> following in /var/log/messages, not sure why it's trying to talk to
> PulseAudio?

I'm not sure what stage you're up to by then:  Just getting the logon
screen, or have logged in?

If it's the login screen, it could be that they've designed it so that
it can make use of audio (e.g. spoken prompts for the blind), and the
sound system is started whether, or not, it's actually going to be
used.  And I've seen logon screens which play a little tune as they pop
up (on other distros, where the sound actually was working at that
stage).

-- 
[tim@localhost ~]$ uname -rsvp
Linux 4.16.11-100.fc26.x86_64 #1 SMP Tue May 22 20:02:12 UTC 2018 x86_64

Boilerplate:  All mail to my mailbox is automatically deleted.
There is no point trying to privately email me, I only get to see
the messages posted to the mailing list.

Windows tablets are more like suppositories.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/DS7MNW3EKDWVAXBMWFZ6HUJVBUYA533A/


Re: sed and grep stopped working!

2018-08-17 Thread Tim via users
Allegedly, on or about 17 August 2018, Tom Horsley sent:
> This is the sort of thing that always makes me want to
> run memtest for a few hours to see if memory corruption
> is happening (in, for instance, the in memory copies of
> pages from shared libs the tools might have been using).
> 
> http://www.memtest.org/

I tried to run that on my new computer, and it couldn't be done.  I
can't remember if it was down to UEFI or 64 bit, or the combination.

-- 
[tim@localhost ~]$ uname -rsvp
Linux 4.16.11-100.fc26.x86_64 #1 SMP Tue May 22 20:02:12 UTC 2018 x86_64

Boilerplate:  All mail to my mailbox is automatically deleted.
There is no point trying to privately email me, I only get to see
the messages posted to the mailing list.

less is more when playing with your cat...
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/6GE4PXSBFSSQ2ANOVRP7W33YVNVQQALJ/


Re: Where is Perl 5's "say" module?

2018-08-17 Thread ToddAndMargo

On 08/17/2018 02:05 PM, Chris Adams wrote:

Once upon a time, ToddAndMargo  said:

# dnf list perl-say*


I saw you already got your question answered, but just wanted to point
out (for future reference) the best way to search for a perl module is:

# dnf whatprovides 'perl(Some::Module)'

It wouldn't help in this case (since "say" is not a module).  You do
have to quote the whole thing because the () are interpreted by the
shell otherwise.



I have been told by the Perl 5 list that "say" can harm things,
that is why they do it the way they do.

I personally have pretty much dropped Perl 5 for Perl 6.
Perl 6 is a YUGE clean up of Perl 5.  "say" is part of
the code in Perl 6 and has no such issues.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/JUXEW2WS3POBOTDQ74C6BPBT7MGPBRBB/


Re: Where is Perl 5's "say" module?

2018-08-17 Thread ToddAndMargo

On 08/17/2018 02:05 PM, Chris Adams wrote:

Once upon a time, ToddAndMargo  said:

# dnf list perl-say*


I saw you already got your question answered, but just wanted to point
out (for future reference) the best way to search for a perl module is:

# dnf whatprovides 'perl(Some::Module)'

It wouldn't help in this case (since "say" is not a module).  You do
have to quote the whole thing because the () are interpreted by the
shell otherwise.




One trick I learned was to go to:

https://ewr.edge.kernel.org/fedora-buffet/fedora/linux/releases/28/Everything/x86_64/os/Packages/p/

Then do a Firefox search in page for some part of the name
I am looking for.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/NUTIE5CO4JYDZAMOKYVNXUPN7WULZKJE/


Re: plymouth vs. boot messages

2018-08-17 Thread Samuel Sieb

On 08/17/2018 12:57 PM, Beartooth wrote:

Is there a way to tell plymouth to default to showing boot
messages?


Does taking out "rhgb" from the boot command line do what you want?
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/KWWJRNITVZJJ27SVA2CL54PP4PJITCSR/


Re: sed and grep stopped working!

2018-08-17 Thread Cameron Simpson

On 17Aug2018 00:17, Todd Chester  wrote:

grep and sed stopped working!  I dnf re-installed them
both. No joy

What the heck (not my "actual" word)?

[...]

Next time this happens consider snapshotting the output at various points:

 $ echo "a-b-c" | tee echo.out | ( set -x; sed -e 's/-//g' ) 2>sed-trace.out | 
tee sed.out
 

Then "od -c" the echo.out and sed-trace.out and sed.out files.

There's all sorts of possibilities, including the "-" not being an ASCII minus 
and weird escape sequences hiding the output, not to mention possible stdio 
bugs in sed or grep - I certainly came across one in GNU sed several years ago 
for input data.


Just something to keep in mind for later.

Cheers,
Cameron Simpson 



$ echo "a-b-c" | sed -e 's/-//g'


Workaround:
   $ echo "a-b-c" | perl -pe 's/-//g'
   abc

   $ echo "a-b-c" | perl6 -pe 's:g/\-//'
   abc



$ ls -al /tmp | sed -n 3,4p


Workaround:
   $  ls -al /tmp  | perl6 -ne ".say if 3 <= ++$ <= 4"
   dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
   drwxr--r--.  2 todd users40 Aug 17 00:08 ARI

   $ x=3; y=4; ls -al /tmp  | perl6 -ne ".say if $x <= ++$ <= $y"
   dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
   drwxr--r--.  2 todd users40 Aug 17 00:08 ARI



# echo "abc" | grep  "ab"


Work around:
   $ echo "abc" | ack "ab"
   abc

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/RG6O4SM24MHTTYZDGM2OIUMSFTJZDMZD/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Sergei Gerasenko
Ok, might be something having to do with IPA. I’ll play more with it.

Thanks!!
  Sergei

> On Aug 17, 2018, at 4:51 PM, Mark Reynolds  wrote:
> 
> 
> 
> On 08/17/2018 04:59 PM, Sergei Gerasenko wrote:
>> Hi Mark,
>> 
>> I have a test instance of 389-ds running on a vm. I’ve tried updating the 
>> aci like this:
>> 
>> dn: cn=mapping tree,cn=config
>> changetype: modify
>> replace: aci
>> aci: (targetattr = "cn || nsuniqueid || createtimestamp || description || 
>> entryusn || modify
>>  timestamp || nsds50ruv || MORE STUFF)(targetfilter = 
>> "(|(objectclass=nsds5Replic
>>  
>> a)(objectclass=nsds5replicationagreement)(objectclass=nsDSWindowsReplicationA
>>  greement)(objectClass=nsMappingTree)(objectClass=nsTombstone))")(version 
>> 3.0;acl "permission:Read Repl
>>  ication Agreements";allow (compare,read,search) groupdn = "ldap:///cn=Read 
>>  Re
>>  plication Agreements,cn=permissions,cn=pbac,dc=MYREALM,dc=net”;)
>> 
>> 
>> But still executing the command below produces no output. Executing the 
>> command as admin does work:
>> 
>> ldapsearch -h localhost -LLL -x -D 
>> 'uid=ipamonitor,cn=users,cn=accounts,dc=sgerasenko,dc=net' -w PWD 
>> '(&(nsuniqueid=---)(objectClass=nsTombstone))’
>>  nsds50ruv
>> 
>> I’ve verified that “ipamonitor" does have "Read Replication Agreements" 
>> assigned.
> Works for me if I add this aci:
> 
> dn: cn=mapping tree,cn=config
> aci: (targetattr = "*")(version 3.0; acl "All user to read agreements"; allow
>  (read,compare,search) (userdn = "ldap:///uid=mark,o=mark; 
> )
> 
> ldapsearch -h localhost -LLL -x -D 'uid=mark,o=mark' -w password -b o=mark 
> "(&(nsuniqueid=---)(objectClass=nsTombstone))"
> dn: cn=replica,cn=o\3Dmark,cn=mapping tree,cn=config
> objectClass: nsDS5Replica
> objectClass: top
> nsDS5ReplicaRoot: o=mark
> nsDS5ReplicaType: 3
> nsDS5Flags: 1
> nsDS5ReplicaId: 1
> nsds5ReplicaPurgeDelay: 604800
> cn: replica
> nsState:: AQDwQHdbAAADAA==
> nsDS5ReplicaName: e8f8e603-a24111e8-9b9de135-a578ede1
> nsds50ruv: {replicageneration} 5b7704130001
> nsds50ruv: {replica 1 ldap://localhost.localdomain:389 
> } 5b773c21 5
>  b7740f20001
> nsds5agmtmaxcsn: o=mark;f;localhost.localdomain;;unavailable
> nsruvReplicaLastModified: {replica 1 ldap://localhost.localdomain:389 
> } 000
>  0
> nsds5ReplicaChangeCount: 6
> nsds5replicareapactive: 0
> 
>> 
>> Any ideas what could be missing?
>> 
>> Thanks,
>>   Sergei
>> 
>> 
>> ___
>> 389-users mailing list -- 389-users@lists.fedoraproject.org 
>> 
>> To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org 
>> 
>> Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html 
>> 
>> List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines 
>> 
>> List Archives: 
>> https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/MCJ7KRVAYEKGFDZJ2K5EE5HYSPAYGCEF/
>>  
>> 
> 

___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/IPU6PHOMBXTHR2624IOXQL6ACDFRIEL4/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Mark Reynolds



On 08/17/2018 04:59 PM, Sergei Gerasenko wrote:

Hi Mark,

I have a test instance of 389-ds running on a vm. I’ve tried updating 
the aci like this:


dn: cn=mapping tree,cn=config
changetype: modify
replace: aci
aci: (targetattr = "cn || nsuniqueid || createtimestamp || description 
|| entryusn || modify
 timestamp || *nsds50ruv* || /MORE STUFF/)(targetfilter = 
"(|(objectclass=nsds5Replic

 a)(objectclass=nsds5replicationagreement)(objectclass=nsDSWindowsReplicationA
 greement)(objectClass=nsMappingTree)(objectClass=nsTombstone))")(version 
3.0;acl "permission:Read Repl
 ication Agreements";allow (compare,read,search) groupdn = 
"ldap:///cn=Read Re

 plication Agreements,cn=permissions,cn=pbac,dc=MYREALM,dc=net”;)


But still executing the command below produces no output. Executing 
the command as admin does work:


ldapsearch -h localhost -LLL -x -D 
'uid=ipamonitor,cn=users,cn=accounts,dc=sgerasenko,dc=net' -w PWD 
'(&(nsuniqueid=---)(objectClass=nsTombstone))’ 
nsds50ruv


I’ve verified that “ipamonitor" does have "Read Replication 
Agreements" assigned.

Works for me if I add this aci:

dn: cn=mapping tree,cn=config
aci: (targetattr = "*")(version 3.0; acl "All user to read agreements"; 
allow

 (read,compare,search) (userdn = "ldap:///uid=mark,o=mark;)

ldapsearch -h localhost -LLL -x -D 'uid=mark,o=mark' -w password -b 
o=mark 
"(&(nsuniqueid=---)(objectClass=nsTombstone))"

dn: cn=replica,cn=o\3Dmark,cn=mapping tree,cn=config
objectClass: nsDS5Replica
objectClass: top
nsDS5ReplicaRoot: o=mark
nsDS5ReplicaType: 3
nsDS5Flags: 1
nsDS5ReplicaId: 1
nsds5ReplicaPurgeDelay: 604800
cn: replica
nsState:: AQDwQHdbAAADAA==
nsDS5ReplicaName: e8f8e603-a24111e8-9b9de135-a578ede1
nsds50ruv: {replicageneration} 5b7704130001
nsds50ruv: {replica 1 ldap://localhost.localdomain:389} 
5b773c21 5

 b7740f20001
nsds5agmtmaxcsn: o=mark;f;localhost.localdomain;;unavailable
nsruvReplicaLastModified: {replica 1 ldap://localhost.localdomain:389} 
000

 0
nsds5ReplicaChangeCount: 6
nsds5replicareapactive: 0



Any ideas what could be missing?

Thanks,
  Sergei


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/MCJ7KRVAYEKGFDZJ2K5EE5HYSPAYGCEF/


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/ORWONLZOCKGH2LP2PS4HJJ5B22PWMNHH/


Re: Where is Perl 5's "say" module?

2018-08-17 Thread Chris Adams
Once upon a time, ToddAndMargo  said:
> # dnf list perl-say*

I saw you already got your question answered, but just wanted to point
out (for future reference) the best way to search for a perl module is:

# dnf whatprovides 'perl(Some::Module)'

It wouldn't help in this case (since "say" is not a module).  You do
have to quote the whole thing because the () are interpreted by the
shell otherwise.
-- 
Chris Adams 
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/WCJ7QQ6AP24JT3KJKWASTCMNZKF6T665/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Sergei Gerasenko
Hi Mark,

I have a test instance of 389-ds running on a vm. I’ve tried updating the aci 
like this:

dn: cn=mapping tree,cn=config
changetype: modify
replace: aci
aci: (targetattr = "cn || nsuniqueid || createtimestamp || description || 
entryusn || modify
 timestamp || nsds50ruv || MORE STUFF)(targetfilter = 
"(|(objectclass=nsds5Replic
 a)(objectclass=nsds5replicationagreement)(objectclass=nsDSWindowsReplicationA
 greement)(objectClass=nsMappingTree)(objectClass=nsTombstone))")(version 
3.0;acl "permission:Read Repl
 ication Agreements";allow (compare,read,search) groupdn = "ldap:///cn=Read Re
 plication Agreements,cn=permissions,cn=pbac,dc=MYREALM,dc=net”;)


But still executing the command below produces no output. Executing the command 
as admin does work:

ldapsearch -h localhost -LLL -x -D 
'uid=ipamonitor,cn=users,cn=accounts,dc=sgerasenko,dc=net' -w PWD 
'(&(nsuniqueid=---)(objectClass=nsTombstone))’ 
nsds50ruv

I’ve verified that “ipamonitor" does have "Read Replication Agreements" 
assigned.

Any ideas what could be missing?

Thanks,
  Sergei___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/MCJ7KRVAYEKGFDZJ2K5EE5HYSPAYGCEF/


plymouth vs. boot messages

2018-08-17 Thread Beartooth

Is there a way to tell plymouth to default to showing boot 
messages?
-- 
Beartooth Implacable, Erstwhile Historian of Tongues
Who shall gather the smoke of the dead wood burning,
Or behold the flowing years from the Sea returning?
 -- JRR Tolkien
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/UNWIDZJEVIPRX2CM7IRFGL5S5K4WE77C/


Re: Where is Perl 5's "say" module?

2018-08-17 Thread ToddAndMargo

On 08/17/2018 10:43 AM, Todd Zullinger wrote:

ToddAndMargo wrote:

# perl -Msay -e 'say "Hi";'
Can't locate say.pm in @INC (you may need to install the say module) (@INC
contains: /usr/local/lib64/perl5 /usr/local/share/perl5
/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5
/usr/share/perl5).
BEGIN failed--compilation aborted.

And I tried downloading it from cpan and it won't install.

What am I missing?


 From the perl documentation¹, either of these work:

$ perl -e 'CORE::say "Hi";'
Hi
$ perl -e 'use feature 'say'; say "Hi";'
Hi

¹ https://perldoc.perl.org/functions/say.html




Huh!   I am use to Perl6's way of doing it and was
trying to force the issue.

Thank you!

$ perl6 -e 'say "Hi";'
Hi

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/CNV52B5PPR2OS24NKWGNXWHVUPVKZY6U/


Re: Firefox cannot upload directly from connected android phone

2018-08-17 Thread Samuel Sieb

On 08/04/2018 04:10 AM, lejeczek via users wrote:

do you also experience the same or similar?
I cannot upload photos to Ebay. I can browse the location and see the 
files but when I select files not upload, nothing happens.


I don't know about ebay, but I just needed to upload a picture to a 
different site and I was able to select it from my phone and upload 
successfully.  This is F28.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/VUPY6FBTBGCP6XCH5W3ICAK5JOJHCGGH/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Mark Reynolds



On 08/17/2018 02:07 PM, Sergei Gerasenko wrote:
Thanks, Mark. I think I will have to do this directly in dse.ldif by 
stopping the server, editing the ldif and starting it again?
In this case that would be the easiest way to edit this aci, but 
typically I would suggest using ldapmodify instead.
Looks like there’s already an ACI for it, but it doesn’t include those 
attrs. So I think I will need to add them. Currently it looks like this:


dn: cn=mapping tree,cn=config
aci: (targetattr = "cn || createtimestamp || description || entryusn 
|| modify
 timestamp || nsds50ruv || nsds5beginreplicarefresh || 
nsds5debugreplicatimeou
 t || nsds5flags || nsds5replicaabortcleanruv || 
nsds5replicaautoreferral || n
 sds5replicabackoffmax || nsds5replicabackoffmin || nsds5replicabinddn 
|| nsds
 5replicabindmethod || nsds5replicabusywaittime || 
nsds5replicachangecount ||
 nsds5replicachangessentsincestartup || nsds5replicacleanruv || 
nsds5replicacl
 eanruvnotified || nsds5replicacredentials || nsds5replicaenabled || 
nsds5repl
 icahost || nsds5replicaid || nsds5replicalastinitend || 
nsds5replicalastinits
 tart || nsds5replicalastinitstatus || nsds5replicalastupdateend || 
nsds5repli
 calastupdatestart || nsds5replicalastupdatestatus || 
nsds5replicalegacyconsum
 er || nsds5replicaname || nsds5replicaport || 
nsds5replicaprotocoltimeout ||
 nsds5replicapurgedelay || nsds5replicareferral || nsds5replicaroot || 
nsds5re
 plicasessionpausetime || nsds5replicastripattrs || 
nsds5replicatedattributeli
 st || nsds5replicatedattributelisttotal || nsds5replicatimeout || 
nsds5replic
 atombstonepurgeinterval || nsds5replicatransportinfo || 
nsds5replicatype || n
 sds5replicaupdateinprogress || nsds5replicaupdateschedule || 
nsds5task || nsd
 s7directoryreplicasubtree || nsds7dirsynccookie || 
nsds7newwingroupsyncenable
 d || nsds7newwinusersyncenabled || nsds7windowsdomain || 
nsds7windowsreplicas
 ubtree || nsruvreplicalastmodified || nsstate || objectclass || 
onewaysync ||
winsyncdirectoryfilter || winsyncinterval || winsyncmoveaction || 
winsyncsub
 treepair || winsyncwindowsfilter")(targetfilter = 
"(|(objectclass=nsds5Replic

 a)(objectclass=nsds5replicationagreement)(objectclass=nsDSWindowsReplicationA
 greement)(objectClass=nsMappingTree))")(version 3.0;acl 
"permission:Read Repl
 ication Agreements";allow (compare,read,search) groupdn = 
"ldap:///cn=Read Re

 plication Agreements,cn=permissions,cn=pbac,dc=MYDC,dc=net";)

But I think I will also need to add the object class 
of objectClass=nsTombstone to the targetFilter?
Not sure, one way to find out ;-)  The "tombstone" entry is a funny 
thing and behaves a little differently, but it should be an easy test 
though.


Regards,
Mark

Thanks,
  Sergei

On Aug 17, 2018, at 12:23 PM, Mark Reynolds > wrote:


Add an ACI to this entry (using your suffix of course) allowing the 
user or group to read/search/compare:


dn: cn=replica,cn=o\3Dmark,cn=mapping tree,cn=config

That should do it :-)




___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/MTNV6NY4KI236JX7VNFFLIVHQYWDE6XP/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Sergei Gerasenko
Thanks, Mark. I think I will have to do this directly in dse.ldif by stopping 
the server, editing the ldif and starting it again? Looks like there’s already 
an ACI for it, but it doesn’t include those attrs. So I think I will need to 
add them. Currently it looks like this:

dn: cn=mapping tree,cn=config
aci: (targetattr = "cn || createtimestamp || description || entryusn || modify
 timestamp || nsds50ruv || nsds5beginreplicarefresh || nsds5debugreplicatimeou
 t || nsds5flags || nsds5replicaabortcleanruv || nsds5replicaautoreferral || n
 sds5replicabackoffmax || nsds5replicabackoffmin || nsds5replicabinddn || nsds
 5replicabindmethod || nsds5replicabusywaittime || nsds5replicachangecount ||
 nsds5replicachangessentsincestartup || nsds5replicacleanruv || nsds5replicacl
 eanruvnotified || nsds5replicacredentials || nsds5replicaenabled || nsds5repl
 icahost || nsds5replicaid || nsds5replicalastinitend || nsds5replicalastinits
 tart || nsds5replicalastinitstatus || nsds5replicalastupdateend || nsds5repli
 calastupdatestart || nsds5replicalastupdatestatus || nsds5replicalegacyconsum
 er || nsds5replicaname || nsds5replicaport || nsds5replicaprotocoltimeout ||
 nsds5replicapurgedelay || nsds5replicareferral || nsds5replicaroot || nsds5re
 plicasessionpausetime || nsds5replicastripattrs || nsds5replicatedattributeli
 st || nsds5replicatedattributelisttotal || nsds5replicatimeout || nsds5replic
 atombstonepurgeinterval || nsds5replicatransportinfo || nsds5replicatype || n
 sds5replicaupdateinprogress || nsds5replicaupdateschedule || nsds5task || nsd
 s7directoryreplicasubtree || nsds7dirsynccookie || nsds7newwingroupsyncenable
 d || nsds7newwinusersyncenabled || nsds7windowsdomain || nsds7windowsreplicas
 ubtree || nsruvreplicalastmodified || nsstate || objectclass || onewaysync ||
  winsyncdirectoryfilter || winsyncinterval || winsyncmoveaction || winsyncsub
 treepair || winsyncwindowsfilter")(targetfilter = "(|(objectclass=nsds5Replic
 a)(objectclass=nsds5replicationagreement)(objectclass=nsDSWindowsReplicationA
 greement)(objectClass=nsMappingTree))")(version 3.0;acl "permission:Read Repl
 ication Agreements";allow (compare,read,search) groupdn = "ldap:///cn=Read Re
 plication Agreements,cn=permissions,cn=pbac,dc=MYDC,dc=net";)

But I think I will also need to add the object class of objectClass=nsTombstone 
to the targetFilter?

Thanks,
  Sergei

> On Aug 17, 2018, at 12:23 PM, Mark Reynolds  wrote:
> 
> Add an ACI to this entry (using your suffix of course) allowing the user or 
> group to read/search/compare:
> 
> dn: cn=replica,cn=o\3Dmark,cn=mapping tree,cn=config
> 
> That should do it :-)

___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/47NT5T2TN5UJJIX27PWJJTNHOZ4SLNPH/


Re: Where is Perl 5's "say" module?

2018-08-17 Thread Todd Zullinger
ToddAndMargo wrote:
> # perl -Msay -e 'say "Hi";'
> Can't locate say.pm in @INC (you may need to install the say module) (@INC
> contains: /usr/local/lib64/perl5 /usr/local/share/perl5
> /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5
> /usr/share/perl5).
> BEGIN failed--compilation aborted.
> 
> And I tried downloading it from cpan and it won't install.
> 
> What am I missing?

From the perl documentation¹, either of these work:

$ perl -e 'CORE::say "Hi";'
Hi
$ perl -e 'use feature 'say'; say "Hi";'
Hi

¹ https://perldoc.perl.org/functions/say.html

-- 
Todd
~~
What do Atheists scream during sex?
'Ohhh, chemical chance, chemical chance'
-- Bill Hicks
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/N3R466WFYOSPSPAC4WFMSSE6BCIVE7AT/


Re: sed and grep stopped working!

2018-08-17 Thread ToddAndMargo

On 08/17/2018 05:34 AM, Tom Horsley wrote:

On Fri, 17 Aug 2018 03:23:17 -0700
Todd Chester wrote:


And now that you all write me back, they mysteriously started
working again.   AAHH!


This is the sort of thing that always makes me want to
run memtest for a few hours to see if memory corruption
is happening (in, for instance, the in memory copies of
pages from shared libs the tools might have been using).

http://www.memtest.org/


I even rebooted to see if that would help.  No joy.

Then the moon shifted overhead and ...
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/C4WCP74ZLVJBM44HS2GAEENWYMF34TCF/


Where is Perl 5's "say" module?

2018-08-17 Thread ToddAndMargo

Hi All,

I am not find Perl 5's "say" in

https://ewr.edge.kernel.org/fedora-buffet/fedora/linux/releases/28/Everything/x86_64/os/Packages/p/

# dnf list perl-say*
Last metadata expiration check: 0:09:13 ago on Fri 17 Aug 2018 09:58:26 
AM PDT.

Error: No matching Packages to list


# perl -Msay -e 'say "Hi";'
Can't locate say.pm in @INC (you may need to install the say module) 
(@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 
/usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl 
/usr/lib64/perl5 /usr/share/perl5).

BEGIN failed--compilation aborted.

And I tried downloading it from cpan and it won't install.

What am I missing?


Many thanks,
-T
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/6WM4TRQV3VDP6J2JQND4I6WAA547XTKX/


[389-users] Re: user privileges needed to run repl-monitor.pl

2018-08-17 Thread Mark Reynolds



On 08/17/2018 11:51 AM, Sergei Gerasenko wrote:

Hi,

I’ve been using repl-monitor.pl for monitoring replication problems. I 
would like to use an account with a minimal set of permissions needed 
for the functionality. I created a user and added the permission to 
Read Replication Agreements. Now the user can read the agreements but 
fails on:


$ruv = $conn->search($replicaroot, "one”, 
"(&(nsuniqueid=---)(objectClass=nsTombstone))”, 
0, qw(nsds50ruv nsruvReplicaLastModified nsds5AgmtMaxCSN));


Rather, the $ruv is empty after that call. When running with a 
privileged account, everything works.


What are the permissions needed for that search to work for a brand 
new account?
Add an ACI to this entry (using your suffix of course) allowing the user 
or group to read/search/compare:


dn: cn=replica,cn=o\3Dmark,cn=mapping tree,cn=config

That should do it :-)

Mark


Thanks,
  Sergei


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/GDN34STFNX75CJRSNR55DIR2WDOJ5BFZ/


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/RXN3MGCEHKUP6MFNSRLNEQAADX3G5CM3/


Re: sed and grep stopped working!

2018-08-17 Thread ToddAndMargo

On 08/17/2018 09:17 AM, Matthew Miller wrote:

On Fri, Aug 17, 2018 at 08:34:12AM -0400, Tom Horsley wrote:

Todd Chester wrote:

And now that you all write me back, they mysteriously started
working again.   AAHH!

This is the sort of thing that always makes me want to
run memtest for a few hours to see if memory corruption
is happening (in, for instance, the in memory copies of
pages from shared libs the tools might have been using).


Or look for signs of malware / intruders.



Is there a scanner you recommend?
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/LURCC3XMLP2R5Z424Y7QGS3S57ILHL2A/


[389-users] user privileges needed to run repl-monitor.pl

2018-08-17 Thread Sergei Gerasenko
Hi,

I’ve been using repl-monitor.pl for monitoring replication problems. I would 
like to use an account with a minimal set of permissions needed for the 
functionality. I created a user and added the permission to Read Replication 
Agreements. Now the user can read the agreements but fails on:

$ruv = $conn->search($replicaroot, "one”, 
"(&(nsuniqueid=---)(objectClass=nsTombstone))”, 
0, qw(nsds50ruv nsruvReplicaLastModified nsds5AgmtMaxCSN));

Rather, the $ruv is empty after that call. When running with a privileged 
account, everything works.

What are the permissions needed for that search to work for a brand new account?

Thanks,
  Sergei___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/GDN34STFNX75CJRSNR55DIR2WDOJ5BFZ/


Re: sed and grep stopped working!

2018-08-17 Thread Matthew Miller
On Fri, Aug 17, 2018 at 08:34:12AM -0400, Tom Horsley wrote:
> Todd Chester wrote:
> > And now that you all write me back, they mysteriously started
> > working again.   AAHH!
> This is the sort of thing that always makes me want to
> run memtest for a few hours to see if memory corruption
> is happening (in, for instance, the in memory copies of
> pages from shared libs the tools might have been using).

Or look for signs of malware / intruders.

-- 
Matthew Miller

Fedora Project Leader
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/4Q4TLDWH66NAOXAJ7BYCZB3ZUZ6THSRP/


[389-users] Re: Help with NSS Database

2018-08-17 Thread Mark Reynolds



On 08/17/2018 11:27 AM, Cassandra Reed wrote:

Hi Everyone,

We are in a sticky spot right now where we need to install a new 
certificate in our 389 Production system, but we do not have the 
password that was used when the system was built years ago.  We have 
tried all of the possible passwords that we can think of, to no avail.


Is there a way to blow away the old password or even blow away the NSS 
Database and create a new one?  We need a new certificate installed 
ASAP to be able to move forward with a big project, so this is an 
issue with a lot of visibility.
There is no way to change it if you don't know the old password (afaik), 
you must start over from scratch.  Hopefully you don't need any of the 
old certs.


To remove the current NSS database do the following:

[1]  Stop the server
[2]  Remove all the *.db files from /etc/dirsrv/slapd-YOUR_INSTANCE
[3]  Create NSS database and add CA and Server certs via certutil
[4]  I would suggest using a pin.txt file, see the admin guide for more 
info on this.

[4]  Start the server


Note - Use the same server certificate nickname as the old server cert - 
it has to match the existing config (or change the existing config to 
match whatever certificate nickname you use):


dn: cn=RSA,cn=encryption,cn=config
objectClass: top
objectClass: nsEncryptionModule
cn: RSA
nsSSLPersonalitySSL: Server-Cert <--  This is the cert nickname and 
it must match what you use when you import the server certificate.

nsSSLActivation: on
nsSSLToken: internal (software)

Hope that helps,

Mark





Any help is appreciated!!

-Cassandra

Cassandra Reed
978-762-4222
EDP Systems Analyst III
North Shore Community College
1 Ferncroft Road, Danvers MA 01923


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/IZO5DAZUOMFLLBZHDLK3BV5IKODQZRPP/


___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/QKWH3VYOIPXYLM72E2F7OFU7SXFS7YOY/


[389-users] Help with NSS Database

2018-08-17 Thread Cassandra Reed
Hi Everyone,

We are in a sticky spot right now where we need to install a new
certificate in our 389 Production system, but we do not have the password
that was used when the system was built years ago.  We have tried all of
the possible passwords that we can think of, to no avail.

Is there a way to blow away the old password or even blow away the NSS
Database and create a new one?  We need a new certificate installed ASAP to
be able to move forward with a big project, so this is an issue with a lot
of visibility.

Any help is appreciated!!

-Cassandra

Cassandra Reed
978-762-4222
EDP Systems Analyst III
North Shore Community College
1 Ferncroft Road, Danvers MA 01923
___
389-users mailing list -- 389-users@lists.fedoraproject.org
To unsubscribe send an email to 389-users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/389-users@lists.fedoraproject.org/message/IZO5DAZUOMFLLBZHDLK3BV5IKODQZRPP/


Re: sed and grep stopped working!

2018-08-17 Thread Tom Horsley
On Fri, 17 Aug 2018 03:23:17 -0700
Todd Chester wrote:

> And now that you all write me back, they mysteriously started
> working again.   AAHH!

This is the sort of thing that always makes me want to
run memtest for a few hours to see if memory corruption
is happening (in, for instance, the in memory copies of
pages from shared libs the tools might have been using).

http://www.memtest.org/
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/YJQXBGASP6A4FGWRMWKRLKETQ4FSQ2MZ/


Re: How to customize an install.img image

2018-08-17 Thread Dirk Gottschalk via users
Hello.

Am Freitag, den 17.08.2018, 09:06 +0200 schrieb
francis.montag...@inria.fr:
> Hi.
> 
> We would like to add some RPMs to the install.img image for deploying
> servers with PXE.
> 
> I have found this documentation:
> 
>   
> https://fedoraproject.org/wiki/How_to_create_a_Fedora_install_ISO_for_testing
> 
> but it seems rather outdated (the pungi command do not exist any
> more,
> and the pungi-koji one do not seems to have the same syntax) and I
> don't find the kickstart file to use for the Server install.img
> image.

You do not need pungi or koji at all, ih you just want to add packages
from repositories to install.

> 
> Any idea to how to do that?
> 
> Thanks.

I suggest you create a kickstart file, anpack an .iso, insert the file
into the iso, update the syslinux config and repack the iso.

There's a good Guide around for this, but i don't find it right now.
This would be much easier than repacking the .img files.

You can deploy tis also via PXE, if you want.

Regards,
Dirk

-- 
Dirk Gottschalk
Paulusstrasse 6-8
52064 Aachen, Germany

GPG: DDCB AF8E 0132 AA54 20AB  B864 4081 0B18 1ED8 E838
Keybase.io: https://keybase.io/dgottschalk
GitHub: https://github.com/Dirk1980ac



signature.asc
Description: This is a digitally signed message part
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/M373SGF3M4UEHKWZTEYSLXKPCK4TIGUB/


Re: Dell XPS15 9570

2018-08-17 Thread Frédéric
> I installed the drivers using the below. Problem is the same, black screen on 
> boot, but you can shift to another terminal and startx. The nVidia control 
> panel shows the driver loaded and reports OK.

I've got exactly the same problem. I'm on F27. I have had a black sddm
screen for 5 weeks (started July 7th 2018)  but startx works from a
terminal.
Also on DELL computer but on a Precision 7810 tower. Also with nvidia drivers.

Here is an error I found in journalctl (full log below):
Aug 11 21:03:25 gamma sddm-greeter[2143]: Failed to create OpenGL
context for format QSurfaceFormat(version 2.0, options
QFlags(), depthBufferSize 24,
redBufferSize -1, greenBufferSize -1, blueBufferSize -1,
alphaBufferSize -1, stencilBufferSize 8, sam

F

Aug 11 21:03:23 gamma sddm-helper[2135]:
pam_unix(sddm-greeter:session): session opened for user sddm by
(uid=0)
Aug 11 21:03:23 gamma systemd[1]: Created slice User Slice of sddm.
Aug 11 21:03:23 gamma systemd[1]: Starting User Manager for UID 991...
Aug 11 21:03:23 gamma systemd-logind[1582]: New session c1 of user sddm.
Aug 11 21:03:23 gamma systemd[1]: Started Session c1 of user sddm.
Aug 11 21:03:23 gamma audit[2136]: USER_ACCT pid=2136 uid=0
auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="sddm"
exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=?
res=success'
Aug 11 21:03:23 gamma audit[2136]: USER_ROLE_CHANGE pid=2136 uid=0
auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
msg='pam: default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
Aug 11 21:03:23 gamma systemd[2136]: pam_unix(systemd-user:session):
session opened for user sddm by (uid=0)
Aug 11 21:03:23 gamma audit[2136]: USER_START pid=2136 uid=0 auid=991
ses=1 subj=system_u:system_r:init_t:s0 msg='op=PAM:session_open
grantors=pam_selinux,pam_selinux,pam_loginuid,pam_keyinit,pam_limits,pam_systemd,pam_unix
acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr
Aug 11 21:03:23 gamma systemd[2136]: Reached target Timers.
Aug 11 21:03:23 gamma systemd[2136]: Reached target Paths.
Aug 11 21:03:23 gamma systemd[2136]: Starting D-Bus User Message Bus Socket.
Aug 11 21:03:23 gamma systemd[2136]: Listening on D-Bus User Message Bus Socket.
Aug 11 21:03:23 gamma systemd[2136]: Reached target Sockets.
Aug 11 21:03:23 gamma systemd[2136]: Reached target Basic System.
Aug 11 21:03:23 gamma audit[1]: SERVICE_START pid=1 uid=0
auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0
msg='unit=user@991 comm="systemd" exe="/usr/lib/systemd/systemd"
hostname=? addr=? terminal=? res=success'
Aug 11 21:03:23 gamma systemd[2136]: Reached target Default.
Aug 11 21:03:23 gamma systemd[2136]: Startup finished in 48ms.
Aug 11 21:03:23 gamma systemd[1]: Started User Manager for UID 991.
Aug 11 21:03:23 gamma audit[2135]: USER_START pid=2135 uid=0
auid=4294967295 ses=4294967295
subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_open
grantors=pam_unix,pam_systemd acct="sddm"
exe="/usr/libexec/sddm-helper" hostname=? addr=? terminal=:0
res=success'
Aug 11 21:03:24 gamma audit[2143]: AVC avc:  denied  { map } for
pid=2143 comm="sddm-greeter" path="/dev/nvidiactl" dev="devtmpfs"
ino=40248 scontext=system_u:system_r:xdm_t:s0-s0:c0.c1023
tcontext=system_u:object_r:xserver_misc_device_t:s0 tclass=chr_file
permissive=0
Aug 11 21:03:24 gamma sddm-greeter[2143]: QGLXContext: Failed to
create dummy context
Aug 11 21:03:24 gamma sddm-greeter[2143]: Loading
file:///usr/share/sddm/themes/breeze/Main.qml...
Aug 11 21:03:24 gamma sddm-greeter[2143]: QObject: Cannot create
children for a parent that is in a different thread.
  (Parent is
SDDM::GreeterApp(0x7ffd9a256a40), parent's thread is
QThread(0x559b5888be90), current thread is QThread(0x559b588f6730)
Aug 11 21:03:24 gamma sddm-greeter[2143]: QObject: Cannot create
children for a parent that is in a different thread.
  (Parent is
SDDM::GreeterApp(0x7ffd9a256a40), parent's thread is
QThread(0x559b5888be90), current thread is QThread(0x559b588f6730)
Aug 11 21:03:24 gamma sddm-greeter[2143]: QObject: Cannot create
children for a parent that is in a different thread.
  (Parent is
SDDM::GreeterApp(0x7ffd9a256a40), parent's thread is
QThread(0x559b5888be90), current thread is QThread(0x559b588f6730)
Aug 11 21:03:24 gamma sddm-greeter[2143]: QObject: Cannot create
children for a parent that is in a different thread.
  (Parent is
SDDM::GreeterApp(0x7ffd9a256a40), parent's thread is
QThread(0x559b5888be90), current thread is QThread(0x559b588f6730)
Aug 11 21:03:24 gamma sddm-greeter[2143]:
QObject::installEventFilter(): Cannot filter events for objects in a
different thread.
Aug 11 21:03:24 gamma sddm-greeter[2143]: QObject: Cannot create

Re: sed and grep stopped working!

2018-08-17 Thread Todd Chester



On 08/17/2018 12:17 AM, Todd Chester wrote:

Hi All,

grep and sed stopped working!  I dnf re-installed them
both. No joy

What the heck (not my "actual" word)?


  H 

How do I fix this?

Many thanks,
-T


And now that you all write me back, they mysteriously started
working again.   AAHH!

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/AOH7KAD4HYEWQNCWNV7Z42FSS4YSAVAY/


Re: sed and grep stopped working!

2018-08-17 Thread Ed Greshko
On 08/17/18 15:17, Todd Chester wrote:
> Hi All,
>
> grep and sed stopped working!  I dnf re-installed them
> both. No joy
>
> What the heck (not my "actual" word)?
>
>
>   H 
>
> How do I fix this?
>
> Many thanks,
> -T
>
>
> uname -r
> 4.17.9-200.fc28.x86_64
>
> # rpm -qa grep
> grep-3.1-5.fc28.x86_64
>
> # rpm -qa sed
> sed-4.5-1.fc28.x86_64
>
>
>
> $ echo "a-b-c" | sed -e 's/-//g'
> 
>
> Workaround:
>     $ echo "a-b-c" | perl -pe 's/-//g'
>     abc
>
>     $ echo "a-b-c" | perl6 -pe 's:g/\-//'
>     abc
>
>
>
> $ ls -al /tmp | sed -n 3,4p
> 
>
> Workaround:
>     $  ls -al /tmp  | perl6 -ne ".say if 3 <= ++$ <= 4"
>     dr-xr-xr-x. 19 root root    278 Apr 11 20:43 ..
>     drwxr--r--.  2 todd users    40 Aug 17 00:08 ARI
>
>     $ x=3; y=4; ls -al /tmp  | perl6 -ne ".say if $x <= ++$ <= $y"
>     dr-xr-xr-x. 19 root root    278 Apr 11 20:43 ..
>     drwxr--r--.  2 todd users    40 Aug 17 00:08 ARI
>
>
>
> # echo "abc" | grep  "ab"
> 
>
> Work around:
>     $ echo "abc" | ack "ab"
>     abc

Interesting.  Something strange in your environment?

[egreshko@meimei ~]$ uname -r
4.17.14-202.fc28.x86_64

[egreshko@meimei ~]$ rpm -q grep
grep-3.1-5.fc28.x86_64

[egreshko@meimei ~]$ rpm -q sed
sed-4.5-1.fc28.x86_64

[egreshko@meimei ~]$ echo "a-b-c" | sed -e 's/-//g'
abc

[egreshko@meimei ~]$ ls -al /tmp | sed -n 3,4p
dr-xr-xr-x. 23 root root  4096 May  6 07:54 ..
-rw---.  1 egreshko egreshko 16757 Aug 16 22:52 .com.google.Chrome.cQiCz9

[egreshko@meimei ~]$ echo "abc" | grep  "ab"
abc

-- 
Conjecture is just a conclusion based on incomplete information. It isn't a 
fact.



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/YIQCGYFNUUSJ25HADJNWVJFHKN7WYFAU/


Re: sed and grep stopped working!

2018-08-17 Thread Dave Mitchell
On Fri, Aug 17, 2018 at 12:17:26AM -0700, Todd Chester wrote:
> Hi All,
> 
> grep and sed stopped working!  I dnf re-installed them
> both. No joy

Maybe your PATH and/or aliases settings are causing the wrong commands
to be chosen. Does

$ /usr/bin/echo "abc" | /usr/bin/grep "a"

work? If not, try strace to see whether any strange libraries are being
picked up:

$ /usr/bin/echo "abc" | strace -o /tmp/tr /usr/bin/grep "a"

look at /tmp/tr for open(), openat() etc entries:

$ ack '^open' /tmp/tr
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/lib64/libpcre.so.1", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/lib64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
open("/usr/lib64/gconv/gconv-modules.cache", O_RDONLY) = 3


Or maybe there's something funny in your environment; try running it with
all environment variables unset:

$ /usr/bin/echo "abc" | perl -e'%ENV = qw(); system "/usr/bin/grep a"'


-- 
This is a great day for France!
-- Nixon at Charles De Gaulle's funeral
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/EOD6ON5SMJXXV4NVPVJWYFBCXQLDL5XY/


Re: sed and grep stopped working!

2018-08-17 Thread Samuel Sieb

On 08/17/2018 12:17 AM, Todd Chester wrote:

grep and sed stopped working!  I dnf re-installed them
both. No joy


The packages to check are likely pcre and pcre2.

"rpm -q pcre pcre2"
"rpm -qV pcre pcre2"
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/BLGO652367ZY2OCRRUFNWASZJ7XTFLIT/


sed and grep stopped working!

2018-08-17 Thread Todd Chester

Hi All,

grep and sed stopped working!  I dnf re-installed them
both. No joy

What the heck (not my "actual" word)?


  H 

How do I fix this?

Many thanks,
-T


uname -r
4.17.9-200.fc28.x86_64

# rpm -qa grep
grep-3.1-5.fc28.x86_64

# rpm -qa sed
sed-4.5-1.fc28.x86_64



$ echo "a-b-c" | sed -e 's/-//g'


Workaround:
$ echo "a-b-c" | perl -pe 's/-//g'
abc

$ echo "a-b-c" | perl6 -pe 's:g/\-//'
abc



$ ls -al /tmp | sed -n 3,4p


Workaround:
$  ls -al /tmp  | perl6 -ne ".say if 3 <= ++$ <= 4"
dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
drwxr--r--.  2 todd users40 Aug 17 00:08 ARI

$ x=3; y=4; ls -al /tmp  | perl6 -ne ".say if $x <= ++$ <= $y"
dr-xr-xr-x. 19 root root278 Apr 11 20:43 ..
drwxr--r--.  2 todd users40 Aug 17 00:08 ARI



# echo "abc" | grep  "ab"


Work around:
$ echo "abc" | ack "ab"
abc





___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/JX5UFWW53HVLKZEPLYNMK5YKOGCAOY2V/


How to customize an install.img image

2018-08-17 Thread Francis . Montagnac

Hi.

We would like to add some RPMs to the install.img image for deploying
servers with PXE.

I have found this documentation:

  https://fedoraproject.org/wiki/How_to_create_a_Fedora_install_ISO_for_testing

but it seems rather outdated (the pungi command do not exist any more,
and the pungi-koji one do not seems to have the same syntax) and I
don't find the kickstart file to use for the Server install.img image.

Any idea to how to do that?

Thanks.

I know that one may use an updates.img image but it will be tedious to
build it without having the list of RPMs of the current install.img
image.

-- 
francis.montag...@inria.fr, SIC-SAM, Tel: (33) 04 92 38 79 11, Bur: C111
INRIA Sophia, 2004, route des Lucioles - BP 93 06902 Sophia Antipolis Cedex
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/GN4H4MGGT5KRD4B3I3JX4GUIBRQV7RJB/


Re: Dell XPS15 9570

2018-08-17 Thread Ed Greshko
On 08/17/18 13:07, Thomas Letherby wrote:
> I'll do both as soon as I can find my USB to Ethernet adapter as the laptop 
> doesn't
> have an Ethernet port built in. It's on my desk, but right now so is 
> everything else!

OK.  But you could do that from the VT from the command line without doing a 
"startx"?
>
> Should be able to dig it out tomorrow and get these done. 
>
> Thanks for your help so far.


Also, if you do a "startx" and then bring up the "systemsettings" GUI and go to
"displays and monitor" does everything look correct?

-- 
Conjecture is just a conclusion based on incomplete information. It isn't a 
fact.



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/DOWYYNU776A3WTQB6TIBXDYS76AITEHN/