Re: PackageKit run scheduling?

2009-04-23 Thread Richard Hughes
On Thu, 2009-04-23 at 01:41 +0200, Kevin Kofler wrote:
> Speaking of that, is there any chance we can have PackageKit 0.4 in F10
> updates at some point? KPackageKit 0.4 requires it and there are plenty of
> improvements there over the old 0.3.1 release we're currently shipping.

There's no technical reason why this can't be done. I talked with Steven
M. Parrish a few weeks ago and he said:

"My opinion is to leave F9/F10 with the 0.3.x family and only upgrade
if/when all the translations are done or if a new feature in the 0.4.x
family is needed."

Which I agreed with. Most of the new strings in PK 0.4 have now been
translated, and so if you need the 0.4.x features, it might be a good
time to upgrade. My only slight worry is the fact that the codec
installer interface has changed slightly, so we'll need a newer build of
gnome-packagekit, which depends on a newer GTK.

It might be best to create a PackageKit franken-package with the same
interfaces as F10 (quite easy with git), and still get all the daemon
and backend improvements of 0.4.x.

Richard.


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


Re: Patching Vanilla Kernels with Fedora Patches

2009-04-23 Thread Alan Cox
>Driver for XOrg in order to fix a problem with the version of the driver I 
>had. As I understand it, the latest version of the Intel Graphics Driver uses 
>libraries that have been moved into the kernel with version 2.6.28.

The kernel doesn't provide libraries for the X server or 3D. It could be
the newest X needs a newer version of the kernel 3D code.

> Is it possible to apply the Fedora-specific patches for my Fedora Kernel (I 
> have the source code for 2.6.27.19-170.2.35.fc10.i686 ) to the Vanilla 
> 2.6.28.6 kernel in order to see if this fixes my drive speeds?

I don't believe it has any changes in that area.

The windows world way of trying to sort a problem by randomly swapping
versions of components until it runs is probably the wrong way to solve
this one.

If your CD drive is running slowly check your kernel configuration is
correct and you have the correct libata drivers enabled. Check the boot
messages (dmesg) and see what modes are being selected and which driver
used.

If that doesn't solve the problem then following up here further with
some actual detail (controller type, cd type, section of boot messages
etc) has a better chance of making progress.

Alan

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


[OT] sed command to add line after matching lines

2009-04-23 Thread Dan Track
Hi

I appreciate this is off-topic but I would be grateful for some help
on this. Basically,I want to add a few lines after matching a couple
of lines in a file using sed, can someone please tell me how to do
this.

Lines to match

server 10.33.45.3
server ldap.example.com
server orion

I want to comment these lines so they become:

# server 10.33.45.3
# server ldap.example.com
# server orion

Then append these lines after the commented lines

server fire.example.com
server earth.example.com
server space.example.com


So I should end up with:

# server 10.33.45.3
# server ldap.example.com
# server orion

server fire.example.com
server earth.example.com
server space.example.com

Please bear in mind there is a lot of other text in this file not just
the above and all the other text should remain untouched.

Thanks for you help in advance.
Dan

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


Re: [OT] sed command to add line after matching lines

2009-04-23 Thread Sharpe, Sam J

Dan Track wrote:

Hi

I appreciate this is off-topic but I would be grateful for some help
on this. Basically,I want to add a few lines after matching a couple
of lines in a file using sed, can someone please tell me how to do
this.

Lines to match

server 10.33.45.3
server ldap.example.com
server orion

I want to comment these lines so they become:

# server 10.33.45.3
# server ldap.example.com
# server orion

Then append these lines after the commented lines

server fire.example.com
server earth.example.com
server space.example.com


So I should end up with:

# server 10.33.45.3
# server ldap.example.com
# server orion

server fire.example.com
server earth.example.com
server space.example.com

Please bear in mind there is a lot of other text in this file not just
the above and all the other text should remain untouched.

I don't think you can match only when you hit three lines in succession 
because sed is supposed to operate on one line at a time, which is what 
I think you are asking for. If all you want to do is comment out each of 
those lines and add some new ones, you could try the quick and dirty way:


$ cat testfile
server 10.33.45.3
server ldap.example.com
server orion
$ cat testfile | sed -e 's/^server 10.33.45.3$/# server 10.33.45.3/g' -e 
's/^server ldap.example.com$/# server ldap.example.com/g' -e 's/^server 
orion$/# server orion\n\nserver fire.example.com\nserver 
earth.example.com\nserver space.example.com/g'

# server 10.33.45.3
# server ldap.example.com
# server orion

server fire.example.com
server earth.example.com
server space.example.com

But if your lines are out of order, then you might end up with something 
like this:


$ cat testfile2
server 10.33.45.3
server orion
server ldap.example.com
$ cat testfile2 | sed -e 's/^server 10.33.45.3$/# server 10.33.45.3/g' 
-e 's/^server ldap.example.com$/# server ldap.example.com/g' -e 
's/^server orion$/# server orion\n\nserver fire.example.com\nserver 
earth.example.com\nserver space.example.com/g'

# server 10.33.45.3
# server orion

server fire.example.com
server earth.example.com
server space.example.com
# server ldap.example.com

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


Re: Q about installing F10 from Live DVD

2009-04-23 Thread psmith

suvayu ali wrote:

2009/4/22 psmith :
  

suvayu ali wrote:


Thanks for the thought, but I'm aware of the XFCE Live CDs. My
question is since live CDs don't offer the option to choose the kind
of install, not even the option to choose the partition on the disk,
upgrading to a clean XFCE desktop is not possible without loosing my
current partitioning scheme. Is my understanding correct here?

  

no this is not correct, when you choose install to disk from the livecd
desktop it starts anaconda and you can set the keyboard and language
settings as well as set up custom partitions, or tell it to use existing
partitions no problem, the only thing i found that was i had persistence set
on my live usb and when i did finaly get round to installing to the hard
drive none of the stuff that i had changed since first running the live usb
(eg the stuff on the persistent part of it) didn't get transferred across,
now this was with the f11 beta xfce snapshot so i'm not sure if it's just a
problem with that spin, or if it happens with all live spins.

phil



Thank you Phil for correcting my misconceptions. This is great news
for me. Now I can move to a completely Gnome free XFCE desktop for
F11. :)

  
don't be too sure about that, there are still some gnome dependencies on 
a fedora xfce install ;)


phil

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


Re: Q about installing F10 from Live DVD

2009-04-23 Thread psmith

jackson byers wrote:

ect: Re: Q about installing F10 from Live DVD
jackson byers wrote:
> Well, the f10liveinstall cd didnt work for me,
> ( see f10 liveinstall cd trashed my main fc5)

Well, FC5 is long out of support, that's what you get for waiting so long
until you finally upgrade. (Hint: you're supposed to upgrade at each or
every other release, not wait 5 releases and then install in parallel,
still keeping the totally outdated version.)

�� Kevin Kofler
-
jbyers;
I am fully aware that I was/am way out of date, and fully nonsupported 
in fc5.

I _was_� trying to install the current f10�
(which i think you would encourage)
but wanted to retain fc5 until i successfully installed f10,
surely a safe practice.

Instead I� got my main fc5 clobbered by
some combination of
--my own inexperience
--a live/install cd that did not have a "custom" option.
� or i� couldnt see it.

David's experience also was that there was no custom option.

I purchased my cd from OSDisc.com
Fedora 10 KDE Edition - install/Live CD

is this some outdated version?
or a deficient version?
not officially supported?
How is one to know?

Jack 
you simply clicked next on the partitioning screen with the drop down 
box that said "replace my existing linux install" instead of clicking 
said drop down box and choosing custom. user error all the way. afaik 
the live cd's have had custom partitioning since at least f9 if not 
before then!


phil

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


Re: Question(s) default firewall in Fedora

2009-04-23 Thread Robert Locke
On Thu, 2009-04-23 at 12:13 +0930, Tim wrote:
> On Tue, 2009-04-21 at 19:17 -0700, Antonio Olivares wrote:

> > [r...@localhost ~]# service iptables status
> > Table: filter
> > Chain INPUT (policy ACCEPT)
> > num  target prot opt source   destination 
> > 1ACCEPT all  --  0.0.0.0/00.0.0.0/0   state 
> > RELATED,ESTABLISHED 
> > 2ACCEPT icmp --  0.0.0.0/00.0.0.0/0   
> > 3ACCEPT all  --  0.0.0.0/00.0.0.0/0   
> > 4ACCEPT tcp  --  0.0.0.0/00.0.0.0/0   state NEW 
> > tcp dpt:22 
> > 5REJECT all  --  0.0.0.0/00.0.0.0/0   
> > reject-with icmp-host-prohibited 

> The third rule allows all traffic, no matter what.  Which contradicts
> the first rule.  Something's been badly set up, here.


Hi Tim,

I just wanted to clarify that third rule for you.  Nothing has been
"badly set up".  The real problem is that "service iptables status" does
not tell you the "whole" story, it's equivalent to "iptables -L".
Instead, the OP should use the command "iptables -vL".  The -v turns the
output to verbose and will display a pair of additional columns, the
incoming and outgoing interface.  I assume (admittedly I could be bitten
on this), since the above seems rather "default", that the missing
columns will identify that the incoming interface is set to "lo" or
loopback on that third rule.  So the third rule is allowing all inbound
traffic from other "local processes", not "remote".  It is one of
the default rules when one first Enables the firewall using the
system-config tools.

HTH,

--Rob

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


Problems playing .avi files

2009-04-23 Thread Aaron Konstam
-

I am still on F9 and I am having problems playing .avi files.
Can someone offer some suggestions?
vlc can't recognize the format, other programs say the codecs are
missing. So what can I do?

--
===
Let's send the Russians defective lifestyle accessories!
===
Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net

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


Re: F10 recent network problem

2009-04-23 Thread Simon Andrews

Dennis Mattingly wrote:

Hello,
I have Fedora 10 on my Home-Desktop.
I enjoy it a lot, but this recent issue is bugging me.

My internet suddenly broke last week.
The problem looks like my router, but I swear it's not the router.

ORIGINAL SETUP
Duration: Last 5 months
Setup: Connect Computer -> Router -> CableBox
Result: INTERNET works good

But now this setup doesn't work anymore.

CURRENT PROBLEM
Duration: Started Last week
Setup: Connect Computer -> Router -> CableBox (same setup as before)
Result: INTERNET is broken

$ ping (router IP address)
Network is unavailable

$ service network start
Bringing up loopback interface:[  OK  ]
Bringing up interface eth0: 
Determining IP information for eth0...PING 70.179.96.1 (70.179.96.1) 
from 70.179.101.94 eth0: 56(84) bytes of data.


--- 70.179.96.1 ping statistics ---
4 packets transmitted, 0 received, +3 errors, 100% packet loss, time 3000ms
pipe 3
 failed.[FAILED]


A few other things which might be relevant:

Have you tried to disable the firewall and restart the network:

[as root]

service iptables stop

service network stop

service NetworkManager restart

..if that doesn't help then post the output from

[as root]

route -n

ethtool eth0

ifconfig eth0

ping 127.0.0.1

chkconfig --list | grep [35]:on

..which may shed some light on what's going on.


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


Re: Problems playing .avi files

2009-04-23 Thread Patrick O'Callaghan

On 04/23/2009 10:17 AM, Aaron Konstam wrote:

-

I am still on F9 and I am having problems playing .avi files.
Can someone offer some suggestions?
vlc can't recognize the format, other programs say the codecs are
missing. So what can I do?


.avi is a packaging format for media files, so it can contain streams 
that require an assortment of different codecs. You don't say what 
codecs are missing.


poc

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


Re: CPU frequency scaling problems in F10

2009-04-23 Thread Ryan Lynch
I fixed this, so in case anybody else runs into a similar problem, here you
go:

 As I understand it, a kernel ACPI facility called "PPC", related to how
processors express their capabilities to the OS, is faulty, or the machine
BIOS is faulty. Either way, this PPC facility is incorrectly warning the CPU
Frequency scaling facility that the CPU is running too fast, which causes
the scaling facility to slow down unnecessarily.


This requires a kernel or BIOS update to fix, but there is a decent
workaround: Set the 'processor' module parameter called 'ignore_ppc' from
the default '0' value to '1'. At runtime, you can set it via the R/W SysFS
node '/sys/module/processor/parameters/ignore_ppc'. At boot time, use the
option 'processor.ignore_ppc=1'--I added this to 'grub.conf'.


See
http://kerneltrap.org/index.php?q=mailarchive/linux-kernel/2008/5/23/1922554/threadfor
more information.


On Mon, Apr 20, 2009 at 2:40 PM, Ryan Lynch  wrote:

> I'm using the latest F10 updates on a Dell Inspiron 8600 notebook (Pentium
> M 1.4 GHz), and the CPU frequency scaling appears to be malfunctioning.  I
> think this is a new issue, but it's hard to say--I only noticed it recently,
> but it's possible that I just wasn't paying attention.
>
> Basically, the system won't let me set the CPU frequency to the maximum
> (1400 MHz), and it keeps fluctuating between 1000 and 1200 MHz as the load
> on the system changes.  Also, the fluctuations are kind of random:  Even if
> the load average is above 2.0 and rising, the frequency will stay at 1000
> MHz as the box starts to choke up.  The machine is basically unuseable under
> KDE4, right now--I'm struggle just to type this email.
>
> I tried selecting the "performance" option from the system tray applet,
> which I've read is supposed to peg the CPU frequency at the highest level.
>  No effect.  I've also tried exiting from the applet, killing the HAL cpu
> daemon, and setting manual minimum/maximum values via Sysfs.  This last
> trick rejected 1400 MHz as a valid setting, even though Sysfs reports it as
> one of the available frequencies, and in any event it wouldn't stick--the
> machine switched back to 1000 MHz after a few minutes.
>
> I'm not running 'cpuspeed' or 'cpufreqd' or anything like that, as far as I
> know.
>
> Is there something I'm missing, here?
>
> -Ryan
>
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: [OT] sed command to add line after matching lines

2009-04-23 Thread Joe Smith

Dan Track wrote:

... I want to add a few lines after matching a couple of lines in a
file using sed, ...


sed can be awkward when working with more than one line at a time.

Can you use perl?

$ perl -pe 'BEGIN{undef $/};s/server 10.33.45.3\nserver 
ldap.example.com\nserver orion/# server 10.33.45.3\n# server 
ldap.example.com\n# server orion\n\nserver fire.example.com\nserver 
earth.example.com\nserver space.example.com\n/s' 

