jonetsu | 1 May 2012 01:39

Re: Japanese keyboard: Fedora 15 KDE

Le Lundi, 30 Avril 2012 22:37:36 +0900,
nomnex <nomnex <at> gmail.com> a écrit :

> Glad you got it working.
> Ctrl+Space switch i-bus on/off
> Alt+Shift switch the input language (I use French/Japanese on a en_US
> OS)

I've tried the Anthy German keyboard that I use to write French
although it's not at all like the regular Linux German keyboard.  Even
though it shows 'German' when pressing Alt+Shift, it is still a qwerty
keyboard, not a qwertz.  And no shift keys in sight to produce
accentuated letters.  Seems English as usual. I did a quick search on
Anthy layouts but most if not all topics are related to Japanese.  It'd
be useful to have a description of all the layouts available.
--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
Jim | 1 May 2012 02:08
Picon

Re: Printing advice

On 04/30/2012 06:22 PM, Mark LaPierre wrote:
> On 04/30/2012 12:52 AM, Roelof 'Ben' Kusters wrote:
>> Would anyone be able to advise me regarding what printer to buy?
>> Requirements are:
>>
>> - Can print A3 (29.7 x 42 cm, 11.6 x 16.5 inch) (and A4) sized paper.
>> - Scores 'good' on a price/quality ratio; meaning not
>> super-high-professional-quality but good enough for a small office where
>> the primary function is NOT printing; for the office that is, the
>> printer's primary function is obvious... :D
>> - Is supported by Fedora. I have (good) experiences with Epson and HP,
>> but I am hoping for some input from people with (more) experience.
>>
>
> I've been using Samsung products for a long time.  They were among the 
> first to support Linux.  Their products are inexpensive to purchase 
> and their supplies are affordable as well.
>
> Some of the more snooty don't like them because the don't issue "open 
> source" drivers.
>
I have a Samsung CLX3175FN Laser , Driver CLX3170 series from Samsung 
Download site.
It worked great up to Fedora 15 not in F16, F17 I was told something in 
F16 change and it won't print. The driver that Samsung presently has 
does not work .
--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
(Continue reading)

nomnex | 1 May 2012 03:18
Picon
Gravatar

Re: Japanese keyboard: Fedora 15 KDE

> On Mon, 30 Apr 2012 19:39:19 -0400
> jonetsu <jonetsu <at> teksavvy.com> wrote:
>
> I've tried the Anthy German keyboard that I use to write French
> although it's not at all like the regular Linux German keyboard.  Even
> though it shows 'German' when pressing Alt+Shift, it is still a qwerty
> keyboard, not a qwertz.  And no shift keys in sight to produce
> accentuated letters.  Seems English as usual. I did a quick search on
> Anthy layouts but most if not all topics are related to Japanese.
> It'd be useful to have a description of all the layouts available.

I stand corrected, but I don't think, they are "Anthy [...] layout",
i-bus uses (some of) the default keyboard layouts (command: xkblayout)
available with your distribution. 

These are my setting, maybe it helps you?
My OS language is "en_US", the notebook is Japanese (Keyboard "ja").

Additional input:
I use ibus to input Japanese & French (as second languages)
Input method (tab):
- Japanese-Mozc
- French-French (Canada)

