Re: F14 Design Spin

2011-01-02 Thread Roelof 'Ben' Kusters
>> I can only find Live CD installers for the Design Spin. Is there a
>> full-install DVD for individual spins - particularly the Design Spin?

Bruno Wolff III replied:
> Live spins are whatever size they are. Once installed you can add extra
> packages using yum or packagekit, if that is your goal.


I am aware of that, and such is not my goal. My goal is to get a DVD -  
like  
http://download.fedoraproject.org/pub/fedora/linux/releases/14/Fedora/x86_64/iso/Fedora-14-x86_64-DVD.iso
  
- but then specifically for the Design Spin. Is there such an iso?

My apologies if this wasn't clear initially.


-- 
Greetz,

Roelof Kusters
aka Ben

The internet isn't a highway, it's a swamp: the more you surf, the more it  
draws you in.

Make 1000 euros in minutes! Sell my house: http://www.bentrein.com/house
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F14 Design Spin

2011-01-02 Thread Bruno Wolff III
On Mon, Jan 03, 2011 at 14:21:47 +0700,
  Roelof 'Ben' Kusters  wrote:
> Hi There,
> 
> I can only find Live CD installers for the Design Spin. Is there a  
> full-install DVD for individual spins - particularly the Design Spin?

Live spins are whatever size they are. Once installed you can add extra
packages using yum or packagekit, if that is your goal.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F14 Design Spin

2011-01-02 Thread Rahul Sundaram
On 01/03/2011 12:51 PM, Roelof 'Ben' Kusters wrote:
> Hi There,
>
> I can only find Live CD installers for the Design Spin. Is there a  
> full-install DVD for individual spins - particularly the Design Spin?

No.  Why do you need the "full-install" DVD?

Rahul
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: avchd convert to play on ipod touch?

2011-01-02 Thread Mika Nieminen
su, 2011-01-02 kello 23:16 -0400, Jorge Fábregas kirjoitti:
> On Sunday, January 02, 2011 10:16:59 pm Alex wrote:
> > Is there a (free) program available for converting the MTS files from
> > my Panasonic camcorder to be useful on the ipod touch?
> 
> AviDemux (available from RPM Fusion) has some presets available (Microsoft 
> Zune, Apple Ipod etc).  Check it out.  Also, you can use mencoder (command-
> line) to create the proper output for the ipod touch.
> 
> HTH,
> Jorge

I use HandBrake to convert my video file. Its easy to use and it make by
default very good job. I am not sure if handbrake suport MTF format but
its worth to try anyway.

http://handbrake.fr/downloads.php

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Johan Scheepers
Erik P. Olsen wrote:
> On 02/01/11 21:14, Johan Scheepers wrote:
>> On 01/02/2011 07:26 PM, Darlene Wallach wrote:
>>> Johan,
>>>
>>> On Sun, Jan 2, 2011 at 11:18 AM, Johan Scheepers   
>>> wrote:
 On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
> On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers  
>wrote:
>> Good day,
>>
>> Just installed skype and it is working.
>>
>> Can speak to otherside.
>> Can see the otherside.
>> Can hear the otherside.
>>
>> Now I would like to get a webcam going.
>>
> If your webcam is supported, it ought to work out of the box. It's
> working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
> webcam program to test if your webcam works.
>
 Ok. Got the same skype as above.
 Cheese shows that the webcam can photo, record, multiple photos.

 Kindly explain how does it get connected to skype please.
 This is a learning experience to me.
>>> Select options in the pull down menu or "control o" then select "video 
>>> devices"
>>> Select "Enable Skype Video"
>>>
>>> There should be a window with "test" - select test - you should see 
>>> yourself.
>>>
>> OK.  Done all the motions as above.
>> Test does not work.
>> The device shown in cheese is the same as the one in skype options.
>> Does this mean there is still something amiss?
> 
> What exactly happens when "Test does not work"? On my system I get a 
> segmentation fault. Is that what you see as well? I can see from skype's 
> forum 
> on video that a ubuntu user on 12/26 reported this very problem.
> 
Just nothing happens
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


F14 Design Spin

2011-01-02 Thread Roelof 'Ben' Kusters
Hi There,

I can only find Live CD installers for the Design Spin. Is there a  
full-install DVD for individual spins - particularly the Design Spin?
-- 
Greetz,

Roelof Kusters
aka Ben

The internet isn't a highway, it's a swamp: the more you surf, the more it  
draws you in.

Make 1000 euros in minutes! Sell my house: http://www.bentrein.com/house
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: variable in loop

2011-01-02 Thread Rodolfo Alcazar Portillo
On Sun, 2011-01-02 at 14:27 -0800, S Mathias wrote:
> $ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo 
> "$a $ASDF"$(for i in {1..$a}; do printf "."; done)
> 65 hello.
> $ 
> Why doesn't it print:
> 65 hello.

You wrote:  for i in {1..$a}
I think you mean: for ((i=1;i<$a;i++))

Cheers.
--
Rodolfo Alcazar Portillo - nosp...@gmail.com
otbits.blogspot.com / counter.li.org: #367962
--
"Früher oder später emulieren wir euch."
- linux.de


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Michael Cronenworth
On 01/02/2011 04:40 PM, Genes MailLists wrote:
> How does one manage your internal ip6 network so that an ISP change
> (which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?
>

At the moment I use radvd and update my DNS entries in my local bind server.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Michael Cronenworth
On 01/02/2011 05:33 PM, Dave Ihnat wrote:
> Frankly, I don't expect most, if any, internal LANs to cut over to IPv6.
> There's no reason or point, and a lot of headaches.  Instead, it should
> become the standard*outside*  your router/firewall, and you can stay
> with IPv4 inside.

I hate to spoil your fun, but I have my internal network receiving IPv6 
addresses. I wouldn't have it any other way. :)

Some of us, in the civilized world, have moved on to using DNS instead 
of memorizing a bunch of numbers.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


RE: firefox not working with net connection through wireless modem

2011-01-02 Thread souvik.roy

/etc/resolv.conf has DNS advertised by my ppp connection. That's why
nslookup or ping is working with url. But somehow firefox is not able to
translate or use those.  

-Original Message-
From: Frank Cox [mailto:thea...@sasktel.net] 
Sent: Monday, January 03, 2011 11:50 AM
To: Community support for Fedora users
Cc: Souvik Roy (WT01 - Technology)
Subject: Re: firefox not working with net connection through wireless
modem

On Mon, 03 Jan 2011 11:37:16 +0530
souvik@wipro.com wrote:

> My system is getting an IP on ppp0 and icon on desktop top is showing 
> that network manager has detected it.

It sounds like you're not getting a DNS server address.  Without being
able to connect to a DNS server your computer can't translate a website
name like www.example.com to an IP address like 127.0.0.1.

cat /etc/resolv.conf

If you don't see any addresses or if you see invalid addresses, then you
have found your problem.

--
MELVILLE THEATRE ~ Melville Sask ~ www.melvilletheatre.com
www.creekfm.com - FIFTY THOUSAND WATTS of POW WOW POWER!

Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: firefox not working with net connection through wireless modem

2011-01-02 Thread Frank Cox
On Mon, 03 Jan 2011 11:37:16 +0530
souvik@wipro.com wrote:

> My system is getting an IP on ppp0 and icon on
> desktop top is showing that network manager has detected it. 

It sounds like you're not getting a DNS server address.  Without being able to
connect to a DNS server your computer can't translate a website name like
www.example.com to an IP address like 127.0.0.1.

cat /etc/resolv.conf

If you don't see any addresses or if you see invalid addresses, then you have
found your problem.

-- 
MELVILLE THEATRE ~ Melville Sask ~ www.melvilletheatre.com
www.creekfm.com - FIFTY THOUSAND WATTS of POW WOW POWER!
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


firefox not working with net connection through wireless modem

2011-01-02 Thread souvik.roy
Hi,

   I am using wireless broadband modem in Fedora 14. Network manger is
able to detect it. My system is getting an IP on ppp0 and icon on
desktop top is showing that network manager has detected it. But Mozilla
firefox is giving error "Server not found". Though i am able to ping or
nslookup any url from terminal.

Even if i put ip of google server on firefox, it is able to launch the
first page,. It is able to show search result. But it can not launch any
link from that search page. For websites like Yahoo, it is not able
launch the home page also.

I tried with eth0 and lo disabled also, but no use.


Thanks and regards,

Souvik Roy



Only when the last tree has died and the last river been poisoned and
the last fish been caught will we realise we cannot eat money



Please do not print this email unless it is absolutely necessary. 

The information contained in this electronic message and any attachments to 
this message are intended for the exclusive use of the addressee(s) and may 
contain proprietary, confidential or privileged information. If you are not the 
intended recipient, you should not disseminate, distribute or copy this e-mail. 
Please notify the sender immediately and destroy all copies of this message and 
any attachments. 

WARNING: Computer viruses can be transmitted via email. The recipient should 
check this email and any attachments for the presence of viruses. The company 
accepts no liability for any damage caused by any virus transmitted by this 
email. 

www.wipro.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Viewing apple.com trailers

2011-01-02 Thread Richard Shaw
On Sun, Jan 2, 2011 at 12:48 PM, Alex  wrote:
> Hi all,
>
> Some time ago I posted a message about having problems downloading
> trailers from apple.com/trailers, and just wondered if anyone knows
> now how to do this?
>
> I can view them without a problem, but when choosing the download
> option, it appears to download them, but immediately starts to play
> them, but there is no video. There is only audio.
>
> Here is an example:
>
> http://trailers.apple.com/trailers/paramount/truegrit/
>
> Perhaps there's a firefox plugin, or you know how to get something
> like VLC to play them from the URL?

If you just want to download it I found a little bash script[1] on the
web that does the trick quite nicely.

Richard

[1] http://linuxtidbits.wordpress.com/2009/08/30/download-apple-trailer-fix/
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Viewing apple.com trailers

2011-01-02 Thread suvayu ali
On Sun, Jan 2, 2011 at 6:14 PM, Alex  wrote:
> Trying to find that plugin using yum, I see:
>
> Warning: No matches found for: gecko-mediaplayer-plugin
>
> An rpm search for gecko only displays gecko-mediaplayer-1.0.0-1.fc13.x86_64.
>
> Other ideas greatly appreciated.

They are from rpmfusion since it uses mplayer as the backend. :)


$ yum info gecko-mediaplayer
Name: gecko-mediaplayer
Arch: x86_64
Version : 1.0.0
Release : 1.fc13
Size: 491 k
Repo: installed
>From repo   : rpmfusion-free-updates
Summary : Gnome MPlayer browser plugin
URL : http://kdekorte.googlepages.com/gecko-mediaplayer
License : GPLv2+
Description : Gecko Media Player is a browser plugin that uses GNOME MPlayer to
: play media in a browser. It should work with all browsers on
: Unix-ish systems(Linux, BSD, Solaris) and use the NS4 API
: (Mozilla, Firefox, Opera, etc.).

