Re: Flowchart-ish tool

2009-12-11 Thread Marco Guazzone
On Fri, Dec 11, 2009 at 10:49 PM, Bill Davidsen david...@tmr.com wrote:
 Frank Murphy (Frankly3D) wrote:

 On 11/12/09 17:28, Bill Davidsen wrote:

 Bill Davidsen wrote:

 --snip--

 Thanks, all. I have some things to try.

 Maybe something here?
 http://www.insideria.com/2009/12/28-rich-data-visualization-too.html

 That's a worthwhile tip even if it doesn't solve my current problem. What a
 great collection of reviews of the tools!

 Thank you.


Maybe this?
http://www.jgraph.com/mxgraph.html

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


[F12] Error from ABRT while sending report

2009-11-18 Thread Marco Guazzone
Dear F12 users,

I'm trying to send a report with ABRT but I receive this error:

XML-RPC Fault: libcurl failed to execute the HTTP POST transaction.
Couldn't resolve host 'bugzilla.redhat.com'(-504)

This error seems to indicate that the host bugzilla.readhat.com
cannot be dns-resolved but...

$ host bugzilla.redhat.com
bugzilla.redhat.com has address 209.132.176.231

$ ping bugzilla.redhat.com
PING bugzilla.redhat.com (209.132.176.231) 56(84) bytes of data.
64 bytes from bugzilla.redhat.com (209.132.176.231): icmp_seq=1
ttl=109 time=316 ms
64 bytes from bugzilla.redhat.com (209.132.176.231): icmp_seq=2
ttl=109 time=203 ms



So what do you think is the problem?

Thank you very much!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


[F12] Icons in the Firefox search bar

2009-11-18 Thread Marco Guazzone
Dear F12 users,

I cannot see any icon in the Firefox search bar when I click for
changing the search engine.
More specifically, in the search bar
* I see the icon of the current search engine
* when I click for changing the search engine, no icon appears in the
list of available search engine.

I'm sure that on F11 (which I have installed until yesterday) I was
able to see those icons.

Any idea?

Thank you very much!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: How to get rid from unused entries in ~/.thumbnails

2009-10-29 Thread Marco Guazzone
On Thu, Oct 29, 2009 at 3:53 PM, Robert Moskowitz r...@htt-consult.com wrote:
 Dr. Michael J. Chudobiak wrote:

[cut]

 Considering I log in about once a month, that won't do for me.

 I have a cronjob that runs this script I got some years ago:

 #!/bin/sh
 find ~/.thumbnails -type f -atime +30 -exec rm {} \;

 But I don't even remember how I set up the cronjob to run daily!  It is, as
 this system is rather clean in its ~/.thumbnails



I use the excellent tool bleachbit (http://bleachbit.sourceforget.net)
(rpms are provided) which frees you from many temp/auxiliary files

First time I ran I got back 1GB of space!!

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


How-to customize gnome-settings-daemon?

2009-10-05 Thread Marco Guazzone
Hello Fedora users,

I'm running F11 with OpenBox (without GNOME) as window manager.
In order to bring some GNOME facilities to the OpenBox environment I
run gnome-settings-daemon at startup.

My problem is that gnome-settings-daemon starts gnome-screensaver.
Since gnome-screensaver does not work properly under OpenBox (actually
It does not activate when computer is idle) I want to disable it (and
run instead the xscreensaver screensaver).

The only way I've found to prevent  gnome-settings-daemon to run
gnome-screensaver is to change system-level configuration files in
/etc/gconf:
* /etc/gconf/gconf.xml.defaults/%gconf-tree.xml
* /etc/gconf/schemas/apps_gnome_settings_daemon_screensaver.schemas

The problem is that at every update of gnome-settings-daemon package,
these files are overwritten.
This is boring... :(

Is there a way to change gnome-settings-daemon configurations locally,
that is at user-level instead of at system-level?


Thank you very much!!

Cheers,


-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Spell checking in vim

2009-08-23 Thread Marco Guazzone
On Sat, Aug 22, 2009 at 5:48 PM, Aaron Konstamakons...@sbcglobal.net wrote:
[cut text]

 I am missing something. If you get the file how do you get vim to
 correct the misspelled words?


Once you have the dictionary file in $HOME/.vim/spell (in this case
the file is de.utf-8.spl) you can spell check inside ViM by issueing
the command:

:setlocal spell spelllang=de

After that ViM will mark (in red for me) all misspelled words in
real-time (i.e. while you're typing).

Since I frequently use this feature I've created some key bindings
inside my $HOME/.vimrc:

map F5 Esc:setlocal nospellCR
map F6 Esc:setlocal spell spelllang=enCR
map F7 Esc:setlocal spell spelllang=itCR

If you want a list of possible candidates of a misspelled word, move
the cursor on that word and (in command mode) type: z=.
Instead if that word is right (e.g. e technical word) and you want to
insert in the dictionary file type zg
If you want to remove a word from a dictionary type zw.
Finally for moving to the next/previous misspelled word type ]s and
[s respectively.

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Spell checking in vim

2009-08-23 Thread Marco Guazzone
On Sun, Aug 23, 2009 at 10:38 AM, Aaron Konstamakons...@sbcglobal.net wrote:

 Seems more complicated than using aspell ot ispell on the vim file.
 --
 ===
 The story you are about to hear is true. Only the names have been
 changed to protect the innocent.
 ===
 Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net

 --
 fedora-list mailing list
 fedora-list@redhat.com
 To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
 Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Don't know what is *best.*.. But the ViM-way is good for me, ;)

With the key bindings above, I simply press F6 or F7 for the English
or Italian language respectively and then I'm able to check for
misspelled words on real-time (i.e., while I'm just typing them).
The spell checker remain active until you exit from ViM or disable
with the command given above

Instead, for using aspell/ispell I have to invoke it explicitly and it
does not work at real-time.
This is what made me move from ispell/aspell to ViM-spell :)


-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Spell checking in vim

2009-08-23 Thread Marco Guazzone
2009/8/23 Christoph Höger choe...@cs.tu-berlin.de:
 Am Sonntag, den 23.08.2009, 09:30 +0200 schrieb Marco Guazzone:
 On Sat, Aug 22, 2009 at 5:48 PM, Aaron Konstamakons...@sbcglobal.net wrote:
 [cut text]

  I am missing something. If you get the file how do you get vim to
  correct the misspelled words?
 

 Once you have the dictionary file in $HOME/.vim/spell (in this case
 the file is de.utf-8.spl) you can spell check inside ViM by issueing
 the command:

 :setlocal spell spelllang=de

 Did you test that with fedora 11 and vim 7.2? On my machine vim says
  the file would not look like a language file.


Hmmm... Sorry I've only tested the download of the file.
Actually it seems you're right ... ViM complains about the file me too

I've tried to download it manually from:

http://ftp.vim.org/pub/vim/runtime/spell/

but I get the same error.

Then I dig into the ViM repo and I've found this:

http://ftp.vim.org/pub/vim/unstable/runtime/spell/de.utf-8.spl
http://ftp.vim.org/pub/vim/unstable/runtime/spell/de.utf-8.sug

Note: the sug file is not important but should improve spelling
(don't know how)

I've downloaded those files and saved into $HOME/.vim/spell
Then I've tried
:setlocal spell spelllang=de
and now it seems to work

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Spell checking in vim

2009-08-22 Thread Marco Guazzone
2009/8/22 Christoph Höger choe...@cs.tu-berlin.de:
 Hi folks,

 I just wanted to spellcheck some files with vim.
 set spelllang=de reports that de.utf-8.spl is missing.

 Is there a package that provides that file or do I have to search
 upstream for it?


If you enter ViM and in command mode type:

:setlocal spell spelllang=de

ViM should tell you the following:

  Cannot find spell file for de in utf-8
  Do you want me to try downloading it?
  (Y)es, [N]o:

If you type Y ViM should downlod the file for you.

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: plotting large datasets

2009-08-21 Thread Marco Guazzone
On Fri, Aug 21, 2009 at 7:16 PM, Steve Searlest...@stevesearle.com wrote:
 Around 06:10pm on Friday, August 21, 2009 (UK time), DJ Delorie scrawled:

 I've got a need to plot value vs time data for 32 channels
 simultaneously.  Gnuplot isn't up to the task (not enough uniqueness,
 even mixing lines and points, or control - the graph is just a mess).
 What else is there?

 I use RRDtool.

 Steve


Have you tried with R (http://www.r-project.org)?
It is very powerful and IMO easy to use.
Also there are a lot of packages.
See at http://cran.r-project.org


Another powerful tool for charting is GLE (http://www.gle-graphics.org/)


-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


F11: Unable to print to HP LaserJet 4250

2009-08-03 Thread Marco Guazzone
Dear all,

Every time I try to print to an HP LaserJet 4250 printer, the result
is the following:
* CUPS says the job has been successfully printed (e.g., status completed)
* instead, the printer does not print anything, it blocks and shows a
Service Error message; the only way to restore is to power it off
and on.

Note: With F10 the printer worked perfectly.

Moreover, if I try to print to another HP printer  (HP LaserJet 8000)
I have NO problem.

Here below are some details:
PRINTER DETAILS:
  Description:  HP LaserJet 4250
  Driver:   HP LaserJet 4250 Postscript (recommended) (grayscale,
2-sided printing)
  Connection:   socket://###.###.###.###:9100
  Defaults: job-sheets=none, none media=iso_a4_210x297mm
sides=two-sided-short-edge
SYSTEM DETAILS:
  Dell Latitude D830
  Linux feedback 2.6.29.6-213.fc11.x86_64 #1 SMP Tue Jul 7 21:02:57
EDT 2009 x86_64 x86_64 x86_64 GNU/Linux

Any help is very very appreciated.

Thank you very much!!

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F11: Unable to print to HP LaserJet 4250

2009-08-03 Thread Marco Guazzone
On Mon, Aug 3, 2009 at 3:56 PM, Tim Waughtwa...@redhat.com wrote:
 On Mon, 2009-08-03 at 12:40 +0200, Marco Guazzone wrote:
 Note: With F10 the printer worked perfectly.

 Can you send print jobs to that printer from other operating systems
 currently, so that we know the printer itself is not acting up?


Yes this printer is at a University Department. We have Mac, Win
XP/Vista/2003, Fedora 6, 7 and 10.


 Perhaps you could use a Fedora 10 Live CD to see if Fedora 10 still
 prints correctly to that printer?

I've asked to 2 collegues which has installed a F10. Yes they are able to print.
I've also compared the PPD installed on a F10 with my own PPD and they
are almost identical (except for some default settings)


 I'm not sure which application you are printing from, but often you can

evince

The doc I'm trying to print is available at:
http://enterprise.amd.com/Downloads/Ziff_Power_and_Cooling_IT_.pdf

WAIT!!... I've just tried to print the Test Page from
system-config-printer and it works.
But, then when I tried to print the doc above (from evince) it failed.
Then I've tried with Acrobat Reader 9.1.3 and it works!

So, I think is an evince problem, do you?

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F11: Unable to print to HP LaserJet 4250

2009-08-03 Thread Marco Guazzone
On Mon, Aug 3, 2009 at 5:42 PM, Tim Waughtwa...@redhat.com wrote:
 On Mon, 2009-08-03 at 16:46 +0200, Marco Guazzone wrote:
 The doc I'm trying to print is available at:
 http://enterprise.amd.com/Downloads/Ziff_Power_and_Cooling_IT_.pdf

 WAIT!!... I've just tried to print the Test Page from
 system-config-printer and it works.
 But, then when I tried to print the doc above (from evince) it failed.
 Then I've tried with Acrobat Reader 9.1.3 and it works!

 So, I think is an evince problem, do you?

 The way to find out is to print the PDF directly from the command line,
 without involving evince.

 Just 'lp -d destination file.pdf'.


Tried:
$ lp -d UPO-HP_lj_4250-NearFax ~/Ziff_Power_and_Cooling_IT_.pdf

It worked!!

Should I submit a bug for evince in Fedora bug tracking system?

Thanks!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F11: Unable to print to HP LaserJet 4250

2009-08-03 Thread Marco Guazzone
On Mon, Aug 3, 2009 at 7:15 PM, Tim Waughtwa...@redhat.com wrote:
 On Mon, 2009-08-03 at 16:46 +0200, Marco Guazzone wrote:
 So, I think is an evince problem, do you?

 Another thing worth trying actually: try to print from another
 application which uses the GTK+ print dialog, such as gedit.

 The problem may be in the 'gtk2' package instead of 'evince'.

Ooops ... I've just created a new bug:

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

I'll try your hint Wednesday. Thank you!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F11: Blender and the i915 driver

2009-07-15 Thread Marco Guazzone
On Wed, Jul 15, 2009 at 4:57 PM, Robin Laingrobin.la...@drdc-rddc.gc.ca wrote:
 Marco Guazzone wrote:

 On Mon, Jul 13, 2009 at 7:08 PM, Petrus de


 Hi!

 Sorry for the delay.

 I've tried to use nomodeset but the problem remains even if this
 time only the screen and the keyboard frozen, not the mouse. Furhter,
 the blender window remained transparent, while without nomodeset it
 remains completely grey.

 Anyway,  I had to reboot since there was no way to interact with the
 system

 Here below is the trace:

 This issue isn't just with this driver.  I have had it happen with the
 nvidia (rpmfusion) driver and VLC.

 Could you please tell me how did you get the trace once the system locked
 up?

Hi!

After the reboot, look inside /var/log/messages (you need root privileges)
Then, move to the end of file
And search backward for end trace.
This line mark the end of the trace. For the beginning line, search
backward for cut here

Note, if no line is found it is possible your lines are in an already
rotated files (e.g., /var/log/messages-20090712).

Cheers!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F11: Blender and the i915 driver

2009-07-15 Thread Marco Guazzone
On Wed, Jul 15, 2009 at 5:10 PM, Marco Guazzonemarco.guazz...@gmail.com wrote:
 On Wed, Jul 15, 2009 at 4:57 PM, Robin Laingrobin.la...@drdc-rddc.gc.ca 
 wrote:

 cut --


 After the reboot, look inside /var/log/messages (you need root privileges)
 Then, move to the end of file
 And search backward for end trace.
 This line mark the end of the trace. For the beginning line, search
 backward for cut here

 Note, if no line is found it is possible your lines are in an already
 rotated files (e.g., /var/log/messages-20090712).

Also, make sure the found trace is the one related to the VLC crash.
To do so, look inside the trace and search for something related to VLC.
For instance, in my last trace there was a line containing blender:

Jul 14 11:33:06 feedback kernel: Pid: 9149, comm: blender.bin Not
tainted 2.6.29.5-191.fc11.x86_64 #1 Latitude D830


Cheers!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


F11: Blender and the i915 driver

2009-07-13 Thread Marco Guazzone
Hi all,

It seems that the i915 driver of the kernel shipped with F11
(2.6.29.5-191.fc11.x86_64) has some problems.

When I start blender (v, 2.49a) my X will completely freeze!

Looking in /var/log/messages:

Jul 13 15:15:35 feedback kernel: [ cut here ]
Jul 13 15:15:35 feedback kernel: kernel BUG at
drivers/gpu/drm/i915/i915_gem.c:2136!
Jul 13 15:15:35 feedback kernel: invalid opcode:  [#1] SMP
Jul 13 15:15:35 feedback kernel: last sysfs file:
/sys/devices/LNXSYSTM:00/device:00/PNP0C0A:00/power_supply/BAT0/charge_full
Jul 13 15:15:35 feedback kernel: CPU 1
Jul 13 15:15:35 feedback kernel: Modules linked in: fuse ipv6
cpufreq_ondemand acpi_cpufreq freq_table dm_multipath kvm_intel kvm
uinput arc4 ecb snd_hda_codec_idt iwl3945 firewire_ohci snd_hda_intel
firewire_core snd_hda_codec snd_hwdep mac80211 snd_pcm yenta_socket
tg3 rsrc_nonstatic i2c_i801 snd_timer snd iTCO_wdt soundcore
iTCO_vendor_support snd_page_alloc wmi pcspkr crc_itu_t lib80211
cfg80211 dell_laptop joydev dcdbas i915 drm i2c_algo_bit i2c_core
video output [last unloaded: microcode]
Jul 13 15:15:35 feedback kernel: Pid: 2162, comm: blender Not tainted
2.6.29.5-191.fc11.x86_64 #1 Latitude D830
Jul 13 15:15:35 feedback kernel: RIP: 0010:[a005f3d2]
[a005f3d2] i915_gem_object_get_fence_reg+0x221/0x61e [i915]
Jul 13 15:15:35 feedback kernel: RSP: :88006c915be8  EFLAGS: 00010202
Jul 13 15:15:35 feedback kernel: RAX: 1524 RBX:
88006f88d480 RCX: 0010
Jul 13 15:15:35 feedback kernel: RDX: 2a02 RSI:
1524 RDI: 88006f88d240
Jul 13 15:15:35 feedback kernel: RBP: 88006c915c28 R08:
0004 R09: 88007d5ae1f0
Jul 13 15:15:35 feedback kernel: R10: 0200 R11:
0040 R12: 88006f88d3c0
Jul 13 15:15:35 feedback kernel: R13: 88007d5ae000 R14:
88006f88d600 R15: 88007d5ac000
Jul 13 15:15:35 feedback kernel: FS:  7fb7540f1780()
GS:88007f001f00() knlGS:
Jul 13 15:15:35 feedback kernel: CS:  0010 DS:  ES:  CR0:
80050033
Jul 13 15:15:35 feedback kernel: CR2: 7fb7540fc000 CR3:
6c813000 CR4: 26e0
Jul 13 15:15:35 feedback kernel: DR0:  DR1:
 DR2: 
Jul 13 15:15:35 feedback kernel: DR3:  DR6:
0ff0 DR7: 0400
Jul 13 15:15:35 feedback kernel: Process blender (pid: 2162,
threadinfo 88006c914000, task 88006a92)
Jul 13 15:15:35 feedback kernel: Stack:
Jul 13 15:15:35 feedback kernel: 88006c915c38 88007d5ae1f0
88007d5ac020 88006f88d600
Jul 13 15:15:35 feedback kernel: 88007d5ac020 88006f88d480
88006f9c2580 88006c915ce8
Jul 13 15:15:35 feedback kernel: 88006c915c98 a00610d3
88006c915c68 7fb7540fc000
Jul 13 15:15:35 feedback kernel: Call Trace:
Jul 13 15:15:35 feedback kernel: [a00610d3]
i915_gem_fault+0xc1/0x136 [i915]
Jul 13 15:15:35 feedback kernel: [810b213f] __do_fault+0x55/0x3d5
Jul 13 15:15:35 feedback kernel: [812429bb] ?
agp_flush_chipset+0x1b/0x1d
Jul 13 15:15:35 feedback kernel: [a005d523] ?
i915_gem_object_flush_cpu_write_domain+0x26/0x32 [i915]
Jul 13 15:15:35 feedback kernel: [810b4475]
handle_mm_fault+0x349/0x7c5
Jul 13 15:15:35 feedback kernel: [813ae615] do_page_fault+0x5b5/0x9e9
Jul 13 15:15:35 feedback kernel: [813ac01a] ? unlock_kernel+0x2f/0x32
Jul 13 15:15:35 feedback kernel: [810e0e27] ? vfs_ioctl+0x76/0x87
Jul 13 15:15:35 feedback kernel: [810e12bb] ? do_vfs_ioctl+0x462/0x4a3
Jul 13 15:15:35 feedback kernel: [813abab5] ?
trace_hardirqs_off_thunk+0x3a/0x6c
Jul 13 15:15:35 feedback kernel: [813ac175] page_fault+0x25/0x30
Jul 13 15:15:35 feedback kernel: Code: ff e8 35 e9 ff ff 85 c0 0f 84
b3 fe ff ff e9 06 04 00 00 41 83 7c 24 20 00 75 10 48 8b 55 c8 48 8b
02 f7 40 70 be ff ff ff 74 04 0f 0b eb fe 49 8b bf 38 01 00 00 48 8b
70 38 48 85 ff 74 1a 48
Jul 13 15:15:35 feedback kernel: RIP  [a005f3d2]
i915_gem_object_get_fence_reg+0x221/0x61e [i915]
Jul 13 15:15:35 feedback kernel: RSP 88006c915be8
Jul 13 15:15:35 feedback kernel: ---[ end trace 77c31c0b3328e17f ]---

I looked at the kenerloops.org site and I've found many bugs related
to i915 but I'm not sure that mine is included


Should I submit a bug? ... and where?

Thanks in advance!

Cheers

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: FC11: gnome-screensaver stop working under fluxbox

2009-06-21 Thread Marco Guazzone
On Sat, Jun 20, 2009 at 2:15 PM, Marco Guazzonemarco.guazz...@gmail.com wrote:
 Dear Fedora users,

 I'm using FLUXBOX as my desktop manager (without GNOME) and
 GNOME-SCREENSAVER as my screensaver program.
 I've noticed that GNOME-SCREENSAVER does not automatically blank the
 screen anymore; it should blank the screen after 5 minutes but even
 after +/- an hour, for instance, the screen is not blanked even if
 GNOME-SCREENSAVER is up and running.

 Trying to query the status of GNOME-SCREENSAVER, I get:
  $ gnome-screensaver-command -q
    The screensaver is inactive
    The screensaver is not inhibited


Just for trying, I've installed xscreensaver and it works under fluxbox.

So I think it is a problem/bug of gnome-screensaver.

Does anyone experienced a similar problem?

Thank you very much!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


FC11: gnome-screensaver stop working under fluxbox

2009-06-20 Thread Marco Guazzone
Dear Fedora users,

I'm using FLUXBOX as my desktop manager (without GNOME) and
GNOME-SCREENSAVER as my screensaver program.
I've noticed that GNOME-SCREENSAVER does not automatically blank the
screen anymore; it should blank the screen after 5 minutes but even
after +/- an hour, for instance, the screen is not blanked even if
GNOME-SCREENSAVER is up and running.

Trying to query the status of GNOME-SCREENSAVER, I get:
  $ gnome-screensaver-command -q
The screensaver is inactive
The screensaver is not inhibited

and if I force to activate the screensaver:
  $ gnome-screensaver-command -a
or to lock my screen:
  $ gnome-screensaver-command -l
It works perfectly.

Please note: just to check if GNOME-SCREENSAVER worked I've tried to
use GNOME instead of FLUXBOX and...
Yes under GNOME all is OK

I used to use FLUXBOX + GNOME-SCREENSAVER since FC10 and under FC10
all worked perfectly.

Any idea to let GNOME-SCREENSAVER work under FLUXBOX again?

Thank you very much in advance!!

Cheers!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


FC11: Unable to add a printer

2009-06-10 Thread Marco Guazzone
Dear Fedora users,

I've just installed FC11 x86_64.

When I try to add a new printer with system-config-printer (as root),
I get the following error message after clicking the Apply button (in
the last step of the New Printer wizard):

--- [error] ---
Unauthorized request (addPrinter)
You are not authorized to carry out the requested action.
--- [/error] ---

The step I've done are the following:
1. From a root account, run the system-config-printer
2. Click on New button
3. Select the Network Printer - AppSocket/HP Jet Direct
4. Insert the IP address and click on Forward
5. Select the HP Laserjet 4250 Postscript [en] (recommended) driver
and click on Forward
6. Add the Printer Name, Description and Location and click on Apply
7. Error!!

Any idea??

Thank you very much for the support!

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: FC11: Unable to add a printer

2009-06-10 Thread Marco Guazzone
On Wed, Jun 10, 2009 at 11:48 AM, Mike Chambersm...@miketc.net wrote:

 Try running it as regular user and just give root's password when it
 needs extra privileges and see if that works.


Wow!! It works!!

What the hell is it?

Honestly, I've only tried from the root account and from a normal user
account by issuing the command with sudo.

Following your tip the root password is asked two times:
1. When I press the New button
2. When I press the Apply button.

Do you know if a bug report has been already submitted?

Thanks!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: FC10: Gnome/X focus broken after last update

2009-03-05 Thread Marco Guazzone
On Wed, Mar 4, 2009 at 5:49 PM, Michael Schwendt mschwe...@gmail.com wrote:
 On Wed, 4 Mar 2009 16:44:39 +0100, Marco wrote:

  https://admin.fedoraproject.org/updates/libgxim-0.3.2-4.fc10

 Unfortunately, the problem was not solved.

 Consider leaving feedback at the page linked above.
 Even if you don't have a Fedora account, you can add a comment.

 I'm also test-driving this new libgxim currently. I reverted to the
 bad libgxim, went to run-level 3 and returned to 5 to get a broken
 xterm. Then I've upgraded to above pkg, init 3 and init 5 once more,
 and it runs fine so far.

 --
 fedora-list mailing list
 fedora-list@redhat.com
 To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
 Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines



I've tried the link above but after clicking on Add comment button I
get the message:

--- [snip] ---
500 Internal error

The server encountered an unexpected condition which prevented it from
fulfilling the request.

Powered by CherryPy 2.3.0
--- [/snip] ---
The URL is: https://admin.fedoraproject.org/updates/captcha_comment

Anyway, I continue to have problems with focus.
Honestly, I don't know if those are caused by libgxim are by other
updated packages

I've re-updated to libgxim 0.3.2-4 (this time donwloaded with yum
update) but the problem still persists, not only for xterm bu also for
FireFox, nautilus, gnome-panel.

For instance, just now, after having clicked on a HTML link on FireFox
the focus frozen, that is_
* the mouse cursor remained the one used by FireFox when you move over
an HTML link,
* even clicking on other FireFox tabs or on the gnome menu, I was not
able to do anything: each window seemed disabled
* for make it working I switched on another virtual desktop
(ctrl+alt+left_arrow) and then returned back to the virtual desktop
(ctrl+alt+right_arrow) where FireFox was open.

Any idea?

Thank you so much!

Cheers,

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


FC10: Gnome/X focus broken after last update

2009-03-04 Thread Marco Guazzone
Hi Fedora users,

I run Fedora 10 x86_64 on my Dell Latitude D830.

After installing the following updates:
* Fedora 10 Update: gvfs-1.0.3-6.fc10, updates
* Fedora 10 Update: qgis-1.0.1-1.fc10, updates
* Fedora 10 Update: xorg-x11-drv-vmmouse-12.6.3-3.fc10, updates
* Fedora 10 Update: libgxim-0.3.2-3.fc10, updates
* Fedora 10 Update: SDL-1.2.13-7.fc10, updates
* Fedora 10 Update: evolution-data-server-2.24.5-1.fc10, updates
* Fedora 10 Update: linuxwacom-0.8.0.3-8.fc10, updates
* Fedora 10 Update: cups-1.3.9-8.fc10, updates
* Fedora 10 Update: gtkhtml3-3.24.5-1.fc10, updates
* Fedora 10 Update: anthy-9100h-1.fc10, updates
* Fedora 10 Update: alsa-utils-1.0.19-2.fc10, updates
* Fedora 10 Update: kernel-2.6.27.19-170.2.35.fc10, updates
* Fedora 10 Update: selinux-policy-3.5.13-46.fc10, updates

I have problems with my graphical desktop environment.
For instance, if I open an xterm I cannot digit anything inside it;
but if I open another one, I can digit in the first I opened but not
in the last one.
Also, the focus of the window manager sometimes freeze: for instance,
in FireFox clicking on a tab, to get the focus, does nothing and for
making it to return to function I have to switch in another virtual
desktop and then come back to the one when the FireFox is open.
I can go further with other examples related to this problem but maybe
someone is already able to help me.

Any help is very very very appreciated.

Thank you very much!

Cheers

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: FC10: Gnome/X focus broken after last update

2009-03-04 Thread Marco Guazzone
On Wed, Mar 4, 2009 at 1:46 PM, Marco Guazzone marco.guazz...@gmail.com wrote:
 On Wed, 4 Mar 2009 13:46:45 +0100, Marco wrote:

 Hi Fedora users,

 I run Fedora 10 x86_64 on my Dell Latitude D830.

 After installing the following updates:
 * Fedora 10 Update: libgxim-0.3.2-3.fc10, updates

 I have problems with my graphical desktop environment.
 For instance, if I open an xterm I cannot digit anything inside it;
 but if I open another one, I can digit in the first I opened but not
 in the last one.

 The fix:
 https://admin.fedoraproject.org/updates/libgxim-0.3.2-4.fc10


Thank you Michael!

Unfortunately, the problem was not solved.

Initially, it seemd solved but after using firefox and switching the
virtual desktops, I went into trouble: clicking a link (inside
firefox) had the effect to open a new tab instead of making the action
in the window (e.g. clicking on the link above or on the gmail Sign
Out link, a new windown was opened)
Then I wasn't able to switch to any virtual desk (I mean
crtl+alt+arrow did nothing).
Also, if I click on the gnome menu panel (the one with Applications,
Places, System), only the label was highlighted (e.g. the Applications
label became blue) but no menu was opened)
Also, the gnome desktop became usable too. For instance, clicking on
one icon on the desktop and successively on another one, I got two
selected icons instead of only the last one.

Ah...xterm was again frozen.

After many tentative, the focus still return to function.

So now I downgrade to libgxim 0.3.1 (the version preceding the bad one).
At the moment, no problem is at the horizon ;)

The bug related to 0.3.2-3 only talk about xterm but I think the
problem includes many other apps (e.g., firefox, gnome-panel,
gnome-desktop)

Thank you very much for the help!!

Cheers

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Re: F10: new kernel breaks audio (snd-hda-intel)

2009-01-09 Thread Marco Guazzone
 On Sat, Dec 27, 2008 at 6:19 AM, Paulo Cavalcanti promac gmail com wrote:



 On Sat, Dec 27, 2008 at 1:57 AM, Endy endy digitalgrotto net wrote:

 stan wrote:

 Alfredo Ferrari wrote:

 Hi

 I have a Dell D830, with F10 fully up-to-date. The kernel 
 update of two days ago (2.6.27.9-159.fc10) has broken audio on this 
 machine.

 If I reboot on the previous kernel, 2.6.27.7-134.fc10, 
 audio works like a charm. With the new kernel everything works with no 
 error message, however no sound is output, like the volume is muted or 
 set to very low values.
 I have checked all volume sliders, both for pulseaudio 
 and alsa and all of them are at maximum and unmuted. I am using the PAE 
 kernel if that matters.

 The audio driver is snd-hda-intel, and the output of 
 lspci -v reads:

 00:1b.0 Audio device: Intel Corporation 82801H (ICH8 
 Family) HD Audio Controller (rev 02)
 Subsystem: Dell Device 01fe
Flags: bus master, fast devsel, latency 0, IRQ 21
Memory at f6ffc000 (64-bit, non-prefetchable) 
 [size=16K]
Capabilities: [50] Power Management version 2
Capabilities: [60] Message Signalled Interrupts: 
 Mask- 64bit+ Count=1/1 Enable-
Capabilities: [70] Express Root Complex Integrated 
 Endpoint, MSI 00
Capabilities: [100] Virtual Channel ?
Capabilities: [130] Root Complex Link ?
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel

 Is anybody else having the same problem?

Thanks
Alfredo Ferrari


 I didn't have exactly that problem with the 159 kernel.  I was 
 able to play sound but it was slowed down by about 1/3 to 1/2.  I couldn't 
 find a reason, and wasn't sure it was the kernel, but when I, like you, 
 reverted to the 134 kernel sound began working just fine.  I don't use 
 pulseaudio.

 The 159 kernel seemed to work fine other than that.

 I can report another issue with the snd-hda-intel driverI am 
 using a Dell Vostro 1400 laptop and using the 159 kernel the lineout does 
 not work.  If the speakers are plugged in, there is no sound whatsoever and 
 I checked every possible mixer setting.  Unplugging the cable to the 
 speakers, however, results in sound coming out of the laptop speakers after 
 a noticeable pause.  Reverting back to the 134 kernel, these issues go away.



 I also have the Dell Vostro 1400. This is fixed in the latest tarball.

 However, this laptop also has some other issues:

 
 http://mailman.alsa-project.org/pipermail/alsa-devel/2008-December/013570.html



 Here is the 29/12/2008 alsa snapshot packaged for the latest F10 kernel:

 http://dl.atrpms.net/f10-x86_64/atrpms/bleeding/alsa-kmdl-2.6.27.9-159.fc10-1.0.18a.snap-74.fc10.x86_64.rpm

 http://dl.atrpms.net/f10-i386/atrpms/bleeding/alsa-kmdl-2.6.27.9-159.fc10-1.0.18a.snap-74.fc10.i686.rpm

 One just need to install the rpm for the appropriate architecture and reboot. 
 It is working for me just fine, and fixed most of my problems. Remember to 
 adjust the volumes using any mixer
 available.

 To go back to the original kernel drivers, just uninstall the rpm, and reboot 
 again.

 I hope these rpms can help some people.

 --
 Paulo Roma Cavalcanti
 LCG - UFRJ

Thanks Paulo!!
It works for me

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: F10: new kernel breaks audio (snd-hda-intel)

2008-12-26 Thread Marco Guazzone
 stan wrote:

Alfredo Ferrari wrote:

Hi


I have a Dell D830, with F10 fully up-to-date. The kernel update of 
 two days ago (2.6.27.9-159.fc10) has broken audio on this machine.

If I reboot on the previous kernel, 2.6.27.7-134.fc10, audio works 
 like a charm. With the new kernel everything works with no error message, 
 however no sound is output, like the volume is muted
 or set to very low values. I have checked all volume sliders, both for 
 pulseaudio and alsa and all of them are at maximum and unmuted. I am using 
 the PAE kernel if that matters.

The audio driver is snd-hda-intel, and the output of lspci -v reads:


00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio 
 Controller (rev 02)

 Subsystem: Dell Device 01fe
Flags: bus master, fast devsel, latency 0, IRQ 21
Memory at f6ffc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2

Capabilities: [60] Message Signalled Interrupts: Mask- 64bit+ 
 Count=1/1 Enable- Capabilities: [70] Express Root Complex Integrated 
 Endpoint, MSI 00

Capabilities: [100] Virtual Channel ?
Capabilities: [130] Root Complex Link ?
Kernel driver in use: HDA Intel
Kernel modules: snd-hda-intel

Is anybody else having the same problem?

Thanks
Alfredo Ferrari

I didn't have exactly that problem with the 159 kernel. I was able to play 
 sound but it was slowed down by about 1/3 to 1/2. I couldn't find a reason, 
 and wasn't sure it was the kernel, but when I, like  you, reverted to the 
 134 kernel sound began working just fine. I don't use pulseaudio.

The 159 kernel seemed to work fine other than that.


 I can report another issue with the snd-hda-intel driverI am using a Dell 
 Vostro 1400 laptop and using the 159 kernel the lineout does not work. If the 
 speakers are plugged in, there is no sound
 whatsoever and I checked every possible mixer setting. Unplugging the cable 
 to the speakers, however, results in sound coming out of the laptop speakers 
 after a noticeable pause. Reverting back
 to the 134 kernel, these issues go away.



Hi!
Same problem: F10 on Dell Latitude D830 with kernel
2.6.27.9-159.fc10.x86_64 no audio.
With kernel 2.6.27.7-134.fc10.x86_64 audio works perfectly.

Thanks!

-- Marco Guazzone

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Re; FC10: xterm problem

2008-11-30 Thread Marco Guazzone
On Sat, Nov 29, 2008 at 5:42 PM, Marco Guazzone
[EMAIL PROTECTED] wrote:
 Hi,
 I've just installed FC10... beautiful!

 Actually I've only a problem with xterm.
 Each time I start xterm, I get an xterm completely black (both
 background and foreground).
 However, after typing something and pressing enter, for instance:
 $ ls ENTER
 the prompt is visible and bg/fg colors are right (grey/black respectively).
 (Note: a simple terminal clear or ^L doesn't work).

 This problem doesn't happen with gnome-terminal.

 I use a custom .Xresources file (the same I used in FC9) but I don't
 think this is the cause of the problem.

 Any idea?

 Thanks!!

 -- Marco

 Hi!

 nobody experience this problem?
 Any help is very appreciated!!

 thanks!

 -- Marco


I think this is a problem related to Xft fonts.
If I remove my .Xresources file and run from a terminal xterm,
there's no black screen.
But if I start xterm by specifying a TrueType font:
$ xterm -fa monospace
(or:
$ xterm -fa Courier New
$ xterm -fa monospace -cjk_width
$ xterm -fa times
...
)
I get the black screen problem.
I think this is the time to submit a bug

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: Re; FC10: xterm problem

2008-11-30 Thread Marco Guazzone
On Sun, Nov 30, 2008 at 9:54 AM, Marco Guazzone
[EMAIL PROTECTED] wrote:
 On Sat, Nov 29, 2008 at 5:42 PM, Marco Guazzone
 [EMAIL PROTECTED] wrote:
 Hi,
 I've just installed FC10... beautiful!

 Actually I've only a problem with xterm.
 Each time I start xterm, I get an xterm completely black (both
 background and foreground).
 However, after typing something and pressing enter, for instance:
 $ ls ENTER
 the prompt is visible and bg/fg colors are right (grey/black respectively).
 (Note: a simple terminal clear or ^L doesn't work).

 This problem doesn't happen with gnome-terminal.

 I use a custom .Xresources file (the same I used in FC9) but I don't
 think this is the cause of the problem.

 Any idea?

 Thanks!!

 -- Marco

 Hi!

 nobody experience this problem?
 Any help is very appreciated!!

 thanks!

 -- Marco


 I think this is a problem related to Xft fonts.
 If I remove my .Xresources file and run from a terminal xterm,
 there's no black screen.
 But if I start xterm by specifying a TrueType font:
 $ xterm -fa monospace
 (or:
 $ xterm -fa Courier New
 $ xterm -fa monospace -cjk_width
 $ xterm -fa times
 ...
 )
 I get the black screen problem.
 I think this is the time to submit a bug

 -- Marco


Submitted a new bug:

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

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re; FC10: xterm problem

2008-11-29 Thread Marco Guazzone
 Hi,
 I've just installed FC10... beautiful!

 Actually I've only a problem with xterm.
 Each time I start xterm, I get an xterm completely black (both
 background and foreground).
 However, after typing something and pressing enter, for instance:
 $ ls ENTER
 the prompt is visible and bg/fg colors are right (grey/black respectively).
 (Note: a simple terminal clear or ^L doesn't work).

 This problem doesn't happen with gnome-terminal.

 I use a custom .Xresources file (the same I used in FC9) but I don't
 think this is the cause of the problem.

 Any idea?

 Thanks!!

 -- Marco

Hi!

nobody experience this problem?
Any help is very appreciated!!

thanks!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


FC10: xterm problem

2008-11-27 Thread Marco Guazzone
Hi,
I've just installed FC10... beautiful!

Actually I've only a problem with xterm.
Each time I start xterm, I get an xterm completely black (both
background and foreground).
However, after typing something and pressing enter, for instance:
$ ls ENTER
the prompt is visible and bg/fg colors are right (grey/black respectively).
(Note: a simple terminal clear or ^L doesn't work).

This problem doesn't happen with gnome-terminal.

I use a custom .Xresources file (the same I used in FC9) but I don't
think this is the cause of the problem.

Any idea?

Thanks!!

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


FC10: keep active eth0 and DSL in Network Manager

2008-11-27 Thread Marco Guazzone
Hi,
I wonder why it seems impossible (in FC10) to simultaneously have a
wired local network (eth0) and a DSL (pppoe) with Network Manager.

In fact, Network Manager allows me to select only one of them at time.

Until FC9, I used to use the classic network service instead of
NetworkManager and it was possible to have both connections active.

Where am I wrong?

Cheers

-- Marco

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Re: FC9: low volume on Intel HDA

2008-05-28 Thread Marco Guazzone
I've submitted the problem to the alsa-user mailing list:

http://sourceforge.net/mailarchive/forum.php?thread_name=a764c6280805270823s4d16dbbfi7e64b25ef26047bf%40mail.gmail.comforum_name=alsa-user

Now I hope someone can help me :)

-- Marco

On Mon, May 26, 2008 at 12:34 AM, stan [EMAIL PROTECTED] wrote:

 Marco Guazzone wrote:

 Hi all,
 I've just fresh-installed FC9 x86_64 on my Dell Latitude D830.

 It seems the volume of audio of my Intel HDA is lower than the one I had
 on FC8... Approximately a reduction of 20% (i.e. 100% of FC9 seems to sounds
 like 80% of FC8).
 I check both the general volume and the PulseAudio Volume Control.

 Anyone experienced the same problem?

 Thank you so much!

 Cheers,

 -- Marco

 I think there were changes to the volume portions of hda-intel code.  If
 you are really curious you can ask this question on the alsa-devel list to
 see if they will explain it.  If you do post there, be sure to run the
 script at http://hg.alsa-project.org/alsa/raw-file/tip/alsa-info.sh
 and then post the link so that people can see your sound setup.   The
 script scans your machine and extracts out things relevant for diagnosis and
 puts them on a website.  It gives you a link to the information that you can
 post.  That will help them answer.  It would have been interesting to see
 the difference with Fedora 8 on your machine.

 --
 fedora-list mailing list
 fedora-list@redhat.com
 To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list