Advanced:
- Use system keyboard layout [checked]
- System keyboard layout ja,ca
Note: French-Canadian is the closest of the "en_us" layout (else,
there is the Swiss-French), both are QUERTY -- I won't comment how
French always need to re-invent the wheel [keyboard layout,
(Continue reading)

reg | 1 May 2012 06:59

Who Maintains X11 for Fedora? what is mailing list?


The subject line says it all.

Who maintains the version of X11 used in Fedora 
(at least in previous times there was more than one X11)

What (where?) is the mailing list?
-- 
                                        Reg.Clemens
                                        reg <at> dwf.com

--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
prudhvi09 | 1 May 2012 08:01
Picon

Re: php serial communication in linux

i haveput SElinux in permissive mode and tried it dint work.
with the code below it worked
 <?php
echo "hi";
$fp=fopen("/dev/ttyUSB0","w+");
if(!$fp)
echo "Port could not be opened";
else
{ sleep(3);
echo "port has been opened";
$txt="*s"; 
fputs($fp,$txt);

fputs($fp,$txt);

fputs($fp,$txt);
>
Can u tell me why is it not working with serial class?

--
View this message in context: http://fedora.12.n6.nabble.com/php-serial-communication-in-linux-tp4938590p4942953.html
Sent from the Fedora List mailing list archive at Nabble.com.
--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
(Continue reading)

Patrick Kobly | 1 May 2012 08:14

Re: php serial communication in linux

Probably because "COM14" is not a valid way to refer to a serial port in a Linux environment.

On 2012-05-01, at 12:02 AM, "prudhvi09" <prudhvi09 <at> gmail.com> wrote:

> i haveput SElinux in permissive mode and tried it dint work.
> with the code below it worked
> <?php
> echo "hi";
> $fp=fopen("/dev/ttyUSB0","w+");
> if(!$fp)
> echo "Port could not be opened";
> else
> { sleep(3);
> echo "port has been opened";
> $txt="*s"; 
> fputs($fp,$txt);
> 
> fputs($fp,$txt);
> 
> fputs($fp,$txt);
>> 
> Can u tell me why is it not working with serial class?
> 
> --
> View this message in context: http://fedora.12.n6.nabble.com/php-serial-communication-in-linux-tp4938590p4942953.html
> Sent from the Fedora List mailing list archive at Nabble.com.
> -- 
> users mailing list
> users <at> lists.fedoraproject.org
> To unsubscribe or change subscription options:
(Continue reading)

gary artim | 1 May 2012 17:44
Picon

xfs on nfs, directory listing.

wondering if anyone has tried xfs filesystem under nfs and found that
ls, dir, ll, etc commands get starved (sometime 20..30 seconds) when
the nic is saturated with data. Maybe I'm answering my question within
the question, but worried that a loaded nfs could make ls very slow to
respond, any suggestions or experience tuning with this? thanks!
--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
dave perry | 1 May 2012 12:02
Picon

Re: lost ability to play .wav files after recent updates

On 05/01/2012 06:00 AM, Michael Cronenworth wrote:
> dave perry wrote:
>> For the last week, I get the following error message in either
>> MoviePlayer or Rhythmbox when I try to play .wav files.
>>
>> The following plugins are required:
>> * GStreamer element ffmpegcolorspace
>> * GStreamer element audioresample
> What does this command show?
>
> $ gst-inspect | grep ffmpegcolor
>
It returns a blank line as:
$ gst-inspect | grep ffmpegcolor
$

--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
Ronald Nissley | 1 May 2012 18:40
Favicon

Re: Fedora Weekly News: Issue 294

--
Ronald Nissley
Computer Services Director
Eastern Mennonite Missions
53 W Brandt Blvd
Salunga,PA, 17538
717 898-2251 | emm.org

On May 1, 2012 12:02 PM, "Rashadul Islam" <rashadul <at> fedoraproject.org> wrote:

Contents

Fedora Weekly News : Issue 294

Welcome to the Fedora Weekly News End of April 2012 Issue 294[1]!

The Issue 294 covers the tide of the Fedora Election 2012 and the community awareness about the involvement at the election with few fresh set of rules and guidelines. The schedule of the election has been announced by the project leader. More over the nomination period will be open soon after the bunch of the burning question for the candidates will be submitted by May 8, 2012. At the development precinct of Fedora, the outstanding news covers the new of exiv2-0.23 and easyfix project.

Fedora in the news- the residence beat of trade press and Fedora Marketing list wrap up with the news Will Fedora End Linux Distro Naming? and Fedora- one of the Five Best Linux Distributions where it seems that Fedora Community need extra attention at the census.

Recent issues of FWN are now being published to Fedora Insight[2]. Insight offers RSS features, multimedia capabilities and more, beyond the mailshot/wiki FWN you have come to know and love. Try it out, and we'd love to hear your feedback!

Fedora Project is the right place for you and you can simply show your interest in contributing to Fedora Weekly News, please see our 'join' page[3]. We welcome reader feedback: news <at> lists.fedoraproject.org

FWN Editorial Team: Pascal Calarco, Adam Williamson, Rashadul Islam

  1. http://fedoraproject.org/wiki/FWN/Issue294
  2. http://insight.fedoraproject.org/
  3. http://fedoraproject.org/wiki/NewsProject/Join

Announcements

Fedora Announcements are the place where you can find the major coverage from the Fedora Project including general announcements[1], development announcements[2] and Fedora Events[3].

Contributing Writer: Rashadul Islam

  1. http://lists.fedoraproject.org/pipermail/announce/
  2. http://lists.fedoraproject.org/pipermail/devel-announce/
  3. http://fedoraproject.org/wiki/Events

Breaking News of the Week

New FAmSCo election guidelines

Christoph Wickert[1] on Thu Apr 26 11:19:10 UTC 2012 announced[2],

"after months of - sometimes controversial - discussion I am am happy to announce the new FAmSCo election guidelines [3]. For those of you, who did not follow the discussion, here is a brief summary of the three most important changes:

More continuity

Instead of electing all seats once a year, we follow the example of the Fedora Board and FESCo and elect half of the committee every 6 months or with every release of Fedora. FAmSCo will not change over sudden and new members can easily catch up with their new duties by learning from others.

Easier filling of vacant seats

Every committee is in danger of members becoming inactive. This can happen to all of us for various reasons such as our dayjobs or personal problems. Under the old guidelines [4], we had to wait until only 3 members left - even with 2 left the committee is hardly operational - and then call a supplementary election - which never happened even though we had only 4 active members. Now we are filling vacant seat when necessary, either with runner-up candidates from the previous elections or by appointing new members.

Wider electorate

The ambassadors represent the whole Fedora Project, this is why now not only ambassadors are eligible to vote for FAmSCo, but everybody who has signed the Contributors License Agreement and is member of (at least) one other group in the Fedora Account System (FAS) is allowed to vote. This will not only strengthen FAmSCo's position but also help candidates who are active in other groups of the Fedora project.

Last but not least the guidelines have been massively cleaned up.

We think that the new guidelines are a big improvement and want them to come into effect as soon as possible. Therefor we will have a special election for Fedora 18 (the next regular elections were scheduled for F19). All 7 seats in FAmSCo are open for election. In order to make the transition to the new alternating terms, the top 4 vote-getters will serve 2 Fedora releases, the bottom 3 will have to run for re-election after one release.

More about the upcoming ambassadors elections to come later this week as part of the general Fedora 18 elections announcement. Please help us getting a better, stronger and more active FAmSCo by casting your votes.

If you have feedback or questions, please don't hesitate to ask. We are looking for your input on the Fedora ambassadors mailing list[5]."

  1. christoph.wickert at googlemail.com
  2. http://lists.fedoraproject.org/pipermail/announce/2012-April/003063.html
  3. https://fedoraproject.org/wiki/FAmSCo_election_rules
  4. https://fedoraproject.org/w/index.php?title=FAmSCo_election_rules&oldid=269322
  5. https://admin.fedoraproject.org/mailman/listinfo/ambassadors

Fedora Elections: General information, and questionnaire opening.

Robyn Bergeron-Fedora Project Leader[1] on Fri Apr 27 11:52:50 UTC 2012 announced[2],

"It is once again time for election season to begin. As noted in the elections schedule[3], the elections questionnaire is now open to populate with questions for candidates, and will close on May 8th. The elections nomination period will begin AFTER the questionnaire period has closed.

You may add your burning questions for candidates to answer here: http://fedoraproject.org/wiki/F18_elections_questionnaire[4]


The following seats are available in this election:

  • Fedora Project Board: 3 seats
  • FESCo (Fedora Engineering Steering Committee): 5 seats
  • FAmSCo (Fedora Ambassadors Steering Committee): 7 seats

Please take note of the following changes for this election:

  • All questions for the questionnaire must be submitted by May 8th,

prior to the beginning of nominations. As seen in the schedule above, the nomination period does not start until May 9th.

  • As noted on announce-list[5], FAmSCo is electing all 7 seats this

cycle, with the goal of having staggered elections similar to the Board and FESCo. Additionally, voting eligibility has been widened to allow anyone who has signed the FPCA AND is a member of at least one additional non-FPCA/CLA group. (In other words: No longer just ambassadors, but those part of other teams as well.)

Full election information may be seen here: http://fedoraproject.org/wiki/Elections[6]

Participating in these bodies are one of many ways to contribute to Fedora; I encourage you to consider running, or to urge those you believe are excellent candidates to run. Additionally, your contributions are welcomed in helping to keep the elections running smoothly; volunteers are needed to help collect questionnaire answers from candidates, as well as for scheduling and moderating town halls. If you are interested in helping with those efforts, please contact John Rose[7].

And a big thank you! to John for coordinating the elections thus far, your efforts are very much appreciated."

  1. rbergero at redhat.com
  2. http://lists.fedoraproject.org/pipermail/announce/2012-April/003065.html
  3. http://fedoraproject.org/wiki/Elections#Committee_Elections_Schedule
  4. http://fedoraproject.org/wiki/F18_elections_questionnaire
  5. http://lists.fedoraproject.org/pipermail/announce/2012-April/003063.html
  6. http://fedoraproject.org/wiki/Elections
  7. http://fedoraproject.org/wiki/User:Inode0

Fedora Development News

The Development Announcement[1] list is intended to be a LOW TRAFFIC announce-only list for Fedora development.

Acceptable Types of Announcements

  • Policy or process changes that affect developers.
  • Infrastructure changes that affect developers.
  • Tools changes that affect developers.
  • Schedule changes
  • Freeze reminders

Unacceptable Types of Announcements

  • Periodic automated reports (violates the INFREQUENT rule)
  • Discussion
  • Anything else not mentioned above
  1. https://admin.fedoraproject.org/mailman/listinfo/devel-announce

exiv2-0.23 coming soon

Rex Dieter[1] on Wed Apr 25 13:07:31 UTC 2012 announced[2],

"I plan on importing exiv2-0.23 into rawhide soon'ish. It includes an ABI bump, so dependent packages will require rebuilding, including:

  • calligra
  • darktable
  • entangle
  • geeqie
  • gipfel
  • gnome-color-manager
  • gnome-commander
  • gpscorrelate
  • gthumb
  • gwenview
  • hugin
  • immix
  • kde-runtime
  • krename
  • libextractor
  • libgexiv2
  • libkexiv2
  • luminance-hdr
  • merkaartor
  • oyranos
  • pyexiv2
  • rawstudio
  • strigi
  • ufraw

I'll take care of kicking off a round of rebuilds for these."

  1. rdieter at math.unl.edu
  2. http://lists.fedoraproject.org/pipermail/devel-announce/2012-April/000921.html

Announcing easyfix

Pierre-Yves Chibon[1] on Thu Apr 26 09:12:28 UTC 2012 announced[2]

"Good news everyone (© Farnsworth),

The easyfix project is now live: [3]


As a new-comers, you will be able to find a list of projects which have bugs/requests considered to be easy to work on (ie: you do not need a deep understanding of the project to fix/implement it). The projects are divers and the tickets broad : from fixing typo, add a link in a template (dev) to add a node to nagios monitoring (sysadmin) via making the fedoraproject.org page w3c valid (websites). So everyone should be able to find for his taste.


As upstream, you will have a way to attract new-comers to your project and fixing easier tasks while you focus on the harder/more complex one ;-)


Easyfix gathers the tickets from fedorahosted and bugzilla. If your project hosted on fedorahosted.org and you would like to have it included, the instruction are on the wiki: [4] If you have bugzilla ticket which you consider easy to fix (remember, easy for a new-comer != easy for you!), feel free to add the 'EasyFix' keyword to the bugzilla ticket. Hope this helps..."

  1. pingou at pingoured.fr
  2. http://lists.fedoraproject.org/pipermail/devel-announce/2012-April/000922.html
  3. http://fedoraproject.org/easyfix/
  4. https://fedoraproject.org/wiki/Easyfix

Fedora Events

The purpose of event is to build a global Fedora events calendar, and to identify responsible Ambassadors for each event. The event page is laid out by quarter and by region. Please maintain the layout, as it is crucial for budget planning. Events can be added to this page whether or not they have an Ambassador owner. Events without an owner are not eligible for funding, but being listed allows any Ambassador to take ownership of the event and make it eligible for funding. In plain words, Fedora events are the exclusive and source of marketing, learning and meeting all the fellow community people around you. So, please mark your agenda with the following events to consider attending or volunteering near you!

Upcoming Events (March 2012 - May 2012)

  • North America (NA)[1]
  • Central & South America (LATAM): [2]
  • Europe, Middle East, and Africa (EMEA)[3]
  • India, Asia, Australia (India/APJ)[4]
  1. http://fedoraproject.org/wiki/Events#FY13_Q1_.28March_2012_-_May_2012.29
  2. http://fedoraproject.org/wiki/Events#FY13_Q1_.28March_2012_-_May_2012.29_2
  3. http://fedoraproject.org/wiki/Events#FY13_Q1_.28March_2012_-_May_2012.29_3
  4. http://fedoraproject.org/wiki/Events#FY13_Q1_.28March_2012_-_May_2012.29_3

Past Events

Archive of Past Fedora Events[1]

  1. http://fedoraproject.org/wiki/FedoraEvents/PastEvents

Additional information

  • Reimbursements -- reimbursement guidelines.
  • Budget -- budget for the current quarter (as distributed by FAMSCo).
  • Sponsorship -- how decisions are made to subsidize travel by community members.
  • Organization -- event organization, budget information, and regional responsibility.
  • Event reports -- guidelines and suggestions.
  • LinuxEvents -- a collection of calendars of Linux events.

Fedora In the News

In this section, we cover news from the trade press and elsewhere that is re-posted to the Fedora Marketing list[1].

http://fedoraproject.org/wiki/Marketing

Contributing Writer: Jason Brooks

  1. http://lists.fedoraproject.org/pipermail/marketing/

Will Fedora End Linux Distro Naming?

Jason Brooks posted[1]:

"Linux distro names started to get 'weird' when Ubuntu arrived on the scenes with Weirdly Wacky African-inspired Animal names. Other distros, notably Fedora have taken a more democratic approach where community members vote on the release name, but that could soon change.

"'This cycle, the Board is also asking contributors to let us know if we should continue to have release names for future Fedora releases,' Fedora developer Toshio Kuratomi wrote."

The full article is available [2].

  1. http://lists.fedoraproject.org/pipermail/marketing/2012-April/014276.html
  2. http://www.internetnews.com/blog/skerner/will-fedora-end-linux-distro-naming.html

Five Best Linux Distributions

Jason Brooks posted[1] the results of a recent Lifehacker reader poll:

"Fedora updates every six months, much like some of the other popular distros, but you'll find the community behind Fedora tends to stay on the cutting edge when it comes to platform updates, driver updates, and application updates. it's fast and it's stable—but be ready to start troubleshooting when something you've just installed breaks down."

The full article is available[2].

  1. http://lists.fedoraproject.org/pipermail/marketing/2012-April/014277.html
  2. http://lifehacker.com/5904069/five-best-linux-distributions

--
announce mailing list
announce <at> lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/announce
--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org
Tim | 1 May 2012 18:56
Picon

Re: Fedora 18 release name

On Mon, 2012-04-30 at 06:51 -0700, Robyn Bergeron wrote:
> The name for Fedora 18, the follow-up to Beefy Miracle,
> is:  Spherical Cow

LOL!  I can't wait to see the artwork.

-- 
[tim <at> localhost ~]$ uname -r
2.6.27.25-78.2.56.fc9.i686

Don't send private replies to my address, the mailbox is ignored.  I
read messages from the public lists.

--

-- 
users mailing list
users <at> lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Gmane