Re: gsl

2015-06-06 Thread Veli-Pekka Kestilä

On 4.6.2015 16:23, Patrick Dupre wrote:


===
  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: Thursday, June 04, 2015 at 3:01 PM
From: Jonathan Underwood jonathan.underw...@gmail.com
To: Community support for Fedora users users@lists.fedoraproject.org
Subject: Re: gsl

On 3 June 2015 at 22:23, Patrick Dupre pdu...@gmx.com wrote:

Hello,

Can somebody help me?

This short piece of code fails.
It seems to be due to the gsl library!

Thank for your help.

#include gsl/gsl_multifit_nlin.h

int main () {
   const gsl_multifit_fsolver_type *T_ ;
   gsl_multifit_fsolver *s_ = gsl_multifit_fsolver_alloc (T_, 10, 1);
   }



You haven't initialized T_, so when you call
gsl_multifit_fsolver_alloc, it fails because it doesn't know what
solver type to allocate for.

So, try initializing it, eg.

const gsl_multifit_fsolver_type *T_ = gsl_multifit_fdfsolver_lmsder;

  warning: initialization from incompatible pointer type [enabled by default]
const gsl_multifit_fsolver_type *T_ = gsl_multifit_fdfsolver_lmsder ;

fsolver and fdfsolver are not compatible!
I did not find a way to initiate this pointer.



Try this code:
#include gsl/gsl_multifit_nlin.h

int main () {
const gsl_multifit_fdfsolver_type * T = gsl_multifit_fdfsolver_lmder;
gsl_multifit_fdfsolver * s = gsl_multifit_fdfsolver_alloc (T, 100, 3);
}

from: http://manpagez.com/info/gsl-ref/gsl-ref-1.12/gsl-ref_507.php

Atleast I got it to compile and run without segfaults.

-vpk

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


FC21 vs FC20

2015-06-06 Thread Patrick Dupre
Hello,

It seems that the number of processes running in background in FC21 comparing
with FC20 is a lot higher.

Am I correct?

===
 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 or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Machine very slow

2015-06-06 Thread Paul Cartwright
On 06/06/2015 07:07 AM, Patrick Dupre wrote:
 What is this process taking all my CPU time?


 root  1102 65.5  2.9 403624 89532 tty1 Rsl+ 09:36 133:04 
 /usr/libexec/Xorg.bin :0 -background none -noreset -verbose 3 -logfile 
 /dev/null -auth /run/gdm/auth-for-gdm-FJcCNf/database -seat seat0 -nolisten 
 tcp vt1
that is your desktop. you can look at the log in /var/log/Xorg.0.log ,
and older logs..

-rw-r--r--  1 rootroot  54720 Jun  6 06:53 Xorg.0.log
-rw-r--r--  1 rootroot  68741 Jun  6 06:44 Xorg.0.log.old
-rw-r--r--  1 rootroot  43074 Oct 28  2014 Xorg.9.log

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: f22: how to change default gateway via line command

2015-06-06 Thread Paul Cartwright
On 06/06/2015 05:32 AM, Dario Lesca wrote:
 Into Fedora 22 workstation, it's possible to change temporarily via
 command line the default gateway, to test another gateway, when I have
 setup the network via DHCP?

 What is the best command line to use?

 Many thanks
try :
$ man route

*DESCRIPTION
   Route manipulates the kernel's IP routing tables.  Its primary 
use  is
   to  set up static routes to specific hosts or networks via an
interface
   after it has been configured with the ifconfig(8) program.

   When the add or del  options  are  used,  route  modifies  the 
routing
   tables.   Without these options, route displays the current
contents of
   the routing tables.

**  deldelete a route.

   addadd a new route.
*

-- 
Paul Cartwright
Registered Linux User #367800 and new counter #561587

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Machine very slow

2015-06-06 Thread Patrick Dupre
Hello,

What is this process taking all my CPU time?


root  1102 65.5  2.9 403624 89532 tty1 Rsl+ 09:36 133:04 
/usr/libexec/Xorg.bin :0 -background none -noreset -verbose 3 -logfile 
/dev/null -auth /run/gdm/auth-for-gdm-FJcCNf/database -seat seat0 -nolisten tcp 
vt1