-- 
Suvayu

Open source is the future. It sets us free.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Dennis Gilmore
On Sunday, January 02, 2011 04:40:00 pm Genes MailLists wrote:
>  There was some earlier discussion (mainly about NAT being now
> irrelevant in the face of ipv6).
> 
>   Question for you experts:
> 
>How does one manage your internal ip6 network so that an ISP change
> (which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?
> 
>   thanks!
http://www.comcast6.net/ gives you the info on the things comcast is testing 
to see what works best for customers.

Dennis


signature.asc
Description: This is a digitally signed message part.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: avchd convert to play on ipod touch?

2011-01-02 Thread Jorge Fábregas
On Sunday, January 02, 2011 10:16:59 pm Alex wrote:
> Is there a (free) program available for converting the MTS files from
> my Panasonic camcorder to be useful on the ipod touch?

AviDemux (available from RPM Fusion) has some presets available (Microsoft 
Zune, Apple Ipod etc).  Check it out.  Also, you can use mencoder (command-
line) to create the proper output for the ipod touch.

HTH,
Jorge
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


RE: Download phonebook via Bluetooth?

2011-01-02 Thread Michael Miles


-Original Message-
From: users-boun...@lists.fedoraproject.org
[mailto:users-boun...@lists.fedoraproject.org] On Behalf Of Patrick
O'Callaghan
Sent: Sunday, January 02, 2011 6:11 PM
To: users@lists.fedoraproject.org
Subject: Re: Download phonebook via Bluetooth?

On Sun, 2011-01-02 at 18:10 -0500, Jeffrey Ross wrote: 
> I'm running Fedora 13 and I'm looking for a way to download my phone's 
> phonebook over bluetooth.
> 
> I know my car is capable of downloading the phonebook from the phone 
> so I'm sure there's a way to do it.
> 
> suggestions?

I suggest you at least mention the make and model of your phone ...

poc

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines



First of all you must have a Bluetooth capable wireless in your computer
Make the connection between the devices and sent your contact list via
Bluetooth to your computer from your phone.

It is simple but you may have to send one at a time unless you sync the
contacts or phonebook via Bluetooth with your mail client.
The software from your phone would have to be installed into your linux box

NokSync is a plugin for Thunderbird that works. The only downside is that
you also need Nokia PC Sync v6.82 which Nokia doesn't distribute any longer

That is if you have a nokia of course.

Good luck







-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F14 and qtnx client

2011-01-02 Thread Michael H. Warfield
On Wed, 2010-12-22 at 08:43 -0200, Itamar Reis Peixoto wrote: 
> On Wed, Dec 22, 2010 at 8:04 AM, Joachim Backes
>  wrote:
> > Hi all,
> >
> > somebody has been successful in connecting the qtnx client to a server
> > running the nxserver from nomachine?
> >
> > Wondering about the fact that there are only *fc11* versions of the qtnx
> > client software :-)
> >
> > If starting qtnx after having configured it, I only get an error msg like
> 
> 
> 
> try xrdp

> http://koji.fedoraproject.org/koji/packageinfo?packageID=9026

It's been my experience on connecting to Windows machines with both rdp
and vnc that rdp is far less bandwidth efficient than vnc.  Rdesktop and
rdp is definitely MORE secure though (and I generally run vnc over an
ssh session using -via).  For me, it also doesn't support IPv6 which I
want.  VNC doesn't support IPv6 directly (actually there are some
patched versions running around) but the ssh tunnel also deals with that
issue as well.  From comparing vnc side by side with nx, I'm definitely
impressed with nx.  The nx stuff uses ssh under the hood, so that's just
as secure as rdp and vnc-through-ssh.  The stuff from No Machine doesn't
support IPv6 but it looks like the freenx stuff should (it acts like it
does) and qtnx certainly seems to, if I could just figure out why the
X11 sessions are broken (on either v4 or v6). 

But my problems seem to be different that the ones from the OP.

> -- 
> 
> 
> Itamar Reis Peixoto
> msn, google talk: ita...@ispbrasil.com.br
> +55 11 4063 5033 (FIXO SP)
> +55 34 9158 9329 (TIM)
> +55 34 8806 3989 (OI)
> +55 34 3221 8599 (FIXO MG)
> -- 
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> 

Mike
-- 
Michael H. Warfield (AI4NB) | (770) 985-6132 |  m...@wittsend.com
   /\/\|=mhw=|\/\/  | (678) 463-0932 |  http://www.wittsend.com/mhw/
   NIC whois: MHW9  | An optimist believes we live in the best of all
 PGP Key: 0x674627FF| possible worlds.  A pessimist is sure of it!


signature.asc
Description: This is a digitally signed message part
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Remote X display access

2011-01-02 Thread Harish Pillay
On Mon, Jan 3, 2011 at 2:53 AM, Alex  wrote:
> Hi,
>
>>> What is the best way to securely permit a remote X application to
>>> display on as local system?
> ...
>
>> Here's what I do:
>> local machine: ssh -YC usern...@remotemachine.com
>
> I tried "ssh -X u...@host" and that appeared to work fine. What is the
> difference between these two commands? Will I be able to perform all
> functions remotely using my method, or is the -Y preferred?

I could not recall the reason and after some googling, this is what I found:

http://support.suso.com/supki/SSH_Tutorial_for_Linux#X11_Session_Forwarding

"For some newer programs and newer versions of X windows, you may need
to use the -Y option instead for trusted X11 forwarding. Try using
this option if your X11 windows program fails to start running with a
message like this one that was for Gimp:

  The program 'gimp-2.2' received an X Window System error.
  This probably reflects a bug in the program.
  The error was 'BadWindow (invalid Window parameter)'.
  (Details: serial 154 error_code 3 request_code 38 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
  that is, you will receive the error a while after causing it.
  To debug your program, run it with the --sync command line
  option to change this behavior. You can then get a meaningful
  backtrace from your debugger if you break on the gdk_x_error()
  function.)

> Thanks for everyone's help. xhost with X11R5 is what I recalled using :-)

No problem.  X's network centric architecture is the winner here. I am
hoping that the "new" wayland [0] will also have the same transparency.

[0] http://wayland.freedesktop.org/
-- 
Harish Pillay h.pil...@ieee.org gpg id: 746809E3
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


avchd convert to play on ipod touch?

2011-01-02 Thread Alex
Hi,

Is there a (free) program available for converting the MTS files from
my Panasonic camcorder to be useful on the ipod touch?

I've done some searching, but it appears the most common way is
through some commercial applications.

Thanks,
Alex
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Download phonebook via Bluetooth?

2011-01-02 Thread Patrick O'Callaghan
On Sun, 2011-01-02 at 18:10 -0500, Jeffrey Ross wrote: 
> I'm running Fedora 13 and I'm looking for a way to download my phone's 
> phonebook over bluetooth.
> 
> I know my car is capable of downloading the phonebook from the phone so 
> I'm sure there's a way to do it.
> 
> suggestions?

I suggest you at least mention the make and model of your phone ...

poc

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Viewing apple.com trailers

2011-01-02 Thread Alex
Hi,

>> Here is an example:
>>
>> http://trailers.apple.com/trailers/paramount/truegrit/
>>
>> Perhaps there's a firefox plugin, or you know how to get something
>> like VLC to play them from the URL?
>
> Do you have all the required codecs? I use the
> gecko-mediaplayer-plugin and it downloads and starts playing in a
> separate instance of gnome-mplayer just fine. I can then right click
> the video and save it. Does it work differently for you?

I believe I have all the required codecs, but that is not at all what
I'm experiencing. For me, there is no video, just audio. No additional
window.

Trying to find that plugin using yum, I see:

Warning: No matches found for: gecko-mediaplayer-plugin

An rpm search for gecko only displays gecko-mediaplayer-1.0.0-1.fc13.x86_64.

Other ideas greatly appreciated.
Thanks,
Alex
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: F14 and qtnx client

2011-01-02 Thread Michael H. Warfield
On Wed, 2010-12-22 at 11:04 +0100, Joachim Backes wrote: 
> Hi all,
> 
> somebody has been successful in connecting the qtnx client to a server
> running the nxserver from nomachine?
> 
> Wondering about the fact that there are only *fc11* versions of the qtnx
> client software :-)
> 
> If starting qtnx after having configured it, I only get an error msg like
> 
> --
> Process started
> stderr> Pseudo-terminal will not be allocated because stdin is not a
> terminal.
> ---

That error can be safely ignored.  That's just ssh refusing to
allocation a pseudo tty because stdin to is is not a tty.  But you don't
need one in this case, since it's all going to be done over X11
forwarding.

> I was not successful in finding helpful entries in the forums.

I seem to have gotten further than you but I'm connecting to a freenx
server on another F14 box.  Unfortunately, I have also been
unsuccessful.  I may just load up the NoMachine server on one of my
servers, just to test it out and see how it behaves.

In my case, it goes through a long number of steps and messages out the
console finally ending with this:

Connection to 127.0.0.1 6001 port [tcp/*] succeeded!
stdout> NX> 1000 NXNODE - Version 3.2.0-74-SVN OS (GPL, using backend: 3.3.0)
stdout> NX> 700 Session id: 
alexandria.XX.com-2004-11B427C0BF684A790366A2977B076A36
NX> 705 Session display: 2004
NX> 703 Session type: unix-application
NX> 701 Proxy cookie: 04970d2fcf149f5fee5af219dea4497c
NX> 702 Proxy IP: xx.xx.xx.xx
NX> 706 Agent cookie: 04970d2fcf149f5fee5af219dea4497c
stdout> NX> 704 Session cache: unix-application
stdout> NX> 707 SSL tunneling: 1
NX> 1009 Session status: starting
NX> 710 Session status: running
NX> 1002 Commit
NX> 105 
stdin>  bye
stderr> /usr/libexec/nx/nxserver: line 1585:  9402 Terminated  
sleep $AGENT_STARTUP_TIMEOUT
NX> 1006 Session status: running
stdout> bye
stderr> Bye
NX> 999 Bye
Starting NX proxy
NX_COMMFD=24Process started
stderr> Connection to Alexandria.XX.com closed by remote host.
Process exited

There it dies and times out and I get the "closed by remote host
finally.  I set up the server to save the session data and found that
the final user connection seems to be failing.  The connection from qtnx
to the n...@server succeeds (even over IPv6!  Yes!!!) and the ssh
connection from n...@server to u...@127.0.0.1 also succeeds but then the X
session back over the forewarded X connection seems to fail with an
"unable to connect to display.

I saved an earlier session by setting up the appropriate parameters in
the node.conf file and ended up with this in the session file:

NXAGENT - Version 3.3.0

Copyright (C) 2001, 2007 NoMachine.
See http://www.nomachine.com/ for more information.

Info: Agent running with pid '7189'.
Session: Starting session at 'Sun Jan  2 15:13:44 2011'.
Info: Proxy running in server mode with pid '7189'.
Info: Waiting for connection from '127.0.0.1' on port '6004'.
Info: Accepted connection from '127.0.0.1'.
Error: The remote NX proxy closed the connection.
Error: Failure negotiating the session in stage '7'.
Error: Aborting session with 'Unable to open display 
'nx/nx,options=/home/mhw/.nx/C-alexandria..com-2004-F9AACA89CE1E5FEC50094A113491891A/options:2004''.
Session: Aborting session at 'Sun Jan  2 15:14:19 2011'.
Session: Session aborted at 'Sun Jan  2 15:14:19 2011'.

I've done the same thing with the NoMachine nxclient and it works fine
but that client sucks.  It can only establish one session at at time,
failing with a bizarre error that didn't make any sense that I finally
tracked down to the client trying to listen on local TCP port 12000 for
something about X11 fonts.  After the first session has it, subsequent
sessions catch fire and burn when they can't bind to it, complaining the
address is already in use.  :-P  It also fails miserably if the host is
an IPv6 only host.  It seems their client is IPv4 only even though ssh
is perfectly happy over IPv6 and the qtnx sessions to freenx seem quite
content over v6 and I know X11 forwarding works on ssh over IPv6.
Lamers need to get with the program.  But, it did work to establish a
connection into my freenx server setup (on IPv4) and give me an
X-session back.  So I know the server setup is correct.  Still qtnx
fails.

Seems like, in my case, it's some disconnect in setting up the ssh X11
forwarding and I can't seem to tell where it's broken at.  Worse, it's
got to be something that qtnx is doing differently that's causing the
brokenness.

It also LOOKS like qtnx sets up the ssh connections in a way that can
also allow ssh agent forwarding to work so you don't need a password and
can use hardened encryption keys end-to-end for authentication if you
have your authorized key in both the nx users authorized_keys file and
in your authorized_keys file which is another nice (and bloody obvious)
feature that is totally m

Re: ipv6 question

2011-01-02 Thread Genes MailLists
On 01/02/2011 08:54 PM, Genes MailLists wrote:
>
>> Probably the simplest approach is to use a router appliance that groks
>> IPv6 for the WAN, and IPv4 for the LAN.  On a Linux system, if you want
>> it to be your firewall--and a lot of us are hard-headed enough to do
>> so--I'd put in two NICs and use only the outward-facing NIC for IPv6,
>> confguring the internal for IPv4.
>>
> 
>  Thanks for your thoughts ... I was slowly coming to exactly that
> solution ...
> 
>   Then I think you're saying NAT is here to stay .. in which case how
> exactly on a linux border firewall with internal ip4 and external ip6
> does one NAT ?
> 
>   Do we build a ip4 NAT to ip4 - and then route that nat'ed ip4 to ip6 ?
> 
> 


   If you are correct - then the obvious solution is to make ip6 NAT ...
which was designed out of the thing ...

   gah ...
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Genes MailLists
On 01/02/2011 06:33 PM, Dave Ihnat wrote:
> On Sun, Jan 02, 2011 at 06:19:48PM -0500, Genes MailLists wrote:
>>  This issue must have a simple solution surely noone would design a
>> spanking new world and then make it hard for a not uncommon situation
>> (new isp) ?
> 
> Well, think again.  There are reasons people are dragging their feet
> going to IPv6.
> 
> Frankly, I don't expect most, if any, internal LANs to cut over to IPv6.
> There's no reason or point, and a lot of headaches.  Instead, it should
> become the standard *outside* your router/firewall, and you can stay
> with IPv4 inside.
> 
> Probably the simplest approach is to use a router appliance that groks
> IPv6 for the WAN, and IPv4 for the LAN.  On a Linux system, if you want
> it to be your firewall--and a lot of us are hard-headed enough to do
> so--I'd put in two NICs and use only the outward-facing NIC for IPv6,
> confguring the internal for IPv4.
> 

 Thanks for your thoughts ... I was slowly coming to exactly that
solution ...

  Then I think you're saying NAT is here to stay .. in which case how
exactly on a linux border firewall with internal ip4 and external ip6
does one NAT ?

  Do we build a ip4 NAT to ip4 - and then route that nat'ed ip4 to ip6 ?


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Chad Kellerman
On Sun, Jan 2, 2011 at 4:52 PM, Erik P. Olsen  wrote:

> On 02/01/11 21:14, Johan Scheepers wrote:
> > On 01/02/2011 07:26 PM, Darlene Wallach wrote:
> >> Johan,
> >>
> >> On Sun, Jan 2, 2011 at 11:18 AM, Johan Scheepers
>   wrote:
> >>> On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
>  On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers<
> johans...@telkomsa.net> wrote:
> > Good day,
> >
> > Just installed skype and it is working.
> >
> > Can speak to otherside.
> > Can see the otherside.
> > Can hear the otherside.
> >
>
>
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype

run skype with the LD_PRELOAD and see if that works.  I've had the same
issue in the past with distos with more up to date libraries...


Chad


-- 
A grasshopper walks into a bar and the bartender says "Hey, we have a drink
named after you." And the grasshopper says "Really, You have a drink named
Murray?"
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: variable in loop

2011-01-02 Thread Chris Tyler
On Sun, 2011-01-02 at 14:27 -0800, S Mathias wrote:
> $ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo 
> "$a $ASDF"$(for i in {1..$a}; do printf "."; done)
> 65 hello.
> $ 
> 
> 
> Why doesn't it print:
> 65 hello.
> 
> 
> 
> What am i missing?

The expression {1..$a} is being quoted and treated as a string, instead
of being evaluated. If you change the printf from:

printf "."

...to:

printf "[$i]"

...you'll see what's happening.

-Chris

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Dave Ihnat
On Sun, Jan 02, 2011 at 06:19:48PM -0500, Genes MailLists wrote:
>  This issue must have a simple solution surely noone would design a
> spanking new world and then make it hard for a not uncommon situation
> (new isp) ?

Well, think again.  There are reasons people are dragging their feet
going to IPv6.

Frankly, I don't expect most, if any, internal LANs to cut over to IPv6.
There's no reason or point, and a lot of headaches.  Instead, it should
become the standard *outside* your router/firewall, and you can stay
with IPv4 inside.

Probably the simplest approach is to use a router appliance that groks
IPv6 for the WAN, and IPv4 for the LAN.  On a Linux system, if you want
it to be your firewall--and a lot of us are hard-headed enough to do
so--I'd put in two NICs and use only the outward-facing NIC for IPv6,
confguring the internal for IPv4.

G'luck,
--
Dave Ihnat
dih...@dminet.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Genes MailLists
On 01/02/2011 06:11 PM, Genes MailLists wrote:
> On 01/02/2011 06:08 PM, Itamar Reis Peixoto wrote:
>> On Sun, Jan 2, 2011 at 8:40 PM, Genes MailLists  wrote:
>>>  There was some earlier discussion (mainly about NAT being now
>>> irrelevant in the face of ipv6).
>>>
>>>  Question for you experts:
>>>
>>>   How does one manage your internal ip6 network so that an ISP change
>>> (which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?
>>>



 RFC 4192 does not give me great comfort for what its worth - tho this
was written 5 years ago or so ... maybe something improved since then ?


  "This document addresses the key procedural issues in renumbering an
   IPv6 [RFC2460] network without a "flag day".  The procedure is
   straightforward to describe, but operationally can be difficult to
   automate or execute due to issues of statically configured network
   state, which one might aptly describe as "an infinity of petty
   circumstances"."


 This issue must have a simple solution surely noone would design a
spanking new world and then make it hard for a not uncommon situation
(new isp) ?

  Perhaps we can all get permanent ip6 addresses and all ISP's will
route to any address ... maybe ?
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: variable in loop

2011-01-02 Thread Sam Sharpe
On 2 January 2011 22:27, S Mathias  wrote:
> $ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo 
> "$a $ASDF"$(for i in {1..$a}; do printf "."; done)
> 65 hello.
> Why doesn't it print:
> 65 hello.

Because {1..$a} doesn't output the sequence 1..65 like you think it
should. Replacing it with `seq 1 $a` does.

> What am i missing?

To be honest... the point of this list - elementary Bash programming
isn't a matter for the Fedora Users list.

-- 
Sam
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Genes MailLists
On 01/02/2011 06:08 PM, Itamar Reis Peixoto wrote:
> On Sun, Jan 2, 2011 at 8:40 PM, Genes MailLists  wrote:
>>  There was some earlier discussion (mainly about NAT being now
>> irrelevant in the face of ipv6).
>>
>>  Question for you experts:
>>
>>   How does one manage your internal ip6 network so that an ISP change
>> (which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?
>>
>>  thanks!
>>
> 
> becoming a autonomous system (AS) ?
> 
> 

  For a large company maybe - but no way phone/cable/google company is
gonna route everyone to their own private AS - or are you telling me
different?

  With ip4 + nat - isp changes are bog trivial ... are we saying this is
a royal pain in the patoot under ip6 ? Assuming we keep ip6 internally
... maybe we just keep ip4 internally and only use ip6 on the border/dmz
firewalls ?


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Download phonebook via Bluetooth?

2011-01-02 Thread Jeffrey Ross
I'm running Fedora 13 and I'm looking for a way to download my phone's 
phonebook over bluetooth.

I know my car is capable of downloading the phonebook from the phone so 
I'm sure there's a way to do it.

suggestions?

Thanks,Jeff
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ipv6 question

2011-01-02 Thread Itamar Reis Peixoto
On Sun, Jan 2, 2011 at 8:40 PM, Genes MailLists  wrote:
>  There was some earlier discussion (mainly about NAT being now
> irrelevant in the face of ipv6).
>
>  Question for you experts:
>
>   How does one manage your internal ip6 network so that an ISP change
> (which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?
>
>  thanks!
>

becoming a autonomous system (AS) ?


-- 


Itamar Reis Peixoto
msn, google talk: ita...@ispbrasil.com.br
+55 11 4063 5033 (FIXO SP)
+55 34 9158 9329 (TIM)
+55 34 8806 3989 (OI)
+55 34 3221 8599 (FIXO MG)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


ipv6 question

2011-01-02 Thread Genes MailLists
 There was some earlier discussion (mainly about NAT being now
irrelevant in the face of ipv6).

  Question for you experts:

   How does one manage your internal ip6 network so that an ISP change
(which under NAT/ipv4 is irrelevant) - is straightforward/clean to manage ?

  thanks!

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


variable in loop

2011-01-02 Thread S Mathias
$ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo "$a 
$ASDF"$(for i in {1..$a}; do printf "."; done)
65 hello.
$ 


Why doesn't it print:
65 hello.



What am i missing?


  
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Viewing apple.com trailers

2011-01-02 Thread suvayu ali
On Sun, Jan 2, 2011 at 10:48 AM, Alex  wrote:
> I can view them without a problem, but when choosing the download
> option, it appears to download them, but immediately starts to play
> them, but there is no video. There is only audio.
>
> Here is an example:
>
> http://trailers.apple.com/trailers/paramount/truegrit/
>
> Perhaps there's a firefox plugin, or you know how to get something
> like VLC to play them from the URL?
>

Do you have all the required codecs? I use the
gecko-mediaplayer-plugin and it downloads and starts playing in a
separate instance of gnome-mplayer just fine. I can then right click
the video and save it. Does it work differently for you?

-- 
Suvayu

Open source is the future. It sets us free.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Erik P. Olsen
On 02/01/11 21:14, Johan Scheepers wrote:
> On 01/02/2011 07:26 PM, Darlene Wallach wrote:
>> Johan,
>>
>> On Sun, Jan 2, 2011 at 11:18 AM, Johan Scheepers   
>> wrote:
>>> On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
 On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers   
   wrote:
> Good day,
>
> Just installed skype and it is working.
>
> Can speak to otherside.
> Can see the otherside.
> Can hear the otherside.
>
> Now I would like to get a webcam going.
>
 If your webcam is supported, it ought to work out of the box. It's
 working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
 webcam program to test if your webcam works.

>>> Ok. Got the same skype as above.
>>> Cheese shows that the webcam can photo, record, multiple photos.
>>>
>>> Kindly explain how does it get connected to skype please.
>>> This is a learning experience to me.
>> Select options in the pull down menu or "control o" then select "video 
>> devices"
>> Select "Enable Skype Video"
>>
>> There should be a window with "test" - select test - you should see yourself.
>>
> OK.  Done all the motions as above.
> Test does not work.
> The device shown in cheese is the same as the one in skype options.
> Does this mean there is still something amiss?

What exactly happens when "Test does not work"? On my system I get a 
segmentation fault. Is that what you see as well? I can see from skype's forum 
on video that a ubuntu user on 12/26 reported this very problem.

-- 
Erik
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


FC12 to FC14 : stat failed for the webserver over cifs

2011-01-02 Thread Jean-Philippe Battu
Hello

on a linux box in FC12 or FC14, I set up a web server
I have two virtual host, the first is a filesystem mounted over nfs 
(port 1980)
and the second is a filesystem mounted over cifs (port 1982)

I noticed the filesize php  function  and the stat php function don't 
work on the file of the web server which is mounted over cifs

my php code is quite simple :

 Size: ".filesize( $thefile)."" ;
?>

when I do host:1982 to access this file, I get:
Warning: stat(): stat failed for ./filesize.php in /dir/filesize.php on 
line 3
and it works for host:1980 (the php file is copied twice)

Getting the error for stat, I tried to use the stat shell command and it 
works for the two files, nfs or cifs

Do you know how I could solve this error ? it worked on FC9.

FC9 :
httpd-2.2.9-1.fc9.i386
php-5.2.6-2.fc9.i386
samba-client-3.2.0-1.pre3.9.fc9.i386

FC14:
php-5.3.3-1.fc14.i686
httpd-2.2.17-1.fc14.i686
cifs-utils-4.7-1.fc14.i686

Jean-Philippe







-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: BOOTMGR is missing, and now cannot login to Fedora either

2011-01-02 Thread Joe Zeff
On 01/02/2011 12:22 PM, Barry Keeling wrote:
> Anyway, have re-installed Fedora 14, and it seems to be working fine now.

I hope you didn't lose much work.  If it happens again, log into a 
console the way you did, as yourself (not root) and try this:

mv .gnome2 .gnome2.old

This will move all of your Gnome customizations to a backup folder, but 
not get rid of them completely.  Then, log out, go back to your GUI and 
try again.  If it works, you'll have the default Gnome desktop and have 
to start customizing it again, but that's probably quicker than 
reinstalling.  And, if you're brave, you can move things across from the 
old to the new .gnome folder one at a time until it stops working to 
find out which file was corrupt.

The nice thing about this is, if it doesn't work, you can still 
reinstall with almost no time lost.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: BOOTMGR is missing, and now cannot login to Fedora either

2011-01-02 Thread Barry Keeling
Thanks to Stan :) for taking the time and effort to respond to my post. I
found his suggestions really useful.

I was able to flip to a console in F14 and successfully login to my user
account, but sadly I never resolved the graphical login issue where F14 kept
redisplaying the user login screen after I had entered my password. I did
check the log files, but wasn't able to google much from log file text.

Anyway, have re-installed Fedora 14, and it seems to be working fine now.

The major learning was to make sure that grub is set up correctly asap,
prior to doing lots of work on the linux install.

I have a dell laptop and the first non-boot partition is a Dell windows
recovery area, so Vista is on (0,2). The default grub.conf setup is set to
(0,1), so I edited it as soon as I was able, without letting the Vista
boot-up fail. Now I can successfully dual boot and have had no problem with
the user login screen on F14.

Barry.


-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: system-config-firewall from remote machine

2011-01-02 Thread Matthew Saltzman
On Sun, 2011-01-02 at 19:40 +0100, Roberto Ragusa wrote: 
> Matthew Saltzman wrote:
> > I tried to run system-config-firewall logged in remotely as a normal
> > user (not root).  I am not prompted for root's password.  The interface
> > pops up and the startup splash screen displays, but when the splash
> > screen clears, it's replaced with an error popup with the message 
> > 
> > 
> > org.fedoraproject.slip.dbus.service.PolKit.NotAuthorizedException.org.fedoraproject.config.firewall.auth:
> > 
> > and buttons labeled "Redo" and "Quit".  "Redo" results in the same
> > popup.  Running on the local machine behaves as expected: root password
> > prompt, GUI opens, interaction is normal.  Logging in remotely as root
> > works as expected too, but that's not a good security practice.
> > 
> > Is this a bug?  (I assume so...)  If so, what package?  (This is
> > system-config-firewall-1.2.27-1.fc14.noarch, FWIW.)
> 
> I had a similar problem with virt-manager, when launched in a
> remote ssh session, but I don't remember the details.
> 
> I failed to understand what the designed behavior would have been,
> this new-fashion "session" concept (dbus, policykit,...) is too confusing
> for me. In the good old days you just were a specific user and the only
> thing you had to manage was xauth and DISPLAY (and ssh does it for you)...
> 

Bug already filed:

https://bugzilla.redhat.com/show_bug.cgi?id=649566
-- 
Matthew Saltzman

Clemson University Math Sciences
mjs AT clemson DOT edu
http://www.math.clemson.edu/~mjs
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: system-config-firewall from remote machine

2011-01-02 Thread Corinna Vinschen
On Jan  1 17:08, Matthew Saltzman wrote:
> I tried to run system-config-firewall logged in remotely as a normal
> user (not root).  I am not prompted for root's password.  The interface
> pops up and the startup splash screen displays, but when the splash
> screen clears, it's replaced with an error popup with the message 
> 
> 
> org.fedoraproject.slip.dbus.service.PolKit.NotAuthorizedException.org.fedoraproject.config.firewall.auth:
> 
> and buttons labeled "Redo" and "Quit".  "Redo" results in the same
> popup.  Running on the local machine behaves as expected: root password
> prompt, GUI opens, interaction is normal.  Logging in remotely as root
> works as expected too, but that's not a good security practice.
> 
> Is this a bug?  (I assume so...)  If so, what package?  (This is
> system-config-firewall-1.2.27-1.fc14.noarch, FWIW.)

You can add access for yourself in PolicyKit.  Let's assume you
are user "matthew".  As root:

  root> cd /etc/polkit-1/localauthority/50-local.d
  root> cat > 50-firewall-matthew-access.pkla << EOF
  [Allow matthew remote access to system-config-firewall]
  Identity=unix-user:matthew
  Action=org.fedoraproject.config.firewall.auth
  ResultAny=yes
  ResultInactive=yes
  ResultActive=yes
  EOF
  root>

Now try to start system-config-firewall in your remote session.


Corinna
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


nm-connection-editor's "Available to all users" checkbox

2011-01-02 Thread W. Michael Petullo
I can't figure out why nm-connection-editor's "Available to all users"
checkbox is not working for me on Fedora 14. I have the following behavior
in two use scenarios:

1. Wireless/Add: receive "Connection add failed: Insufficient privileges"
error dialog when I click "Apply" with "Available to all users" checked.

2. Wireless/Edit: fails silently. That is, I click "Apply" and receive no
error. But, when I again edit the connection, I see that the "Available
to all users" is not checked.

I would expect to be prompted for a root password when I click
"Apply." I would also expect to see some type of error message in the
second scenario.

I am able to add or edit a system-wide configuration if I run "pkexec
nm-connection-editor --display=:0.0" and provide my root password.

My user account is stored in LDAP. I have tried adding myself to the
desktop_admin_t and desktop_user_r groups (by editing the local /etc/group
and confirming with the groups command), but this does not help.

I am using Fedora 14 and have the following related packages installed:

polkit-desktop-policy-0.98-4.fc14.noarch
polkit-0.98-4.fc14.x86_64
polkit-gnome-0.97-4.fc15.x86_64
NetworkManager-glib-0.8.1-10.git20100831.fc14.x86_64
NetworkManager-gnome-0.8.1-10.git20100831.fc14.x86_64
NetworkManager-0.8.1-10.git20100831.fc14.x86_64

Has anyone else had a similar problem?

-- 
Mike

:wq
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: various errors related to configuration (solved)

2011-01-02 Thread les
On Sat, 2010-12-18 at 16:33 -0800, les wrote:
> On Fri, 2010-12-17 at 10:17 -0600, Hugh Brown wrote:
> > Les wrote:
> > > I started with an evolution configuration error, and now a
> > > Firefox/Mozilla configuration error, so it appears to me that this might
> > > be a system level error.  Maybe some file or directory permissions
> > > issue, or perhaps a generic configuration error.
> > > 
> > > I tried using the Firefox ProfileManager to create a new profile, but
> > > that lost me all my bookmarks, as well as not changing a problem getting
> > > my home page to load at startup, in spite of that being the selection on
> > > the preferences page, even after creating a new user profile with the
> > > profile manager.  Java won't run, even after reloading from the software
> > > add/remove manager.
> > 
> > Creating a new profile in Firefox does exactly that.  The old bookmarks 
> > are in your old profile.  You can restore them from the old profiles 
> > bookmark directory. From within the bookmark manager, choose to Import 
> > and Backup->Restore->Choose file and then browse to 
> > ~/.mozilla/firefox/.default/ and then pick the most 
> > recent file.
> > 
> > When you say Java won't run, do you mean the java plugin won't load in 
> > your browser or that you can't get the command line tools to work?
> > 
> > If it's the plugin that won't run, you'll need to add a link for the 
> > plugin into either your user plugin directory 
> > (~/.mozilla/firefox/plugins) or a system plugin directory 
> > (/usr/lib64/mozilla/plugins).
> > 
> > e.g. ln -s /usr/java/default/jre/lib/amd64/libnpjp2.so 
> > /usr/lib64/mozilla/plugins   to do it system wide
> > 
> > 
> > > 
> > >  Next I went to the Java website to get the new package, and retrieved
> > > the jre-6u23-linux-x64-rpm.bin file.  when I attempted to source that
> > > file I get:
> > > 
> > > $ ./j*bin
> > > Unpacking...
> > > Checksumming...
> > > Extracting...
> > > UnZipSFX 5.50 of 17 February 2002, by Info-ZIP (zip-b...@lists.wku.edu).
> > > replace jre-6u23-linux-amd64.rpm? [y]es, [n]o, [A]ll, [N]one, [r]ename:
> > > y
> > >   inflating: jre-6u23-linux-amd64.rpm  
> > > error: can't create transaction lock on /var/lib/rpm/.rpm.lock
> > > (Permission denied)
> > > 
> > > but the file appears to uncompress and be present as:
> > > 
> > > jre-6u23-linux-x64-rpm
> > > 
> > > but I am unsure of loading it with the prior error in existence.
> > 
> > By default the script from sun/oracle tries to unpack the rpm and then 
> > install it.  You ran this as a non-root user (which is fine), it tried 
> > to install the rpm and failed.  You can safely install the rpm.
> > 
> > Hugh
> Hi, Hugh,
>   I did add the link, and then corrected it, then tried
> # mozilla-plugin-config -i
> *** NSPlugin Viewer  *** ERROR: /usr/lib64/mozilla/plugins/libnpjp2.so:
> undefined symbol: __gxx_personality_v0
> 
> So at this time, the jre plugin is not installed and I seem to be
> missing some vital library function to get it to work.  
> 
> After a great deal of google surfing I discovered that this fuction is
> supposedly part of libstdcc++. Using yum I discovered that that is
> supported by: libstdc++.x86_64
> 
> running yum info libstdc++.x86_64 I get:
> 
> # yum info libstdc++.x86_64
> Loaded plugins: langpacks, presto, refresh-packagekit
> Adding en_US to language list
> Installed Packages
> Name: libstdc++
> Arch: x86_64
> Version : 4.5.1
> Release : 4.fc14
> Size: 1.0 M
> Repo: installed
> >From repo   : fedora
> Summary : GNU Standard C++ Library
> URL : http://gcc.gnu.org
> License : GPLv3+ and GPLv3+ with exceptions and GPLv2+ with
> exceptions
> Description : The libstdc++ package contains a rewritten standard
> compliant GCC
> : Standard C++ Library.
> 
> This also shows up as installed via the graphics window, as I am not
> trusting any single method to give me information now.
> 
> # mozilla-plugin-config -l
> EXCLUDE_WRAP:
> libtotem*
> libjavaplugin*
> gecko-mediaplayer*
> mplayerplug-in*
> librhythmbox*
> packagekit*
> libnsISpicec*
> EXCLUDE_LINK:
> 
> /usr/lib64/mozilla/plugins-wrapped/nswrapper_64_64.libflashplayer.so
>   Original plugin: /usr/lib64/mozilla/plugins/libflashplayer.so
>   Wrapper version string: X (1.3.0)
> File/Link /usr/lib64/mozilla/plugins-wrapped/libtotem-narrowspace-plugin.so
> File/Link /usr/lib64/mozilla/plugins-wrapped/libtotem-gmp-plugin.so
> File/Link /usr/lib64/mozilla/plugins-wrapped/libtotem-mully-plugin.so
> File/Link 
> /usr/lib64/mozilla/plugins-wrapped/librhythmbox-itms-detection-plugin.so
> File/Link /usr/lib64/mozilla/plugins-wrapped/libtotem-cone-plugin.so
> File/Link /usr/lib64/mozilla/plugins-wrapped/libnpjp2.so
> /usr/lib64/mozilla/plugins-wrapped/nswrapper_64_64.libflashplayer.so
>   Original plugin: /usr/lib64/mozilla/plugins/libflashplayer.so
>   Wrapper version string: X (1.3.0)
> File/Link /usr/lib64/mozilla/plugins-wrapped/libtotem-narrowspace-plugi

Re: Remote X display access

2011-01-02 Thread Chris Tyler
On Sun, 2011-01-02 at 13:53 -0500, Alex wrote:
> Hi,
> 
> >> What is the best way to securely permit a remote X application to
> >> display on as local system?
> ...
> 
> > Here's what I do:
> > local machine: ssh -YC usern...@remotemachine.com
> 
> I tried "ssh -X u...@host" and that appeared to work fine. What is the
> difference between these two commands? Will I be able to perform all
> functions remotely using my method, or is the -Y preferred?
> 
> Thanks for everyone's help. xhost with X11R5 is what I recalled using :-)

-C is compression (recommended)
-X is untrusted X forwarding
-Y is trusted X forwarding

TBH, there's rarely a difference between -X and -Y at this point, though
-Y should in theory permit some things that -X doesn't (and therefore -X
could be more secure). See the SECURITY extension for X for details
(short version: there are two different levels of authorization
available via MIT Cookies; using an untrusted cookie should help
mitigate risks such as the remote system snooping your activity,
injecting events into other windows, or taking a screenshot/screencast).

Note that you can place a command at the end of the ssh command:

ssh -XC u...@host system-config-config-services

And then you can put that in an application launcher if you want. Using
key-based access, you could then just click an icon/menu entry/panel
button to run the app remotely.

-Chris

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Remote X display access

2011-01-02 Thread Alex
Hi,

>> What is the best way to securely permit a remote X application to
>> display on as local system?
...

> Here's what I do:
> local machine: ssh -YC usern...@remotemachine.com

I tried "ssh -X u...@host" and that appeared to work fine. What is the
difference between these two commands? Will I be able to perform all
functions remotely using my method, or is the -Y preferred?

Thanks for everyone's help. xhost with X11R5 is what I recalled using :-)

Thanks,
Alex
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Viewing apple.com trailers

2011-01-02 Thread Alex
Hi all,

Some time ago I posted a message about having problems downloading
trailers from apple.com/trailers, and just wondered if anyone knows
now how to do this?

I can view them without a problem, but when choosing the download
option, it appears to download them, but immediately starts to play
them, but there is no video. There is only audio.

Here is an example:

http://trailers.apple.com/trailers/paramount/truegrit/

Perhaps there's a firefox plugin, or you know how to get something
like VLC to play them from the URL?

Thanks,
Alex
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: system-config-firewall from remote machine

2011-01-02 Thread Roberto Ragusa
Matthew Saltzman wrote:
> I tried to run system-config-firewall logged in remotely as a normal
> user (not root).  I am not prompted for root's password.  The interface
> pops up and the startup splash screen displays, but when the splash
> screen clears, it's replaced with an error popup with the message 
> 
> 
> org.fedoraproject.slip.dbus.service.PolKit.NotAuthorizedException.org.fedoraproject.config.firewall.auth:
> 
> and buttons labeled "Redo" and "Quit".  "Redo" results in the same
> popup.  Running on the local machine behaves as expected: root password
> prompt, GUI opens, interaction is normal.  Logging in remotely as root
> works as expected too, but that's not a good security practice.
> 
> Is this a bug?  (I assume so...)  If so, what package?  (This is
> system-config-firewall-1.2.27-1.fc14.noarch, FWIW.)

I had a similar problem with virt-manager, when launched in a
remote ssh session, but I don't remember the details.

I failed to understand what the designed behavior would have been,
this new-fashion "session" concept (dbus, policykit,...) is too confusing
for me. In the good old days you just were a specific user and the only
thing you had to manage was xauth and DISPLAY (and ssh does it for you)...

-- 
   Roberto Ragusamail at robertoragusa.it
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Johan Scheepers
On 01/02/2011 07:26 PM, Darlene Wallach wrote:
> Johan,
>
> On Sun, Jan 2, 2011 at 11:18 AM, Johan Scheepers  
> wrote:
>> On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
>>> On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers
>>> wrote:
 Good day,

 Just installed skype and it is working.

 Can speak to otherside.
 Can see the otherside.
 Can hear the otherside.

 Now I would like to get a webcam going.

>>> If your webcam is supported, it ought to work out of the box. It's
>>> working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
>>> webcam program to test if your webcam works.
>>>
>> Ok. Got the same skype as above.
>> Cheese shows that the webcam can photo, record, multiple photos.
>>
>> Kindly explain how does it get connected to skype please.
>> This is a learning experience to me.
> Select options in the pull down menu or "control o" then select "video 
> devices"
> Select "Enable Skype Video"
>
> There should be a window with "test" - select test - you should see yourself.
>
OK.  Done all the motions as above.
Test does not work.
The device shown in cheese is the same as the one in skype options.
Does this mean there is still something amiss?

>> Thanks
>> Johan
>>
>> --
> Darlene Wallach

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Setting up an svn server howto

2011-01-02 Thread Darton Williams
On Sun, Jan 2, 2011 at 7:11 AM, Paul F. Johnson
 wrote:
> Hi,
>
> I'm using F14 and need to set up an svn server without going through the
> fun and games that is apache and mod_web_dav.
>
> Can anyone point me in the direction of a good, simple to follow how to
> on setting up an svn server please?
>

The Fedora 14 repositories have everything you need. Search the
packages for "subversion" and you will see many options (System ->
Administration -> Add/Remove Software or "yum search subversion" from
a terminal).  Have a look at the other tools too, such as Nautilus
integration.

1. The main package you want is "websvn." It will have dependencies, I
think yum will install them but they include subversion (of course),
httpd and php.

2. Set up a repository with "svnadmin" from a terminal ("man svnadmin").

3. Configure websvn to browse that repository.
(http://killerconfigurations.blogspot.com/2009/10/web-svn-repository-browser.html)


Regards,

Darton
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Setting up an svn server howto

2011-01-02 Thread Roberto Ragusa
Paul F. Johnson wrote:
> Hi,
> 
> I'm using F14 and need to set up an svn server without going through the
> fun and games that is apache and mod_web_dav.
> 
> Can anyone point me in the direction of a good, simple to follow how to
> on setting up an svn server please?

http://queens.db.toronto.edu/~nilesh/linux/subversion-howto/

Really easy. You basically: (option 2 of the web page)
a) use "cd /wherever/you/want/the/repo; svnadmin create my1strepo" to create 
the repo
b) run "svnserve -d -r /wherever/you/want/the/repo"to launch the daemon
c) ...done (well, you may want to config users/permissions and check your
firewall)

The default storage method is not apache/webdav anymore; fsfs is much
simpler (for example, doing backups of the repo is trivial and efficient).

The only annoyance could be that some distros do not ship a proper init.d
file to start svnserve (I wonder why).

-- 
   Roberto Ragusamail at robertoragusa.it
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Darlene Wallach
Johan,

On Sun, Jan 2, 2011 at 11:18 AM, Johan Scheepers  wrote:
> On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
>> On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers  
>> wrote:
>>> Good day,
>>>
>>> Just installed skype and it is working.
>>>
>>> Can speak to otherside.
>>> Can see the otherside.
>>> Can hear the otherside.
>>>
>>> Now I would like to get a webcam going.
>>>
>> If your webcam is supported, it ought to work out of the box. It's
>> working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
>> webcam program to test if your webcam works.
>>
> Ok. Got the same skype as above.
> Cheese shows that the webcam can photo, record, multiple photos.
>
> Kindly explain how does it get connected to skype please.
> This is a learning experience to me.

Select options in the pull down menu or "control o" then select "video devices"
Select "Enable Skype Video"

There should be a window with "test" - select test - you should see yourself.


>
> Thanks
> Johan
>
> --

Darlene Wallach
-- 
equal justice under law
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Siddhesh Poyarekar
On Mon, Jan 3, 2011 at 12:48 AM, Johan Scheepers  wrote:
> Ok. Got the same skype as above.
> Cheese shows that the webcam can photo, record, multiple photos.
>
> Kindly explain how does it get connected to skype please.
> This is a learning experience to me.
>

Ok, then you're all set. To send webcam stream, you only need to click
on the light blue button in the call window and select the "show my
webcam" (sic). The button should show up when a call is active and I'm
not able to test that right now to tell you the exact wording of the
option, so you'll have to figure that out by yourself.


-- 
Siddhesh Poyarekar
http://siddhesh.in
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Johan Scheepers
On 01/02/2011 06:52 PM, Siddhesh Poyarekar wrote:
> On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers  
> wrote:
>> Good day,
>>
>> Just installed skype and it is working.
>>
>> Can speak to otherside.
>> Can see the otherside.
>> Can hear the otherside.
>>
>> Now I would like to get a webcam going.
>>
> If your webcam is supported, it ought to work out of the box. It's
> working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
> webcam program to test if your webcam works.
>
Ok. Got the same skype as above.
Cheese shows that the webcam can photo, record, multiple photos.

Kindly explain how does it get connected to skype please.
This is a learning experience to me.

Thanks
Johan

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Siddhesh Poyarekar
On Sun, Jan 2, 2011 at 10:54 PM, Johan Scheepers  wrote:
> Good day,
>
> Just installed skype and it is working.
>
> Can speak to otherside.
> Can see the otherside.
> Can hear the otherside.
>
> Now I would like to get a webcam going.
>

If your webcam is supported, it ought to work out of the box. It's
working for me with skype-2.1.0.81-fc10.i586. You can use the 'cheese'
webcam program to test if your webcam works.


-- 
Siddhesh Poyarekar
http://siddhesh.in
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Remote X display access

2011-01-02 Thread Harish Pillay
On Sun, 2011-01-02 at 10:32 -0500, Alex wrote:
> Hi,
>
> What is the best way to securely permit a remote X application to
> display on as local system?
>
> I'm trying to get system-config-services to run on a remote FC14
> x86_64 system to my local FC13 x86_64 system. It's on a local internal
> network. I've tried setting the display and allowing access using
> xhost, but it still appears to have an access control problem.
>
> Also, how can I do this across the Internet? Wrap it in ssh?

Here's what I do:
local machine: ssh -YC usern...@remotemachine.com

You might need to have the remotemachine's /etc/ssh/sshd_config
to have the entry in it:
   X11Forwarding yes
uncommented.

The -Y option given to ssh is for the following:

-Y Enables trusted X11 forwarding.  Trusted X11 forwardings are not
 subjected to the X11 SECURITY extension controls.

and the -C is for compression.

Once you have logged in, you can then spawn GUI applications on
remotemachine and have the display show up on local machine.

There could be latency issues, and for that you might want to
investigate the SPICE protocol (available in F14) or freenx.

hth.
-- 
Harish Pillay h.pil...@ieee.org gpg id: 746809E3
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ssh by user amandabackup

2011-01-02 Thread Matthew Saltzman
On Sun, 2011-01-02 at 10:09 +0100, François Patte wrote: 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Le 02/01/2011 02:14, Matthew Saltzman a crit :
> > I'm trying to set up amanda using the amaddclient command.  That
> > requires that user amandabackup be able to log into the client machine
> > using ssh keys.
> > 
> > I've generated the keys on the server machine, copied the public key to
> > the client machine in /var/lib/amanda/.ssh/authorized_keys
> > (/var/lib/amanda is amandabackup's home directory).  I believe all file
> > protections are set correctly--they mirror the ones for a regular user.
> > But ssh fails to use the keys and prompts for a password.
> 
> Did you give some permission to selinux?

No, that turned out to be the problem.  (Didn't see the violation in
setroubleshoot because I was doing things remotely.)  I think it's a
bug: amandabackup is a normal user with home directory /var/lib/amanda/.
Logging in via ssh should "Just Work (tm)".

> 
> - --
> Franois Patte
> UFR de mathmatiques et informatique
> Universit Paris Descartes
> 45, rue des Saints Pres
> F-75270 Paris Cedex 06
> Tl. +33 (0)1 4286 2145
> http://www.math-info.univ-paris5.fr/~patte
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.9 (GNU/Linux)
> Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/
> 
> iEYEARECAAYFAk0gQNIACgkQdE6C2dhV2JWoXgCaA0qp1ObJDme7QXRTy0FxyaHJ
> AkUAnjQWDDCjiJ9LbkOBv7sfJwuJNO61
> =/0fS
> -END PGP SIGNATURE-
> 

-- 
Matthew Saltzman

Clemson University Math Sciences
mjs AT clemson DOT edu
http://www.math.clemson.edu/~mjs
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Remote X display access

2011-01-02 Thread Matthew Saltzman
On Sun, 2011-01-02 at 10:32 -0500, Alex wrote: 
> Hi,
> 
> What is the best way to securely permit a remote X application to
> display on as local system?
> 
> I'm trying to get system-config-services to run on a remote FC14
> x86_64 system to my local FC13 x86_64 system. It's on a local internal
> network. I've tried setting the display and allowing access using
> xhost, but it still appears to have an access control problem.
> 
> Also, how can I do this across the Internet? Wrap it in ssh?

>From the local machine: ssh -X .  Then run
system-config-services from the ssh session command line.


> 
> Thanks,
> Alex
> 

-- 
Matthew Saltzman

Clemson University Math Sciences
mjs AT clemson DOT edu
http://www.math.clemson.edu/~mjs
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ssh by user amandabackup [SOLVED]

2011-01-02 Thread Matthew Saltzman
On Sun, 2011-01-02 at 09:45 -0500, Matthew Saltzman wrote: 
> On Sun, 2011-01-02 at 00:14 -0800, Gordon Messmer wrote: 
> > On 01/01/2011 05:14 PM, Matthew Saltzman wrote:
> > >
> > > ssh with keys by a normal user works fine.  No error messages to be
> > > found in /var/log/secure on the client or with ssh -v on the server.
> > 
> > Does the output from "ssh -v" indicate that the correct key file is 
> > being offered?
> > 
> 
> Yes.  The relevant lines from ssh -v are
> 
> debug1: Next authentication method: publickey
> debug1: Offering public key: /var/lib/amanda/.ssh/id_rsa
> debug1: Authentications that can continue:
> publickey,gssapi-keyex,gssapi-with-mic,password
> debug1: Trying private key: /var/lib/amanda/.ssh/id_dsa
> debug1: Next authentication method: password
> amandabac...@client's password: 
> 
> So the key is being offered, but there is no acknowledgment from the
> client and no indication of any problem in the client's /var/log/secure.
> 
> Aha! In /var/log/messages, on the other hand, this happens:
> 
> Jan  2 09:40:36 yankee setroubleshoot: SELinux is preventing 
> /usr/sbin/sshd from search access on the directory /var/lib/amanda. For 
> complete SELinux messages. run sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5
> Jan  2 09:40:36 yankee setroubleshoot: SELinux is preventing 
> /usr/sbin/sshd from search access on the directory /var/lib/amanda. For 
> complete SELinux messages. run sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5
> 
> The full SELinux message is
> 
> $ sudo sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5
> SELinux is preventing /usr/sbin/sshd from search access on the 
> directory /var/lib/amanda.
> 
> *  Plugin catchall (100. confidence) suggests  
> ***
> 
> If you believe that sshd should be allowed search access on the 
> amanda directory by default.
> Then you should report this as a bug.
> You can generate a local policy module to allow this access.
> Do allow this access for now by executing:
> # grep /usr/sbin/sshd /var/log/audit/audit.log | audit2allow -M mypol
> # semodule -i mypol.pp
> 
> So I will file the bug.

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

-- 
Matthew Saltzman

Clemson University Math Sciences
mjs AT clemson DOT edu
http://www.math.clemson.edu/~mjs
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Johan Scheepers
On 01/02/2011 05:40 PM, Lucélio Gomes de Freitas wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA256
>
> Hi Johan,
>
> Try to use your logitech on 2.6.35.10-74.fc14.x86_64.   It works.
The package name?, please.
> Bye,
> Lucélio.
>
> Em 02-01-2011 15:24, Johan Scheepers escreveu:
>> Good day,
>>
>> Just installed skype and it is working.
>>
>> Can speak to otherside.
>> Can see the otherside.
>> Can hear the otherside.
>>
>> Now I would like to get a webcam going.
>>
>> Did some google but it seem that this is still in diapers??
>>
>> I do have a logitech (model unknown) for a few years.
>> Works fine on windows.
>>
>> Willing to buy a webcam that does work on fedora 14 x86_64.
>>
>> Kindly some pointers please.
>> Thanks
>> Johan
>>
> - -- 
> Lucélio Gomes de Freitas
> ETFCSF->  U.G.F.->  P.U.C.(RJ)
> Engº, Analista Suporte(Free Mind).
> Email: aa.luce...@gmail.com
> Tel: 55 0XX 21 85964911
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.11 (GNU/Linux)
> Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/
>
> iF4EAREIAAYFAk0gnEwACgkQENqGaHfBA/cLUQD/do0LMxN6wXcR+k91rFAkVbBo
> tCInuR4K1r2z7VRBq9oA/jhkJeKzCl3L681ntYORYK9fFvMJnV4KKFVJHCMNVao3
> =3EWU
> -END PGP SIGNATURE-
>

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Remote X display access

2011-01-02 Thread Tom Horsley
On Sun, 2 Jan 2011 10:32:05 -0500
Alex wrote:

> Also, how can I do this across the Internet? Wrap it in ssh?

Ssh X forwarding is the simplest solution. If you want GUI
access over a long latencty network connection you might want
to investigate freenx.

To get direct display access on the LAN you'll need to track
down and eradicate the -nolisten tcp option, which is easy to
do if you are logging in with KDM by simply editing the
nice simple /etc/kde/kdm/kdmrc file, bue if you are using
GDM, it involves stuff like sacrificing chickens at the
crossroads at midnight.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: skype on fedora 14 x86_64

2011-01-02 Thread Lucélio Gomes de Freitas

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Johan,

Try to use your logitech on 2.6.35.10-74.fc14.x86_64.   It works.

Bye,
Lucélio.

Em 02-01-2011 15:24, Johan Scheepers escreveu:
> Good day,
>
> Just installed skype and it is working.
>
> Can speak to otherside.
> Can see the otherside.
> Can hear the otherside.
>
> Now I would like to get a webcam going.
>
> Did some google but it seem that this is still in diapers??
>
> I do have a logitech (model unknown) for a few years.
> Works fine on windows.
>
> Willing to buy a webcam that does work on fedora 14 x86_64.
>
> Kindly some pointers please.
> Thanks
> Johan
>

- -- 
Lucélio Gomes de Freitas
ETFCSF-> U.G.F.-> P.U.C.(RJ)
Engº, Analista Suporte(Free Mind).
Email: aa.luce...@gmail.com
Tel: 55 0XX 21 85964911
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iF4EAREIAAYFAk0gnEwACgkQENqGaHfBA/cLUQD/do0LMxN6wXcR+k91rFAkVbBo
tCInuR4K1r2z7VRBq9oA/jhkJeKzCl3L681ntYORYK9fFvMJnV4KKFVJHCMNVao3
=3EWU
-END PGP SIGNATURE-

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Remote X display access

2011-01-02 Thread Alex
Hi,

What is the best way to securely permit a remote X application to
display on as local system?

I'm trying to get system-config-services to run on a remote FC14
x86_64 system to my local FC13 x86_64 system. It's on a local internal
network. I've tried setting the display and allowing access using
xhost, but it still appears to have an access control problem.

Also, how can I do this across the Internet? Wrap it in ssh?

Thanks,
Alex
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


skype on fedora 14 x86_64

2011-01-02 Thread Johan Scheepers
Good day,

Just installed skype and it is working.

Can speak to otherside.
Can see the otherside.
Can hear the otherside.

Now I would like to get a webcam going.

Did some google but it seem that this is still in diapers??

I do have a logitech (model unknown) for a few years.
Works fine on windows.

Willing to buy a webcam that does work on fedora 14 x86_64.

Kindly some pointers please.
Thanks
Johan

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ssh by user amandabackup [SOLVED]

2011-01-02 Thread Matthew Saltzman
On Sun, 2011-01-02 at 00:14 -0800, Gordon Messmer wrote: 
> On 01/01/2011 05:14 PM, Matthew Saltzman wrote:
> >
> > ssh with keys by a normal user works fine.  No error messages to be
> > found in /var/log/secure on the client or with ssh -v on the server.
> 
> Does the output from "ssh -v" indicate that the correct key file is 
> being offered?
> 

Yes.  The relevant lines from ssh -v are

debug1: Next authentication method: publickey
debug1: Offering public key: /var/lib/amanda/.ssh/id_rsa
debug1: Authentications that can continue:
publickey,gssapi-keyex,gssapi-with-mic,password
debug1: Trying private key: /var/lib/amanda/.ssh/id_dsa
debug1: Next authentication method: password
amandabac...@client's password: 

So the key is being offered, but there is no acknowledgment from the
client and no indication of any problem in the client's /var/log/secure.

Aha! In /var/log/messages, on the other hand, this happens:

Jan  2 09:40:36 yankee setroubleshoot: SELinux is preventing 
/usr/sbin/sshd from search access on the directory /var/lib/amanda. For 
complete SELinux messages. run sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5
Jan  2 09:40:36 yankee setroubleshoot: SELinux is preventing 
/usr/sbin/sshd from search access on the directory /var/lib/amanda. For 
complete SELinux messages. run sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5

The full SELinux message is

$ sudo sealert -l d477003b-6568-4441-95d8-60bda5a6c0e5
SELinux is preventing /usr/sbin/sshd from search access on the 
directory /var/lib/amanda.

*  Plugin catchall (100. confidence) suggests  
***

If you believe that sshd should be allowed search access on the amanda 
directory by default.
Then you should report this as a bug.
You can generate a local policy module to allow this access.
Do allow this access for now by executing:
# grep /usr/sbin/sshd /var/log/audit/audit.log | audit2allow -M mypol
# semodule -i mypol.pp

So I will file the bug.
-- 
Matthew Saltzman

Clemson University Math Sciences
mjs AT clemson DOT edu
http://www.math.clemson.edu/~mjs
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Tom H
On Sun, Jan 2, 2011 at 7:27 AM, Dick Holland  wrote:
> On Sun, 2011-01-02 at 07:10 -0500, Tom H wrote:
>> On Sun, Jan 2, 2011 at 6:27 AM, Dick Holland  wrote:
>>
>> > Sending "dig -t  google.com" to my local DNS server:
>> >
>> > So the "no response" I guess means IPv6 is not supported by the server.
>> >
>> > Sending "dig -t  google.com" to my ISP's DNS servers:
>> >
>> > No answer from the ISP either! So I guess that means they don't support
>> > IPv6 either.
>>
>> I don't think that google.com has an ipv6 address. I think that you
>> have to query ipv6.google.com.
>
> The test is not for google, it's to see if the ISP's DNS servers would
> respond to a request for an IPv6  record.

google.com doesn't have an ipv6 address so your test is incorrect,
query your DNS server and your ISP's DNS server for ipv6.google.com
and compare the result to:
dig @8.8.8.8 -t  google.com
and
dig @8.8.8.8 -t  ipv6.google.com
or
dig @208.67.222.222 -t  google.com
and
dig @208.67.222.222 -t  ipv6.google.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: xmms fedora 14 x86_64

2011-01-02 Thread David Timms
On 30/12/10 06:00, Kevin Fenzi wrote:
> On Wed, 29 Dec 2010 20:36:57 +0200
> Johan Scheepers  wrote:
> 
>> Good day,
>>
>> After a lot of google and wrong downloads I am still without xmms.
>>
>> Kindly point me to the correct xmms for fedora 14 x86_64 please.
> 
> They are in the main fedora repo?
yum search xmms*
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: Various conflicts in updates

2011-01-02 Thread David Timms
On 31/12/10 05:14, Chris Liebenberg - Business Connexion wrote:
> I'm running all my updates and some work but others don't. There seem to be a 
> conflict between Kernel and Glib. see output below:
>  su -c 'yum --enablerepo=updates-testing update kernel'
give us:

1:
yum repolist

2:
yum --enablerepo=updates-testing list kernel --showduplicates

But at first look, you might be running f13, but have
f14-updates-testing repo configured.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Dick Holland

On Sun, 2011-01-02 at 12:27 +, Dick Holland wrote:
> On Sun, 2011-01-02 at 07:10 -0500, Tom H wrote:
> > On Sun, Jan 2, 2011 at 6:27 AM, Dick Holland  wrote:
> > 
> > 
> > > Sending "dig -t  google.com" to my local DNS server:
> > >
> > > So the "no response" I guess means IPv6 is not supported by the server.
> > >
> > > Sending "dig -t  google.com" to my ISP's DNS servers:
> > >
> > > No answer from the ISP either! So I guess that means they don't support
> > > IPv6 either.
> > 
> > I don't think that google.com has an ipv6 address. I think that you
> > have to query ipv6.google.com.
> > 
> 
> The test is not for google, it's to see if the ISP's DNS servers would
> respond to a request for an IPv6  record.
> 
> > 
> > > All this leaves me with one question: is there a way of turning off
> > > these IPv6 DNS requests in Fedora?
> > 
> > Disable ipv6.
> 
> I have disabled IPv6 by adding an "install ipv6 /bin/true" line
> into /etc/modprobe.d/dist.conf and by disabling the ip6tables Service.
> This does allow Firefox to find web sites (whihc it would not do
> before), but does not allow telnet or ftp to work. The results are
> excatly as before. So that seems to indicate that even after disabling
> IPv6, IPv6 DNS requests are still being issued.
> 

Tom, I'll try the test you suggested and post the result.

-- 
Dick Holland

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Dick Holland

On Sun, 2011-01-02 at 07:10 -0500, Tom H wrote:
> On Sun, Jan 2, 2011 at 6:27 AM, Dick Holland  wrote:
> 
> 
> > Sending "dig -t  google.com" to my local DNS server:
> >
> > So the "no response" I guess means IPv6 is not supported by the server.
> >
> > Sending "dig -t  google.com" to my ISP's DNS servers:
> >
> > No answer from the ISP either! So I guess that means they don't support
> > IPv6 either.
> 
> I don't think that google.com has an ipv6 address. I think that you
> have to query ipv6.google.com.
> 

The test is not for google, it's to see if the ISP's DNS servers would
respond to a request for an IPv6  record.

> 
> > All this leaves me with one question: is there a way of turning off
> > these IPv6 DNS requests in Fedora?
> 
> Disable ipv6.

I have disabled IPv6 by adding an "install ipv6 /bin/true" line
into /etc/modprobe.d/dist.conf and by disabling the ip6tables Service.
This does allow Firefox to find web sites (whihc it would not do
before), but does not allow telnet or ftp to work. The results are
excatly as before. So that seems to indicate that even after disabling
IPv6, IPv6 DNS requests are still being issued.

-- 
Dick Holland

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Setting up an svn server howto

2011-01-02 Thread Paul F. Johnson
Hi,

I'm using F14 and need to set up an svn server without going through the
fun and games that is apache and mod_web_dav.

Can anyone point me in the direction of a good, simple to follow how to
on setting up an svn server please?

Ta

Paul
-- 
Vertraue mir, ich weiss, was ich mache...

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Tom H
On Sun, Jan 2, 2011 at 6:27 AM, Dick Holland  wrote:


> Sending "dig -t  google.com" to my local DNS server:
>
> So the "no response" I guess means IPv6 is not supported by the server.
>
> Sending "dig -t  google.com" to my ISP's DNS servers:
>
> No answer from the ISP either! So I guess that means they don't support
> IPv6 either.

I don't think that google.com has an ipv6 address. I think that you
have to query ipv6.google.com.


> All this leaves me with one question: is there a way of turning off
> these IPv6 DNS requests in Fedora?

Disable ipv6.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Dick Holland

On Sun, 2011-01-02 at 08:45 +, Dick Holland wrote:
> On Sun, 2011-01-02 at 00:33 -0800, Gordon Messmer wrote:
> > On 01/01/2011 05:59 AM, Dick Holland wrote:
> > > I've installed F14 on a box that was running F8 (I know, I know...) and
> > > DNS is not working properly.
> > ...
> > > I've trawled the forums and mailing list archives and I've searched
> > > Redhat bugzilla. I've seen references to 64-bit DNS problems in F10-F11,
> > > but nothing still open that I can find.
> > 
> > You might be running into this:
> > https://bugzilla.redhat.com/show_bug.cgi?id=505505
> > 
> > As far as I can tell, DNS won't work unless your DNS server supports 
> > IPv6 () queries.  If this sounds like your problem, I'd appreciate 
> > the input.  The glibc devs have been ignoring this.
> > 
> > I'm not sure if dig can tell you what you need to know here.  You could 
> > try "dig -t  google.com" and see what you get.  Otherwise, try to 
> > use "tcpdump -w /var/tmp/dns.dump -s0 port 53" to capture the DNS lookup 
> > that happens when you try to connect with telnet.  Use Ctrl+C to stop 
> > capturing, and then send /var/tmp/dns.dump back to the list.
> 
> Gordon, that bug report certainly looks promising, doesn't it? I'll try
> those commands you suggest and post the results. I'm a bit suspicious,
> though, as I have tried removing my local DNS server from the config and
> using only my ISP's servers. I got exactly the same result (see my
> response to Doc earlier in this thread); I guess if my ISP's DNS servers
> don't support IPv6 then none of their customers can be using recent
> Fedoras. 
> 
> I'll try the commands you suggested on both configs: with my DNS server
> in; and with it out.
> 
> 
> -- 
> Dick Holland

OK, here are the results of making IPv6 type  DNS requests.

--
Sending "dig -t  google.com" to my local DNS server:

; <<>> DiG 9.7.2-P2-RedHat-9.7.2-2.P2.fc14 <<>> -t  google.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39018
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available

;; QUESTION SECTION:
;google.com.IN  

;; Query time: 5 msec
;; SERVER: 192.168.181.254#53(192.168.181.254)
;; WHEN: Sun Jan  2 08:56:13 2011
;; MSG SIZE  rcvd: 28


So the "no response" I guess means IPv6 is not supported by the server.

--
Sending "dig -t  google.com" to my ISP's DNS servers:

; <<>> DiG 9.7.2-P2-RedHat-9.7.2-2.P2.fc14 <<>> -t  google.com
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 39018
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available

;; QUESTION SECTION:
;google.com.IN  

;; Query time: 5 msec
;; SERVER: 194.168.4.100#53(194.168.4.100)
;; WHEN: Sun Jan  2 09:05:52 2011
;; MSG SIZE  rcvd: 28


No answer from the ISP either! So I guess that means they don't support
IPv6 either.

--
Just to be sure, here's resolv.conf for that last dig:

# Generated by NetworkManager
search xegetix.com
nameserver 194.168.4.100
nameserver 194.168.8.100

--
So I'm sure my DNS server wasn't being queried. I've also been to my
ISP's website and established that they don't support - and have no
plans to support - IPv6. In fact there are A LOT of complaints on their
support forums about this! The ISP is Virgin Media in the UK who are the
largest - if not the only - cable broadband ISP in the UK. 

If there is no way of turning the IPv6 requests off, Virgin Media
customers cannot use Fedora!

Thank you, Gordon, you were absolutely spot on by the looks of it. 

All this leaves me with one question: is there a way of turning off
these IPv6 DNS requests in Fedora?

-- 
Dick Holland

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ssh by user amandabackup

2011-01-02 Thread François Patte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le 02/01/2011 02:14, Matthew Saltzman a écrit :
> I'm trying to set up amanda using the amaddclient command.  That
> requires that user amandabackup be able to log into the client machine
> using ssh keys.
> 
> I've generated the keys on the server machine, copied the public key to
> the client machine in /var/lib/amanda/.ssh/authorized_keys
> (/var/lib/amanda is amandabackup's home directory).  I believe all file
> protections are set correctly--they mirror the ones for a regular user.
> But ssh fails to use the keys and prompts for a password.

Did you give some permission to selinux?

- --
François Patte
UFR de mathématiques et informatique
Université Paris Descartes
45, rue des Saints Pères
F-75270 Paris Cedex 06
Tél. +33 (0)1 4286 2145
http://www.math-info.univ-paris5.fr/~patte
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/

iEYEARECAAYFAk0gQNIACgkQdE6C2dhV2JWoXgCaA0qp1ObJDme7QXRTy0FxyaHJ
AkUAnjQWDDCjiJ9LbkOBv7sfJwuJNO61
=/0fS
-END PGP SIGNATURE-
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Dick Holland

On Sun, 2011-01-02 at 00:33 -0800, Gordon Messmer wrote:
> On 01/01/2011 05:59 AM, Dick Holland wrote:
> > I've installed F14 on a box that was running F8 (I know, I know...) and
> > DNS is not working properly.
> ...
> > I've trawled the forums and mailing list archives and I've searched
> > Redhat bugzilla. I've seen references to 64-bit DNS problems in F10-F11,
> > but nothing still open that I can find.
> 
> You might be running into this:
> https://bugzilla.redhat.com/show_bug.cgi?id=505505
> 
> As far as I can tell, DNS won't work unless your DNS server supports 
> IPv6 () queries.  If this sounds like your problem, I'd appreciate 
> the input.  The glibc devs have been ignoring this.
> 
> I'm not sure if dig can tell you what you need to know here.  You could 
> try "dig -t  google.com" and see what you get.  Otherwise, try to 
> use "tcpdump -w /var/tmp/dns.dump -s0 port 53" to capture the DNS lookup 
> that happens when you try to connect with telnet.  Use Ctrl+C to stop 
> capturing, and then send /var/tmp/dns.dump back to the list.

Gordon, that bug report certainly looks promising, doesn't it? I'll try
those commands you suggest and post the results. I'm a bit suspicious,
though, as I have tried removing my local DNS server from the config and
using only my ISP's servers. I got exactly the same result (see my
response to Doc earlier in this thread); I guess if my ISP's DNS servers
don't support IPv6 then none of their customers can be using recent
Fedoras. 

I'll try the commands you suggested on both configs: with my DNS server
in; and with it out.


-- 
Dick Holland

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Dick Holland

On Sat, 2011-01-01 at 12:59 -0600, Robert G. (Doc) Savage wrote:
> On Sat, 2011-01-01 at 16:51 +, Dick Holland wrote:
> > Doc, here's /etc/nsswitch.conf:
> > 
> > #
> > # /etc/nsswitch.conf
> > #
> > # An example Name Service Switch config file. This file should be
> > # sorted with the most-used services at the beginning.
> > #
> > # The entry '[NOTFOUND=return]' means that the search for an
> > # entry should stop if the search in the previous entry turned
> > # up nothing. Note that if the search failed due to some other reason
> > # (like no NIS server responding) then the search continues with the
> > # next entry.
> > #
> > # Valid entries include:
> > #
> > #   nisplus Use NIS+ (NIS version 3)
> > #   nis Use NIS (NIS version 2), also called YP
> > #   dns Use DNS (Domain Name Service)
> > #   files   Use the local files
> > #   db  Use the local database (.db) files
> > #   compat  Use NIS on compat mode
> > #   hesiod  Use Hesiod for user lookups
> > #   [NOTFOUND=return]   Stop searching if not found so far
> > #
> > 
> > # To use db, put the "db" in front of "files" for entries you want to be
> > # looked up first in the databases
> > #
> > # Example:
> > #passwd:db files nisplus nis
> > #shadow:db files nisplus nis
> > #group: db files nisplus nis
> > 
> > passwd: files
> > shadow: files
> > group:  files
> > 
> > #hosts: db files nisplus nis dns
> > hosts:  files dns
> 
> This is your resolution order -- local files (/etc/hosts) first, then
> DNS. This is the default setting, so it's probably not your problem.
> 
> > 
> > # Example - obey only what nisplus tells us...
> > #services:   nisplus [NOTFOUND=return] files
> > #networks:   nisplus [NOTFOUND=return] files
> > #protocols:  nisplus [NOTFOUND=return] files
> > #rpc:nisplus [NOTFOUND=return] files
> > #ethers: nisplus [NOTFOUND=return] files
> > #netmasks:   nisplus [NOTFOUND=return] files 
> > 
> > bootparams: nisplus [NOTFOUND=return] files
> > 
> > ethers: files
> > netmasks:   files
> > networks:   files
> > protocols:  files
> > rpc:files
> > services:   files
> > 
> > netgroup:   nisplus
> > 
> > publickey:  nisplus
> > 
> > automount:  files nisplus
> > aliases:files nisplus
> > 
> > --
> > 
> > 
> > Thanks for your amazingly quick response!
> 
> I'm kinda amazed I was up at that hour on New Year's Day! :-)
> 
> >From /etc/resolv.conf in your first message I see your DNS search order
> is:
> 
> nameserver 192.168.181.254
> nameserver 194.168.4.100
> nameserver 194.117.134.19
> 
> and your /etc/hosts contains:
> 
> 192.168.181.122 cobalt.xegetix.com  cobalt  # Added by 
> NetworkManager
> 
> >From this I'd say you're running a local DNS service on your local
> gateway router. Was that your intent? If not, reconfigure NetworkManager
> to remove that entry (and regain access to that third external DNS
> server).
> 

Yes, that's correct. I use a local DNS server as I've other boxes on the
LAN with static IP addresses. I have tried removing the local DNS server
and using all three of the ISP's DNS servers; the results,
unfortunately, were exactly the same.

So I'm completely stumped. It must be something I'm doing wrong - it
seems to me to be improbable that F14 does this out of the box for
others without getting fixed pretty quickly!

BTW, the box uses a pretty standard Gigabyte motherboard with an onboard
Realtek gigabit ethernet port, so I'm sure it's not the hardware's
fault. The fingers all point to me, don't they?

-- 
Dick Holland

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: DNS not working in Fedora 14

2011-01-02 Thread Gordon Messmer
On 01/01/2011 05:59 AM, Dick Holland wrote:
> I've installed F14 on a box that was running F8 (I know, I know...) and
> DNS is not working properly.
...
> I've trawled the forums and mailing list archives and I've searched
> Redhat bugzilla. I've seen references to 64-bit DNS problems in F10-F11,
> but nothing still open that I can find.

You might be running into this:
https://bugzilla.redhat.com/show_bug.cgi?id=505505

As far as I can tell, DNS won't work unless your DNS server supports 
IPv6 () queries.  If this sounds like your problem, I'd appreciate 
the input.  The glibc devs have been ignoring this.

I'm not sure if dig can tell you what you need to know here.  You could 
try "dig -t  google.com" and see what you get.  Otherwise, try to 
use "tcpdump -w /var/tmp/dns.dump -s0 port 53" to capture the DNS lookup 
that happens when you try to connect with telnet.  Use Ctrl+C to stop 
capturing, and then send /var/tmp/dns.dump back to the list.
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines


Re: ssh by user amandabackup

2011-01-02 Thread Gordon Messmer
On 01/01/2011 05:14 PM, Matthew Saltzman wrote:
>
> ssh with keys by a normal user works fine.  No error messages to be
> found in /var/log/secure on the client or with ssh -v on the server.

Does the output from "ssh -v" indicate that the correct key file is 
being offered?
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines