Re: gawk

2018-05-16 Thread Eyal Lebedinsky

On 17/05/18 07:05, Patrick Dupre wrote:

Sorry,

This is correct, but
if I do:
  print "#" > "tmptmp.txt" ;
after
print $1 $2 > "tmptmp.txt" ;

then I get ^M
in my file
I do not have the ^M  if I only make print $1 $2 > "tmptmp.txt" ;
and never make a print "#"

Can I avoid these ^M
?


I ran this test:

$ rm "tmptmp.txt"
$ echo a b c d | gawk '{print $1 $2 > "tmptmp.txt" ; print "#" > "tmptmp.txt"}'

And then got the correct output:

$ cat tmptmp.txt
ab
#

You need to show exactly what you did, like
- what command did you run?
- how did you examine the output file?

A console transcript will be a good start.

HTH


Thank.

===
  Patrick DUPRÉ | | email: pdu...@gmx.com


--
Eyal Lebedinsky (fed...@eyal.emu.id.au)
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Terry Polzin
On Wed, May 16, 2018, 18:52 Patrick O'Callaghan 
wrote:

> On Wed, 2018-05-16 at 14:43 -0700, Rick Stevens wrote:
> > Patrick, this isn't the first time (or second or third) you've posted
> > a question with absolutely no context about what you're trying to do.
> > If you want help, you HAVE to tell us what you're trying to accomplish.
>
> And maybe once in a while use a subject line with more than one word.
> Just saying ...
>
> poc
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.or
> 

Im kind of old fashioned, I use printf.

>
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Patrick O'Callaghan
On Wed, 2018-05-16 at 14:43 -0700, Rick Stevens wrote:
> Patrick, this isn't the first time (or second or third) you've posted
> a question with absolutely no context about what you're trying to do.
> If you want help, you HAVE to tell us what you're trying to accomplish.

And maybe once in a while use a subject line with more than one word.
Just saying ...

poc
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: after F27->F28 upgrade, hangs at end of boot

2018-05-16 Thread Ed Greshko
On 05/16/18 02:51, Samuel Sieb wrote:
> On 05/15/2018 05:03 AM, Bev in TX wrote:
>> Graphics:  Card: InnoTek Systemberatung VirtualBox Graphics Adapter
>>             Display Server: x11 (X.org  119.6 ) driver: 
>> vboxvideo
>> Resolution: 1704x1048@59.99hz
>>             OpenGL: renderer: llvmpipe (LLVM 6.0, 128 bits) version: 2.1 
>> Mesa 18.0.2
>
>> Thanks so much for this solution, as my Fedora 28 installation was barely 
>> usable
>> before and quite literally gave me a headache.
>
> It's likely that the vbox video driver doesn't have the full support that 
> works
> with Wayland.
>

I just installed F28 Workstation as a Vbox guest.

00:02.0 VGA compatible controller: InnoTek Systemberatung GmbH VirtualBox 
Graphics
Adapter (prog-if 00 [VGA controller])
    Flags: fast devsel, IRQ 18
    Memory at e000 (32-bit, prefetchable) [size=16M]
    [virtual] Expansion ROM at 000c [disabled] [size=128K]
    Kernel driver in use: vboxvideo
    Kernel modules: vboxvideo

gdm    882   828  0 05:43 tty1 00:00:00 /usr/libexec/gdm-wayland-session
gnome-session --autostart /usr/share/gdm/greeter/autostart
gdm   1109   954  0 05:43 tty1 00:00:00 /usr/bin/Xwayland :1024 
-rootless
-terminate -accessx -core -listen 4 -listen 5 -displayfd 6
egreshko  1428  1397  0 05:43 tty2 00:00:00 /usr/libexec/gdm-wayland-session
gnome-session
egreshko  1565  1543  0 05:43 tty2 00:00:00 /usr/bin/Xwayland :0 -rootless
-terminate -accessx -core -listen 4 -listen 5 -displayfd 6
egreshko  2697  2509  0 06:01 pts/0    00:00:00 grep --color=auto -i way

DISPLAY=:0
WAYLAND_DISPLAY=wayland-0

So, it is running a Wayland session just fine.

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


Re: gawk

2018-05-16 Thread Jon LaBadie
On Wed, May 16, 2018 at 02:43:09PM -0700, Rick Stevens wrote:
> On 05/16/2018 02:11 PM, Samuel Sieb wrote:
> > On 05/16/2018 02:05 PM, Patrick Dupre wrote:
> >> This is correct, but
> >> if I do:
> >>   print "#" > "tmptmp.txt" ;
> >> after
> >> print $1 $2 > "tmptmp.txt" ;
> >>
> >> then I get ^M
> >> in my file
> >> I do not have the ^M  if I only make print $1 $2 > "tmptmp.txt" ;
> >> and never make a print "#"
> >>
> >> Can I avoid these ^M
> >> ?
> > 
> > This really isn't the right place for this kind of question, but at
> > least provide a full example of what you're trying to do.  You aren't
> > providing enough info to get a useful response.
> 
> I agree with Sam that you aren't providing enough info. I think
> you're saying you're essentially doing (in gawk):
> 
>   print $1 $2 > "tmptmp.txt";
>   print "#" > "tmptmp.txt";

True in shell, not in awk.  If the file names match,
only the first encountered '>' overwrites the file.
The ">>" is needed to avoid overwriting a file that
exists at the start of the program (like a logfile).

> 
> And ending up with a "^M" in your file. First off, the second line
> would overwrite anything you did in the first line (you need to use a
> ">>" to APPEND data to an existing file...just like in the shell), and
> the "^M" probably indicates a carriage return in the file. If you
> changed the ORS (output record separator) to a carriage return from it's
> default value of newline, that's what you'd get.
> 

I just noted the output file name with a ".txt" extension.
Might gawk assume this is a "windows text file" and add
a \r instead of \n?

Try a different output file name.

> Patrick, this isn't the first time (or second or third) you've posted
> a question with absolutely no context about what you're trying to do.
> If you want help, you HAVE to tell us what you're trying to accomplish.

-- 
Jon H. LaBadie  jo...@jgcomp.com
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: After system-upgrade F26->F27, system startup hangs after Reached target System Initialization

2018-05-16 Thread Frédéric
> So I have to force turning off... I do not like that.

Did that, rebooted. It stopped for a long time at the same place (2-3
minutes) then showed the login screen!

Don't know what happened but it seems that it is fine now.

Thanks
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Rick Stevens
On 05/16/2018 02:11 PM, Samuel Sieb wrote:
> On 05/16/2018 02:05 PM, Patrick Dupre wrote:
>> This is correct, but
>> if I do:
>>   print "#" > "tmptmp.txt" ;
>> after
>> print $1 $2 > "tmptmp.txt" ;
>>
>> then I get ^M
>> in my file
>> I do not have the ^M  if I only make print $1 $2 > "tmptmp.txt" ;
>> and never make a print "#"
>>
>> Can I avoid these ^M
>> ?
> 
> This really isn't the right place for this kind of question, but at
> least provide a full example of what you're trying to do.  You aren't
> providing enough info to get a useful response.

I agree with Sam that you aren't providing enough info. I think
you're saying you're essentially doing (in gawk):

print $1 $2 > "tmptmp.txt";
print "#" > "tmptmp.txt";

And ending up with a "^M" in your file. First off, the second line
would overwrite anything you did in the first line (you need to use a
">>" to APPEND data to an existing file...just like in the shell), and
the "^M" probably indicates a carriage return in the file. If you
changed the ORS (output record separator) to a carriage return from it's
default value of newline, that's what you'd get.

Patrick, this isn't the first time (or second or third) you've posted
a question with absolutely no context about what you're trying to do.
If you want help, you HAVE to tell us what you're trying to accomplish.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-Admitting you have a problem is the first step toward getting   -
-medicated for it.  -- Jim Evarts (http://www.TopFive.com)   -
--
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: After system-upgrade F26->F27, system startup hangs after Reached target System Initialization

2018-05-16 Thread Frédéric
> What should I do? Just try to reboot another time?

Ctrl+Alt+Suppr did not work.
Ctrl+Alt+SysReq works only for key S "Emergency Sync complete". All
other keys in REISUB give "This sysrq operation is disabled.
So I have to force turning off... I do not like that.

F
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


After system-upgrade F26->F27, system startup hangs after Reached target System Initialization

2018-05-16 Thread Frédéric
Hi,

I just ran the dnf system-upgrade procedure on my 3rd system and
everthing seemed to work fine up to the installation of all packages
and reboot. The reboot stopped after "Reached target System
Initialization" (see below what is on the screen). I cannot log in via
ssh. Ctrl+Alt+FN does not work.
Note that I am used to the FAILED message about Load Kernel Modules. I
do not know what it means but it normally does not prevent me from
working.

What should I do? Just try to reboot another time?

F

[FAILED] Failed to start Load Kernel Modules.
See 'systemclt status systemd-modules-load.service' for details.
 Starting Apply Kernel Variables...
[OK] Started Create Static Device Nodes in /dev.
[OK] Started Create Volatile Files and Directories.
[OK] Started Apply Kernel Variables.
[OK] Started Journal Service.
[OK] Started Setup Virtual Console.
[OK] Started dracut cmdline hook.
 Starting udev dracut pre-udev hook...
[OK] Started dracut pre-udev hook.
 Starting udev Kernel Device Manager...
[OK] Started udev Kernel Device Manager.
 Starting udev Coldplug all Devices...
 Mounting Kernel Configuration File System...
[OK] Mounted Kernel Configuration File System.
[OK] Started udev Coldplug all Devices.
 Starting Show Plymouth Boot Screen...
 Starting dracut initqueue hook...
[OK] Reached target System Initalization.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Samuel Sieb

On 05/16/2018 02:05 PM, Patrick Dupre wrote:

This is correct, but
if I do:
  print "#" > "tmptmp.txt" ;
after
print $1 $2 > "tmptmp.txt" ;

then I get ^M
in my file
I do not have the ^M  if I only make print $1 $2 > "tmptmp.txt" ;
and never make a print "#"

Can I avoid these ^M
?


This really isn't the right place for this kind of question, but at 
least provide a full example of what you're trying to do.  You aren't 
providing enough info to get a useful response.

___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Patrick Dupre
Sorry,

This is correct, but
if I do:
  print "#" > "tmptmp.txt" ;
after 
print $1 $2 > "tmptmp.txt" ;

then I get ^M
in my file
I do not have the ^M  if I only make print $1 $2 > "tmptmp.txt" ;
and never make a print "#"

Can I avoid these ^M
?

Thank.

===
 Patrick DUPRÉ | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale   | |
 Tel.  (33)-(0)3 28 23 76 12   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann | | 59140 Dunkerque, France
===


> Sent: Wednesday, May 16, 2018 at 10:58 PM
> From: "Samuel Sieb" 
> To: users@lists.fedoraproject.org
> Subject: Re: gawk
>
> On 05/16/2018 01:53 PM, Patrick Dupre wrote:
> > How can I print a "#" with gawk?
> 
> Some more context would help, but
> gawk -e '{print "#" }'
> works.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: gawk

2018-05-16 Thread Samuel Sieb

On 05/16/2018 01:53 PM, Patrick Dupre wrote:

How can I print a "#" with gawk?


Some more context would help, but
gawk -e '{print "#" }'
works.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


gawk

2018-05-16 Thread Patrick Dupre
Hello

How can I print a "#" with gawk?

Thank

===
 Patrick DUPRÉ | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale   | |
 Tel.  (33)-(0)3 28 23 76 12   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann | | 59140 Dunkerque, France
===
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Compile issues after F27 -> F28 upgrade

2018-05-16 Thread stan
On Wed, 16 May 2018 10:16:26 -0700
a...@clueserver.org wrote:

> I did an upgrade from Fedora 27 to the Fedora 28 beta a while back.
> (About a week before final release.) After the update I tried to
> recompile a program I use often. The program would compile after a
> bit of patching, but it would not start.
> 
> Using ldd I was able to determine that the ldconfig database still
> had old entries from the Fedora 27 install that had been
> upgraded/erased.
> 
> Is this a known issue or am I just going mad?

Is it possible that *you* put those entries there?  If they didn't come
from a package, they wouldn't have been changed by the update.   It's
possible there was a packaging miscue, but having been recently burned
by a file I left in /etc/ld.so.conf.d, it's the first thing I thought
of.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Compile issues after F27 -> F28 upgrade

2018-05-16 Thread alan

I did an upgrade from Fedora 27 to the Fedora 28 beta a while back. (About
a week before final release.) After the update I tried to recompile a
program I use often. The program would compile after a bit of patching,
but it would not start.

Using ldd I was able to determine that the ldconfig database still had old
entries from the Fedora 27 install that had been upgraded/erased.

Is this a known issue or am I just going mad?

perl -pe 's/^\s+//g' *.py
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: after F27->F28 upgrade, hangs at end of boot

2018-05-16 Thread Rick Stevens
On 05/16/2018 12:07 AM, Tim via users wrote:
> Tim wrote:
>>> I bought a recent motherboard, that uses some intel HD Graphics 630
>>> (rev 04) chipset, yet X seems to be using i915 drivers as a basic
>>> way of using the chipset.
> 
> Samuel Sieb:
>> Isn't that the right driver?
> 
> Don't know, can't tell.  There doesn't appear to be any related
> documentation installed.

My laptop (F27 under Xfce) uses an Intel chip:

[root@golem4 log]# lspci -v -s 00:02.0
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core
Processor Family Integrated Graphics Controller (rev 09) (prog-if 00
[VGA controller])
Subsystem: Dell Device 04d8
Flags: bus master, fast devsel, latency 0, IRQ 31
Memory at d000 (64-bit, non-prefetchable) [size=4M]
Memory at c000 (64-bit, prefetchable) [size=256M]
I/O ports at 4000 [size=64]
[virtual] Expansion ROM at 000c [disabled] [size=128K]
Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
Capabilities: [d0] Power Management version 2
Capabilities: [a4] PCI Advanced Features
Kernel driver in use: i915
Kernel modules: i915

Checking the Xorg.0.log:

[   107.315] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35,
Q33,
GM45, 4 Series, G45/G43, Q45/Q43, G41, B43

So yes, the i915 seems to be a generic driver for the above chipsets,
and while the 630 isn't specifically listed, there's a lot of types like
"Q33" and the like, one of which may be an alias for your chipset.

An "lsmod i915" will list more than 200 PCI IDs it handles and yours
is probably buried in there.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-Admitting you have a problem is the first step toward getting   -
-medicated for it.  -- Jim Evarts (http://www.TopFive.com)   -
--
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: F27 problems with pam?

2018-05-16 Thread stan
On Wed, 16 May 2018 10:09:04 +0200
Gianluca Cecchi  wrote:

> BTW: with latest updates there is also a problem with audio card, not
> detected any more.
> From hwinfo point of view I see this:
> 
> snd_hda_codec_hdmi: /devices/pci:00/:00:1b.0/hdaudioC0D3
> snd_hda_codec_hdmi: module = snd_hda_codec_hdmi
> snd_hda_codec_generic: module = snd_hda_codec_generic
> snd_hda_codec_realtek: module = snd_hda_codec_realtek
> snd_hda_codec_realtek: /devices/pci:00/:00:1b.0/hdaudioC0D0
> 
> The pc is an Asus U36SD
> 
> Running alsa-info.sh  in the ouptut I see
> 
> pcilib: sysfs_read_vpd: read failed: Input/output error
> 
> and in the generated file I see
> 
> !!Soundcards recognised by ALSA
> !!-
> 
>  0 [PCH]: HDA-Intel - HDA Intel PCH
>   HDA Intel PCH at 0xdf00 irq 34
> 
> 
> !!PCI Soundcards installed in the system
> !!--
> 
> 00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset
> Family High Definition Audio Controller (rev 05)
> 
> 
> !!Advanced information - PCI Vendor/Device/Subsystem ID's
> !!---
> 
> 00:1b.0 0403: 8086:1c20 (rev 05)
> Subsystem: 1043:1ba3
> 
> but in mate and cinnamon nothing as hardware device
> Up to three days ago I could choose between analog and hdmi
> 
> Full output file here:
> https://drive.google.com/file/d/1ZXEwzHM9XgOsqiUv-OF2zJ-UqbZrbGHG/view?usp=sharing
> 
> Any help on these problems?

Can't help with the network permissions problem, but for the sound
problem, you can install pavucontrol, and check which device is set as
default.  Since non-deterministic instantiation of drivers is the norm,
it is possible that the order of your sound devices has changed, and
the old default now points to the hdmi device.  An easy try, at least.
alsa-info shows that the pci device is there.  If you have a wav file,
you can try 
aplay --D plughw:1,0 [wav file]
to see if the device is working.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: after F27->F28 upgrade, hangs at end of boot

2018-05-16 Thread stan
> > On May 15, 2018, at 1:51 PM, Samuel Sieb  wrote:

> > It's likely that the vbox video driver doesn't have the full
> > support that works with Wayland.

On Wed, 16 May 2018 06:50:44 -0500
Bev in TX  wrote:

> Is this a Gnome specific issue, or does it affect all Linux desktops?

It would affect any desktop that tries to run wayland as default.  As
far as I know, right now that is only Gnome and KDE, but I don't pay
much attention to this, since wayland lacks functionality I need, so it
isn't on my radar.

PS  On mailing lists, it is good etiquette to post replies under the
portion of the text they refer to, so it isn't necessary to be
familiar with the topic chain to understand the question.  More answers
are likely that way.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Unable to lower cpu frequency

2018-05-16 Thread stan
On Tue, 15 May 2018 19:59:53 -0600
JD  wrote:

> # /bin/cpupower --cpu all frequency-set -g performance 2G
> # /bin/cpupower --cpu all frequency-info | grep "current CPU
> frequency is" current CPU frequency is 2.80 GHz (asserted by call to
> hardware). current CPU frequency is 2.80 GHz (asserted by call to
> hardware).
> 
> Cpu can accept frquencies as low as 800MHz.
> 
> So, does anyone have a more magical incantation to force the 2 cores
> to run at 2.0 GHz?

You could try adding --max?  I'm not sure what the default is, might be
--min.

When governor is set to performance, the CPU runs full out all the time.
It is possible to change the governor on a running system, but I'm not
sure how.  You could change it to one of the below other than
performance, if it has been compiled into the kernel.  As you can see,
I have only the ondemand governor in my kernel.

These are the settings for my CPU, from boot/config-[]
# DEVFREQ Governors
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
# CONFIG_DEVFREQ_GOV_POWERSAVE is not set
# CONFIG_DEVFREQ_GOV_USERSPACE is not set
# CONFIG_DEVFREQ_GOV_PASSIVE is not set


Also, IIRC, the setting of CPU frequency is usually done directly in the
BIOS / firmware.  In the kernel docs they say that some CPUs can't be
set from the kernel (but don't give a list).  i.e. the BIOS would be
your only option if you have one of those, and it sounds like you
might.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Dialog box pops up now when double clicking on desktop icons in LXDE, asking for confirmation. Want to stop this behavior.

2018-05-16 Thread stan
On Tue, 15 May 2018 16:02:12 -0700
Samuel Sieb  wrote:

> You can go into the ~/Desktop folder and see the files that
> correspond to the icons.  They should be .desktop files, but maybe
> they weren't before.

They are all desktop now.  I'm pretty sure I would have noticed if they
weren't before, since I was looking for inconsistencies.  But, whatever
they were, everything was working fine until the update that broke
this.  I still have no idea what that was, but at least everything is
working now, so I'll just let it go.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: after F27->F28 upgrade, hangs at end of boot

2018-05-16 Thread Bev in TX
Is this a Gnome specific issue, or does it affect all Linux desktops?

Thanks,
Bev in TX

> On May 15, 2018, at 1:51 PM, Samuel Sieb  wrote:
> 
> On 05/15/2018 05:03 AM, Bev in TX wrote:
>> Graphics:  Card: InnoTek Systemberatung VirtualBox Graphics Adapter
>>Display Server: x11 (X.org  119.6 ) driver: 
>> vboxvideo Resolution: 1704x1048@59.99hz
>>OpenGL: renderer: llvmpipe (LLVM 6.0, 128 bits) version: 2.1 Mesa 
>> 18.0.2
> 
>> Thanks so much for this solution, as my Fedora 28 installation was barely 
>> usable before and quite literally gave me a headache.
> 
> It's likely that the vbox video driver doesn't have the full support that 
> works with Wayland.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: Default video player -

2018-05-16 Thread Bob Goodwin

On 05/16/18 00:55, Samuel Sieb wrote:


If you're setting it from the file manager, then it will be specific 
to each file type.  In Gnome settings, there's an option to set the 
default video player which covers all video formats.

___

I looked in XFCE settings first, but could not find a setting to do 
that. I may have overlooked something?


Perhaps I could set it using gnome and xfce would respect that setting? 
Something to try eventually ...



--
Bob Goodwin - Zuni, Virginia, USA
http://www.qrz.com/db/W2BOD
box10  FEDORA-27/64bit LINUX XFCE Fastmail POP3
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: F27 problems with pam?

2018-05-16 Thread Gianluca Cecchi
On Tue, May 15, 2018 at 5:05 PM, Gianluca Cecchi 
wrote:

> Hello,
> an update this morning and after that I register several problems:
>
> 1) delay in login session (lightdm)
> 2) delay/fail of logout/shutdown from inside gui
> 3) unable to open wifi connections from gui
>
> verified both with mate and cinnamon
>
>

I decided to update this system from f27 to f28 and all went well from the
update itself point of view.
But still the same problems like the lats updates.

>From mate I select a wifi network and then select connect I get the error
window with:

"
Connection activation failed
(1) Not authorized to control networking
"

Going into /etc/pam.d and comparing with a f27 system not already updated
(it is up to date at 06 May), I see this I don't know if can influence my
problems

system-auth-ac
old:
passwordrequisite pam_pwquality.so try_first_pass local_users_only
retry=3 authtok_type=

new:
passwordrequisite pam_pwquality.so try_first_pass retry=3
authtok_type=



password-auth-ac
old:
passwordrequisite pam_pwquality.so try_first_pass local_users_only
retry=3 authtok_type=

new:
passwordrequisite pam_pwquality.so try_first_pass retry=3
authtok_type=


BTW: with latest updates there is also a problem with audio card, not
detected any more.
>From hwinfo point of view I see this:

snd_hda_codec_hdmi: /devices/pci:00/:00:1b.0/hdaudioC0D3
snd_hda_codec_hdmi: module = snd_hda_codec_hdmi
snd_hda_codec_generic: module = snd_hda_codec_generic
snd_hda_codec_realtek: module = snd_hda_codec_realtek
snd_hda_codec_realtek: /devices/pci:00/:00:1b.0/hdaudioC0D0

The pc is an Asus U36SD

Running alsa-info.sh  in the ouptut I see

pcilib: sysfs_read_vpd: read failed: Input/output error

and in the generated file I see

!!Soundcards recognised by ALSA
!!-

 0 [PCH]: HDA-Intel - HDA Intel PCH
  HDA Intel PCH at 0xdf00 irq 34


!!PCI Soundcards installed in the system
!!--

00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family
High Definition Audio Controller (rev 05)


!!Advanced information - PCI Vendor/Device/Subsystem ID's
!!---

00:1b.0 0403: 8086:1c20 (rev 05)
Subsystem: 1043:1ba3

but in mate and cinnamon nothing as hardware device
Up to three days ago I could choose between analog and hdmi

Full output file here:
https://drive.google.com/file/d/1ZXEwzHM9XgOsqiUv-OF2zJ-UqbZrbGHG/view?usp=sharing

Any help on these problems?
Thanks in advance,
GIanluca
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: after F27->F28 upgrade, hangs at end of boot

2018-05-16 Thread Tim via users
Tim wrote:
>> I bought a recent motherboard, that uses some intel HD Graphics 630
>> (rev 04) chipset, yet X seems to be using i915 drivers as a basic
>> way of using the chipset.

Samuel Sieb:
> Isn't that the right driver?

Don't know, can't tell.  There doesn't appear to be any related
documentation installed.

> Which one would you expect to be using?

Something with a 630 in the name.

> The "915" is probably just a legacy name now.

Probably.  But I don't like playing guessing games with drivers.  The
computer should be doing the work for me.

It mostly works, but I get strange graphics corruptions, from time to
time, on pop-ups (when you hover over things).  Though I can't get it
to do it, right now, else I'd provide a demo.  Fortunately I don't need
whiz bang graphics, the monitor is only 1920 by 1080.

-- 
[tim@localhost ~]$ uname -rsvp
Linux 4.15.17-200.fc26.x86_64 #1 SMP Thu Apr 12 18:28:26 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.

Damn, I didn't mean to press *that* button!
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org