Re: apache configuration --running two/2 test sites

2018-10-16 Thread Peter Boy

> Am 17.10.2018 um 07:01 schrieb bruce :
> 
> I have an Apache server -- http://104.248.125.83
> 
> I'm simply trying to get the two(2) sites to be accessed via two(2)
> different urls..
> http://104.248.125.83/foo
> http://104.248.125.83/oxwall
> 
> I do not have an actual FQDN, the two(2) sites are tests on the box.
> The "/foo" and "oxwall" are
> aliases within the vhost blocks.
> 
> 
> Something is obviously wrong.. No matter what I do... I'm getting the
> 1st "foo/b2evolution" site!
> Can't seem to figure out the "doh!!" issue...
> 
> The vhost files below, are included from the /etc/httpd/httpd.conf
> (listed at the end)
> 
> I thought I could run the vhost files.. didn't work.  thought I could
> try running two/separate aliases, didn't work..
> 
> I'm pretty much willing to try anything to resolve this. Given this is
> a test bo, I'm also willing to give the user/passwd if that helps..
> 
> thanks
> Any thoughts/comments...
> 
> /etc/httpd/sites-enabled/b2evolution.conf
> /etc/httpd/sites-enabled/oxwall.conf
> 
> 
> ::/etc/httpd/sites-enabled/b2evolution.conf::
> #Alias /foo /var/www/html/b2evolution
> #Alias /oxwall /var/www/html/oxwall
> 
> 
>   ServerAdmin ad...@your-domain.com
>   DocumentRoot /var/www/html/b2evolution/
>   ServerName 104.248.125.83/b2evolution
>   #ServerAlias 104.248.125.83
>  
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> allow from all
>  
>   ErrorLog /var/log/httpd/foo.com-error_log
>   CustomLog /var/log/httpd/foo.com-access_log common
> 
> 
> 
> ::/etc/httpd/sites-enabled/oxwall.conf::
> #Alias /oxwall /var/www/html/oxwall
> 
> http://104.248.125.83:80>
>   ServerAdmin ad...@your-domain.com
>   DocumentRoot /var/www/html/oxwall/
>   ServerName 104.248.125.83/oxwall
>   #ServerAlias 104.248.125.83
>  
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> allow from all
>  
>   ErrorLog /var/log/httpd/foo.com-error_log
>   CustomLog /var/log/httpd/foo.com-access_log common
> 
> ___


You are trying to run 2 name based virtual servers. This type of servers is 
using the same IP address, but different server names.

(1) you have to setup the name server of your test environment to resolve the 
names

> b2evolution

> oxwall 

to the IP address 104.248.125.83 

A "ping oxwall“ in a terminal window should get answered by  104.248.125.83


(2)
The last line in httpd.conf should contain something like
 OptionalInclude sites-enabled/*.conf

(sites-enabled is a subdir in etc/httpd)

(3)
in site-enabled there a 2 conf files:

(a) b2evolution.conf
> 
   ServerName b2evolution
> 
>   ServerAdmin ad...@your-domain.com
>   DocumentRoot /var/www/html/b2evolution/
>  
>  
>  
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> allow from all
>  
>   ErrorLog /var/log/httpd/foo.com-error_log
>   CustomLog /var/log/httpd/foo.com-access_log common
> 

(b) oxwall.conf
> 
ServerName oxwall
> 
>   ServerAdmin ad...@your-domain.com
>   DocumentRoot /var/www/html/oxwall/
>   
>   
>  
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> allow from all
>  
>   ErrorLog /var/log/httpd/foo.com-error_log
>   CustomLog /var/log/httpd/foo.com-access_log common
> 



Instead of repeating the IP you should write

> 

which makes administration of the host server a bit easier. 

Hope it helps.


Peter




—
Dr. Peter Boy
Universität Bremen
Mary-Sommerville-Str. 5
28359 Bremen
Germany

p...@zes.uni-bremen.de
www.zes.uni-bremen.de



Are you looking for a web content management system for scientific research 
organizations?
Have a look at http://www.scientificcms.org


Are you looking for a web content management system for public administrations?
Have a look at http://www.aplaws.org & https://fedorahosted.org/aplaws/
 
___
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


apache configuration --running two/2 test sites

2018-10-16 Thread bruce
I have an Apache server -- http://104.248.125.83

I'm simply trying to get the two(2) sites to be accessed via two(2)
different urls..
http://104.248.125.83/foo
http://104.248.125.83/oxwall

I do not have an actual FQDN, the two(2) sites are tests on the box.
The "/foo" and "oxwall" are
aliases within the vhost blocks.


Something is obviously wrong.. No matter what I do... I'm getting the
1st "foo/b2evolution" site!
Can't seem to figure out the "doh!!" issue...

The vhost files below, are included from the /etc/httpd/httpd.conf
(listed at the end)

I thought I could run the vhost files.. didn't work.  thought I could
try running two/separate aliases, didn't work..

I'm pretty much willing to try anything to resolve this. Given this is
a test bo, I'm also willing to give the user/passwd if that helps..

thanks
Any thoughts/comments...

/etc/httpd/sites-enabled/b2evolution.conf
/etc/httpd/sites-enabled/oxwall.conf


::/etc/httpd/sites-enabled/b2evolution.conf::
#Alias /foo /var/www/html/b2evolution
#Alias /oxwall /var/www/html/oxwall


   ServerAdmin ad...@your-domain.com
   DocumentRoot /var/www/html/b2evolution/
   ServerName 104.248.125.83/b2evolution
   #ServerAlias 104.248.125.83
  
 Options Indexes FollowSymLinks MultiViews
 AllowOverride All
 Order allow,deny
 allow from all
  
   ErrorLog /var/log/httpd/foo.com-error_log
   CustomLog /var/log/httpd/foo.com-access_log common



::/etc/httpd/sites-enabled/oxwall.conf::
#Alias /oxwall /var/www/html/oxwall

http://104.248.125.83:80>
   ServerAdmin ad...@your-domain.com
   DocumentRoot /var/www/html/oxwall/
   ServerName 104.248.125.83/oxwall
   #ServerAlias 104.248.125.83
  
 Options Indexes FollowSymLinks MultiViews
 AllowOverride All
 Order allow,deny
 allow from all
  
   ErrorLog /var/log/httpd/foo.com-error_log
   CustomLog /var/log/httpd/foo.com-access_log common

___
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


Re: kernel: Failed to load gpu_info firmware

2018-10-16 Thread Suvayu Ali
On Mon, Oct 15, 2018 at 04:41:12PM +, Rick Stevens wrote:
> > 
> > My hunch is, as the ROCm installation uses dkms to build the kernel module 
> > (which failed btw, that's why ROCm didn't work for me), the uninstallation 
> > somehow leaves behind some configuration which persists across kernels.  Do 
> > you think that's possible?
> 
> Yes, that's possible. I've never even tried ROCm, so I can't speak to
> it. You may have to rebuild your initramfs image for the kernel.
> 
> It may be easier to simply reinstall the kernel:
> 
>   sudo dnf reinstall kernel-core-4.18.12
> 
> and see if that clears the issue.

I have already tried both rebuilding the initrd, and reinstall the kernel to no 
avail :(

-- 
Suvayu

Open source is the future. It sets us free.
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Ed Greshko
On 10/17/18 11:32 AM, Philip Rhoades wrote:
> Hmm . . why am I not getting updated?  I have tried this a number of times 
> over the
> period and had just assumed I was up to date when I got this sort of result . 
> . 

Because the "kernel" packages fall into a category known as "installonlypkgs" 
and are
handled differently.

You probably have installonly_limit set to 3, the default, in 
/etc/dnf/dnf.conf.  Since
you already have 3 installed no more
will be installed with "dnf install".  But "dnf update" will remove the 
earliest version
of kernel and "install" the latest version.

If you look at the transaction details you'll only see "remove" and "install" 
related to
most kernel* packages.  You won't see
"upgrading".

-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Philip Rhoades

Rick,


On 2018-10-17 11:13, Rick Stevens wrote:

On 10/16/18 3:54 PM, Philip Rhoades wrote:

Ed,


On 2018-10-16 22:25, Ed Greshko wrote:

On 10/16/18 7:19 PM, Philip Rhoades wrote:

Hmm . . why am I not getting updated?  I have tried this a number of
times over the
period and had just assumed I was up to date when I got
this sort of result . .


Do you happen to have an "exclude" statement in your 
/etc/dnf/dnf.conf?


And, instead of "install" what do you get when you simply tupe

dnf update



Hmm . . that worked - because I have a few different machines and I am
fairly regularly re-installing, and because after re-installing I have 
a

range of programs that are used from routinely to very irregularly, I
have gotten into the habit of just using "dnf install" - then the
program gets installed if it hasn't been installed yet and just gets
updated if it has been already installed and there is a new version
available.  So why does the kernel RPM behave differently?


The trick is "dnf install" only installs/updates things that you 
specify

on the command line. "dnf update" (or "dnf upgrade" which is preferred)
looks at what's already installed on the system and updates those. So
unless you _specified_ the kernel on the "dnf install" command line, it
won't get upgraded.



My previous email was edited - I wrote:

[root@phil ~]# dnf install kernel
Last metadata expiration check: 2:28:00 ago on Tue Oct 16 19:46:36 2018.
Package kernel-4.13.9-300.fc27.x86_64 is already installed, skipping.
Package kernel-4.16.14-200.fc27.x86_64 is already installed, skipping.
Package kernel-4.16.15-300.fc28.x86_64 is already installed, skipping.
Dependencies resolved.
Nothing to do.
Complete!

[root@phil ~]# dnf install kernel-core
Last metadata expiration check: 2:28:06 ago on Tue Oct 16 19:46:36 2018.
Package kernel-core-4.13.9-300.fc27.x86_64 is already installed, 
skipping.
Package kernel-core-4.16.14-200.fc27.x86_64 is already installed, 
skipping.
Package kernel-core-4.16.15-300.fc28.x86_64 is already installed, 
skipping.

Dependencies resolved.
Nothing to do.
Complete!

Hmm . . why am I not getting updated?  I have tried this a number of 
times over the period and had just assumed I was up to date when I got 
this sort of result . .


- which is at odds with what you just wrote?

Thanks,

Phil.
--
Philip Rhoades

PO Box 896
Cowra  NSW  2794
Australia
E-mail:  p...@pricom.com.au
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Joe Zeff

On 10/16/2018 06:13 PM, Rick Stevens wrote:

The trick is "dnf install" only installs/updates things that you specify
on the command line.


Unless, of course, what you specify has dependencies that also need 
installing.

___
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


Solved - Re: 'Permission denied' running %pre script in kickstart (f28)

2018-10-16 Thread Digimer
On 2018-10-16 4:08 a.m., Digimer wrote:
> Hi all, I have a kickstart script for installing Fedora 28 that has a
> somewhat large %pre script. When anaconda tries to run it, it fails;
> 
> 
> Oct 16 07:38:55 localhost org.fedoraproject.Anaconda.Boss[1704]:
> INFO:anaconda.modules.boss.module_manager:All modules are ready now.
> Oct 16 07:38:55 localhost anaconda[1641]: anaconda: kickstart.script:
> Running kickstart %%pre script(s)
> Oct 16 07:38:55 localhost anaconda[1641]: anaconda: stdout: Running
> pre-installation scripts
> Oct 16 07:38:55 localhost anaconda[1641]: program: Running...
> /tmp/ks-script-e3w92zo7
> Oct 16 07:38:55 localhost anaconda[1641]: program: Error running :
> Permission denied
> Oct 16 07:38:55 localhost anaconda[1641]: program: Running... chvt 1
> Oct 16 07:38:55 localhost anaconda[1641]: program: Return code: 0
> Oct 16 07:38:55 localhost dbus-daemon[1704]: Reloaded configuration
> 
> 
> The script itself, when run manually, succeeds;
> 
> 
> [anaconda root@localhost tmp]# /tmp/ks-script-e3w92zo7
> Finding install drive for a Striker dashboard.
> Analyzing platter drive: [/dev/vda], using the transport: [], of the
> size: [21474836480 (20.00 GiB)]
> Selected the largest disk: [/dev/vda], which has a capacity of: [20.00 GiB]
> Writing out the partition plan to: [/tmp/plan_partitions.out]
> Completed successfully, exiting.
> 
> 
> This sounded like an SELinux denial, so I set 'selinux --permissive' to
> debug, and it still gets the same error;
> 
> 
> [anaconda root@localhost ~]# sestatus
> SELinux status: enabled
> SELinuxfs mount:/sys/fs/selinux
> SELinux root directory: /etc/selinux
> Loaded policy name: targeted
> Current mode:   permissive
> Mode from config file:  error (Success)
> Policy MLS status:  enabled
> Policy deny_unknown status: allowed
> Memory protection checking: requested (insecure)
> Max kernel policy version:  31
> 
> 
> Any thoughts on debugging?
> 
> digimer
> 
> More details;
> 
>  Source kickstart script
> $ fpaste pxe/kickstart/striker.ks
> Uploading (12.4KiB)...
> https://paste.fedoraproject.org/paste/oA96KVWZy227maIFQbkYOA
> 
> 
>  Anaconda log pre-failure
> # fpaste anaconda.log
> Uploading (0.8KiB)...
> https://paste.fedoraproject.org/paste/CWy-Xjv6rCKEea42RvZm6Q
> 
> 
>  The %pre script that fails when anaconda calls it, but works when
> called from tty2
> # fpaste ks-script-e3w92zo7
> Uploading (10.3KiB)...
> https://paste.fedoraproject.org/paste/10dAZiJUpFdnV9FqHBQ40g
> 
> 
>  syslog of install attempt
> # fpaste syslog
> Uploading (1301.5KiB)...
> https://paste.fedoraproject.org/paste/-RMntdsuc9cqTDGuEBA7EA
> 

I set: '%pre --interpreter=#!/bin/perl'. The '#!' was obviously a
mistake, though I'm not sure why it was presented as a permissions
issue. Anywho, this reply is for the archives. :)

-- 
Digimer
Papers and Projects: https://alteeve.com/w/
"I am, somehow, less interested in the weight and convolutions of
Einstein’s brain than in the near certainty that people of equal talent
have lived and died in cotton fields and sweatshops." - Stephen Jay Gould
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Rick Stevens
On 10/16/18 3:54 PM, Philip Rhoades wrote:
> Ed,
> 
> 
> On 2018-10-16 22:25, Ed Greshko wrote:
>> On 10/16/18 7:19 PM, Philip Rhoades wrote:
>>> Hmm . . why am I not getting updated?  I have tried this a number of
>>> times over the
>>> period and had just assumed I was up to date when I got
>>> this sort of result . .
>>
>> Do you happen to have an "exclude" statement in your /etc/dnf/dnf.conf?
>>
>> And, instead of "install" what do you get when you simply tupe
>>
>> dnf update
> 
> 
> Hmm . . that worked - because I have a few different machines and I am
> fairly regularly re-installing, and because after re-installing I have a
> range of programs that are used from routinely to very irregularly, I
> have gotten into the habit of just using "dnf install" - then the
> program gets installed if it hasn't been installed yet and just gets
> updated if it has been already installed and there is a new version
> available.  So why does the kernel RPM behave differently?

The trick is "dnf install" only installs/updates things that you specify
on the command line. "dnf update" (or "dnf upgrade" which is preferred)
looks at what's already installed on the system and updates those. So
unless you _specified_ the kernel on the "dnf install" command line, it
won't get upgraded.

> I will see if the new kernel helps with this Chrome / YT problem now 
> --
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
--
-  Always remember you're unique, just like everyone else.   -
--
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Philip Rhoades

Ed,


On 2018-10-16 22:25, Ed Greshko wrote:

On 10/16/18 7:19 PM, Philip Rhoades wrote:
Hmm . . why am I not getting updated?  I have tried this a number of 
times over the
period and had just assumed I was up to date when I got 
this sort of result . .


Do you happen to have an "exclude" statement in your /etc/dnf/dnf.conf?

And, instead of "install" what do you get when you simply tupe

dnf update



Hmm . . that worked - because I have a few different machines and I am 
fairly regularly re-installing, and because after re-installing I have a 
range of programs that are used from routinely to very irregularly, I 
have gotten into the habit of just using "dnf install" - then the 
program gets installed if it hasn't been installed yet and just gets 
updated if it has been already installed and there is a new version 
available.  So why does the kernel RPM behave differently?


I will see if the new kernel helps with this Chrome / YT problem now . .

Thanks,

Phil.
--
Philip Rhoades

PO Box 896
Cowra  NSW  2794
Australia
E-mail:  p...@pricom.com.au
___
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


Re: Can't play .mov video -

2018-10-16 Thread Samuel Sieb

On 10/16/18 10:59 AM, Bob Goodwin-Fastmail wrote:

VLC on the Fedora 27 plays the same files, this one does not?


What version of vlc do you have on each computer?
___
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


Re: Can't play .mov video -

2018-10-16 Thread Samuel Sieb

On 10/16/18 2:57 PM, Ed Greshko wrote:

On 10/17/18 1:59 AM, Bob Goodwin-Fastmail wrote:

libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
libva info: va_openDriver() returns -1
[7f87d8002b90] glconv_vaapi_drm gl error: vaInitialize: unknown libva error
Failed to open VDPAU backend libvdpau_va_gl.so: cannot open shared object file: 
No such
file or directory


I then think the question is

What is the video HW on the F27 versus the F28 system?

And, do you have libva-intel-driver installed?


I'm pretty sure those "errors" are not critical.  It's just trying to 
use libva if possible, but it falls back to other methods if not.

___
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


Re: Can't play .mov video -

2018-10-16 Thread Ed Greshko
On 10/17/18 1:59 AM, Bob Goodwin-Fastmail wrote:
> On 10/16/18 07:22, Ed Greshko wrote:
>> Try this instead...
>>
>> cvlc /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV
>>
>> The errors above seem related to the GUI of vlc.
> .
> [bobg@box83 ~]$ cvlc 
> /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV
> VLC media player 3.0.4 Vetinari (revision 3.0.4-0-gf615db6332)
> [5569b315cee0] dummy interface: using the dummy interface module...
> libva info: VA-API version 1.1.0
> libva info: va_getDriverName() returns 0
> libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
> libva info: va_openDriver() returns -1
> [7f87d8002b90] glconv_vaapi_x11 gl error: vaInitialize: unknown libva 
> error
> libva info: VA-API version 1.1.0
> libva info: va_getDriverName() returns 0
> libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
> libva info: va_openDriver() returns -1
> [7f87d8002b90] glconv_vaapi_drm gl error: vaInitialize: unknown libva 
> error
> libva info: VA-API version 1.1.0
> libva info: va_getDriverName() returns 0
> libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
> libva info: va_openDriver() returns -1
> [7f87d8002b90] glconv_vaapi_drm gl error: vaInitialize: unknown libva 
> error
> Failed to open VDPAU backend libvdpau_va_gl.so: cannot open shared object 
> file: No such
> file or directory
>
>
> I tried dnf installing qt5, and removed it. DNF removed and re-installed VLC 
> per
> instructions on their web page. Nothing I've tried has fixed the problem.

I would not be concerned with the GUI related issues.

>
> VLC on the Fedora 27 plays the same files, this one does not?

I then think the question is

What is the video HW on the F27 versus the F28 system?

And, do you have libva-intel-driver installed?


-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Frédéric
> Other than that, you could try filing a kernel bug.

done: https://bugzilla.kernel.org/show_bug.cgi?id=201447

Regards,

F
___
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


Re: Apache -- httpd.conf -- VirtualHost issues..

2018-10-16 Thread Peter Boy
I don’t know but I wouldn’t mind. We discuss here application software issues 
and the Fedora Apache configuration has some peculiarities.  

> Am 16.10.2018 um 20:22 schrieb bruce :
> 
> Hi.
> 
> Got a situation, probably simple with a test apache setup. I know this
> is offtopic. Wondering if I can post it here?
> 
> thanks
> ___
> 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

—
Dr. Peter Boy
Universität Bremen
Mary-Sommerville-Str. 5
28359 Bremen
Germany

p...@zes.uni-bremen.de
___
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


Re: Can't play .mov video

2018-10-16 Thread Samuel Sieb

On 10/16/18 12:31 PM, Bob Goodwin-Fastmail wrote:

On 10/16/18 14:19, Samuel Sieb wrote:


Try running:
ffmpeg -i 
'/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV' -map 
0:0 -map 0:1 -c copy ~/testoutput.mp4
(Change the output file as necessary, but make sure it has an .mp4 
extension.)

See if that file will play.

.
so I did:  [bobg@box83 ~]$ ffmpeg -i 
'/mnt/box48/2018-ELLA-DANCE/finalVideo.MP4' -map 0:0 -map 0:1 -c copy 
~/testoutput.mp4


and that plays when I do: $ vlc testoutput.mp4

However, mp4's did play before /i/ began this exercise, now when I try 
to open the original file from Thunar nothing seems to happen ...


What that command did was repackage the content into an mp4 container 
and remove those two unrecognized streams.  There was no re-encoding 
involved.  It's the exact same video bitstream as the original file. 
Something about those extra streams is causing a problem with the 
players.  You can run that process on all the files you're having 
trouble with.  I often do the same thing to get files to play on a 
Chromecast.  It won't play .mkv files even though the content is exactly 
the same as the resulting .mp4 file that does play.


In future, ask whoever is sending these videos to you to turn off hevc 
on their camera app.

_

.
The other file format you mention is probably one of these: 
/mnt/box48/2018-05-MAY-12-ELLA-SCARLETT/IMG_7557.HEIC


J believe that is an alternate for jpeg and we have avoided using it so 
far.


It applies to video as well.  Although in your case, you do still have 
the h264 stream.  Maybe it has both or maybe there was a conversion done 
somewhere along the line.  See the following link for a description of 
your problem on Macs:

https://discussions.apple.com/thread/8247531
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Samuel Sieb

On 10/16/18 12:21 PM, Frédéric wrote:

Do you have windows on that laptop?  That would narrow the problem down
to whether it is the hardware and the card


well, the card works well on an older PC with F28 and on my Android phone...


Sure, but they have different reader hardware.
___
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


Re: Wifi Connection in F28 KDE Timing out Waiting for Kwallet Password?

2018-10-16 Thread Rex Dieter
Ed Greshko wrote:

> On 10/16/18 7:58 PM, Rex Dieter wrote:
>> Ed Greshko wrote:
>>> my login pw is the
>>> same as my wallet pw and I'm still prompted for the kwallet pw on login.
>> Interesting, that should be all that is required.  Clearly something is
>> going wrong somewhere.
> 
> It works for you?

Yes.

> Suggestion as to how to troubleshoot?  I'm not very familiar with pam. 

Good question, I don't know.  I've never seen it not work before.

> FWIW, my .config/kwalletrc is
> 
> [Migration]
> alreadyMigrated=true
> 
> [Wallet]
> Close When Idle=false
> Close on Screensaver=false
> Default Wallet=kwallet5
> Enabled=true
> First Use=false
> Idle Timeout=10
> Launch Manager=false
> Leave Manager Open=true
> Leave Open=false
> Prompt on Open=false
> Use One Wallet=true

For comparison, my ~/.config/kwalletrc has just:
[Migration]
alreadyMigrated=true

[Wallet]
First Use=false


___
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


Re: Can't play .mov video

2018-10-16 Thread Bob Goodwin-Fastmail

On 10/16/18 14:19, Samuel Sieb wrote:


Try running:
ffmpeg -i 
'/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV' -map 
0:0 -map 0:1 -c copy ~/testoutput.mp4
(Change the output file as necessary, but make sure it has an .mp4 
extension.)

See if that file will play.

.
so I did:  [bobg@box83 ~]$ ffmpeg -i 
'/mnt/box48/2018-ELLA-DANCE/finalVideo.MP4' -map 0:0 -map 0:1 -c copy 
~/testoutput.mp4


and that plays when I do: $ vlc testoutput.mp4

However, mp4's did play before /i/ began this exercise, now when I try 
to open the original file from Thunar nothing seems to happen ...



In future, ask whoever is sending these videos to you to turn off hevc 
on their camera app.

_

.
The other file format you mention is probably one of these: 
/mnt/box48/2018-05-MAY-12-ELLA-SCARLETT/IMG_7557.HEIC


J believe that is an alternate for jpeg and we have avoided using it so far.

--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box83  FEDORA-28/64bit LINUX XFCE Fastmail POP3
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Frédéric
> Do you have windows on that laptop?  That would narrow the problem down
> to whether it is the hardware and the card

well, the card works well on an older PC with F28 and on my Android phone...

> Other than that, you could try filing a kernel bug.  That's all I can
> suggest.

thanks,

F
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Samuel Sieb

On 10/16/18 11:42 AM, Frédéric wrote:

but there is really nothing else in the log.


Strange that there is no initialization message for the reader.


However, if I try with another SDXC card (older), it works and I get this:
oct. 16 20:13:06 alpha kernel: mmc0: cannot verify signal voltage switch
oct. 16 20:13:06 alpha kernel: mmc0: new ultra high speed SDR104 SDXC
card at address e624
oct. 16 20:13:06 alpha kernel: mmcblk0: mmc0:e624 SU64G 59.5 GiB
oct. 16 20:13:06 alpha kernel:  mmcblk0: p1

Does that help?


Do you have windows on that laptop?  That would narrow the problem down 
to whether it is the hardware and the card or if it's a driver issue. 
Other than that, you could try filing a kernel bug.  That's all I can 
suggest.

___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Frédéric
> > Oct 16 17:58:48 alpha kernel: mmc0: error -110 whilst initialising SD card
>
> I didn't mean to grep for it.  I meant that while you were running
> "journalctl -b", you can search for that text and somewhere around it
> should be the initialization messages.  Try searching for RTS525A as
> well or just scan through all the messages and see if you can find anything.

but there is really nothing else in the log.

However, if I try with another SDXC card (older), it works and I get this:
oct. 16 20:13:06 alpha kernel: mmc0: cannot verify signal voltage switch
oct. 16 20:13:06 alpha kernel: mmc0: new ultra high speed SDR104 SDXC
card at address e624
oct. 16 20:13:06 alpha kernel: mmcblk0: mmc0:e624 SU64G 59.5 GiB
oct. 16 20:13:06 alpha kernel:  mmcblk0: p1

Does that help?

F
___
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


Apache -- httpd.conf -- VirtualHost issues..

2018-10-16 Thread bruce
Hi.

Got a situation, probably simple with a test apache setup. I know this
is offtopic. Wondering if I can post it here?

thanks
___
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


Re: Can't play .mov video

2018-10-16 Thread Samuel Sieb

On 10/16/18 10:59 AM, Bob Goodwin-Fastmail wrote:

On 10/16/18 07:22, Ed Greshko wrote:

Also, do as Samuel suggested.

ffprobe /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

.
[bobg@box83 ~]$ ffprobe 
/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 
'/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV':

   Metadata:
     com.apple.quicktime.make: Apple
     com.apple.quicktime.model: iPhone X
     com.apple.quicktime.software: 11.3.1


New iOS has a new proprietary compression format for pictures and video.


   Duration: 00:00:46.02, start: 0.00, bitrate: 23273 kb/s
     Stream #0:0(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
mono, fltp, 96 kb/s (default)

     Metadata:
   creation_time   : 2018-06-15T15:18:32.00Z
   handler_name    : Core Media Data Handler
     Stream #0:1(und): Video: h264 (High) (avc1 / 0x31637661), 
yuv420p(tv, bt709), 1920x1080, 23167 kb/s, 59.99 fps, 60 tbr, 600 tbn, 
1200 tbc (default)

     Metadata:
   creation_time   : 2018-06-15T15:18:32.00Z
   handler_name    : Core Media Data Handler
   encoder : H.264


It looks like it has compressed using h264.


     Stream #0:2(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
     Metadata:
   creation_time   : 2018-06-15T15:18:32.00Z
   handler_name    : Core Media Data Handler
     Stream #0:3(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
     Metadata:
   creation_time   : 2018-06-15T15:18:32.00Z
   handler_name    : Core Media Data Handler
Unsupported codec with id 0 for input stream 2
Unsupported codec with id 0 for input stream 3


But it also has this.

I tried dnf installing qt5, and removed it. DNF removed and re-installed 
VLC per instructions on their web page. Nothing I've tried has fixed the 
problem.


The ui warnings are irrelevant.


VLC on the Fedora 27 plays the same files, this one does not?


That is interesting.

Try running:
ffmpeg -i 
'/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV' -map 0:0 
-map 0:1 -c copy ~/testoutput.mp4
(Change the output file as necessary, but make sure it has an .mp4 
extension.)

See if that file will play.

In future, ask whoever is sending these videos to you to turn off hevc 
on their camera app.

___
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


Re: Can't play .mov video -

2018-10-16 Thread Bob Goodwin-Fastmail

On 10/16/18 07:22, Ed Greshko wrote:

Try this instead...

cvlc /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

The errors above seem related to the GUI of vlc.

.
[bobg@box83 ~]$ cvlc 
/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

VLC media player 3.0.4 Vetinari (revision 3.0.4-0-gf615db6332)
[5569b315cee0] dummy interface: using the dummy interface module...
libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
libva info: va_openDriver() returns -1
[7f87d8002b90] glconv_vaapi_x11 gl error: vaInitialize: unknown 
libva error

libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
libva info: va_openDriver() returns -1
[7f87d8002b90] glconv_vaapi_drm gl error: vaInitialize: unknown 
libva error

libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib64/dri/i965_drv_video.so
libva info: va_openDriver() returns -1
[7f87d8002b90] glconv_vaapi_drm gl error: vaInitialize: unknown 
libva error
Failed to open VDPAU backend libvdpau_va_gl.so: cannot open shared 
object file: No such file or directory


Also, do as Samuel suggested.

ffprobe /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

.
[bobg@box83 ~]$ ffprobe 
/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

ffprobe version 4.0.2 Copyright (c) 2007-2018 the FFmpeg developers
  built with gcc 8 (GCC)
  configuration: --prefix=/usr --bindir=/usr/bin 
--datadir=/usr/share/ffmpeg --docdir=/usr/share/doc/ffmpeg 
--incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --mandir=/usr/share/man 
--arch=x86_64 --optflags='-O2 -g -pipe -Wall -Werror=format-security 
-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions 
-fstack-protector-strong -grecord-gcc-switches 
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic 
-fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' 
--extra-ldflags='-Wl,-z,relro -Wl,-z,now 
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld ' --extra-cflags=' ' 
--enable-libopencore-amrnb --enable-libopencore-amrwb 
--enable-libvo-amrwbenc --enable-version3 --enable-bzlib 
--disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt 
--enable-gnutls --enable-ladspa --enable-libaom --enable-libass 
--enable-libbluray --enable-libcdio --enable-libdrm --enable-indev=jack 
--enable-libfreetype --enable-libfribidi --enable-libgsm 
--enable-libmp3lame --enable-nvenc --enable-openal --enable-opencl 
--enable-opengl --enable-libopenjpeg --enable-libopus --enable-libpulse 
--enable-librsvg --enable-libsoxr --enable-libspeex --enable-libtheora 
--enable-libvorbis --enable-libv4l2 --enable-libvidstab --enable-libvpx 
--enable-libx264 --enable-libx265 --enable-libxvid --enable-libzvbi 
--enable-avfilter --enable-avresample --enable-postproc 
--enable-pthreads --disable-static --enable-shared --enable-gpl 
--disable-debug --disable-stripping --shlibdir=/usr/lib64 
--enable-libmfx --enable-runtime-cpudetect

  libavutil  56. 14.100 / 56. 14.100
  libavcodec 58. 18.100 / 58. 18.100
  libavformat    58. 12.100 / 58. 12.100
  libavdevice    58.  3.100 / 58.  3.100
  libavfilter 7. 16.100 /  7. 16.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale  5.  1.100 /  5.  1.100
  libswresample   3.  1.100 /  3.  1.100
  libpostproc    55.  1.100 / 55.  1.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 
'/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV':

  Metadata:
    major_brand : qt
    minor_version   : 0
    compatible_brands: qt
    creation_time   : 2018-06-15T15:18:32.00Z
    com.apple.quicktime.make: Apple
    com.apple.quicktime.model: iPhone X
    com.apple.quicktime.software: 11.3.1
    com.apple.quicktime.creationdate: 2018-06-15T09:43:33-0400
    com.apple.photos.originating.signature: AToJLWY9rdHrCpFMX518ca+c+Zvo
  Duration: 00:00:46.02, start: 0.00, bitrate: 23273 kb/s
    Stream #0:0(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, 
mono, fltp, 96 kb/s (default)

    Metadata:
  creation_time   : 2018-06-15T15:18:32.00Z
  handler_name    : Core Media Data Handler
    Stream #0:1(und): Video: h264 (High) (avc1 / 0x31637661), 
yuv420p(tv, bt709), 1920x1080, 23167 kb/s, 59.99 fps, 60 tbr, 600 tbn, 
1200 tbc (default)

    Metadata:
  creation_time   : 2018-06-15T15:18:32.00Z
  handler_name    : Core Media Data Handler
  encoder : H.264
    Stream #0:2(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
    Metadata:
  creation_time   : 2018-06-15T15:18:32.00Z
  handler_name    : Core Media Data Handler
    Stream #0:3(und): Data: none (mebx / 0x7862656D), 0 kb/s (default)
    Metadata:
  creation_time   : 2018-06-15T15:18:32.00Z
  handler_name    : Core Media Data Handler

Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Samuel Sieb

On 10/16/18 9:04 AM, Frédéric wrote:

  Check the output of lspci to see what your SD reader device is.


03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd.
RTS525A PCI Express Card Reader (rev 01)


Looking around, this device seems to have issues under Linux with people 
reporting the same symptoms that you are getting.  I would suggest 
filing an upstream kernel bug report.



  Also check "journalctl -b" to check for initialization messages.  Searching 
for mmc
should find the right area.


Oct 16 17:58:45 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:46 alpha kernel: mmc0: error -110 whilst initialising SD card
Oct 16 17:58:47 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:47 alpha kernel: mmc0: error -110 whilst initialising SD card
Oct 16 17:58:48 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:48 alpha kernel: mmc0: error -110 whilst initialising SD card


I didn't mean to grep for it.  I meant that while you were running 
"journalctl -b", you can search for that text and somewhere around it 
should be the initialization messages.  Try searching for RTS525A as 
well or just scan through all the messages and see if you can find anything.


For example, this is what my log shows:
Oct 03 06:22:56 kernel: sdhci: Secure Digital Host Controller Interface 
driver

Oct 03 06:22:56 kernel: sdhci: Copyright(c) Pierre Ossman
Oct 03 06:22:56 kernel: sdhci-pci :23:00.1: SDHCI controller found 
[197b:2392] (rev 30)
Oct 03 06:22:56 kernel: sdhci-pci :23:00.1: enabling device ( -> 
0002)
Oct 03 06:22:56 kernel: mmc0 bounce up to 128 segments into one, max 
segment size 65536 bytes
Oct 03 06:22:56 kernel: mmc0: SDHCI controller on PCI [:23:00.1] 
using DMA
Oct 03 06:22:56 kernel: sdhci-pci :23:00.2: SDHCI controller found 
[197b:2391] (rev 30)
Oct 03 06:22:56 kernel: sdhci-pci :23:00.2: Refusing to bind to 
secondary interface.

___
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


Re: What are the differences between systemd and non-systemd Linux distros?

2018-10-16 Thread Garry Williams
On Tue, Oct 16, 2018 at 7:58 AM Temlakos  wrote:
> On 10/16/18 6:40 AM, Patrick O'Callaghan wrote:
> > This is not a question about Fedora. It would be better to ask on a
> > general-purpose question site such as Quora (www.quora.com).
>
> Which someone has done. Here is a search result on quora.com with
> systemd as a keyword:
>
> https://www.quora.com/topic/systemd

Which is overflowing with inaccurate remarks.

-- 
Garry Williams
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Frédéric
> > [  172.702897] mmc0: new SDXC card at address 
> > [  172.727538] mmcblk0: mmc0: SN64G 59.5 GiB
> > [  172.729685]  mmcblk0: p1
>
> That suggests that it might be a reader or driver problem.

I check the doc and it should really read SDXC.

>  Check the output of lspci to see what your SD reader device is.

03:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd.
RTS525A PCI Express Card Reader (rev 01)

>  Also check "journalctl -b" to check for initialization messages.  Searching 
> for mmc
> should find the right area.

Oct 16 17:58:45 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:46 alpha kernel: mmc0: error -110 whilst initialising SD card
Oct 16 17:58:47 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:47 alpha kernel: mmc0: error -110 whilst initialising SD card
Oct 16 17:58:48 alpha kernel: mmc0: cannot verify signal voltage switch
Oct 16 17:58:48 alpha kernel: mmc0: error -110 whilst initialising SD card


That's all about it...

Kind regards,

F
___
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


Re: Install / as RAID 0

2018-10-16 Thread Doug H.
On Tue, 2018-10-16 at 09:53 -0500, Richard Shaw wrote:
> On Tue, Oct 16, 2018 at 9:38 AM Doug H. <
> fedoraproject@wombatz.com> wrote:
> > If you just want to get it installed so that you can play with it,
> > then
> > the installer can do the raid creation for you. I agree that there
> > is
> > value in learning to do it via mdadm before hand but that is really
> > not
> > required now.
> > I used vitual box to do a minimal install using:
> > 
> > Fedora-Workstation-netinst-x86_64-28-1.1.iso
> > 
> > I made all partitions raid0 just to test it.
> > 
> > I used the custom disk setup option and created the below...
> > (nothing changed after install)
> 
> Ok, so just to confirm, you do have to choose the bivlet-gui method
> of partitioning to setup RAID, correct?


Before deleting the tests I happened to notice that my first "custom"
install did not actually use the full available space on the two drives
for the root partition. This seems to be due to selecting the size
before setting it to raid0. The installer had topped out the size
before I was able to tell it that it gets both drive partitions to use.
The solution was to select 100G for the size of the "/" partition as a
last step. It then simply set it to the full available space remaining.
So that is a small "got ya" issue for the "Custom" option that the
bivlet does not seem to suffer from.


-- 
Doug H.


___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Samuel Sieb

On 10/16/18 12:19 AM, Frédéric wrote:

well, it is strange because it works on an older computer with the same F28.
On this other computer, this is what I get:
[  172.702897] mmc0: new SDXC card at address 
[  172.727538] mmcblk0: mmc0: SN64G 59.5 GiB
[  172.729685]  mmcblk0: p1


That suggests that it might be a reader or driver problem.  Check the 
output of lspci to see what your SD reader device is.  Also check 
"journalctl -b" to check for initialization messages.  Searching for mmc 
should find the right area.

___
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


Re: Install / as RAID 0

2018-10-16 Thread Doug H.
On Tue, 2018-10-16 at 09:53 -0500, Richard Shaw wrote:
> On Tue, Oct 16, 2018 at 9:38 AM Doug H. <
> fedoraproject@wombatz.com> wrote:
> > If you just want to get it installed so that you can play with it,
> > then
> > the installer can do the raid creation for you. I agree that there
> > is
> > value in learning to do it via mdadm before hand but that is really
> > not
> > required now.
> > I used vitual box to do a minimal install using:
> > 
> > Fedora-Workstation-netinst-x86_64-28-1.1.iso
> > 
> > I made all partitions raid0 just to test it.
> > 
> > I used the custom disk setup option and created the below...
> > (nothing changed after install)
> 
> Ok, so just to confirm, you do have to choose the bivlet-gui method
> of partitioning to setup RAID, correct?


I have not done the actual install yet but I just did the setup using
the bivlet thing. It was just a bit more "expert" but not much. It
looks like it would be happy to build a degraded raid with just one
device. Not sure if the base level "custom" would allow that.

Otherwise it does look like this would work fine and it does seem to
give you some more options. But personally I would suggest you just use
the regular "custom" build to get it going since you are new to playing
with raid.

P.S. One thing I was surprised about is that the raids from my first
test were not created with bitmaps. Maybe that is not as helpful for
raid0. My experience is with raid1.

-- 
Doug H.
___
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


Re: Install / as RAID 0

2018-10-16 Thread Doug H.
On Tue, 2018-10-16 at 09:53 -0500, Richard Shaw wrote:
> On Tue, Oct 16, 2018 at 9:38 AM Doug H. <
> fedoraproject@wombatz.com> wrote:
> > If you just want to get it installed so that you can play with it,
> > then
> > the installer can do the raid creation for you. I agree that there
> > is
> > value in learning to do it via mdadm before hand but that is really
> > not
> > required now.
> > I used vitual box to do a minimal install using:
> > 
> > Fedora-Workstation-netinst-x86_64-28-1.1.iso
> > 
> > I made all partitions raid0 just to test it.
> > 
> > I used the custom disk setup option and created the below...
> > (nothing changed after install)
> 
> Ok, so just to confirm, you do have to choose the bivlet-gui method
> of partitioning to setup RAID, correct?

Sorry, should have said. I did *not* use that mode since I have recent
experience using the regular "custom" option. I had recently done the
same test using raid1 so I was curious if 0 would also be allowed for
all partitions. I can't even remember if I have checked out the bivlet
thing yet so will give it a spin to see what it looks like.

For the regular/custom it is just a simple pull down that selects raid 
levels among other options.

-- 
Doug H.


___
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


Re: Install / as RAID 0

2018-10-16 Thread Richard Shaw
On Tue, Oct 16, 2018 at 9:38 AM Doug H. 
wrote:

>
> If you just want to get it installed so that you can play with it, then
> the installer can do the raid creation for you. I agree that there is
> value in learning to do it via mdadm before hand but that is really not
> required now.
>

> I used vitual box to do a minimal install using:
>
> Fedora-Workstation-netinst-x86_64-28-1.1.iso
>
> I made all partitions raid0 just to test it.
>
> I used the custom disk setup option and created the below...
> (nothing changed after install)
>

Ok, so just to confirm, you do have to choose the bivlet-gui method of
partitioning to setup RAID, correct?

Thanks,
Richard
___
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


Re: Install / as RAID 0

2018-10-16 Thread Doug H.
On Tue, 2018-10-16 at 08:06 -0500, Richard Shaw wrote:
> I got some very old computers (Pentium 4) and quite frankly it's
> choking on the installer (40 minutes to draw a window to setup
> partitions), but since it's a system I don't care about I wanted to
> experiment with RAID since I've never done so before.
> 
> To make setting up the partitions easier I used System Rescue CD
> which boots up and is usable within a reasonable amount of time. The
> systems came with 80GB drives so I move one over and setup the
> partition layout is as follows:
> 
> /dev/sda1 /boot 4GB (too big, but I want it to match partition 1 on
> sdb)
> /dev/sda2 RAID 0 (remainder)
> /dev/sdb1 SWAP 4GB
> /dev/sdb2 RAID 0 (remainder)
> 
> I setup the RAID 0 with mdadm...

If you just want to get it installed so that you can play with it, then
the installer can do the raid creation for you. I agree that there is
value in learning to do it via mdadm before hand but that is really not
required now.

I used vitual box to do a minimal install using:

Fedora-Workstation-netinst-x86_64-28-1.1.iso

I made all partitions raid0 just to test it.

I used the custom disk setup option and created the below...
(nothing changed after install)

$ df -Th
Filesystem Type  Size  Used Avail Use% Mounted on
devtmpfs   devtmpfs  483M 0  483M   0% /dev
tmpfs  tmpfs 493M 0  493M   0% /dev/shm
tmpfs  tmpfs 493M  604K  492M   1% /run
tmpfs  tmpfs 493M 0  493M   0% /sys/fs/cgroup
/dev/md125 ext4  6.6G  873M  5.4G  14% /
tmpfs  tmpfs 493M  4.0K  493M   1% /tmp
/dev/md126 ext4  575M   88M  446M  17% /boot
tmpfs  tmpfs  99M 0   99M   0% /run/user/1000

$ swapon -s
FilenameTypeSizeUsedPriority
/dev/md127  partition   2099196 0   -2


$ cat /proc/mdstat 
Personalities : [raid0] 
md125 : active raid0 sda3[0] sdb3[1]
  7032832 blocks super 1.2 512k chunks
  
md126 : active raid0 sdb2[1] sda2[0]
  614400 blocks super 1.2 512k chunks
  
md127 : active raid0 sda1[0] sdb1[1]
  2099200 blocks super 1.2 512k chunks
  
unused devices: 



$ ls -la /dev/md
total 0
drwxr-xr-x.  2 root root  100 Oct 16 07:33 .
drwxr-xr-x. 20 root root 3860 Oct 16 07:33 ..
lrwxrwxrwx.  1 root root8 Oct 16 07:33 boot -> ../md126
lrwxrwxrwx.  1 root root8 Oct 16 07:33 root -> ../md125
lrwxrwxrwx.  1 root root8 Oct 16 07:33 swap -> ../md127


-- 
Doug H.

___
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


Install / as RAID 0

2018-10-16 Thread Richard Shaw
I got some very old computers (Pentium 4) and quite frankly it's choking on
the installer (40 minutes to draw a window to setup partitions), but since
it's a system I don't care about I wanted to experiment with RAID since
I've never done so before.

To make setting up the partitions easier I used System Rescue CD which
boots up and is usable within a reasonable amount of time. The systems came
with 80GB drives so I move one over and setup the partition layout is as
follows:

/dev/sda1 /boot 4GB (too big, but I want it to match partition 1 on sdb)
/dev/sda2 RAID 0 (remainder)
/dev/sdb1 SWAP 4GB
/dev/sdb2 RAID 0 (remainder)

I setup the RAID 0 with mdadm... I still don't know exactly what I'm doing
but I ended up using the LXDE spin because Gnome Live was unusable.
Sometimes the installer sees /dev/md0 and sometimes it doesn't (shows 0
bytes available).

The one time I got through the partitioning using bivlet it complained
about /dev/sdb1 and wouldn't show OK on the main screen, but that's SWAP,
why does it care? If I don't select both drives it won't let me setup
/dev/md0.

Yesterday I tried installing Bodhi linux, I would rather stay with Fedora
or at least something RPM based but it seemed to run decently and the
installer recognized /dev/md0 (after I did an apt install mdadm which
auto-created /etc/mdadm/mdadm.conf) and let me install to it.

However... One I rebooted it dropped into busybox. I assume this is either
because /etc is on root so it can't see it OR I need to recreate the initrd
with the right kernel module? Not sure and I haven't been able to find good
instructions for root as RAID... Probably not a good idea, but it's a trash
system so I was just playing with it anyway.

Ideas?

Thanks,
Richard
___
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


[389-users] Re: Password policy not working

2018-10-16 Thread Nick W. Harrison
Aside from any default policies, I created a password policy for the subtree on 
ou=People,dc=example,dc=org. The enabled settings in that policy are:


* Fine-grained subtree policy enabled

* Password expires after x days

* Check password syntax (followed by the specifications for that)

The "User may change password" option is left unchecked in this password policy.

I don't have a user password policy enabledonly subtree. I have my user 
objects and password being synced over from AD via a unidirectional 
relationship (win-to-linux).





From: Mark Reynolds 
Sent: Monday, October 15, 2018 3:19 PM
To: General discussion list for the 389 Directory server project. 
<389-users@lists.fedoraproject.org>; Nick W. Harrison 

Subject: Re: [389-users] Re: Password policy not working



On 10/15/18 10:09 AM, Nick W. Harrison wrote:
The version of 389-ds-base is 1.3.7.5-24.

The below snippet appears to be the full sequence from the access log on my 
LDAP server. I have a Linux client using SSSD to bind to the directory 
(account: mybindacct). I SSH into my client as johndoe and change my password 
with the usual passwd command.

[15/Oct/2018:09:26:11.609685215 -0400] conn=206895 TLS1.2 256-bit AES-GCM
[15/Oct/2018:09:26:11.612881217 -0400] conn=206895 op=0 SRCH base="" scope=0 
filter="(objectClass=*)" attrs="* altServer namingContexts supportedControl 
supportedExtension supportedFeatures supportedLDAPVersion 
supportedSASLMechanisms domaincontrollerfunctionality defaultnamingcontext 
lastusn highestcommittedusn aci"
[15/Oct/2018:09:26:11.613707013 -0400] conn=206895 op=0 RESULT err=0 tag=101 
nentries=1 etime=0.0011199684
[15/Oct/2018:09:26:11.615468995 -0400] conn=206895 op=1 BIND 
dn="uid=mybindacct,ou=Special Users,dc=example,dc=org" method=128 version=3
[15/Oct/2018:09:26:11.615687824 -0400] conn=206895 op=1 RESULT err=0 tag=97 
nentries=0 etime=0.260954 dn="uid=mybindacct,ou=special 
users,dc=example,dc=org"
[15/Oct/2018:09:26:11.616003685 -0400] conn=206895 op=2 BIND 
dn="uid=johndoe,ou=Test,ou=People,dc=example,dc=org" method=128 version=3
[15/Oct/2018:09:26:11.616327955 -0400] conn=206895 op=2 RESULT err=0 tag=97 
nentries=0 etime=0.365138 
dn="uid=johndoe,ou=test,ou=people,dc=example,dc=org"
[15/Oct/2018:09:26:11.624910413 -0400] conn=206895 op=3 EXT 
oid="1.3.6.1.4.1.4203.1.11.1" name="passwd_modify_plugin"
[15/Oct/2018:09:26:11.627984160 -0400] conn=206895 op=3 RESULT err=0 tag=120 
nentries=0 etime=0.0003117005
[15/Oct/2018:09:26:11.630152739 -0400] conn=206895 op=4 UNBIND

One question is which account is actually doing the attribute change: is it my 
SSSD bind account the one updating the johndoe password attribute on behalf of 
the johndoe user?

It should be changing it as "uid=johndoe,ou=test,ou=people,dc=example,dc=org", 
but perhaps the password modify extended operation is bypassing the password 
policy?  I need to try and reproduce this before opening a ticket.  So the 
global password policy under cn=config allows users to change their password, 
but a subtree policy denies the user this privilege but they are still allowed 
to reset their own password, is this correct?  I need to make sure I am using 
the same setup as you are.

Mark





Thanks,
Nick


From: Mark Reynolds 
Sent: Friday, October 12, 2018 12:32 PM
To: General discussion list for the 389 Directory server project. 
<389-users@lists.fedoraproject.org>; 
Nick W. Harrison 

Subject: Re: [389-users] Password policy not working


That is the wrong package "389-ds", what is the version of "389-ds-base"?

Can you share what is in the server's access log when the password is changed 
(/var/log/dirsrv/slapd-YOUR_INSTACE/access)?  There should be a few operations 
that occur during the password change so please make sure to provide a full 
clip from the log.

Thanks,

Mark


On 10/12/18 12:05 PM, Nick W. Harrison wrote:
Hello -

I have a password policy on the OU that contains all of my user accounts. This 
password policy is set on the subtree and the "user may change password" option 
is deselected. However, I'm still able to change my password if I use passwd on 
a LDAP client.

I'm running an older version of 389-ds...v.1.2.2-6...and am wondering if there 
is anything additional I need to put in place to prevent users from changing 
their passwords. My accounts and passwords are replicated over from AD with a 
unidirectional relationship, and the clients are doing simple binds.

Thanks for any thoughts.




___

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: 

Re: Wifi Connection in F28 KDE Timing out Waiting for Kwallet Password?

2018-10-16 Thread Ed Greshko
On 10/16/18 7:58 PM, Rex Dieter wrote:
> Ed Greshko wrote:
>
>>
>> My system is running F28 after upgrades from previous versions.  It does
>> have pam-kwallet installed and my login pw is the
>> same as my wallet pw and I'm still prompted for the kwallet pw on login.
> Interesting, that should be all that is required.  Clearly something is 
> going wrong somewhere.

It works for you?

Suggestion as to how to troubleshoot?  I'm not very familiar with pam.  FWIW, my
.config/kwalletrc is

[Migration]
alreadyMigrated=true

[Wallet]
Close When Idle=false
Close on Screensaver=false
Default Wallet=kwallet5
Enabled=true
First Use=false
Idle Timeout=10
Launch Manager=false
Leave Manager Open=true
Leave Open=false
Prompt on Open=false
Use One Wallet=true




-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: Wifi Connection in F28 KDE Timing out Waiting for Kwallet Password?

2018-10-16 Thread Rex Dieter
Ed Greshko wrote:

> On 10/16/18 3:25 AM, Rex Dieter wrote:
>> Stephen Morris wrote:
>>
>>> On 10/10/18 10:46 am, Ed Greshko wrote:
 On 10/10/18 5:13 AM, Stephen Morris wrote:
> Is this a defect that I should raise in bugzilla if I can remember how
> to do it (including resetting my password if I need to)?
 I doubt it is a "defect'.  More likely a conscience decision to add a
 timeout to the process.

 If you do a "sudo cat /etc/ssh/sshd_config" and fail to enter a
 password it will timeout after a while.

>>> No problems, thank Ed. I was just expecting it sit there until I
>>> supplied the password. This basically means then that after supplying
>>> your userid/password to log into KDE you can't go and make a cup of
>>> coffee while waiting for KDE to login, as the network connection may
>>> time out, if you are using encrypted network passwords.
>> Or use pam_kwallet and set your wallet password the same as your login
>> password, and it will open automatically on login.
>>
>> (This is the default for new installs)
>>
>>
> 
> My system is running F28 after upgrades from previous versions.  It does
> have pam-kwallet installed and my login pw is the
> same as my wallet pw and I'm still prompted for the kwallet pw on login.

Interesting, that should be all that is required.  Clearly something is 
going wrong somewhere.

-- Rex
___
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


Re: What are the differences between systemd and non-systemd Linux distros?

2018-10-16 Thread Temlakos

On 10/16/18 6:40 AM, Patrick O'Callaghan wrote:

On Tue, 2018-10-16 at 05:58 +, Turritopsis Dohrnii Teo En Ming
wrote:

Good afternoon from Singapore,

What are the differences between systemd and non-systemd Linux distros?

Is systemd implemented in all the latest Linux distros?

This is not a question about Fedora. It would be better to ask on a
general-purpose question site such as Quora (www.quora.com).

poc


Which someone has done. Here is a search result on quora.com with 
systemd as a keyword:


https://www.quora.com/topic/systemd

Temlakos
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Ed Greshko
On 10/16/18 7:19 PM, Philip Rhoades wrote:
> Hmm . . why am I not getting updated?  I have tried this a number of times 
> over the
> period and had just assumed I was up to date when I got this sort of result . 
> . 

Do you happen to have an "exclude" statement in your /etc/dnf/dnf.conf?

And, instead of "install" what do you get when you simply tupe

dnf update

-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: Can't play .mov video -

2018-10-16 Thread Ed Greshko
On 10/16/18 6:15 PM, Bob Goodwin-Fastmail wrote:
> On 10/15/18 23:44, Ed Greshko wrote:
>> You're doing vlc on a directory?  How about listing the contents of that 
>> directory?
> +
>
> Sorry I should have gone to bed instead of trying to describe this. Here is 
> what I see
> this morning:
>
> [bobg@box83 ~]$ vlc 
> /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV
> VLC media player 3.0.4 Vetinari (revision 3.0.4-0-gf615db6332)
> [564c11868670] main libvlc: Running vlc with the default interface. Use 
> 'cvlc' to
> use vlc without interface.
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.222: Theme parsing error: gtk.css:27:10: 
> The
> 'engine' property is ignored
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:29:23: 
> Custom CSS
> properties are no longer supported.
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:30:22: 
> Custom CSS
> properties are no longer supported.
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:48:39: 
> The style
> property GtkWidget:focus-line-width is deprecated and shouldn't be used 
> anymore. It will
> be removed in a future version
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:49:39: 
> The style
> property GtkWidget:focus-padding is deprecated and shouldn't be used anymore. 
> It will be
> removed in a future version
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:50:39: 
> The style
> property GtkWidget:interior-focus is deprecated and shouldn't be used 
> anymore. It will
> be removed in a future version
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: gtk.css:51:39: 
> The style
> property GtkWidget:cursor-color is deprecated and shouldn't be used anymore. 
> It will be
> removed in a future version
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error: gtk.css:52:39: 
> The style
> property GtkWidget:secondary-cursor-color is deprecated and shouldn't be used 
> anymore.
> It will be removed in a future version
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error: gtk.css:68:13: 
> The
> :insensitive pseudo-class is deprecated. Use :disabled instead.
>
> (vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error
> ...  snip  .
>
> These are iPhone camera files my daughter puts on the Samba server, I usually 
> just pick
> the desired file from a Thunar file manager display and tell it to open with 
> VLC.
>>
>

Try this instead...

cvlc /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

The errors above seem related to the GUI of vlc.

Also, do as Samuel suggested.

ffprobe /mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV


-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: What are the differences between systemd and non-systemd Linux distros?

2018-10-16 Thread Patrick O'Callaghan
On Tue, 2018-10-16 at 05:58 +, Turritopsis Dohrnii Teo En Ming
wrote:
> Good afternoon from Singapore,
> 
> What are the differences between systemd and non-systemd Linux distros?
> 
> Is systemd implemented in all the latest Linux distros?

This is not a question about Fedora. It would be better to ask on a
general-purpose question site such as Quora (www.quora.com).

poc
___
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


Re: Can't play .mov video -

2018-10-16 Thread Bob Goodwin-Fastmail

On 10/15/18 23:44, Ed Greshko wrote:

You're doing vlc on a directory?  How about listing the contents of that 
directory?

+

Sorry I should have gone to bed instead of trying to describe this. Here 
is what I see this morning:


[bobg@box83 ~]$ vlc 
/mnt/box48/2018-06-Jun-15-LUKE-SHEARING-Clippers/IMG_1563.MOV

VLC media player 3.0.4 Vetinari (revision 3.0.4-0-gf615db6332)
[564c11868670] main libvlc: Running vlc with the default interface. 
Use 'cvlc' to use vlc without interface.


(vlc:2931): Gtk-WARNING **: 05:44:14.222: Theme parsing error: 
gtk.css:27:10: The 'engine' property is ignored


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:29:23: Custom CSS properties are no longer supported.


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:30:22: Custom CSS properties are no longer supported.


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:48:39: The style property GtkWidget:focus-line-width is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:49:39: The style property GtkWidget:focus-padding is deprecated 
and shouldn't be used anymore. It will be removed in a future version


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:50:39: The style property GtkWidget:interior-focus is deprecated 
and shouldn't be used anymore. It will be removed in a future version


(vlc:2931): Gtk-WARNING **: 05:44:14.225: Theme parsing error: 
gtk.css:51:39: The style property GtkWidget:cursor-color is deprecated 
and shouldn't be used anymore. It will be removed in a future version


(vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error: 
gtk.css:52:39: The style property GtkWidget:secondary-cursor-color is 
deprecated and shouldn't be used anymore. It will be removed in a future 
version


(vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error: 
gtk.css:68:13: The :insensitive pseudo-class is deprecated. Use 
:disabled instead.


(vlc:2931): Gtk-WARNING **: 05:44:14.226: Theme parsing error
...  snip  .

These are iPhone camera files my daughter puts on the Samba server, I 
usually just pick the desired file from a Thunar file manager display 
and tell it to open with VLC.




--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-28/64bit LINUX XFCE Fastmail POP3
___
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


Re: gnuplot 5.2

2018-10-16 Thread Ronaldo Mercado
 Hello Patrick
I placed the spec file here.

https://kiso49j.fedorapeople.org

Regards,
Ronaldo
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Ed Greshko
On 10/16/18 4:19 PM, Philip Rhoades wrote:
> Samuel,
>
>
> On 2018-10-16 17:48, Samuel Sieb wrote:
>> On 10/15/18 11:20 PM, Philip Rhoades wrote:
>>> Sorry, I wasn't clear - originally (some months ago) the system would 
>>> slowly grind to
>>> a halt - if I got indications it was going to happen, I could sometimes 
>>> shutdown
>>> properly.  More recently it is just Chrome
>>
>> That could just be some process (Chrome?) using all the available
>> memory and forcing the system to swap badly.
>
>
> Yes, I think so but I am still surprised that Chrome could cause such a 
> result on a
> relatively fast machine with 32GB of RAM.
>
>
>>> crashing out with all the Chrome windows disappearing.  I am able to 
>>> restart Chrome
>>> but I suspect the system is left in an unstable state so I usually do a 
>>> manual reboot
>>> anyway . .
>>
>> If it's just Chrome crashing, your system is unlikely to be in a bad
>> state unless you have some indication otherwise.  Try running chrome
>> from the command line and see if there is any useful info when it
>> crashes.  Also check the journal.
>
>
> There must be some incremental problem that is getting worse with time - 
> otherwise how
> is the increasing frequency of Chrome crashes explained?  I think it is 
> unlikely to be
> hardware and more likely to be a Chrome problem - which seems to be 
> exacerbated by
> watching YouTube videos . . I set up a XFCE Panel button and shell script to 
> actually
> play videos with mpv OUTSIDE of the Chrome YouTube Window / tab but that 
> didn't help  . .

Not sure if it would make any difference but your subject seems to indicate 
you're using
kernel-core; 4.16.15-300?

The latest update is 4.18.13-200.fc28.  Any reason for not updating the kernel? 
 Anything
else not updated?



-- 
Cardinal Rule of Presentations: "Tell them what you are going to tell them, 
tell them,
then tell them what you told them."
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Philip Rhoades

Samuel,


On 2018-10-16 17:48, Samuel Sieb wrote:

On 10/15/18 11:20 PM, Philip Rhoades wrote:
Sorry, I wasn't clear - originally (some months ago) the system would 
slowly grind to a halt - if I got indications it was going to happen, 
I could sometimes shutdown properly.  More recently it is just Chrome


That could just be some process (Chrome?) using all the available
memory and forcing the system to swap badly.



Yes, I think so but I am still surprised that Chrome could cause such a 
result on a relatively fast machine with 32GB of RAM.



crashing out with all the Chrome windows disappearing.  I am able to 
restart Chrome but I suspect the system is left in an unstable state 
so I usually do a manual reboot anyway . .


If it's just Chrome crashing, your system is unlikely to be in a bad
state unless you have some indication otherwise.  Try running chrome
from the command line and see if there is any useful info when it
crashes.  Also check the journal.



There must be some incremental problem that is getting worse with time - 
otherwise how is the increasing frequency of Chrome crashes explained?  
I think it is unlikely to be hardware and more likely to be a Chrome 
problem - which seems to be exacerbated by watching YouTube videos . . I 
set up a XFCE Panel button and shell script to actually play videos with 
mpv OUTSIDE of the Chrome YouTube Window / tab but that didn't help  . .


Thanks,

Phil.
--
Philip Rhoades

PO Box 896
Cowra  NSW  2794
Australia
E-mail:  p...@pricom.com.au
___
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


'Permission denied' running %pre script in kickstart (f28)

2018-10-16 Thread Digimer
Hi all, I have a kickstart script for installing Fedora 28 that has a
somewhat large %pre script. When anaconda tries to run it, it fails;


Oct 16 07:38:55 localhost org.fedoraproject.Anaconda.Boss[1704]:
INFO:anaconda.modules.boss.module_manager:All modules are ready now.
Oct 16 07:38:55 localhost anaconda[1641]: anaconda: kickstart.script:
Running kickstart %%pre script(s)
Oct 16 07:38:55 localhost anaconda[1641]: anaconda: stdout: Running
pre-installation scripts
Oct 16 07:38:55 localhost anaconda[1641]: program: Running...
/tmp/ks-script-e3w92zo7
Oct 16 07:38:55 localhost anaconda[1641]: program: Error running :
Permission denied
Oct 16 07:38:55 localhost anaconda[1641]: program: Running... chvt 1
Oct 16 07:38:55 localhost anaconda[1641]: program: Return code: 0
Oct 16 07:38:55 localhost dbus-daemon[1704]: Reloaded configuration


The script itself, when run manually, succeeds;


[anaconda root@localhost tmp]# /tmp/ks-script-e3w92zo7
Finding install drive for a Striker dashboard.
Analyzing platter drive: [/dev/vda], using the transport: [], of the
size: [21474836480 (20.00 GiB)]
Selected the largest disk: [/dev/vda], which has a capacity of: [20.00 GiB]
Writing out the partition plan to: [/tmp/plan_partitions.out]
Completed successfully, exiting.


This sounded like an SELinux denial, so I set 'selinux --permissive' to
debug, and it still gets the same error;


[anaconda root@localhost ~]# sestatus
SELinux status: enabled
SELinuxfs mount:/sys/fs/selinux
SELinux root directory: /etc/selinux
Loaded policy name: targeted
Current mode:   permissive
Mode from config file:  error (Success)
Policy MLS status:  enabled
Policy deny_unknown status: allowed
Memory protection checking: requested (insecure)
Max kernel policy version:  31


Any thoughts on debugging?

digimer

More details;

 Source kickstart script
$ fpaste pxe/kickstart/striker.ks
Uploading (12.4KiB)...
https://paste.fedoraproject.org/paste/oA96KVWZy227maIFQbkYOA


 Anaconda log pre-failure
# fpaste anaconda.log
Uploading (0.8KiB)...
https://paste.fedoraproject.org/paste/CWy-Xjv6rCKEea42RvZm6Q


 The %pre script that fails when anaconda calls it, but works when
called from tty2
# fpaste ks-script-e3w92zo7
Uploading (10.3KiB)...
https://paste.fedoraproject.org/paste/10dAZiJUpFdnV9FqHBQ40g


 syslog of install attempt
# fpaste syslog
Uploading (1301.5KiB)...
https://paste.fedoraproject.org/paste/-RMntdsuc9cqTDGuEBA7EA


-- 
Digimer
Papers and Projects: https://alteeve.com/w/
"I am, somehow, less interested in the weight and convolutions of
Einstein’s brain than in the near certainty that people of equal talent
have lived and died in cotton fields and sweatshops." - Stephen Jay Gould
___
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


Re: mmc0: error -110 whilst initialising SD card

2018-10-16 Thread Frédéric
> > mmc0: error -110 whilst initialising SD card
> Are there any other messages around that?

nothing else

> > Works well with 8Gb SDHC.
> Do you have anything else you can try the card in?

well, it is strange because it works on an older computer with the same F28.
On this other computer, this is what I get:
[  172.702897] mmc0: new SDXC card at address 
[  172.727538] mmcblk0: mmc0: SN64G 59.5 GiB
[  172.729685]  mmcblk0: p1

> Make sure you have the latest kernel.

I am now using the latest kernel 4.18.13-200.

F
___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Samuel Sieb

On 10/15/18 11:20 PM, Philip Rhoades wrote:
Sorry, I wasn't clear - originally (some months ago) the system would 
slowly grind to a halt - if I got indications it was going to happen, I 
could sometimes shutdown properly.  More recently it is just Chrome 


That could just be some process (Chrome?) using all the available memory 
and forcing the system to swap badly.


crashing out with all the Chrome windows disappearing.  I am able to 
restart Chrome but I suspect the system is left in an unstable state so 
I usually do a manual reboot anyway . .


If it's just Chrome crashing, your system is unlikely to be in a bad 
state unless you have some indication otherwise.  Try running chrome 
from the command line and see if there is any useful info when it 
crashes.  Also check the journal.

___
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


Re: What are the differences between systemd and non-systemd Linux distros?

2018-10-16 Thread Samuel Sieb

On 10/15/18 10:58 PM, Turritopsis Dohrnii Teo En Ming wrote:

What are the differences between systemd and non-systemd Linux distros?


This not really a Fedora related question.  The difference is whether 
they use systemd for the init process or initd or upstart or something else.



Is systemd implemented in all the latest Linux distros?


You would have to check those distros.  I believe most of the popular 
distros have switched to systemd now.

___
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


Re: Increasingly frequent problem with: "Unexpected system error"; kernel-core; 4.16.15-300.fc28.x86_64; cannot be reported - related to Chrome and probably YouTube

2018-10-16 Thread Philip Rhoades

Samuel,


On 2018-10-16 16:31, Samuel Sieb wrote:

On 10/15/18 10:14 PM, Philip Rhoades wrote:
"The backtrace does not contain enough meaningful function frames to 
be reported. It is annoying but it does not necessary signalize a 
problem with your computer. ABRT will not allow you to create a report 
in a bug tracking system but you can contact kernel maintainers via 
e-mail."


For a long time I have been in the habit of overworking Chrome (eg 
quite frequently a dozen windows open with hundreds of tabs) but a 
little while ago, instead of just slowly grinding the system to a 
halt, these crashes started happening - and then more frequently - now 
it is up to a couple of times a day before I can even get anywhere 
near to my usual practice of overloading.  I haven't cleaned out 
histories or other stuff out of Chrome yet but I think my hardware 
should be up to handling a decent load but there is obviously 
something wrong . . and getting worse


You haven't described what happens.  What is crashing, the kernel or
chrome?  What happens when it "crashes"?



Sorry, I wasn't clear - originally (some months ago) the system would 
slowly grind to a halt - if I got indications it was going to happen, I 
could sometimes shutdown properly.  More recently it is just Chrome 
crashing out with all the Chrome windows disappearing.  I am able to 
restart Chrome but I suspect the system is left in an unstable state so 
I usually do a manual reboot anyway . .


Thanks,

Phil.
--
Philip Rhoades

PO Box 896
Cowra  NSW  2794
Australia
E-mail:  p...@pricom.com.au
___
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


What are the differences between systemd and non-systemd Linux distros?

2018-10-16 Thread Turritopsis Dohrnii Teo En Ming
Good afternoon from Singapore,

What are the differences between systemd and non-systemd Linux distros?

Is systemd implemented in all the latest Linux distros?

Please advise. Thank you. 
 
===BEGIN SIGNATURE=== 
Turritopsis Dohrnii Teo En Ming's Academic Qualifications as at 30 Oct 2017 
[1] https://tdtemcerts.wordpress.com/ 
[2] http://tdtemcerts.blogspot.sg/ 
[3] https://www.scribd.com/user/270125049/Teo-En-Ming 
===END 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