===
 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 or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Machine very slow

2015-06-06 Thread Alchemist
2015-06-06 14:39 GMT+03:00 Patrick Dupre pdu...@gmx.com:

 Thankj.

 However:
 rw-r--r--. 1 root root   40638 May  3 18:12 /var/log/Xorg.0.log
 -rw-r--r--. 1 root root   40638 May  3 17:50 /var/log/Xorg.0.log.old
 -rw-r--r--. 1 root pdupre 43786 Apr  8 23:46 /var/log/Xorg.1.log
 -rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.5.log
 -rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.4.log
 -rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.3.log
 -rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.2.log
 -rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.2.log.old
 -rw-r--r--. 1 root root   39297 Apr 27  2014 /var/log/Xorg.1.log.old


 There is no new file since I update the machine from FC20 to fc21!


Look here ~/.local/share/xorg or /var/lib/gdm/*xorg*

Or within journal

journalctl -xb _UID=42




 ===
  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: Saturday, June 06, 2015 at 1:31 PM
  From: Paul Cartwright pbcartwri...@gmail.com
  To: users@lists.fedoraproject.org
  Subject: Re: Machine very slow
 
  On 06/06/2015 07:07 AM, Patrick Dupre wrote:
   What is this process taking all my CPU time?
  
  
   root  1102 65.5  2.9 403624 89532 tty1 Rsl+ 09:36 133:04
 /usr/libexec/Xorg.bin :0 -background none -noreset -verbose 3 -logfile
 /dev/null -auth /run/gdm/auth-for-gdm-FJcCNf/database -seat seat0 -nolisten
 tcp vt1
  that is your desktop. you can look at the log in /var/log/Xorg.0.log ,
  and older logs..
 
  -rw-r--r--  1 rootroot  54720 Jun  6 06:53 Xorg.0.log
  -rw-r--r--  1 rootroot  68741 Jun  6 06:44 Xorg.0.log.old
  -rw-r--r--  1 rootroot  43074 Oct 28  2014 Xorg.9.log
 
  --
  Paul Cartwright
  Registered Linux User #367800 and new counter #561587
 
  --
  users mailing list
  users@lists.fedoraproject.org
  To unsubscribe or change subscription options:
  https://admin.fedoraproject.org/mailman/listinfo/users
  Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
  Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
  Have a question? Ask away: http://ask.fedoraproject.org
 
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


f22: how to change default gateway via line command

2015-06-06 Thread Dario Lesca
Into Fedora 22 workstation, it's possible to change temporarily via
command line the default gateway, to test another gateway, when I have
setup the network via DHCP?

What is the best command line to use?

Many thanks

-- 
Dario Lesca
(inviato dal mio Linux Fedora 22 con Gnome 3.16)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Machine very slow

2015-06-06 Thread Patrick Dupre
Thankj.

However:
rw-r--r--. 1 root root   40638 May  3 18:12 /var/log/Xorg.0.log
-rw-r--r--. 1 root root   40638 May  3 17:50 /var/log/Xorg.0.log.old
-rw-r--r--. 1 root pdupre 43786 Apr  8 23:46 /var/log/Xorg.1.log
-rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.5.log
-rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.4.log
-rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.3.log
-rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.2.log
-rw-r--r--. 1 root root8390 May  3  2014 /var/log/Xorg.2.log.old
-rw-r--r--. 1 root root   39297 Apr 27  2014 /var/log/Xorg.1.log.old


There is no new file since I update the machine from FC20 to fc21!


===
 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: Saturday, June 06, 2015 at 1:31 PM
 From: Paul Cartwright pbcartwri...@gmail.com
 To: users@lists.fedoraproject.org
 Subject: Re: Machine very slow

 On 06/06/2015 07:07 AM, Patrick Dupre wrote:
  What is this process taking all my CPU time?
 
 
  root  1102 65.5  2.9 403624 89532 tty1 Rsl+ 09:36 133:04 
  /usr/libexec/Xorg.bin :0 -background none -noreset -verbose 3 -logfile 
  /dev/null -auth /run/gdm/auth-for-gdm-FJcCNf/database -seat seat0 -nolisten 
  tcp vt1
 that is your desktop. you can look at the log in /var/log/Xorg.0.log ,
 and older logs..
 
 -rw-r--r--  1 rootroot  54720 Jun  6 06:53 Xorg.0.log
 -rw-r--r--  1 rootroot  68741 Jun  6 06:44 Xorg.0.log.old
 -rw-r--r--  1 rootroot  43074 Oct 28  2014 Xorg.9.log
 
 -- 
 Paul Cartwright
 Registered Linux User #367800 and new counter #561587
 
 -- 
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: F22: Touchpad and Middle click

2015-06-06 Thread Marco Guazzone
On Fri, Jun 5, 2015 at 10:12 PM, Marco Guazzone
marco.guazz...@gmail.com wrote:

[cut]

 Do you see similar for your X11 session?

 Not exactly the same. This may depend by the fact that F22 uses
 libinput (https://fedoraproject.org/wiki/Changes/LibinputForXorg).

 [21.261] (II) config/udev: Adding input device AlpsPS/2 ALPS
 GlidePoint (/dev/input/event8)
 [21.261] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass evdev
 touchpad catchall
 [21.261] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass
 touchpad catchall
 [21.261] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass
 Default clickpad buttons
 [21.261] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass
 libinput touchpad catchall
 [21.261] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS GlidePoint'
 [21.261] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
 [21.261] (**) Option Device /dev/input/event8
 [21.261] (II) input device 'AlpsPS/2 ALPS GlidePoint',
 /dev/input/event8 is tagged by udev as: Touchpad
 [21.261] (II) input device 'AlpsPS/2 ALPS GlidePoint',
 /dev/input/event8 is a touchpad
 [21.273] (**) Option config_info
 udev:/sys/devices/platform/i8042/serio1/input/input6/event8
 [21.273] (II) XINPUT: Adding extended input device AlpsPS/2 ALPS
 GlidePoint (type: TOUCHPAD, id 14)
 [21.273] (**) Option AccelerationScheme none
 [21.273] (**) AlpsPS/2 ALPS GlidePoint: (accel) selected scheme none/0
 [21.273] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
 [21.273] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
 [21.273] (II) input device 'AlpsPS/2 ALPS GlidePoint',
 /dev/input/event8 is tagged by udev as: Touchpad
 [21.273] (II) input device 'AlpsPS/2 ALPS GlidePoint',
 /dev/input/event8 is a touchpad
 [21.273] (II) config/udev: Adding input device AlpsPS/2 ALPS
 GlidePoint (/dev/input/mouse1)
 [21.273] (II) No input driver specified, ignoring this device.
 [21.273] (II) This device may have been added with another device file.
 [21.273] (II) config/udev: Adding input device Dell WMI hotkeys
 (/dev/input/event17)

 Honestly, I don't know if the last lines (those from No input driver
 specified) belongs to the touchpad device or instead to the Dell VMI
 hotkeys.


Hi,

There is a bug report here:

https://bugzilla.redhat.com/show_bug.cgi?id=1205771

It's already closed. I've just added a comment about my problem hoping
that it will be reopened.
Thank you both for the help.

Best,

Marco
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Problem in touchpad after suspend/resume

2015-06-06 Thread Marcos Paulo de Souza

Hi guys,

I have this problem, when I suspend/resume my machine my touchpad stops 
working on my Asus X450LC laptop. After executing a dmesg, I found these 
messages related to ACPI:


[37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type 
mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)

[37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
[37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type 
mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)


Do you have some idea what can be this problem?

Thanks in advance!
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: gsl

2015-06-06 Thread Patrick Dupre
Thank,

I know the fdfsolver works fine but not the fsolver which do not require
the derivatives

===
 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: Saturday, June 06, 2015 at 10:54 PM
 From: Veli-Pekka Kestilä fed...@guagua.fi
 To: Community support for Fedora users users@lists.fedoraproject.org
 Subject: Re: gsl

 On 4.6.2015 16:23, Patrick Dupre wrote:
 
  ===
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: Thursday, June 04, 2015 at 3:01 PM
  From: Jonathan Underwood jonathan.underw...@gmail.com
  To: Community support for Fedora users users@lists.fedoraproject.org
  Subject: Re: gsl
 
  On 3 June 2015 at 22:23, Patrick Dupre pdu...@gmx.com wrote:
  Hello,
 
  Can somebody help me?
 
  This short piece of code fails.
  It seems to be due to the gsl library!
 
  Thank for your help.
 
  #include gsl/gsl_multifit_nlin.h
 
  int main () {
 const gsl_multifit_fsolver_type *T_ ;
 gsl_multifit_fsolver *s_ = gsl_multifit_fsolver_alloc (T_, 10, 1);
 }
 
 
  You haven't initialized T_, so when you call
  gsl_multifit_fsolver_alloc, it fails because it doesn't know what
  solver type to allocate for.
 
  So, try initializing it, eg.
 
  const gsl_multifit_fsolver_type *T_ = gsl_multifit_fdfsolver_lmsder;
warning: initialization from incompatible pointer type [enabled by 
  default]
  const gsl_multifit_fsolver_type *T_ = gsl_multifit_fdfsolver_lmsder ;
 
  fsolver and fdfsolver are not compatible!
  I did not find a way to initiate this pointer.
 
 
 Try this code:
 #include gsl/gsl_multifit_nlin.h
 
 int main () {
  const gsl_multifit_fdfsolver_type * T = gsl_multifit_fdfsolver_lmder;
  gsl_multifit_fdfsolver * s = gsl_multifit_fdfsolver_alloc (T, 100, 3);
 }
 
 from: http://manpagez.com/info/gsl-ref/gsl-ref-1.12/gsl-ref_507.php
 
 Atleast I got it to compile and run without segfaults.
 
 -vpk
 
 -- 
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


gdm autologin doesn't work after updating to F22

2015-06-06 Thread Sam Varshavchik

In /etc/gdm/custom.conf I have:

[daemon]
TimedLoginEnable=true
TimedLogin=mrsam
TimedLoginDelay=10

After updating to F22, the progress bar marks off the ten second wait and  
then …nothing. I have to log in manually.


I tried adding WaylandEnable=false, this makes no difference.

Anyone know what's broken?



pgpqKQkZBRtbG.pgp
Description: PGP signature
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Marcos Paulo de Souza

Hi Zoltan,

here it comes: https://paste.fedoraproject.org/229616/65458814/

Do you need more info?

Thanks!

On 07-06-2015 01:59, Zoltan Hoppar wrote:

Hi,

I need more data - can you provide for me another pastebin?
Please send me

cat /proc/acpi/dump_info

output.

Thanks.

Zoltan

2015-06-07 6:37 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:

Hi Zoltan,

I tried to disable nouveau here (by compiling a new kernel and disabling all
nouveau options), and it gave me a lot of warnings again in ACPI. You can
take a look at the dmesg here:
https://paste.fedoraproject.org/229610/51495143/

I tried to disable intel grafic driver (i915, by removing the compilation of
the driver in menuconfig), by the login screen didn't started.

I also tried to blacklist nouveau, or to change the order of loading these
modules, but I didn't figured out how to do it.

Do you have some more points to give me to fix this annoying problem?

Thanks in advance for all your help!


On 07-06-2015 00:03, Zoltan Hoppar wrote:

I think this is a simple problem, check how the drivers are loading.
IF nvidia loads before the touch it gives fail. I dunno where I have
seen this, but replacing the mod order will solve it.

HTH

Zoltan

PS: If I find the article, I mail it to you.

2015-06-07 4:22 GMT+02:00 Marcos Paulo de Souza
marcos.souza@gmail.com:

Hi Zoltan,

On 06-06-2015 23:15, Zoltan Hoppar wrote:

Hi,

First check that you have for your machine any bios update or not that
actually fixes your leaky acpi. Then, if it's possible use fedora
pastebin - https://paste.fedoraproject.org/ and insert your complete
dmesg command output, and return here with the received link. Then
maybe I can say more.

Here it is: https://paste.fedoraproject.org/229601/36434701/

I also tried to get debug where this message is shown and I found it:
drivers/gpu/drm/nouveau/nouveau_acpi.c: 93

So, it seems to be my nvidia card. I'll also check for bios updates.

Thanks!



Zoltan

2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza
marcos.souza@gmail.com:

Hi guys,

I have this problem, when I suspend/resume my machine my touchpad stops
working on my Asus X450LC laptop. After executing a dmesg, I found
these
messages related to ACPI:

[37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4
type
mismatch - Found [Buffer], ACPI requires [Package]
(20150204/nsarguments-95)
[37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
[37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4
type
mismatch - Found [Buffer], ACPI requires [Package]
(20150204/nsarguments-95)

Do you have some idea what can be this problem?

Thanks in advance!
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org




--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org




--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org





--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


sed question??

2015-06-06 Thread bruce
Evening..

As a test, the following is an attempt to replace text from a test
file with text from an external file.

aa=$(cat www1.txt)
sed -i s*#\tISSUES/NOTES::*$aa*g foo.py1

When I check the foo.py1 file, I get $aa in the file, instead of the
replacement text.

The test is using replacement delimeters for the sed, as the
replacement text has slashes...

thanks for any pointers.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Zoltan Hoppar
Hi,

First check that you have for your machine any bios update or not that
actually fixes your leaky acpi. Then, if it's possible use fedora
pastebin - https://paste.fedoraproject.org/ and insert your complete
dmesg command output, and return here with the received link. Then
maybe I can say more.

Zoltan

2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:
 Hi guys,

 I have this problem, when I suspend/resume my machine my touchpad stops
 working on my Asus X450LC laptop. After executing a dmesg, I found these
 messages related to ACPI:

 [37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
 mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)
 [37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
 [37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
 mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)

 Do you have some idea what can be this problem?

 Thanks in advance!
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org



-- 
PGP:  06853DF7
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Marcos Paulo de Souza

Hi Zoltan,

On 06-06-2015 23:15, Zoltan Hoppar wrote:

Hi,

First check that you have for your machine any bios update or not that
actually fixes your leaky acpi. Then, if it's possible use fedora
pastebin - https://paste.fedoraproject.org/ and insert your complete
dmesg command output, and return here with the received link. Then
maybe I can say more.

Here it is: https://paste.fedoraproject.org/229601/36434701/

I also tried to get debug where this message is shown and I found it:
drivers/gpu/drm/nouveau/nouveau_acpi.c: 93

So, it seems to be my nvidia card. I'll also check for bios updates.

Thanks!



Zoltan

2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:

Hi guys,

I have this problem, when I suspend/resume my machine my touchpad stops
working on my Asus X450LC laptop. After executing a dmesg, I found these
messages related to ACPI:

[37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)
[37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
[37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
mismatch - Found [Buffer], ACPI requires [Package] (20150204/nsarguments-95)

Do you have some idea what can be this problem?

Thanks in advance!
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org





--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Zoltan Hoppar
I think this is a simple problem, check how the drivers are loading.
IF nvidia loads before the touch it gives fail. I dunno where I have
seen this, but replacing the mod order will solve it.

HTH

Zoltan

PS: If I find the article, I mail it to you.

2015-06-07 4:22 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:
 Hi Zoltan,

 On 06-06-2015 23:15, Zoltan Hoppar wrote:

 Hi,

 First check that you have for your machine any bios update or not that
 actually fixes your leaky acpi. Then, if it's possible use fedora
 pastebin - https://paste.fedoraproject.org/ and insert your complete
 dmesg command output, and return here with the received link. Then
 maybe I can say more.

 Here it is: https://paste.fedoraproject.org/229601/36434701/

 I also tried to get debug where this message is shown and I found it:
 drivers/gpu/drm/nouveau/nouveau_acpi.c: 93

 So, it seems to be my nvidia card. I'll also check for bios updates.

 Thanks!



 Zoltan

 2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza
 marcos.souza@gmail.com:

 Hi guys,

 I have this problem, when I suspend/resume my machine my touchpad stops
 working on my Asus X450LC laptop. After executing a dmesg, I found these
 messages related to ACPI:

 [37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
 mismatch - Found [Buffer], ACPI requires [Package]
 (20150204/nsarguments-95)
 [37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
 [37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
 mismatch - Found [Buffer], ACPI requires [Package]
 (20150204/nsarguments-95)

 Do you have some idea what can be this problem?

 Thanks in advance!
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org




 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org



-- 
PGP:  06853DF7
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Packages without updates during 20-21 upgrade

2015-06-06 Thread Alex Regan

Hi,

I'm using fedup to upgrade from fedora20 to fedora21 before going to 
fedora22, and there appears to be a few packages that have no fedora21 
equivalent:


Packages without updates:
  aic94xx-firmware-30-6.fc20.noarch
  febootstrap-supermin-helper-3.21-2.fc18.x86_64
  gnupg-1.4.19-2.fc20.x86_64
  libgssglue-0.4-2.fc19.x86_64
  perl-PlRPC-0.2020-15.fc20.noarch
  prelink-0.5.0-1.fc20.x86_64
  1:anaconda-yum-plugins-1.0-10.fc20.noarch

The aic94xx I assume is for my Adaptec controller. No upgrade for gnupg? 
perl-PlRPC is for amavisd-new.


Is this something to be concerned with before proceeding?

On another system, I have the following failure during fedup:

# fedup --network 21 --product=server
setting up repos...
fedora/21/x86_64 | 3.8 kB  00:00:00
fedora/21/x86_64/group_gz| 232 kB  00:00:00
fedora/21/x86_64/primary_db  |  17 MB  00:00:23
No upgrade available for the following repos: updates
Error: can't get boot images.
The installation repo isn't currently available.
Try again later, or specify a repo using --instrepo.

I've searched quite a bit online, and all references to this issue 
appear to be with much older upgrades. Any ideas would sure be appreciated.


Thanks,
Alex
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Marcos Paulo de Souza

Hi Zoltan,

I tried to disable nouveau here (by compiling a new kernel and disabling 
all nouveau options), and it gave me a lot of warnings again in ACPI. 
You can take a look at the dmesg here:

https://paste.fedoraproject.org/229610/51495143/

I tried to disable intel grafic driver (i915, by removing the 
compilation of the driver in menuconfig), by the login screen didn't 
started.


I also tried to blacklist nouveau, or to change the order of loading 
these modules, but I didn't figured out how to do it.


Do you have some more points to give me to fix this annoying problem?

Thanks in advance for all your help!

On 07-06-2015 00:03, Zoltan Hoppar wrote:

I think this is a simple problem, check how the drivers are loading.
IF nvidia loads before the touch it gives fail. I dunno where I have
seen this, but replacing the mod order will solve it.

HTH

Zoltan

PS: If I find the article, I mail it to you.

2015-06-07 4:22 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:

Hi Zoltan,

On 06-06-2015 23:15, Zoltan Hoppar wrote:

Hi,

First check that you have for your machine any bios update or not that
actually fixes your leaky acpi. Then, if it's possible use fedora
pastebin - https://paste.fedoraproject.org/ and insert your complete
dmesg command output, and return here with the received link. Then
maybe I can say more.

Here it is: https://paste.fedoraproject.org/229601/36434701/

I also tried to get debug where this message is shown and I found it:
drivers/gpu/drm/nouveau/nouveau_acpi.c: 93

So, it seems to be my nvidia card. I'll also check for bios updates.

Thanks!



Zoltan

2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza
marcos.souza@gmail.com:

Hi guys,

I have this problem, when I suspend/resume my machine my touchpad stops
working on my Asus X450LC laptop. After executing a dmesg, I found these
messages related to ACPI:

[37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
mismatch - Found [Buffer], ACPI requires [Package]
(20150204/nsarguments-95)
[37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
[37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4 type
mismatch - Found [Buffer], ACPI requires [Package]
(20150204/nsarguments-95)

Do you have some idea what can be this problem?

Thanks in advance!
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org




--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org





--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: gsl

2015-06-06 Thread Susi Lehtola

On 06/06/2015 04:29 PM, Patrick Dupre wrote:

Thank,

I know the fdfsolver works fine but not the fsolver which do not require
the derivatives


It's still not implemented in gsl. This question has nothing to do with 
Fedora.


If you're not happy with the advice I gave you about using finite 
difference derivatives on the list and in private, you should really 
move this discussion to GSL's developers' list.

--
Susi Lehtola
Fedora Project Contributor
jussileht...@fedoraproject.org
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: sed question??

2015-06-06 Thread Cameron Simpson

On 06Jun2015 21:53, bruce badoug...@gmail.com wrote:

Evening..


Morning...


As a test, the following is an attempt to replace text from a test
file with text from an external file.

aa=$(cat www1.txt)


BTW, this can be written:

 aa=$( www1.txt)


sed -i s*#\tISSUES/NOTES::*$aa*g foo.py1

When I check the foo.py1 file, I get $aa in the file, instead of the
replacement text.


Are you sure you used the exact command above? If you have used single quote I 
would have expected such a result, but not with double quotes.



The test is using replacement delimeters for the sed, as the
replacement text has slashes...


I'm fond of ^G for this purpose:-)


thanks for any pointers.


When debugging sed scripts and other fiddly shell commands it is often useful 
to trace the actual executed command, thus:


 ( set -x; sed -i s*#\tISSUES/NOTES::*$aa*g foo.py1 )

which will should the issued sed command, after the shell has done its 
mangling.


Cheers,
Cameron Simpson c...@zip.com.au
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Problem in touchpad after suspend/resume

2015-06-06 Thread Zoltan Hoppar
Hi,

I need more data - can you provide for me another pastebin?
Please send me

cat /proc/acpi/dump_info

output.

Thanks.

Zoltan

2015-06-07 6:37 GMT+02:00 Marcos Paulo de Souza marcos.souza@gmail.com:
 Hi Zoltan,

 I tried to disable nouveau here (by compiling a new kernel and disabling all
 nouveau options), and it gave me a lot of warnings again in ACPI. You can
 take a look at the dmesg here:
 https://paste.fedoraproject.org/229610/51495143/

 I tried to disable intel grafic driver (i915, by removing the compilation of
 the driver in menuconfig), by the login screen didn't started.

 I also tried to blacklist nouveau, or to change the order of loading these
 modules, but I didn't figured out how to do it.

 Do you have some more points to give me to fix this annoying problem?

 Thanks in advance for all your help!


 On 07-06-2015 00:03, Zoltan Hoppar wrote:

 I think this is a simple problem, check how the drivers are loading.
 IF nvidia loads before the touch it gives fail. I dunno where I have
 seen this, but replacing the mod order will solve it.

 HTH

 Zoltan

 PS: If I find the article, I mail it to you.

 2015-06-07 4:22 GMT+02:00 Marcos Paulo de Souza
 marcos.souza@gmail.com:

 Hi Zoltan,

 On 06-06-2015 23:15, Zoltan Hoppar wrote:

 Hi,

 First check that you have for your machine any bios update or not that
 actually fixes your leaky acpi. Then, if it's possible use fedora
 pastebin - https://paste.fedoraproject.org/ and insert your complete
 dmesg command output, and return here with the received link. Then
 maybe I can say more.

 Here it is: https://paste.fedoraproject.org/229601/36434701/

 I also tried to get debug where this message is shown and I found it:
 drivers/gpu/drm/nouveau/nouveau_acpi.c: 93

 So, it seems to be my nvidia card. I'll also check for bios updates.

 Thanks!


 Zoltan

 2015-06-07 3:02 GMT+02:00 Marcos Paulo de Souza
 marcos.souza@gmail.com:

 Hi guys,

 I have this problem, when I suspend/resume my machine my touchpad stops
 working on my Asus X450LC laptop. After executing a dmesg, I found
 these
 messages related to ACPI:

 [37095.537571] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4
 type
 mismatch - Found [Buffer], ACPI requires [Package]
 (20150204/nsarguments-95)
 [37095.538320] ACPI: \_SB_.PCI0.RP05.PEGP: failed to evaluate _DSM
 [37095.538334] ACPI Warning: \_SB_.PCI0.RP05.PEGP._DSM: Argument #4
 type
 mismatch - Found [Buffer], ACPI requires [Package]
 (20150204/nsarguments-95)

 Do you have some idea what can be this problem?

 Thanks in advance!
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org



 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org




 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org



-- 
PGP:  06853DF7
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Security Lab

2015-06-06 Thread Martin Cigorraga
Hello,
I would like to know if it is enough to install the 'Security Lab' group in
order to get all the goodies from that spin.
-Martin
-- 
-Martín
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Security Lab

2015-06-06 Thread Rahul Sundaram
Hi

On Sat, Jun 6, 2015 at 2:54 PM, Martin Cigorraga  wrote:

 Hello,
 I would like to know if it is enough to install the 'Security Lab' group
 in order to get all the goodies from that spin.


Yes

Rahul
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: How to figure out which package provides the Fixed 16 font

2015-06-06 Thread Ranjan Maitra
Hi,


 Hi,
 
 I was wondering how to find out the package that provides the font
 called Fixed 16 in Fedora 22. The font existed in Fedora 21.
 Installing the same packages in F22 that were in F21 has made this
 font disappear (actually, I fedup-ed and nothing font-related that I
 can tell was dropped or obsoleted.)
 
 I have oodles of fonts installed.  I searched for a font called 'Fixed
 16' and did not find it.
 
 I suspect that you are seeing this name in an interface, and that it is
 a generic name rather than the actual name of the font.  If you still
 have a system where this font is installed, do a find on that system
 under /usr.  Something like
 find /usr -iname '*font*' | less
 should bring up every font file on the system.  Within the less page do
 a search on 16.  That will show you every 16 pixel? / kern? font.  One
 of those will probably be the font you are looking for.
 
 Then do a rpm -qf [path to font]/[font name] to find the package it
 belongs to.
 
 Failing that approach, what is the application that uses this font?
 Look in the source and configuration for that application to see which
 font it is actually using, behind the scenes.

It appears to me that the font that I want is actually installed. When I do 
xterm -fn 10x20, I get the font. (xterm is from where I became aware of this 
font in the first place.) However, in sylpheed, I do not know how to call this 
font. I have previously used Fixed 16 to refer to this font but it does not 
seem to work (it gives some other font). Is this a gtk update/packaging issue?

Many thanks,
Ranjan


FREE ONLINE PHOTOSHARING - Share your photos online with your friends and 
family!
Visit http://www.inbox.com/photosharing to find out more!


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: f22: how to change default gateway via line command

2015-06-06 Thread Dario Lesca
Il giorno sab, 06/06/2015 alle 07.01 -0400, Paul Cartwright ha scritto:
 On 06/06/2015 05:32 AM, Dario Lesca wrote:
  Into Fedora 22 workstation, it's possible to change temporarily via
  command line the default gateway, to test another gateway, when I 
  have
  setup the network via DHCP?
  
  What is the best command line to use?
  
  Many thanks
 try :
 $ man route
 
 *DESCRIPTION
Route manipulates the kernel's IP routing tables.

Thanks Paul, but in f22 the command ip r del default (or ip r rep)
not work anymore if the NetworkManager is set to DHCP (see my previous message, 
Thu, 04 Jun 2015 
14:15:59)

Some other suggest?

-- 
Dario Lesca
(inviato dal mio Linux Fedora 22 con Gnome 3.16)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: f22: how to change default gateway via line command

2015-06-06 Thread Alchemist
2015-06-06 21:03 GMT+03:00 Dario Lesca d.le...@solinos.it:

 Il giorno sab, 06/06/2015 alle 07.01 -0400, Paul Cartwright ha scritto:
  On 06/06/2015 05:32 AM, Dario Lesca wrote:
   Into Fedora 22 workstation, it's possible to change temporarily via
   command line the default gateway, to test another gateway, when I
   have
   setup the network via DHCP?
  
   What is the best command line to use?
  
   Many thanks
  try :
  $ man route
 
  *DESCRIPTION
 Route manipulates the kernel's IP routing tables.

 Thanks Paul, but in f22 the command ip r del default (or ip r rep)
 not work anymore if the NetworkManager is set to DHCP (see my previous
 message, Thu, 04 Jun 2015
 14:15:59)

 Some other suggest?


Couple of possible solutions

1) Put ignore-auto-routes=true into connection file in
/etc/NetworkManager/system-connections and restart connection/NM service.
This should reject DHCP routes, and you can add routes manually as tmp
solution.

2) nmcli con mod --temporary {interface} ipv4.never-default true
After that NM will not add default route to that int.

3) In good old days NM honored
/etc/sysconfig/network-scripts/ifcfg-interface config, and DEFROUTE=no in
right place meant no def route for that interface. But I am not sure if it
works nowadays, I dont use NM. More no than yes with -NM enabled.

Be careful, don't mess your network by having fun with NetworkManager and
D-Bus.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org