(That's meant to be all on one line.)

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


Re: No sound on Fedora 10 XFCE

2009-04-23 Thread Kevin Fenzi
On Tue, 21 Apr 2009 15:10:58 -0700 (PDT)
Erick Martínez  wrote:

> Hello! can anybody bring me some help, pls? No problem with Gnome
> (sound is ok), but I'm trying to test Fedora 10 XFCE. The problem is
> that I can't make the sound work. My Thinkpad is mute!!! Pulseaudio
> is active in the autostarted scripts/applications section. When I
> open the Volume control, after half a second, a popup window appears
> over the volume window, and it says Connection failed: Connection
> terminated, then closes with no more hints. Can anybody help me?
> (sound chip is ESS ES1938 Solo 1). Thanks in advance!

Is pulseaudio running? Xfce will start it by default, so no need to run
it it in autostarted applications. 

Anything in ~/.xsession-errors ?

> Erick Martinez

kevin


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

Re: Q about installing F10 from Live DVD

2009-04-23 Thread jackson byers
David's experience also was that there was no custom option.

I purchased my cd from OSDisc.com
Fedora 10 KDE Edition - install/Live CD

is this some outdated version?
or a deficient version?
not officially supported?
How is one to know?

Jack

you simply clicked next on the partitioning screen with the drop down box
that said "replace my existing linux install" instead of clicking said drop
down box and choosing custom. user error all the way. afaik the live cd's
have had custom partitioning since at least f9 if not before then!

phil
---
jbyers:
I don't doubt that I somehow got into "user error all the way".
But I was quite conscious that I did not want "replace my existing linux
install"
and would certainly not have clicked it.
If you are correct,
then if i somehow got into "custom"  then I may well have still managed to
botch it.

I still find it curious however that David also thought there was no obvious
"custom"
leading me to think there could be  differences on various versions of the
liveinstallcd.

Another question:
this thread "Q about installing F10 from Live DVD"
implies  it is a  DVD not a CD.
Do both versions exist? I have a CD not a DVD

And one final question:
Does the "custom" option include choice of not installing  grub to mbr?

Jack

Does the "custom" include  ability to not install grub on the mbr?
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
Just writing to report that Konqueror has become mostly unusable after I
installed updates this morning.

/var/log/yum.log entries for this morning:

Apr 23 10:06:10 Updated: glib2-2.18.4-2.fc10.i386
Apr 23 10:06:14 Updated: libX11-1.1.5-3.fc10.i386
Apr 23 10:06:14 Updated: gnome-python2-extras-2.19.1-29.fc10.i386
Apr 23 10:06:19 Updated: evolution-data-server-doc-2.24.5-5.fc10.i386
Apr 23 10:06:25 Updated: libX11-devel-1.1.5-3.fc10.i386
Apr 23 10:06:30 Updated: xulrunner-1.9.0.9-1.fc10.i386
Apr 23 10:06:35 Updated: 6:kdebase-libs-4.2.2-3.fc10.i386
Apr 23 10:06:40 Updated: evolution-data-server-2.24.5-5.fc10.i386
Apr 23 10:06:53 Updated: 6:kdebase-4.2.2-3.fc10.i386
Apr 23 10:07:26 Updated: devhelp-0.22-7.fc10.i386
Apr 23 10:07:42 Updated: xulrunner-devel-1.9.0.9-1.fc10.i386
Apr 23 10:07:53 Updated: yelp-2.24.0-8.fc10.i386
Apr 23 10:07:56 Updated: gnome-python2-libegg-2.19.1-29.fc10.i386
Apr 23 10:07:56 Updated: gnome-python2-gtkhtml2-2.19.1-29.fc10.i386
Apr 23 10:08:00 Updated: initscripts-8.86.3-1.i386
Apr 23 10:08:05 Updated: glib2-devel-2.18.4-2.fc10.i386
Apr 23 10:08:08 Updated: evolution-data-server-devel-2.24.5-5.fc10.i386
Apr 23 10:08:14 Updated: firefox-3.0.9-1.fc10.i386
Apr 23 10:08:17 Updated: google-gadgets-0.10.5-5.fc10.i386
Apr 23 10:08:18 Updated: google-gadgets-qt-0.10.5-5.fc10.i386

After this update, Konqueror seems to be very slow in displaying a web
page.  And when it does display it, you can't scroll it.   Scrolling
attempts to move the page up and down, but its not redrawing correctly
at all and thus the page becomes unreadable. 




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


Flash player "Settings" menu, 64-bit

2009-04-23 Thread Rick Stevens

Ok, I've got one.  I'm trying to do some testing for a client using a
video chat system based on Flash.  Flash simply won't use the camera or
mic on my system although both work just fine in ekiga, cheese, skype,
you name it.  In fact, a right click in the Flash pages on the client's
site brings up the Flash control panel, but the "Settings..." option
is greyed out.

Anyone else run into this?  Any suggestions on how to fix it?

Oh, Fedora 10-x86_64 fully updated, FireFox 3.0.8, 64-bit Flash player,
10,0,22,87 (also tried with 32-bit with nswrapper).
--
- Rick Stevens, Systems Engineer  ri...@nerd.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-  Consciousness: that annoying time between naps.   -
--

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Julian Weißgerber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 23 April 2009 at 19:23:07, Linuxguy123 wrote:
> Just writing to report that Konqueror has become mostly unusable after I
> installed updates this morning. [snip]
>
> After this update, Konqueror seems to be very slow in displaying a web
> page.  And when it does display it, you can't scroll it.   Scrolling
> attempts to move the page up and down, but its not redrawing correctly
> at all and thus the page becomes unreadable.

Working fine for me, or is it some specific web page you're having 
difficulties with? Also, what's your graphics card/driver?

Julian Weißgerber

- ---
Jabber: squal...@jabber.ccc.de
E-Mail: sloeve...@googlemail.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.10 (GNU/Linux)

iEYEARECAAYFAknwqGgACgkQldDpVN2Yhb2uBgCfQJPvLT6fybFfPMIJ1DlLTo7d
RZcAnRGbuPtsENHhZUZSCJdLk3gFL3zW
=oNWD
-END PGP SIGNATURE-

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 19:42 +0200, Julian Weißgerber wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Thursday 23 April 2009 at 19:23:07, Linuxguy123 wrote:
> > Just writing to report that Konqueror has become mostly unusable after I
> > installed updates this morning. [snip]
> >
> > After this update, Konqueror seems to be very slow in displaying a web
> > page.  And when it does display it, you can't scroll it.   Scrolling
> > attempts to move the page up and down, but its not redrawing correctly
> > at all and thus the page becomes unreadable.
> 
> Working fine for me, or is it some specific web page you're having 
> difficulties with? Also, what's your graphics card/driver?

All web pages that don't fit within the current view are causing
problems.  Ie, any web page that needs scrolling.  www.google.com , do a
search that yields more than a viewable page and the search results
won't scroll. 

General Internet access is also very slow with Konqueror, Firefox and
Evolution.  Everything worked great before the update this morning. 

$ uname -a
Linux localhost.localdomain 2.6.27.21-170.2.56.fc10.i686 #1 SMP Mon Mar
23 23:37:54 EDT 2009 i686 i686 i386 GNU/Linux

Installed Packages
kmod-nvidia.i686180.29-1.fc10.2
kmod-nvidia-2.6.27.15-170.2.24.fc10.i686.i68180.29-1.fc10
kmod-nvidia-2.6.27.19-170.2.35.fc10.i686.i686   180.29-1.fc10.1
kmod-nvidia-2.6.27.21-170.2.56.fc10.i686.i686   180.29-1.fc10.2 
xorg-x11-drv-nvidia.i386180.29-1.fc10
xorg-x11-drv-nvidia-libs.i386   180.29-1.fc10

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


Windows Mobile 2003 device connection

2009-04-23 Thread Julian Weißgerber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all,

I used to connect my PDA (a HTC Wallaby) to my F10 desktop via USB for PIM 
synchronization and network access but recently (don't know when exactly) it 
stopped working. Anyone on F10 whose WM2003 device still connects properly?
(I'm using "synce-hal" to establish the connection)

Julian Weißgerber

- ---
Jabber: squal...@jabber.ccc.de
E-Mail: sloeve...@googlemail.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.10 (GNU/Linux)

iEYEARECAAYFAknwqlQACgkQldDpVN2Yhb2PWQCfS/BxbMzPaAwGZi2zNnA7xyHd
SsEAnRUabffAunVtNNXcuwgEW6OlhjWh
=PG95
-END PGP SIGNATURE-

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Julian Weißgerber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 23 April 2009 at 19:49:46, Linuxguy123 wrote:
> All web pages that don't fit within the current view are causing
> problems.  Ie, any web page that needs scrolling.  www.google.com , do a
> search that yields more than a viewable page and the search results
> won't scroll.
>
> General Internet access is also very slow with Konqueror, Firefox and
> Evolution.  Everything worked great before the update this morning.
>
> $ uname -a
> Linux localhost.localdomain 2.6.27.21-170.2.56.fc10.i686 #1 SMP Mon Mar
> 23 23:37:54 EDT 2009 i686 i686 i386 GNU/Linux
>
> Installed Packages
> kmod-nvidia.i686  180.29-1.fc10.2
> kmod-nvidia-2.6.27.15-170.2.24.fc10.i686.i68180.29-1.fc10
> kmod-nvidia-2.6.27.19-170.2.35.fc10.i686.i686   180.29-1.fc10.1
> kmod-nvidia-2.6.27.21-170.2.56.fc10.i686.i686   180.29-1.fc10.2
> xorg-x11-drv-nvidia.i386180.29-1.fc10
> xorg-x11-drv-nvidia-libs.i386 180.29-1.fc10

I've got a series 6 Geforce and use the 180.51 driver from nvidia.com and have 
no scrolling issues in Konqueror. It sounds like a driver/X/Qt issue to me. 
You might want to try using the nv or vesa X drivers and see whether the 
problem persists.

Julian Weißgerber

- ---
Jabber: squal...@jabber.ccc.de
E-Mail: sloeve...@googlemail.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.10 (GNU/Linux)

iEYEARECAAYFAknwrPcACgkQldDpVN2Yhb0gKwCgg35/ntVWpAmUJU2IEJE44rPx
ZR0An051ZVyocm31VHD9YrCtHsiCrv8M
=8Qbt
-END PGP SIGNATURE-

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


Re: F10 install: no X server

2009-04-23 Thread max
On Wed, Apr 22, 2009 at 07:08:04PM -0400, lanas wrote:
> Hello,
> 
>   I'm trying to install F10 i386 on a recent dual core ASUS motherboard
> with a embedded Nvidia GeForce 8200 and the X server fails to start.  I
> tried OpenSUSE 11.1 (both i586 and x86_64) and it works fine.  But I
> don't like OpenSuSE for various reasons and would like to install
> Fedora 10.
> 
> lspci yields a whole bunch of Nvidia devices (see below).  I've first
> tried with the F10 respin and thought that since it's respin well, it
> can be broken in some ways.  The respin could not start the X server
> also.  It's xorg.conf file showed 16 different screens and monitors.  I
> tried limiting that to one single screen and monitor, but to no avail.
> It looks like for some reason all the Nvidia PCI components as shown
> below were taken as video components and put in the xorg.conf file.
This seems really wacky or perhaps I am not understanding you. Can you post 
your xorg.conf?
> 
> So I'm not going further with installing F10 since the same thing as
> with the respin is seen.  Basically: 'no screens found'.
> 
> I did some search and could not find something about htis problem. 
> 
> Anyone got a fix ?  It'd be very much appreciated.
> 
> 00:00.0 RAM memory: nVidia Corporation Device 0754 (rev a2)
> 00:01.0 ISA bridge: nVidia Corporation Device 075c (rev a2)
> 00:01.1 SMBus: nVidia Corporation Device 0752 (rev a1)
> 00:01.2 RAM memory: nVidia Corporation Device 0751 (rev a1)
> 00:01.3 Co-processor: nVidia Corporation Device 0753 (rev a2)
> 00:01.4 RAM memory: nVidia Corporation Device 0568 (rev a1)
> 00:02.0 USB Controller: nVidia Corporation Device 077b (rev a1)
> 00:02.1 USB Controller: nVidia Corporation Device 077c (rev a1)
> 00:04.0 USB Controller: nVidia Corporation Device 077d (rev a1)
> 00:04.1 USB Controller: nVidia Corporation Device 077e (rev a1)
> 00:06.0 IDE interface: nVidia Corporation Device 0759 (rev a1)
> 00:07.0 Audio device: nVidia Corporation Device 0774 (rev a1)
> 00:08.0 PCI bridge: nVidia Corporation Device 075a (rev a1)
> 00:09.0 IDE interface: nVidia Corporation Device 0ad0 (rev a2)
> 00:0a.0 Ethernet controller: nVidia Corporation Device 0760 (rev a2)
> 00:0b.0 PCI bridge: nVidia Corporation Device 0569 (rev a1)
> 00:10.0 PCI bridge: nVidia Corporation Device 0778 (rev a1)
> 00:12.0 PCI bridge: nVidia Corporation Device 075b (rev a1)
> 00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
> HyperTransport Technology Configuration
> 00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
> Address Map
> 00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM 
> Controller
> 00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] 
> Miscellaneous Control
> 02:00.0 VGA compatible controller: nVidia Corporation GeForce 8200 (rev a2)
>
This last entry is your video. Which driver are you using? lspci -v will give 
verbose output. 
 

-- 
"Any fool can know. The point is to understand" --Albert Einstein

Bored??
http://fiction.wikia.com/wiki/Fuqwit1.0

http://fiction.wikia.com/wiki/Coding_the_Magic_into_the_Eight_Ball

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 20:01 +0200, Julian Weißgerber wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Thursday 23 April 2009 at 19:49:46, Linuxguy123 wrote:
> > All web pages that don't fit within the current view are causing
> > problems.  Ie, any web page that needs scrolling.  www.google.com , do a
> > search that yields more than a viewable page and the search results
> > won't scroll.
> >
> > General Internet access is also very slow with Konqueror, Firefox and
> > Evolution.  Everything worked great before the update this morning.
> >
> > $ uname -a
> > Linux localhost.localdomain 2.6.27.21-170.2.56.fc10.i686 #1 SMP Mon Mar
> > 23 23:37:54 EDT 2009 i686 i686 i386 GNU/Linux
> >
> > Installed Packages
> > kmod-nvidia.i686180.29-1.fc10.2
> > kmod-nvidia-2.6.27.15-170.2.24.fc10.i686.i68180.29-1.fc10
> > kmod-nvidia-2.6.27.19-170.2.35.fc10.i686.i686   180.29-1.fc10.1
> > kmod-nvidia-2.6.27.21-170.2.56.fc10.i686.i686   180.29-1.fc10.2
> > xorg-x11-drv-nvidia.i386180.29-1.fc10
> > xorg-x11-drv-nvidia-libs.i386   180.29-1.fc10
> 
> I've got a series 6 Geforce and use the 180.51 driver from nvidia.com and 
> have 
> no scrolling issues in Konqueror. It sounds like a driver/X/Qt issue to me. 
> You might want to try using the nv or vesa X drivers and see whether the 
> problem persists.

I'll wait a bit... hopefully rpmfusion will make the 180.51 driver
available or someone else will sort the situation out.  I doubt that I
am the only person with this problem. 

What is your screensize ?  What happens if you scroll www.cbc.ca ?

Have you rebooted since the updates this morning ?

Thanks !

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Julian Weißgerber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 23 April 2009 at 20:11:34, Linuxguy123 wrote:
> On Thu, 2009-04-23 at 20:01 +0200, Julian Weißgerber wrote:
> > I've got a series 6 Geforce and use the 180.51 driver from nvidia.com and
> > have no scrolling issues in Konqueror. It sounds like a driver/X/Qt issue
> > to me. You might want to try using the nv or vesa X drivers and see
> > whether the problem persists.
>
> I'll wait a bit... hopefully rpmfusion will make the 180.51 driver
> available or someone else will sort the situation out.  I doubt that I
> am the only person with this problem.
>
> What is your screensize ?  What happens if you scroll www.cbc.ca ?
>
> Have you rebooted since the updates this morning ?
>
> Thanks !

My screen size: 1280x960 at 24 bits depth at 85 Hz and 90 dpi (19").

www.cbc.ca scrolls fine for me.

Just did a reboot to test this and it's still working.

I used to wait for the drivers to get onto rpmfusion but 180.29 is from early 
february... I'm too inpatient to wait that long, esp. with KDE4 performance as 
it is with NVidia cards.
Btw, do other KDE apps scroll fine for you? Also KDE help?

Julian Weißgerber

- ---
Jabber: squal...@jabber.ccc.de
E-Mail: sloeve...@googlemail.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.10 (GNU/Linux)

iEYEARECAAYFAknwsnwACgkQldDpVN2Yhb2e7gCgnD2fR+dcc27I+mmLkwML+xy0
524AoMUM7BCs6+nTp37SQeXvdXxVpowY
=sKmA
-END PGP SIGNATURE-

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 20:25 +0200, Julian Weißgerber wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Thursday 23 April 2009 at 20:11:34, Linuxguy123 wrote:
> > On Thu, 2009-04-23 at 20:01 +0200, Julian Weißgerber wrote:
> > > I've got a series 6 Geforce and use the 180.51 driver from nvidia.com and
> > > have no scrolling issues in Konqueror. It sounds like a driver/X/Qt issue
> > > to me. You might want to try using the nv or vesa X drivers and see
> > > whether the problem persists.
> >
> > I'll wait a bit... hopefully rpmfusion will make the 180.51 driver
> > available or someone else will sort the situation out.  I doubt that I
> > am the only person with this problem.
> >
> > What is your screensize ?  What happens if you scroll www.cbc.ca ?
> >
> > Have you rebooted since the updates this morning ?
> >
> > Thanks !
> 
> My screen size: 1280x960 at 24 bits depth at 85 Hz and 90 dpi (19").

OK.  I'm running dual screens, 1680x1050.

> www.cbc.ca scrolls fine for me.

Thanks.

> Just did a reboot to test this and it's still working.

Thanks again.

> I used to wait for the drivers to get onto rpmfusion but 180.29 is from early 
> february... I'm too inpatient to wait that long, esp. with KDE4 performance 
> as 
> it is with NVidia cards.

I haven't built an nvidia driver in over a year.  I think I'll send
rpmfusion an email. 

> Btw, do other KDE apps scroll fine for you? 

Dolphin scrolls fine.  So does gwenview.


I just retested Konqueror and now it scrolls www.cbc.ca just fine.  I
have no idea why.  I didn't reboot or anything.

Stand by for further information.


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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 12:31 -0600, Linuxguy123 wrote:

> I just retested Konqueror and now it scrolls www.cbc.ca just fine.  I
> have no idea why.  I didn't reboot or anything.
> 
> Stand by for further information.

Everything seems to work fine now.  Very weird. 

The other thing I noticed is that Konqueror was missing the close icon
(X) in the window title bar.  That is back too.  I wonder if my system
was temporarily using a pre upgrade file or something ?


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


Q: How to move filesystems (including root and boot) from one drive to another

2009-04-23 Thread Philip Prindeville
I recently decided that my build server was running too slow (disk 
bound) and went out and bought a 3ware 9650SE controller and disks.


Got the array configured as a single RAID 5 logical unit (yes, I know, 
RAID 5 has slow writes...) and ran fdisk on the unit to create partitions.


I formatted the partitions...

I mounted each of the partitions and did the following:

# cd /old-fs-mnt-point
# find . -depth -mount -print0 | cpio --null -pdv /new-fs-mnt-point

then I ran:

# mkswap ...
# hal-device | less

to get the UUID's.  I edited the new /boot/grub/grub.conf and /etc/fstab 
and rebooted.  Oops.  Didn't quite work.  Needed to change the BIOS 
drive assignment order so that the array was now /dev/sda.


Rebooted.

System hung: forgot to install the boot blocks.

Hmmm...  Tried to run "install-grub /dev/sda" from the Live CD, but that 
didn't work.  Something about not being able to figure out the BIOS 
drive number... don't understand why that's relevant, but that's a 
different story...


So I reran the installer, using a small partition that I had left for 
whatever... and it wrote the boot blocks and MBR.


Editted /boot/grub/grub.conf to change back the default to what I 
wanted... and rebooted.


Now the system hangs at:

Red Hat nash version 6.0.52 starting
Unable to access resume device (/dev/sda3)
mount: error mounting /dev/root on /sysroot as ext3: No such file or
directory
setuproot: moving /dev failed: No such file or directory
setuproot: error mounting /proc: No such file or directory
setuproot: error mounting /sys: No such file or directory
Mount failed for selinuxfs: on /selinux: No such file or directory
switchroot: mount failed: No such file or directory



This is FC9 (updated) x86_64 on a Phenom/NVidia MB.

What have I forgotten?

Moving filesystems used to be a lot easier (these are plain ol' ext3 
filesystems... I'm not using LVM)... and I thought the whole UUID 
support was to simplify moving drives around, etc.


Doesn't seem to be the case.  (Ah, for the days when just about 
everything that caused a booting system to hang was pretty much 
self-evident and transparent...)


There's a certain amount of tweaking I've done of the configuration, the 
rpm's I've installed, accounts created, kernel variables that I tune... 
it's kind of painful to have to do a reinstall from scratch.


Also, I wanted to peek inside the initrd.*.img files and see if there 
was anything in there choking up... but I couldn't figure out how to 
mount them as loopback filesystems.


Any revelation of these mysteries appreciated.

-Philip






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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Julian Weißgerber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thursday 23 April 2009 at 20:34:02, Linuxguy123 wrote:
> On Thu, 2009-04-23 at 12:31 -0600, Linuxguy123 wrote:
> > I just retested Konqueror and now it scrolls www.cbc.ca just fine.  I
> > have no idea why.  I didn't reboot or anything.
> >
> > Stand by for further information.
>
> Everything seems to work fine now.  Very weird.
>
> The other thing I noticed is that Konqueror was missing the close icon
> (X) in the window title bar.  That is back too.  I wonder if my system
> was temporarily using a pre upgrade file or something ?

Could really be just another case of graphical corruption. You don't happen to 
be running a Geforce 8 or newer GPU? It seems to happen a lot with those. 
Running the latest driver helps ;)

Julian Weißgerber

- ---
Jabber: squal...@jabber.ccc.de
E-Mail: sloeve...@googlemail.com

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.10 (GNU/Linux)

iEYEARECAAYFAknwt0EACgkQldDpVN2Yhb1KlQCgi/I+caW4dQguzxkU8hJobCt6
bcQAoIfJdml2s2sSDq9vDOIdZuqduWOp
=Ccvw
-END PGP SIGNATURE-

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


Re: Flash player "Settings" menu, 64-bit

2009-04-23 Thread Patrick O'Callaghan

On 04/23/2009 01:11 PM, Rick Stevens wrote:

Ok, I've got one.  I'm trying to do some testing for a client using a
video chat system based on Flash. Flash simply won't use the camera or
mic on my system although both work just fine in ekiga, cheese, skype,
you name it. In fact, a right click in the Flash pages on the client's
site brings up the Flash control panel, but the "Settings..." option
is greyed out.

Anyone else run into this? Any suggestions on how to fix it?


Complain to Adobe.

poc

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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 20:45 +0200, Julian Weißgerber wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Thursday 23 April 2009 at 20:34:02, Linuxguy123 wrote:
> > On Thu, 2009-04-23 at 12:31 -0600, Linuxguy123 wrote:
> > > I just retested Konqueror and now it scrolls www.cbc.ca just fine.  I
> > > have no idea why.  I didn't reboot or anything.
> > >
> > > Stand by for further information.
> >
> > Everything seems to work fine now.  Very weird.
> >
> > The other thing I noticed is that Konqueror was missing the close icon
> > (X) in the window title bar.  That is back too.  I wonder if my system
> > was temporarily using a pre upgrade file or something ?
> 
> Could really be just another case of graphical corruption. You don't happen 
> to 
> be running a Geforce 8 or newer GPU? It seems to happen a lot with those. 
> Running the latest driver helps ;)

My video card is a GeForce 8800M GTS.


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


Re: F10: Konqueror unusable after this morning's updates.

2009-04-23 Thread Linuxguy123
On Thu, 2009-04-23 at 12:57 -0600, Linuxguy123 wrote:
> On Thu, 2009-04-23 at 20:45 +0200, Julian Weißgerber wrote:
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> > 
> > On Thursday 23 April 2009 at 20:34:02, Linuxguy123 wrote:
> > > On Thu, 2009-04-23 at 12:31 -0600, Linuxguy123 wrote:
> > > > I just retested Konqueror and now it scrolls www.cbc.ca just fine.  I
> > > > have no idea why.  I didn't reboot or anything.
> > > >
> > > > Stand by for further information.

Everything works fine now.  F10/Konqueror are fast and stable.  I'm in
heaven.


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


Re: Flash player "Settings" menu, 64-bit

2009-04-23 Thread Rick Stevens

Patrick O'Callaghan wrote:

On 04/23/2009 01:11 PM, Rick Stevens wrote:

Ok, I've got one.  I'm trying to do some testing for a client using a
video chat system based on Flash. Flash simply won't use the camera or
mic on my system although both work just fine in ekiga, cheese, skype,
you name it. In fact, a right click in the Flash pages on the client's
site brings up the Flash control panel, but the "Settings..." option
is greyed out.

Anyone else run into this? Any suggestions on how to fix it?


Complain to Adobe.


Singularly useless response, Pat.  I have told Adobe.  My curiosity was
whether I had a misconfiguration on Firefox, since a right click brings
up Flash's menus, but "Settings..." is greyed out.

Under Konqueror, "Settings..." is NOT greyed out.  However, if you
select it and the settings screen pops up, you can't select anything in
the settings screen, nor can you close it.  The only way out is to close
Konqueror.

In Opera, I can't find the Flash menu anywhere (right click brings up
Opera's options window).

So, three different browsers, three different behaviors.  Smells like a
config problem to me...that's why I posted my question.
--
- Rick Stevens, Systems Engineer  ri...@nerd.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
-  What's small, yellow and very, VERY dangerous?  The root canary!  -
--

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


Still can't get to sleep

2009-04-23 Thread Timothy Murphy
Sleep to RAM is failing on my Thinkpad T43.
Basically, when I go to Suspend to RAM in the KDE f-menu
(with power cable detached)
the moon flashes for a time, and then goes off
leaving the "running" light on.
(When Suspend to RAM worked,
the moon flashed in the same way
but then the moon went on permanently
and the other light went off.)

I suspected NFS and NetworkManager,
but stopping these does not seem to solve the problem.

I assume some application is causing the problem;
but how can I find out which one it is?


-- 
Timothy Murphy  
e-mail: gayleard /at/ eircom.net
tel: +353-86-2336090, +353-1-2842366
s-mail: School of Mathematics, Trinity College Dublin 


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


Re: Flash player "Settings" menu, 64-bit

2009-04-23 Thread Patrick O'Callaghan

On 04/23/2009 03:03 PM, Rick Stevens wrote:

Patrick O'Callaghan wrote:

On 04/23/2009 01:11 PM, Rick Stevens wrote:

Ok, I've got one. I'm trying to do some testing for a client using a
video chat system based on Flash. Flash simply won't use the camera or
mic on my system although both work just fine in ekiga, cheese, skype,
you name it. In fact, a right click in the Flash pages on the client's
site brings up the Flash control panel, but the "Settings..." option
is greyed out.

Anyone else run into this? Any suggestions on how to fix it?


Complain to Adobe.


Singularly useless response, Pat. I have told Adobe. My curiosity was
whether I had a misconfiguration on Firefox, since a right click brings
up Flash's menus, but "Settings..." is greyed out.

Under Konqueror, "Settings..." is NOT greyed out. However, if you
select it and the settings screen pops up, you can't select anything in
the settings screen, nor can you close it. The only way out is to close
Konqueror.

In Opera, I can't find the Flash menu anywhere (right click brings up
Opera's options window).

So, three different browsers, three different behaviors. Smells like a
config problem to me...that's why I posted my question.


We aren't mind-readers Rick. If you had mentioned any of that before, we 
could have saved ourselves the effort of this exchange. When asking a 
question it's important to give enough information for a meaningful answer.


poc

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


Re: Q about installing F10 from Live DVD

2009-04-23 Thread David
On 4/23/2009 1:22 PM, jackson byers wrote:


> David's experience also was that there was no custom option.

> I purchased my cd from OSDisc.com
> Fedora 10 KDE Edition - install/Live CD

> is this some outdated version?
> or a deficient version?
> not officially supported?
> How is one to know?


Jack,

I mislead you with what I wrote. I was speaking from past experiences. What
Phil wrote is correct. I downloaded a Fedora 10 Live-CD to test and it works
just as he said. I'm sorry I told you incorrect information.

-- 


  David

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


Re: Q about installing F10 from Live DVD

2009-04-23 Thread psmith

jackson byers wrote:



��� David's experience also was that there was no custom option.

��� I purchased my cd from OSDisc.com
��� Fedora 10 KDE Edition - install/Live CD

��� is this some outdated version?
��� or a deficient version?
��� not officially supported?
��� How is one to know?

��� Jack

you simply clicked next on the partitioning screen with the drop down 
box that said "replace my existing linux install" instead of clicking 
said drop down box and choosing custom. user error all the way. afaik 
the live cd's have had custom partitioning since at least f9 if not 
before then!


phil
---
jbyers:
I don't doubt that I somehow got into "user error all the way".
But I was quite conscious that I did not want "replace my existing 
linux install"

and would certainly not have clicked it.
If you are correct,
then if i somehow got into "custom"� then I may well have still 
managed to botch it.


I still find it curious however that David also thought there was no 
obvious "custom"
leading me to think there could be� differences on various versions of 
the liveinstallcd.


Another question:
this thread "Q about installing F10 from Live DVD"
implies� it is a� DVD not a CD.
Do both versions exist? I have a CD not a DVD

And one final question:
Does the "custom" option include choice of not installing� grub to mbr?

Jack

Does the "custom" include� ability to not install grub on the mbr?


the problem is that 'replace my existing linux install' is already 
selected when you get to the partitioning page, and unless you click the 
drop down box you wont see the other available options. yes you can 
install grub on any partition using the custom option, and as long as 
you are aware of which partition number/s you want to install things on 
then i can't see you botching it in the custom choice.


all live cd's use the same installer, in fact fedora only has one 
installer 'anaconda' so the installation partitioning options are the 
same using livecd or dvd media.


there are only livecd's for now, no live dvd's, so in effect the thread 
title is wrong ;)


phil

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


Re: WSJ on Oracle's purchase of Sun and consequences for MySQL

2009-04-23 Thread Matthew Flaschen
Max Pyziur wrote:
> "This is a monster step backward for those of us who are committed to
> sustaining open source," said Lev Gonick, chief information officer at
> Case Western Reserve University in Cleveland, who uses database software
> from Oracle as well as MySQL. "I have no doubt that this is an attempt to
> kill the competition."

If Oracle thinks that their $7 billion is going to killing MySQL, they
are sorely mistaken.  Companies come and go.  FOSS endures, and so will
MySQL.

Matt Flaschen

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


Re: Question about mkfs.ext3

2009-04-23 Thread Nifty Fedora Mitch
On Sat, Apr 18, 2009 at 07:11:59PM -0700, john wendel wrote:
> Subject: Question about mkfs.ext3
> From: john wendel 
> To: For users of Fedora 
> Date: Sat, 18 Apr 2009 19:11:59 -0700
> Reply-To: "Community assistance, encouragement,
>   and advice for using Fedora." 
> Delivered-To: niftyfed...@niftyegg.com
> Return-Path: fedora-list-boun...@redhat.com
> Message-ID: <49ea886f.1050...@comcast.net>
> Sender: fedora-list-boun...@redhat.com
> 
> I'm formatting a new disk and running mkfs.ext3. I asked for 25000  
> inodes with "-N 25000", but it gave me 118,272 inodes.
>
> What did I do wrong?

How big is the device?
What other info is generated -- block size, journal size, ...?
Perhaps try a dry run with -n -v

25000 is a small number for the total number of files and dirs.
The number of inodes must permit accessing the full disk at some point.
I know that XFS will add inodes if it needs them but I do not know
about ext3.

Still it could be possible on a small enough device.

I see on this box:
$ df -i | egrep File\|boot
FilesystemInodes   IUsed   IFree IUse% Mounted on
/dev/sda1  50200  41   501591% /boot

$ df -h  | egrep File\|boot
FilesystemSize  Used Avail Use% Mounted on
/dev/sda1 190M   22M  159M  12% /boot

Since I have  discarded USB keys bigger than this I wonder if 25000 is
sane and you are hitting some internal sanity check.   It also seems that
there are more defaults and knobs than I knew...  see /etc/mke2fs.conf
Read about and try the "-T" flags...


-- 
T o m  M i t c h e l l 
Found me a new hat, now what?

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


Re: mii-tool ??

2009-04-23 Thread Nifty Fedora Mitch
On Sun, Apr 19, 2009 at 11:54:53AM -0400, Jim wrote:
> 
> FC10- X86_64
>
> # mii-tool
> SIOCGMIIPHY on 'eth0' failed: Operation not supported
> eth1: no link
>
> eth0 is my lan  .
>
> Why ??
>

The reason mii-tool is deprecated has to do with driver support
for the mii hooks.  If eth0 is the interesting device 
and the driver does not support mii then the "not supported" 
parts is the final answer.

It also seems that you have eth1 configured.  The driver
is not live/connected (no link).  Link will go true when
a cable is connected... thus the comments about no cable
by other posters.

So:
What device is under your 'eth' devices.
New hardware will not have mii calls in their drivers 

Tricks like lspci can help.

As a 'user' I see:
$ mii-tool
SIOCGMIIPHY on 'eth0' failed: Operation not permitted
.
SIOCGMIIPHY on 'eth7' failed: Operation not permitted
no MII interfaces found

As root I see:
$ sudo mii-tool
SIOCGMIIPHY on 'eth1' failed: Operation not supported
 
So my eth1 device (MCP78S which is new) does
not have driver support for this deprecated
interface.



-- 
T o m  M i t c h e l l 
Found me a new hat, now what?

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


Its doing it again... Konqueror won't scroll.

2009-04-23 Thread Linuxguy123
Its doing it again... konqueror won't scroll again.

The page is: 

http://lifehacker.com/5222989/how-apple-co
+founder-steve-wozniak-gets-things-done

I was on www.linuxhomepage.com . I opened the article under the Linux
Weekly News banner and then followed the link to the actual article
itself.  Wham, I can't scroll it.

It worked fine all afternoon. 

 

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


GCC 4.4.0

2009-04-23 Thread Dave Feustel
Which releases (F9,F10,F11) will be updated to GCC 4.4.0?

Thanks

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


Re: Its doing it again... Konqueror won't scroll.

2009-04-23 Thread Anthony Messina
On Thursday 23 April 2009 19:23:15 Linuxguy123 wrote:
> Its doing it again... konqueror won't scroll again.
>
> The page is:
>
> http://lifehacker.com/5222989/how-apple-co
> +founder-steve-wozniak-gets-things-done

works fine here.

-- 
Anthony - http://messinet.com - http://messinet.com/~amessina/gallery
8F89 5E72 8DF0 BCF0 10BE 9967 92DC 35DC B001 4A4E



signature.asc
Description: This is a digitally signed message part.
-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: GCC 4.4.0

2009-04-23 Thread Kam Leo
On Thu, Apr 23, 2009 at 5:33 PM, Dave Feustel  wrote:
> Which releases (F9,F10,F11) will be updated to GCC 4.4.0?
>
> Thanks

F11: http://fedoraproject.org/wiki/Features/gcc4.4

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


can't open .docx files using OO2.3 in F7

2009-04-23 Thread Dave Stevens
the subject line says it. I downloaded the current version fro Linux from 
OO.org and get a mass of rmps with dependencies. Suggestions? If I could open 
this file (and others like it) I'd keep the version. For those inclined to 
reccommend an upgrade I will do this when F11 is available but want to use 
the current version of Fedora for another month or so.

dave

-- 
Canada must refuse to be entangled in any more wars fought to make the world 
safe for capitalism.

-- The Regina Manifesto, 1933

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


Re: can't open .docx files using OO2.3 in F7

2009-04-23 Thread Ed Greshko
Dave Stevens wrote:
> the subject line says it. I downloaded the current version fro Linux from 
> OO.org and get a mass of rmps with dependencies. Suggestions? If I could open 
> this file (and others like it) I'd keep the version. For those inclined to 
> reccommend an upgrade I will do this when F11 is available but want to use 
> the current version of Fedora for another month or so.
>
>
>   
More information could be found by using the google search "docx file
openoffice".

http://docx-converter.com/

May be a link of interest.

-- 
Use an accordion. Go to jail. -- KFOG, San Francisco
mei-mei.gres...@greshko.com http://tw.youtube.com/watch?v=cCSz_koUhSg



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

Re: can't open .docx files using OO2.3 in F7

2009-04-23 Thread Craig White
On Thu, 2009-04-23 at 18:53 -0700, Dave Stevens wrote:
> the subject line says it. I downloaded the current version fro Linux from 
> OO.org and get a mass of rmps with dependencies. Suggestions? If I could open 
> this file (and others like it) I'd keep the version. For those inclined to 
> reccommend an upgrade I will do this when F11 is available but want to use 
> the current version of Fedora for another month or so.

moderate success with openoffice-3.0x (Fedora 10) - always depends on
the documents it seems.

Craig


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

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


Re: Mouse goes to sleep?

2009-04-23 Thread Nifty Fedora Mitch
On Sun, Apr 19, 2009 at 08:53:35PM -0400, Jeffrey Ross wrote:
> 
> System is Fedora 10 x86_64, the mouse is a Micro$oft wireless Laser  
> Mouse 5000. 
>
> The mouse occasionally stops responding for one or two seconds and then  
> continues like nothing happened.   There are no messages in the logfiles  
> related to the mouse and the the keyboard which is also USB does not  
> have any issues.
>
> The desktop is Gnome and I all currently available patches/updates have  
> been installed.
>
> Any suggestions would be appreciated.
 
  *) feed the mouse less cheese
  *) watch for cron jobs -- makewhatis, updatedb and
 things that make the disk light blink a bit. Run
 them when you want them to run.
  *) watch for browser bloat. Firefox and friends can
 get big with lots of tabs and plugins.  Close
 Firefox 
  *) top in another window can help notice.
  


.
-- 
T o m  M i t c h e l l 
Found me a new hat, now what?

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


Re: Mouse goes to sleep?

2009-04-23 Thread Konstantin Svist
Jeffrey Ross wrote:
> System is Fedora 10 x86_64, the mouse is a Micro$oft wireless Laser
> Mouse 5000.
> The mouse occasionally stops responding for one or two seconds and
> then continues like nothing happened.   There are no messages in the
> logfiles related to the mouse and the the keyboard which is also USB
> does not have any issues.
>
> The desktop is Gnome and I all currently available patches/updates
> have been installed.
>
> Any suggestions would be appreciated.
>
> Thanks, Jeff
>


Does anything else freeze at the same time? For instance, if you're
typing at the time, does it show up normally?
I have a similar issue, though it only happens when I adjust my laptop
panel's brightness.

For reference, I'm using ATI x1400 + fglrx on Dell E1505, with F8



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


Re: CPU frequency scaling problems in F10

2009-04-23 Thread Tim
On Thu, 2009-04-23 at 11:11 -0400, Ryan Lynch wrote:
> As I understand it, a kernel ACPI facility called "PPC", related to
> how processors express their capabilities to the OS, is faulty, or the
> machine BIOS is faulty. Either way, this PPC facility is incorrectly
> warning the CPU Frequency scaling facility that the CPU is running too
> fast, which causes the scaling facility to slow down unnecessarily.
>  
> This requires a kernel or BIOS update to fix, but there is a decent
> workaround: Set the 'processor' module parameter called 'ignore_ppc'
> from the default '0' value to '1'. At runtime, you can set it via the
> R/W SysFS node '/sys/module/processor/parameters/ignore_ppc'. At boot
> time, use the option 'processor.ignore_ppc=1'--I added this to
> 'grub.conf'.

That sounds rather like ignore the problem rather than fix the problem
(move the detection threshold, or correct the temperature monitor
scaling so it provides accurate results).

-- 
[...@localhost ~]$ uname -r
2.6.27.21-78.2.41.fc9.i686

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



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


Re: Q: How to move filesystems (including root and boot) from one drive to another

2009-04-23 Thread Tim
On Thu, 2009-04-23 at 11:34 -0700, Philip Prindeville wrote:
> Moving filesystems used to be a lot easier (these are plain ol' ext3 
> filesystems... I'm not using LVM)... and I thought the whole UUID 
> support was to simplify moving drives around, etc.

To a running system that can read the UUIDs, it does.  But for things
still using device names, such as the GRUB bootloader, you're still
stuck with device names, names that can reposition depending on how the
computer boots (from a hard drive, from a different hard drive, from a
CD, from a USB drive, etc.).  On some systems, if you boot from a
different drive, it's treated as drive zero and the rest are renumbered
around it.  On other systems, drives maintain the same numbers, no
matter which one you boot from.

Once one of the variable systems has managed to boot, you should be
fine, as it doesn't matter which drive is connected where.  Now, if GRUB
could be made to read UUIDs, then the problem you're encountering would
be solved.

You mentioned installing a new raid.  Have you run the system from one
before?  There are peculiarities to booting a system that has a raid.
You might want to ask the list about that, specifically (in the subject
line), so you get the attention of those familiar with raid issues.

-- 
[...@localhost ~]$ uname -r
2.6.27.21-78.2.41.fc9.i686

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



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


Lost Files

2009-04-23 Thread jolmstead
I screwed up and now I am in a bad spot.  I hope someone can help me.  I am 
pretty new to Linux.  I am just taking my first course and setup a laptop with 
Fedora Core 10 and Windows Vista dual booting.

Because of so many bugs and my lack of expertise my wife wanted me to move all 
of her OpenOffice.org files from the Linux operating system to Vista.  So I 
thought I could just move everything from her home directory to the /media/disk 
directory and all would be good.

Well, from the command prompt I created a folder in /media/disk and moved 
everything there.  Then I booted into Vista and the folder wasn't there.  I 
thought Windows maybe can't read the directory created by Linux so I went back 
to Linux and to my surprise it was missing from there too!  Now it's nowhere to 
be found and I'm afraid everything she had is lost.  Does anyone know of a way 
I can retrieve those files?

Thank you,
Jeremy


-- 
This is an email sent via The Fedora Community Portal https://fcp.surfsite.org
https://fcp.surfsite.org/modules/newbb/viewtopic.php?post_id=340913&topic_id=70420&forum=10#forumpost340913
If you think, this is spam, please report this to webmas...@fcp.surfsite.org 
and/or blame jolmste...@gmail.com.

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