Re: Can't install nvidia drivers on Laptop

2011-11-22 Thread Joe Zeff
On 11/22/2011 07:59 PM, Christopher A. Williams wrote:
> ...Actually, I know Larewnce. He's using the kmod-nvidia and
> akmod-nvidia drivers from the RPM Fusion repository. He's also running
> F16 x86_64 and used the standard methods published to install the
> drivers.

Oh, good.  As I said, I was guessing, largely because most people who 
haven't run across the fedoraforum aren't aware of the kmod/akmod method.
-- 
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: iptables in linux

2011-11-22 Thread Roger
Thank you, much appreciated
Roger
> You might look at this functionality. Check out your man pages for any
> interpretation you need.
>
> ===8<---
> $IPTABLES -A INPUT -p tcp --syn --dport 22 -m recent --name sshattack --set
> $IPTABLES -A INPUT -p tcp --dport 22 --syn -m recent --name sshattack \
> --rcheck --seconds 180 --hitcount 2 -j LOG --log-prefix 'SSH REJECT: ' \
> --log-level info
> $IPTABLES -A INPUT -p tcp --dport 22 --syn -m recent --name sshattack \
> --rcheck --seconds 180 --hitcount 2 -j REJECT --reject-with tcp-reset
> ===8<---
>
> This means a given address gets one chance every 3 minutes to login.
> Even "fubar" is a (relatively) secure password when there is riper
> fruit for picking when the creep has to wait 3 minutes between trials.
> It can be a pain if I mistype my password. It's a tradeoff in that
> regard.
>
> {^_^}
>
> On 2011/11/12 05:19, Roger wrote:
>> I'm learning about iptables...
>> I find the same ip address sometimes 100 times or more and trying the
>> same user name.
>> After reading and applying much of the help in google I have tried and
>> failed to achieve a successful result.
>>
>> for example: /var/log/btmp shows:
>> user ssh:notty   Thu Nov 10 17:10 - 17:10  (00:00)hn.vtc.vn
>> some 30 times
>> user ssh:notty   Thu Nov 10 17:10 - 00:20 (1+07:10)   hn.vtc.vn
>> 3 times with varying duration.
>> user ssh:notty   Thu Nov 10 13:14 - 17:07  (03:53) 58.250.71.43
>> 25 times with varying duration.
>> and similar page after page.
>>
>> Is there a way to limit:
>> -number of log in attempts to 2,
>> -the duration of a log in attempt to 3 seconds or less
>> -the number of times a username can be tried, prefer it set at 2 and
>> then not again for 24 hours if it fails.
>>
>> Also is there a way to DROP ip addresses after 2 attempts and not allow
>> that ip address for say 24 hours?
>>
>> I did not find anything about this in the tutorials.
>> iptables does not seem difficult to grasp but I am completely stumped on
>> how to create tighter limits.
>>
>> in part I have:
>> DROP  tcp  --  anywhere   anywhere  tcp dpt:ssh state NEW recent: UPDATE
>> seconds: 90 hit_count: 4 TTL-Match name: SSH1 side: source
>>
>> And have tried seconds between 5 and 90 but find even login attempts of
>> 2-5 minutes are not dropped.
>> hit_count set between 1 and 4 I still see 30+ attempts using the same
>> username attempt.
>>
>> Help gratefully appreciated
>> thanks
>> Roger
>>
>>

-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread g
On 11/23/2011 04:02 AM, Fedora User wrote:
<>

> My apologies. I stand corrected.

accepted.

> In any event, I backed up my bookmarks uninstalled, removed the mozilla
> directory and reinstalled.
>
> That seems to have fixed the problem.

"seems" is a magic word here.

so, back to my first post, did you run thru procedure before reinstalling?

you still could run into problem again.

did you run a fresh install of add-ons you originally had?

add-ons are v/r critical. in add-ons window, you will/should see a
button for checking compatibility or it is under 'tools' or 'help' menu.
this needs to be done when ever you upgrade.

mozilla is in a 'hoop jumping' phase trying to keep up with google chrome
releases and they are weak to none about making releases for older versions.

because of this, the 'half life' procedure is used to find if a problem is
caused by non compatibility.

due to all of the changing, some of the links i provided before may no
longer exist.

therefore, i you have problems with extensions, give this link a read.

http://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes

for access to new troubleshooting, check this link for documented problems;

http://support.mozilla.com/en-US/home

> I realized that I have archived and moved that directory to a couple of
> computers and it probably dates back IIRC to F9.

if you did not update add-ons with upgrading, you could have had add-ons
that where not computable with later releases. another reason for 'half life'.

-- 

peace out.

tc.hago,

g
.

*please reply "plain text" only. "html text" are deleted*


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
The installation instructions stated to install Windows 2000 or better.
So I installed Linux.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital 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: iptables in linux

2011-11-22 Thread jdow
You might look at this functionality. Check out your man pages for any
interpretation you need.

===8<---
$IPTABLES -A INPUT -p tcp --syn --dport 22 -m recent --name sshattack --set
$IPTABLES -A INPUT -p tcp --dport 22 --syn -m recent --name sshattack \
   --rcheck --seconds 180 --hitcount 2 -j LOG --log-prefix 'SSH REJECT: ' \
   --log-level info
$IPTABLES -A INPUT -p tcp --dport 22 --syn -m recent --name sshattack \
   --rcheck --seconds 180 --hitcount 2 -j REJECT --reject-with tcp-reset
===8<---

This means a given address gets one chance every 3 minutes to login.
Even "fubar" is a (relatively) secure password when there is riper
fruit for picking when the creep has to wait 3 minutes between trials.
It can be a pain if I mistype my password. It's a tradeoff in that
regard.

{^_^}

On 2011/11/12 05:19, Roger wrote:
> I'm learning about iptables...
> I find the same ip address sometimes 100 times or more and trying the
> same user name.
> After reading and applying much of the help in google I have tried and
> failed to achieve a successful result.
>
> for example: /var/log/btmp shows:
> user ssh:notty   Thu Nov 10 17:10 - 17:10  (00:00)hn.vtc.vn
> some 30 times
> user ssh:notty   Thu Nov 10 17:10 - 00:20 (1+07:10)   hn.vtc.vn
> 3 times with varying duration.
> user ssh:notty   Thu Nov 10 13:14 - 17:07  (03:53) 58.250.71.43
> 25 times with varying duration.
> and similar page after page.
>
> Is there a way to limit:
> -number of log in attempts to 2,
> -the duration of a log in attempt to 3 seconds or less
> -the number of times a username can be tried, prefer it set at 2 and
> then not again for 24 hours if it fails.
>
> Also is there a way to DROP ip addresses after 2 attempts and not allow
> that ip address for say 24 hours?
>
> I did not find anything about this in the tutorials.
> iptables does not seem difficult to grasp but I am completely stumped on
> how to create tighter limits.
>
> in part I have:
> DROP  tcp  --  anywhere   anywhere  tcp dpt:ssh state NEW recent: UPDATE
> seconds: 90 hit_count: 4 TTL-Match name: SSH1 side: source
>
> And have tried seconds between 5 and 90 but find even login attempts of
> 2-5 minutes are not dropped.
> hit_count set between 1 and 4 I still see 30+ attempts using the same
> username attempt.
>
> Help gratefully appreciated
> thanks
> Roger
>
>
-- 
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


test local rpm file in place for consistency, size, etc.

2011-11-22 Thread Andre Robatino
Andre Robatino  fedoraproject.org> writes:

> The old keys are available at https://fedoraproject.org/en/keys under 
> "OBSOLETE
> KEYS" if you want to download and import them.

Should add that by default yum checks RPMs against ANY of your imported keys, so
you should probably uninstall obsolete keys like this after using them.
Importing a key creates a package with a name like
"gpg-pubkey-a82ba4b7-4e2df47d" which you can remove in the usual way. You can
identify which key is which by running "rpm -qi gpg-pubkey-a82ba4b7-4e2df47d |
grep ^Summary", for example. I filed
https://bugzilla.redhat.com/show_bug.cgi?id=41 a long time ago for yum to
check that a package is signed with a specific repo's key, but it hasn't been
implemented yet.

-- 
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


test local rpm file in place for consistency, size, etc.

2011-11-22 Thread Andre Robatino
Skunk Worx  verizon.net> writes:

> foo.rpm : (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#6df2196f)
> ...
> 
> They all say this -- which seems okay -- all things considered. They are 
> Fedora 9 update rpms from a couple years ago.

The old keys are available at https://fedoraproject.org/en/keys under "OBSOLETE
KEYS" if you want to download and import them.



-- 
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: test local rpm file in place for consistency, size, etc.

2011-11-22 Thread Ed Greshko
On 11/23/2011 12:19 PM, T.C. Hollingsworth wrote:
> On Tue, Nov 22, 2011 at 9:13 PM, Skunk Worx  wrote:
>> ..
>> foo.rpm : (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#6df2196f)
>> ...
>>
>> They all say this -- which seems okay -- all things considered. They are
>> Fedora 9 update rpms from a couple years ago.
> That's just telling you RPM doesn't know about the GPG key those RPMs
> were signed with.  Fedora uses a new key for every release, so there's
> no way you have the Fedora 9 package signing key installed.  ;-)
>

But, they could be imported, right?  I think this...

rpmkeys --import https://fedoraproject.org/static/6DF2196F.txt

will do it on F15 at least.


-- 
Even if you do learn to speak correct English, whom are you going to 
speak it to? -- Clarence Darrow
-- 
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: test local rpm file in place for consistency, size, etc.

2011-11-22 Thread T.C. Hollingsworth
On Tue, Nov 22, 2011 at 9:13 PM, Skunk Worx  wrote:
> ..
> foo.rpm : (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#6df2196f)
> ...
>
> They all say this -- which seems okay -- all things considered. They are
> Fedora 9 update rpms from a couple years ago.

That's just telling you RPM doesn't know about the GPG key those RPMs
were signed with.  Fedora uses a new key for every release, so there's
no way you have the Fedora 9 package signing key installed.  ;-)

-T.C.
-- 
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: test local rpm file in place for consistency, size, etc.

2011-11-22 Thread Skunk Worx
On 11/22/2011 08:00 PM, T.C. Hollingsworth wrote:
> On Tue, Nov 22, 2011 at 8:46 PM, Skunk Worx  wrote:
>> I have a set of .rpm files restored from backups.
>>
>> They have nothing to do with my current install except they are in the
>> file system.
>>
>> Is there a command that will sweep these (several hundred) .rpm files
>> and test their internal values against the file itself, in place, to
>> check for any problems with size / consistency / corruption?
>
> "rpm -K" will verify the hash and GPG signature (if one exists) for a
> provided set of RPMs.
>
> It will work fine on older RPMs but may fail on ones built with newer
> versions of RPM than the one installed on the system.
>
> -T.C.

Thanks!

..
foo.rpm : (SHA1) DSA sha1 md5 (GPG) NOT OK (MISSING KEYS: GPG#6df2196f)
...

They all say this -- which seems okay -- all things considered. They are 
Fedora 9 update rpms from a couple years ago.

---
John
-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread Fedora User
On Wed, 23 Nov 2011 03:07:11 +
g  wrote:

> On 11/23/2011 02:44 AM, Fedora User wrote:
> <>
> 
> > Shouldn't be sarcastic. The RPM is listed on the first line of
> > the original post (firefox-8.03).
> 
> there is nothing sarcastic about my statement. my statement was
> because you where thoughtful enough to mention which firefox v/r you
> are using.

My apologies. I stand corrected. In any event, I backed up my bookmarks
uninstalled, removed the mozilla directory and reinstalled. That seems
to have fixed the problem. I realized that I have archived and moved
that directory to a couple of computers and it probably dates back IIRC
to F9.

> 
> because of your 'snotty' remark, and failure to try or mention if you
> even bothered to try what i have already suggested, i withdraw from
> offering you more help.
> 
> 

-- 
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: test local rpm file in place for consistency, size, etc.

2011-11-22 Thread T.C. Hollingsworth
On Tue, Nov 22, 2011 at 8:46 PM, Skunk Worx  wrote:
> I have a set of .rpm files restored from backups.
>
> They have nothing to do with my current install except they are in the
> file system.
>
> Is there a command that will sweep these (several hundred) .rpm files
> and test their internal values against the file itself, in place, to
> check for any problems with size / consistency / corruption?

"rpm -K" will verify the hash and GPG signature (if one exists) for a
provided set of RPMs.

It will work fine on older RPMs but may fail on ones built with newer
versions of RPM than the one installed on the system.

-T.C.
-- 
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: Can't install nvidia drivers on Laptop

2011-11-22 Thread Christopher A. Williams
On Tue, 2011-11-22 at 19:37 -0800, Joe Zeff wrote:
> On 11/22/2011 06:32 PM, Lawrence Graves wrote:
> > I have a Dell 9400 Inspiron with a FX2500m video card and I can not
> > install nvidia drivers on my laptop.
> > I get this error results: iwl4965 :0c:00.0: Aggregation not enabled
> > for tid 0 because load = 1
> > How do I go about fixing this firmware problem? Thanking you in advance.
> >
> 
> You didn't say how you were trying to install them, but I'm going to 
> guess that you're using the binary blob from nVidia.  Go here, and 
> follow the instructions for your version of Fedora: 
> http://forums.fedoraforum.org/showthread.php?t=204752 and you won't have 
> to remember to reinstall them every time there's a new kernel.

...Actually, I know Larewnce. He's using the kmod-nvidia and
akmod-nvidia drivers from the RPM Fusion repository. He's also running
F16 x86_64 and used the standard methods published to install the
drivers.

Not sure what the problem is, but there's definitely an issue somewhere
with the way this is working...

Cheers,

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


test local rpm file in place for consistency, size, etc.

2011-11-22 Thread Skunk Worx
I have a set of .rpm files restored from backups.

They have nothing to do with my current install except they are in the 
file system.

Is there a command that will sweep these (several hundred) .rpm files 
and test their internal values against the file itself, in place, to 
check for any problems with size / consistency / corruption?

TIA,
John
-- 
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: Can't install nvidia drivers on Laptop

2011-11-22 Thread Joe Zeff
On 11/22/2011 06:32 PM, Lawrence Graves wrote:
> I have a Dell 9400 Inspiron with a FX2500m video card and I can not
> install nvidia drivers on my laptop.
> I get this error results: iwl4965 :0c:00.0: Aggregation not enabled
> for tid 0 because load = 1
> How do I go about fixing this firmware problem? Thanking you in advance.
>

You didn't say how you were trying to install them, but I'm going to 
guess that you're using the binary blob from nVidia.  Go here, and 
follow the instructions for your version of Fedora: 
http://forums.fedoraforum.org/showthread.php?t=204752 and you won't have 
to remember to reinstall them every time there's a new kernel.
-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread Dave Stevens
Quoting Patrick Lists :

> On 23-11-11 03:44, Fedora User wrote:
>> 100%. Furthermore, the following site opens instantly in Opera while it
>> takes about five minutes in Firefox: http://www.nysif.com . I find that
>> very odd.
>
> Did a quick test and there is a delay but that is because the DNS
> queries for that site get very slow responses. Once the DNS queries are
> resolved the site loads fast. Maybe Opera has a DNS cache which makes it
> load faster? Or maybe Opera only uses IPv4 and Firefox uses IPv4 & IPv6
> DNS queries?

my load time on an ADSL line was maybe 5 seconds tops

Dave

>
> Regards,
> Patrick
> --
> 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
>



-- 
It is told that such are the aerodynamics and wing loading of the  
bumblebee that, in principle, it cannot fly...if all this be  
true...life among bumblebees must bear a remarkable resemblance to  
life in the United States.

-- John Kenneth Galbraith, in American Capitalism: The Concept of  
Countervailing 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


Re: Anyone Else Having Problems with Firefox??

2011-11-22 Thread Patrick Lists
On 23-11-11 03:44, Fedora User wrote:
> 100%. Furthermore, the following site opens instantly in Opera while it
> takes about five minutes in Firefox: http://www.nysif.com . I find that
> very odd.

Did a quick test and there is a delay but that is because the DNS 
queries for that site get very slow responses. Once the DNS queries are 
resolved the site loads fast. Maybe Opera has a DNS cache which makes it 
load faster? Or maybe Opera only uses IPv4 and Firefox uses IPv4 & IPv6 
DNS queries?

Regards,
Patrick
-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread g
On 11/23/2011 03:12 AM, Ed Greshko wrote:
> On 11/23/2011 10:44 AM, Fedora User wrote:
>> Shouldn't be sarcastic.
> 
> I am sure "g" wasn't being sarcastic.  If you go back in the archives it 
> is a common occurrence that not enough details are give an the next post 
> after the OP's is "what version of X are you using".  So, he was just 
> noting your attention to detail.
> 
> FWIW, you can believe me since I don't even like the guyhis 
> signature is too long.  :-) :-)

lshif.

as i have mentioned many times in past and i am sure there will be more
times in future, my sig has helped many new linux users and has brought
many from 'dark side'. 8-P


take care. have a good one, ed.


-- 

peace out.

tc.hago,

g
.

*please reply "plain text" only. "html text" are deleted*


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
The installation instructions stated to install Windows 2000 or better.
So I installed Linux.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital 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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread Ed Greshko
On 11/23/2011 10:44 AM, Fedora User wrote:
> Shouldn't be sarcastic.

I am sure "g" wasn't being sarcastic.  If you go back in the archives it 
is a common occurrence that not enough details are give an the next post 
after the OP's is "what version of X are you using".  So, he was just 
noting your attention to detail.

FWIW, you can believe me since I don't even like the guyhis 
signature is too long.  :-) :-)

-- 
Even if you do learn to speak correct English, whom are you going to 
speak it to? -- Clarence Darrow
-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread g
On 11/23/2011 02:44 AM, Fedora User wrote:
<>

> Shouldn't be sarcastic. The RPM is listed on the first line of
> the original post (firefox-8.03).

there is nothing sarcastic about my statement. my statement was because
you where thoughtful enough to mention which firefox v/r you are using.

because of your 'snotty' remark, and failure to try or mention if you even
bothered to try what i have already suggested, i withdraw from offering
you more help.


-- 

peace out.

tc.hago,

g
.

*please reply "plain text" only. "html text" are deleted*


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
The installation instructions stated to install Windows 2000 or better.
So I installed Linux.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital 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


statically-built qemu-[arch] on Fedora

2011-11-22 Thread Mr Dash Four
Is it possible to get/compile/build static qemu-[arch] similar to the 
qemu-user-static in Debian? 

I am making use of binfmt_misc and need to execute statically built 
qemu-[arch]. Using the "standard" qemu-[arch] won't work because I am executing 
this in a chrooted environment where all the libraries qemu needs to link to 
are outside of the chroot.

I tried to use the qemu source rpm in order to build it (using the --static 
./configure option), but unfortunately I can't do it - the .spec file is 
created in such a way that it cannot be easily adapted for building statically 
linked qemu executables. Any help with this would be much appreciated, 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


Re: Anyone Else Having Problems with Firefox??

2011-11-22 Thread Fedora User
On Wed, 23 Nov 2011 02:07:18 +
g  wrote:

> On 11/23/2011 12:42 AM, Fedora User wrote:
> > firefox-8.0-3
> >
> > I am seeing some spectacularly sluggish performance and temporary
> > freezes. I hate the idea of moving all my stuff to opera but I am
> > very close.
> 
> nice to see you state which firefox v/r.

Shouldn't be sarcastic. The RPM is listed on the first line of
the original post (firefox-8.03). And, no, this is not virgin. However,
I should have specified that Firefox is causing cpu spikes, sometimes to
100%. Furthermore, the following site opens instantly in Opera while it
takes about five minutes in Firefox: http://www.nysif.com . I find that
very odd.

I recently upgraded from F15 to F16. I am having other problems that
others are not reporting. I might do a clean install.
-- 
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


Can't install nvidia drivers on Laptop

2011-11-22 Thread Lawrence Graves
I have a Dell 9400 Inspiron with a FX2500m video card and I can not 
install nvidia drivers on my laptop.
I get this error results: iwl4965 :0c:00.0: Aggregation not enabled 
for tid 0 because load = 1

How do I go about fixing this firmware problem? Thanking you in advance.
--
Lawrence Graves All things are workable but don't all things work.
-- 
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: Anyone Else Having Problems with Firefox??

2011-11-22 Thread g
On 11/23/2011 12:42 AM, Fedora User wrote:
> firefox-8.0-3
>
> I am seeing some spectacularly sluggish performance and temporary
> freezes. I hate the idea of moving all my stuff to opera but I am very
> close.

nice to see you state which firefox v/r.

now, next question, is it virgin, or have you screwed it with a add-ons?

if yes, which i imagine you have, click "Help" from menu bar and select
"restart in safe mode". or something to that wording.

when firefox restarts, do you still have problem?

if not, then it is an add-on causing problem and reason devs now have
the selection so that you can troubleshoot.

procedure, restart firefox again - run 'half life' test.

open "Tools > Add-ons > Plugins" disable *all*. normally problems will
not be with plugins, but get them out of way.

next, select "Extensions" tab, disable first half of list. restart firefox.

still problems. open add-ons window again, delete half of remaining.
restart firefox.

repeat until you find problem add-on.

if first time you restarted after disabling problem is gone, run half life
on disabled until problem reappears.


also, here are some links you can read;

http://support.mozilla.com/en-US/kb/Troubleshooting+Plugins
http://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
http://support.mozilla.com/en-US/kb/Basic%20Troubleshooting
http://support.mozilla.com/en-US/kb/Troubleshooting+Extensions
http://support.mozilla.com/en-US/kb/Firefox%20hangs


hth.
-- 

peace out.

tc.hago,

g
.

*please reply "plain text" only. "html text" are deleted*


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
The installation instructions stated to install Windows 2000 or better.
So I installed Linux.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital 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


Anyone Else Having Problems with Firefox??

2011-11-22 Thread Fedora User
firefox-8.0-3

I am seeing some spectacularly sluggish performance and temporary
freezes. I hate the idea of moving all my stuff to opera but I am very
close.
-- 
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


Gnome shell with Intel 82865G rev 02

2011-11-22 Thread Shaun Jones
Hello

I have been Googling all day and seem to get conflicting reports that this
Intel graphics will work with gnome shell or not. I have read a lot about
nomodeset either it needs to be there or doesn't. And even some posts about
creating a xorg.conf with Intel set as the driver. So what I want to know
is will gnome shell work with this graphics chip or am I barking up the
wrong tree here. 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


'avc denied'

2011-11-22 Thread jackson byers
# uname -r
2.6.35.14-103.fc14.i686.PAE



I haven't paid much attention to avc warnings.

did /.autorelabel, reboot, to see if  that could stop avc.

Still see
'avc:  denied'   in auditlog,   involving  firefox, plugin-config,...

last 6  of # grep -n avc audit.log:


279:type=AVC msg=audit(1321983739.130:242): avc:  denied  { read } for
 pid=20223 comm="ldd" name="firefox" dev=sda8 ino=999863
scontext=system_u:system_r:setroubleshootd_t:s0
tcontext=system_u:object_r:mozilla_exec_t:s0 tclass=file
281:type=AVC msg=audit(1321983739.134:243): avc:  denied  { sys_ptrace
} for  pid=20215 comm="setroubleshootd" capability=19
scontext=system_u:system_r:setroubleshootd_t:s0
tcontext=system_u:system_r:setroubleshootd_t:s0 tclass=capability
283:type=AVC msg=audit(1321983739.312:244): avc:  denied  { read } for
 pid=20225 comm="ldd" name="firefox" dev=sda8 ino=999863
scontext=system_u:system_r:setroubleshootd_t:s0
tcontext=system_u:object_r:mozilla_exec_t:s0 tclass=file
285:type=AVC msg=audit(1321983739.314:245): avc:  denied  { sys_ptrace
} for  pid=20215 comm="setroubleshootd" capability=19
scontext=system_u:system_r:setroubleshootd_t:s0
tcontext=system_u:system_r:setroubleshootd_t:s0 tclass=capability
302:type=AVC msg=audit(1321989501.906:261): avc:  denied  { execstack
} for  pid=21019 comm="plugin-config"
scontext=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
tcontext=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
tclass=process
304:type=AVC msg=audit(1321989519.158:262): avc:  denied  { read } for
 pid=21046 comm="ldd" name="plugin-config" dev=sda8 ino=154
scontext=system_u:system_r:setroubleshootd_t:s0
tcontext=system_u:object_r:nsplugin_config_exec_t:s0 tclass=file
[root@f14 audit]#


no 'file_t' seen:

[root@f14 audit]# grep file_t audit.log
[root@f14 audit]#

I have put only minimal effort into learning selinux syntax, methods.
Overwhelming, to me.

are there simple rules on how to respond to 'avc denied'?

If I do nothing?

Jack
-- 
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: systemd or selinux problem? CAP_SYS_MODULE/CAP_NET_ADMIN

2011-11-22 Thread Ian Malone
On 20 November 2011 00:09, Ian Malone  wrote:
> On 19 November 2011 18:38, Deron Meranda  wrote:
>> On Sat, Nov 19, 2011 at 9:42 AM, Ian Malone  wrote:
>>> I've got quite a few of these during boot, anyone know what might be the 
>>> cause?
>>>
>>> Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).
>>> Use CAP_NET_ADMIN and alias X instead.
>>>
>>> Where X includes netdev-snd_ice1724, netdev-snd_ac97_codec, netdev-fat,
>>> netdev-vfat, netdev-bluetooth, netdev-nf_conntrack and others. Think
>>> they may all be netdev-. I've tried an autorelabel in case it's a
>>> labelling issue.
>>
>> This sounds like neither a systemd nor an SELinux issue.  Are you
>> seeing anything more specific, like an AVC error?
>>
>
> No I'm not, two unrelated sealerts (gnome-session-check-accel,
> /bin/mailx). I know there's a systemd unit (or appears to be) to load
> kernel modules, I was wondering if this was responsible for attempting
> to load these with the wrong context.
>
>> Anyway the CAP_* symbols refer to the kernel "capabilities" (do a man
>> capabilities). These are kernel-level security features, but unrelated
>> to SELinux.
>>
>
> Interesting, thanks.

If anyone else encounters this or a similar issue it was caused by a
broken udev rule. To work around this bug
https://bugzilla.redhat.com/show_bug.cgi?id=753648 I had the following
rule, but with a spurious newline:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="rt2500pci", KERNEL=="wlan*",
RUN="/sbin/iw $name set power_save off"

rather than
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="rt2500pci",
KERNEL=="wlan*", RUN="/sbin/iw $name set power_save off"

-- 
imalone
-- 
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


Preupgrade b0rk Compiz on my laptop.

2011-11-22 Thread Joe Zeff
Yesterday, I used preupgrade on my laptop to go from F14 to F16.  When 
it was done, I logged back in under XFCE and found that I didn't have a 
window manager running.  I've gotten xfwm4 working on it, now, but I'd 
like to get Compiz-fusion back.  I've tried creating and using a 
different user, with the same results: fusion-icon won't run.  I've 
found this in ~/.xsession-errors more than once from my main login, but 
not the secondary:

fusion-icon: error: option -s: invalid integer value: 'ession'

Also, If I run

fusion-icon -v & in a terminal, I get this:

[joe@barrayar Documents]$ * Detected Session: xfce
* Searching for installed applications...
-- /usr/bin/compiz
-- /usr/bin/metacity
-- /usr/bin/xfwm4
-- /usr/bin/gtk-window-decorator
-- /usr/bin/ccsm
* Opening CompizConfig context
Backend : ini
Integration : true
Profile : default
Initializing decor options...done
* No GLX_EXT_texture_from_pixmap with direct rendering context
... present with indirect rendering, exporting: LIBGL_ALWAYS_INDIRECT=1
* Using the GTK Interface
* Interface not installed
... Trying another interface
* Using the Qt4 Interface

...and when I press Enter, I'm notified of a Segmentation Fault in 
fusion-icon.  I've not done anything, yet, on my desktop, as I'd like to 
know what to do if/when it happens again.  I've asked about this on both 
the Fedora and XFCE forums, but haven't had a response as yet.  Anybody 
know what's going on?
-- 
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: rc.sysinit mystery

2011-11-22 Thread Michael Cronenworth
Aaron Konstam wrote:
> buzilla is files.

Please include a link to the bug.

https://bugzilla.redhat.com/show_bug.cgi?id=756144
-- 
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: rc.sysinit mystery

2011-11-22 Thread Aaron Konstam
On Tue, 2011-11-22 at 17:00 +0100, suvayu ali wrote:
> On Tue, Nov 22, 2011 at 16:46, Aaron Konstam  wrote:
> > Who should I send the suggestion to that the section should be
> > changed?
> 
> File a bugzilla report against Fedora Documentation.
> 
> -- 
> Suvayu
> 
> Open source is the future. It sets us free.

buzilla is files.
-- 
===
One possible reason that things aren't going according to plan is that
there never was a plan in the first place.
===
Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net

-- 
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: Cannot play MP3 files on Totem

2011-11-22 Thread Richard Shaw
On Tue, Nov 22, 2011 at 3:33 PM, Paul Smith  wrote:
> On Tue, Nov 22, 2011 at 9:28 PM, Terry Polzin  wrote:
>>> When trying to play MP3 files on F16 with Totem, I get the following error:
>>>
>>> "The playback of this movie requires a ID3 tag demuxer plugin which is
>>> not installed."
>>>
>>> Any ideas?
>>
>> MP3 is a proprietary file format codex for it are not included in
>> Fedora.
>
> Thanks, Terry, but what plugin do I need? I do have rpmfusion
> repository installed, but I do not know what plugin to install.

Strange. As long as you have rpmfusion properly installed Totem should
figure out which packages need to be installed and offer to install
them. At least that's how it usually works for me.

The other strange thing is the error. It didn't say MP3 demuxer, but
rather an ID3 tag demuxer...

Richard
-- 
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: Cannot play MP3 files on Totem

2011-11-22 Thread Bryce Hardy
On Tue, Nov 22, 2011 at 1:33 PM, Paul Smith  wrote:

>I do have rpmfusion
> repository installed, but I do not know what plugin to install.

yum search gstreamer

Install all of the packages listed that have good, bad, ugly and
ffmpeg in their names that are correct for your architecture and
barring the devel packages. Alternatively you can install easylife or
autoplus to do all of this for you. Hope this helps.

-- 
Bryce Hardy
-- 
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: Cannot play MP3 files on Totem

2011-11-22 Thread Paul Smith
On Tue, Nov 22, 2011 at 9:28 PM, Terry Polzin  wrote:
>> When trying to play MP3 files on F16 with Totem, I get the following error:
>>
>> "The playback of this movie requires a ID3 tag demuxer plugin which is
>> not installed."
>>
>> Any ideas?
>
> MP3 is a proprietary file format codex for it are not included in
> Fedora.

Thanks, Terry, but what plugin do I need? I do have rpmfusion
repository installed, but I do not know what plugin to install.

Paul
-- 
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: Cannot play MP3 files on Totem

2011-11-22 Thread Terry Polzin
On Tue, 2011-11-22 at 21:04 +, Paul Smith wrote:
> Dear All,
> 
> When trying to play MP3 files on F16 with Totem, I get the following error:
> 
> "The playback of this movie requires a ID3 tag demuxer plugin which is
> not installed."
> 
> Any ideas?
> 
> Thanks in advance,
> 
> Paul

MP3 is a proprietary file format codex for it are not included in
Fedora.

-- 
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


Cannot play MP3 files on Totem

2011-11-22 Thread Paul Smith
Dear All,

When trying to play MP3 files on F16 with Totem, I get the following error:

"The playback of this movie requires a ID3 tag demuxer plugin which is
not installed."

Any ideas?

Thanks in advance,

Paul
-- 
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


Laptop Fn Keys (was: F16: second monitor is not detected.)

2011-11-22 Thread Chris Bredesen
On 11/19/11 8:54 PM, Marko Vojinovic wrote:

> Those custom vendor shortcuts may or may not be supported by Fedora, depending
> on the particular laptop model you have.
>
> But the certain way to see if your second monitor is detected is to look at
> the output of xrandr in the console.

Just updated to F-16 and the Lenovo Fn keys seem not to be working any 
longer, rendering the one workaround for buggy Intel driver useless. 
Huge bummer.  I have not yet looked for missing packages that might be 
responsible...

-CB
-- 
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: mount command absurdly verbose?

2011-11-22 Thread Reindl Harald


Am 22.11.2011 20:01, schrieb Marko Vojinovic:
> After some reading about this, it appears to me that the problem lies in the 
> common misconception that bind mounts are somehow different from ordinary 
> mounts. And they aren't --- the kernel does not make any difference between 
> an 
> ordinary mount and a bind mount. See for example

it did and it is somehow idiotic to see hundret times the
same physical mount with its full size in "df" as it is
idiotic that "updatedb" show you file multiple with
different paths because it can no longer make a difference

and that fedora-packages and the system itself is using
bind-mounts makes this all as much frustrating as it can
be

>   http://karelzak.blogspot.com/2011/04/bind-mounts-mtab-and-read-only.html
> for a nice explanation.

this makes nothing better

> Consequently, all userspace apps which relied on this "difference" were 
> broken 
> to begin with, and need to be fixed.

HOW SOULD THIS BE DONE IF THERE IS NO DIFFERENCE SOMEWHERE

> The only issue is that before F15 this was not obvious. F15 featured a new 
> version of gnulib which basically made /etc/mtab obsolete (as far as I 
> understood). Since F15 /etc/mtab is just a symlink to /proc/self/mounts, and 
> I 
> guess it will probably be removed altogether in the future.

this does not interest me as long as i get "access diend" errors
calling "df" as user because named is running and as long i see
the rootfs twice

DF = DISK FREE

is a bind_mount a disk?

> Also, this is not just for Fedora, but rather *all* Linux distributions which 
> feature the recent gnulib. And it seems that everybody decided to go for the 
> "mtab is a symlink" behavior for the time being.

if all does something wrong makes it not right

> So if your favorite userspace app misbehaves because of this, file a bug 
> against it and persuade the relevant devs to fix it.

well, i did and it does not interest someone

the new paradigm seems to be make changes without thinking what
they finally introduce and nobody is fixing the bad smelling
around them over months and years

WTF?
/bin/df: „/var/named/chroot/etc/named“: Keine Berechtigung
/bin/df: „/var/named/chroot/usr/lib64/bind“: Keine Berechtigung
/bin/df: „/var/named/chroot/etc/named.iscdlv.key“: Keine Berechtigung
/bin/df: „/var/named/chroot/etc/named.root.key“: Keine Berechtigung




signature.asc
Description: OpenPGP digital 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: mount command absurdly verbose?

2011-11-22 Thread g
On 11/22/2011 12:53 PM, Timothy Murphy wrote:
> Does anyone agree with me that the mount command
> (when used simply to get information)
> has become absurdly verbose?

as the 'wolf' might say, "the better to serve you with, my dear". ;)

> I only use this command to determine what hard disks are mounted.
> Now I have to wade through large tracts of information
> that make no sense to me, to find the few lines about hard disks.
> 
> Is there any way of getting the information one used to get,
> short of saying something like "mount | grep sd"?

yes, and what i use. it can either be an 'alias';

  alias msd='mount|grep sd|sort'

or a 'script';

 fn= msd

   #!/bin/sh
   mount|grep sd|sort


an 'alias' that i use often;

  alias dfs='df -B 1024|grep /dev/sd|sort'


hth.
-- 

peace out.

tc.hago,

g
.

*please reply "plain text" only. "html text" are deleted*


in a free world without fences, who needs gates.
**
help microsoft stamp out piracy - give linux to a friend today.
**
to mess up a linux box, you need to work at it.
to mess up an ms windows box, you just need to *look* at it.
**
The installation instructions stated to install Windows 2000 or better.
So I installed Linux.
**
learn linux:
'Rute User's Tutorial and Exposition' http://rute.2038bug.com/index.html
'The Linux Documentation Project' http://www.tldp.org/
'LDP HOWTO-index' http://www.tldp.org/HOWTO/HOWTO-INDEX/index.html
'HowtoForge' http://howtoforge.com/




signature.asc
Description: OpenPGP digital 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: mount command absurdly verbose?

2011-11-22 Thread Joe Zeff
On 11/22/2011 11:01 AM, Marko Vojinovic wrote:
> And it seems that everybody decided to go for the
> "mtab is a symlink" behavior for the time being.

That's not at all unreasonable.  /etc/mtab has always been (AFAIK) a 
snapshot of how the various parts of the filesystem are mounted, not to 
be edited by mere mortals.  Making it a symlink to the appropriate part 
of /proc just makes it clearer that it's supposed to be read only.
-- 
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: mount command absurdly verbose?

2011-11-22 Thread Tom Horsley
On Tue, 22 Nov 2011 19:01:43 +
Marko Vojinovic wrote:

> After some reading about this, it appears to me that the problem lies in the 
> common misconception that bind mounts are somehow different from ordinary 
> mounts.

If they aren't different then there is no bind option to the mount
command, and the /proc/self/mountinfo file doesn't exist because
there isn't any information available for it to convey.
-- 
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: mount command absurdly verbose?

2011-11-22 Thread Marko Vojinovic
On Tuesday 22 November 2011 16:25:06 Reindl Harald wrote:
> Am 22.11.2011 16:09, schrieb Andras Simon:
> > Hmmm. I wonder why /dev/sdb8 is mounted to 3 different places?
> > I see here something like this too:
> > 
> > /dev/sda1 on / type ext2
> > (rw,noatime,nodiratime,seclabel,errors=continue)
> > /dev/sda1 on /home type ext2
> > (rw,noatime,nodiratime,seclabel,errors=continue)
> > 
> > sda1 should only be mounted to / (according to fstab).
> 
> you know "bind mounts"?
> and that is why the behavior since F15 is a bad joke
> 
> you will need them to chroot sftp-users to different phyiscal folders
> you will need them to provide a physical path of a production server
> in test-environment while symlinks would change the realpath and
> a bind mount does not

After some reading about this, it appears to me that the problem lies in the 
common misconception that bind mounts are somehow different from ordinary 
mounts. And they aren't --- the kernel does not make any difference between an 
ordinary mount and a bind mount. See for example

  http://karelzak.blogspot.com/2011/04/bind-mounts-mtab-and-read-only.html
  
for a nice explanation.

Consequently, all userspace apps which relied on this "difference" were broken 
to begin with, and need to be fixed.

The only issue is that before F15 this was not obvious. F15 featured a new 
version of gnulib which basically made /etc/mtab obsolete (as far as I 
understood). Since F15 /etc/mtab is just a symlink to /proc/self/mounts, and I 
guess it will probably be removed altogether in the future.

Also, this is not just for Fedora, but rather *all* Linux distributions which 
feature the recent gnulib. And it seems that everybody decided to go for the 
"mtab is a symlink" behavior for the time being.

So if your favorite userspace app misbehaves because of this, file a bug 
against it and persuade the relevant devs to fix it.

HTH, :-)
Marko


-- 
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: mount command absurdly verbose?

2011-11-22 Thread Andras Simon
2011/11/22, Ralf Corsepius :
> On 11/22/2011 04:09 PM, Andras Simon wrote:

[...]

>> Hmmm. I wonder why /dev/sdb8 is mounted to 3 different places?
>
> These are autofs-automounted local homes.

If partitions that are already mounted (because of fstab) should also
be automounted, then I have  a lot of catching up to do...

Andras
-- 
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: mount command absurdly verbose?

2011-11-22 Thread Genes MailLists


 How about something like this (fix line wrap) use -se instead of -s if
you prefer:

# cat mydf

#/bin/bash
df ${@} $(findmnt -s| egrep -v
'^TARGET|^swap|^/sys|^/proc|^/dev/pts|^/dev/shm' | awk '{ printf("%s ",
$1)}')


-- 
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: rc.sysinit mystery

2011-11-22 Thread T.C. Hollingsworth
On Tue, Nov 22, 2011 at 8:46 AM, Aaron Konstam  wrote:
> In the last section of the F16 System Administrator's Guide it says that
> sysctl is run by executing the rc.sysinit script against the parameters
> in sysctl.conf.
>
> Now there is no /etc/rc.d/rc.sysinit script in F16 so that leaves me
> with two questions:
> 1: Who should I send the suggestion to that the section should be
> changed?
> 2. I know I have seen it somewhere but what system program runs sysctl
> to set the kernel parameters?

systemd of course!

If you're just worried about setting them at boot, see "man sysctl.d".

If you want to know how this works in detail, see
/lib/systemd/system/systemd-sysctl.service and
http://cgit.freedesktop.org/systemd/tree/src/sysctl.c  You can also
see all the systemd units that make up the former rc.sysinit with the
following command:
systemctl show -p Wants sysinit.target

-T.C.
-- 
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: rc.sysinit mystery

2011-11-22 Thread suvayu ali
On Tue, Nov 22, 2011 at 16:46, Aaron Konstam  wrote:
> Who should I send the suggestion to that the section should be
> changed?

File a bugzilla report against Fedora Documentation.

-- 
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: mount command absurdly verbose?

2011-11-22 Thread Ed Greshko
On 11/22/2011 11:26 PM, Reindl Harald wrote:
> Am 22.11.2011 16:21, schrieb Ed Greshko:
>> On 11/22/2011 08:53 PM, Timothy Murphy wrote:
>>> Does anyone agree with me that the mount command
>>> (when used simply to get information)
>>> has become absurdly verbose?
>>>
>>> I only use this command to determine
>>> what hard disks are mounted.
>>> Now I have to wade through large tracts of information
>>> that make no sense to me, to find the few lines about hard disks.
>>>
>>> Is there any way of getting the information one used to get,
>>> short of saying something like "mount | grep sd"?
>> How about using "mount -t ext3,ext4   or whatever combination of
>> filesystem types you want to query?
> what about fixing the problems which did not exist before F15
> all other things are crappy workarounds and CORE-UTILS like
> df and mount have to work as expected without magic params
>
> there are scripts and software which relies on them like "updatedb"
> which ignored bind-mounts before F15 and now can not see them

Well...  Until the bugzillas are filed and fixed some people would want 
a work-around...which is all that I'm suggesting.

>
>
>
-- 
Even if you do learn to speak correct English, whom are you going to 
speak it to? -- Clarence Darrow
-- 
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


rc.sysinit mystery

2011-11-22 Thread Aaron Konstam
In the last section of the F16 System Administrator's Guide it says that
sysctl is run by executing the rc.sysinit script against the parameters
in sysctl.conf.

Now there is no /etc/rc.d/rc.sysinit script in F16 so that leaves me
with two questions:
1: Who should I send the suggestion to that the section should be
changed?
2. I know I have seen it somewhere but what system program runs sysctl
to set the kernel parameters?
-- 
===
This night methinks is but the daylight sick. -- William Shakespeare,
"The Merchant of Venice"
===
Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net

-- 
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: mount command absurdly verbose?

2011-11-22 Thread Ralf Corsepius
On 11/22/2011 04:09 PM, Andras Simon wrote:
> 2011/11/22, Ralf Corsepius:
>> On 11/22/2011 01:57 PM, Andras Simon wrote:
>
> [...]
>
>>> I use df.
>>
>> Not that much better:
>>
>> Real world example:
>>
>> $ df
>> Filesystem  1K-blocks   Used Available Use% Mounted on
>> rootfs   50395844   32372316  15463528  68% /
>> ..
>> tmpfs 3057628  46748   3010880   2% /run
>> /dev/sda350395844   32372316  15463528  68% /
>> tmpfs 3057628  46748   3010880   2% /run
>> ...
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user1
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user2
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user3
>> ...
>
> Hmmm. I wonder why /dev/sdb8 is mounted to 3 different places?

These are autofs-automounted local homes.

autofs mounts these home directories "on-demand", switching between 
nfs-mounts and bind-mounts, depending on whether they are local or remote.

In this case, they currently are all local.

FWIW:

f14's mount displayed them this way:
# mount
..
/home/user1 on /users/user1 type none (rw,bind)
...

This reflects the actual situation and is human readable.



f16's "mount" displays them this way:
# mount
...
/dev/sdb8 on /users/user1 type ext4 
(rw,relatime,seclabel,user_xattr,acl,barrier=1,data=ordered)
...

IMO, this unreadable and all wrong.

Ralf


-- 
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: mount command absurdly verbose?

2011-11-22 Thread Reindl Harald

Am 22.11.2011 16:21, schrieb Ed Greshko:
> On 11/22/2011 08:53 PM, Timothy Murphy wrote:
>> Does anyone agree with me that the mount command
>> (when used simply to get information)
>> has become absurdly verbose?
>>
>> I only use this command to determine
>> what hard disks are mounted.
>> Now I have to wade through large tracts of information
>> that make no sense to me, to find the few lines about hard disks.
>>
>> Is there any way of getting the information one used to get,
>> short of saying something like "mount | grep sd"?
> 
> How about using "mount -t ext3,ext4   or whatever combination of 
> filesystem types you want to query?

what about fixing the problems which did not exist before F15
all other things are crappy workarounds and CORE-UTILS like
df and mount have to work as expected without magic params

there are scripts and software which relies on them like "updatedb"
which ignored bind-mounts before F15 and now can not see them




signature.asc
Description: OpenPGP digital 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: mount command absurdly verbose?

2011-11-22 Thread Reindl Harald


Am 22.11.2011 16:09, schrieb Andras Simon:
> 2011/11/22, Ralf Corsepius :
>> On 11/22/2011 01:57 PM, Andras Simon wrote:
> 
> [...]
> 
>>> I use df.
>>
>> Not that much better:
>>
>> Real world example:
>>
>> $ df
>> Filesystem  1K-blocks   Used Available Use% Mounted on
>> rootfs   50395844   32372316  15463528  68% /
>> ..
>> tmpfs 3057628  46748   3010880   2% /run
>> /dev/sda350395844   32372316  15463528  68% /
>> tmpfs 3057628  46748   3010880   2% /run
>> ...
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user1
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user2
>> /dev/sdb8   638902480  153233668 453214376  26% /users/user3
>> ...
> 
> Hmmm. I wonder why /dev/sdb8 is mounted to 3 different places?
> I see here something like this too:
> 
> /dev/sda1 on / type ext2 (rw,noatime,nodiratime,seclabel,errors=continue)
> /dev/sda1 on /home type ext2 (rw,noatime,nodiratime,seclabel,errors=continue)
> 
> sda1 should only be mounted to / (according to fstab).

you know "bind mounts"?
and that is why the behavior since F15 is a bad joke

you will need them to chroot sftp-users to different phyiscal folders
you will need them to provide a physical path of a production server
in test-environment while symlinks would change the realpath and
a bind mount does not

http://linux.die.net/man/2/mount
MS_BIND (Linux 2.4 onward)
Perform a bind mount, making a file or a directory subtree visible at another 
point
within a file system. Bind mounts may cross file system boundaries and span 
chroot(2)
jails. The filesystemtype and data arguments are ignored. Up until Linux 2.6.26,
mountflags was also ignored (the bind mount has the same mount options as the 
underlying
mount point). Since Linux 2.6.26, the MS_RDONLY flag is honored when making a 
bind mount.

/mnt/data/home   /home   none  bind
/mnt/data/.yum-cache /var/cache/yum  none  bind
/mnt/data/.tmp   /tmpnone  bind
/mnt/data/www/thelounge.net  /Volumes/dune/www-servers   none  bind
/mnt/data/www/phpincludes/Volumes/dune/www-servers/phpincludes   none  bind

[root@rh:~]$ /bin/df -hT
Dateisystem   TypGröße Benut  Verf Ben%% Eingehängt auf
rootfs  rootfs 29G  8,0G   21G  28% /
udev  devtmpfs7,8G  4,0K  7,8G   1% /dev
tmpfstmpfs1,0G  196K  1,0G   1% /dev/shm
tmpfstmpfs7,9G  572K  7,9G   1% /run
/dev/md1  ext4 29G  8,0G   21G  28% /
tmpfstmpfs7,9G 0  7,9G   0% /sys/fs/cgroup
tmpfstmpfs7,9G  572K  7,9G   1% /var/lock
tmpfstmpfs7,9G  572K  7,9G   1% /var/run
tmpfstmpfs7,9G 0  7,9G   0% /media
tmpfstmpfs150M   64K  150M   1% /var/www/sessiondata
tmpfstmpfs5,0G  186M  4,9G   4% /var/tmp
/dev/md0  ext4485M   52M  429M  11% /boot
/dev/md2  ext43,6T  627G  3,0T  18% /mnt/data
/dev/md2  ext43,6T  627G  3,0T  18% /home
/dev/md2  ext43,6T  627G  3,0T  18% /var/cache/yum
/dev/md2  ext43,6T  627G  3,0T  18% /tmp
/dev/md2  ext43,6T  627G  3,0T  18% /Volumes/dune/www-servers
/dev/md2  ext43,6T  627G  3,0T  18% 
/Volumes/dune/www-servers/phpincludes



signature.asc
Description: OpenPGP digital 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: mount command absurdly verbose?

2011-11-22 Thread Ed Greshko
On 11/22/2011 08:53 PM, Timothy Murphy wrote:
> Does anyone agree with me that the mount command
> (when used simply to get information)
> has become absurdly verbose?
>
> I only use this command to determine
> what hard disks are mounted.
> Now I have to wade through large tracts of information
> that make no sense to me, to find the few lines about hard disks.
>
> Is there any way of getting the information one used to get,
> short of saying something like "mount | grep sd"?

How about using "mount -t ext3,ext4   or whatever combination of 
filesystem types you want to query?


-- 
Even if you do learn to speak correct English, whom are you going to 
speak it to? -- Clarence Darrow
-- 
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: rhythembox problems

2011-11-22 Thread Patrick Lists
On 11/22/2011 04:04 PM, Aaron Konstam wrote:
> I assume people are not having the problems with rhythembox. In neither
> F15 nor F16 does rhythembox play Audio CDs. On both systems it can't
> find the CD. That is not completely true. If I click on devices, the
> tracks are shown bit the program does nothing if I click on play. Are
> others having the same problem? If not how can I make it work?

Did a quick check. I have a one day old F16 x86_64 install with latest 
updates. Started Rhythmbox, inserted a cd, got the notification where I 
clicked "Open with Rhythmbox" and in Rhythmbox clicked on play. The cd 
played fine. I have no idea why it does not work for you.

Regards,
Patrick
-- 
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: mount command absurdly verbose?

2011-11-22 Thread Andras Simon
2011/11/22, Ralf Corsepius :
> On 11/22/2011 01:57 PM, Andras Simon wrote:

[...]

>> I use df.
>
> Not that much better:
>
> Real world example:
>
> $ df
> Filesystem  1K-blocks   Used Available Use% Mounted on
> rootfs   50395844   32372316  15463528  68% /
> ..
> tmpfs 3057628  46748   3010880   2% /run
> /dev/sda350395844   32372316  15463528  68% /
> tmpfs 3057628  46748   3010880   2% /run
> ...
> /dev/sdb8   638902480  153233668 453214376  26% /users/user1
> /dev/sdb8   638902480  153233668 453214376  26% /users/user2
> /dev/sdb8   638902480  153233668 453214376  26% /users/user3
> ...

Hmmm. I wonder why /dev/sdb8 is mounted to 3 different places?
I see here something like this too:

/dev/sda1 on / type ext2 (rw,noatime,nodiratime,seclabel,errors=continue)
/dev/sda1 on /home type ext2 (rw,noatime,nodiratime,seclabel,errors=continue)

sda1 should only be mounted to / (according to fstab).

Andras
-- 
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


rhythembox problems

2011-11-22 Thread Aaron Konstam
I assume people are not having the problems with rhythembox. In neither
F15 nor F16 does rhythembox play Audio CDs. On both systems it can't
find the CD. That is not completely true. If I click on devices, the
tracks are shown bit the program does nothing if I click on play. Are
others having the same problem? If not how can I make it work?
-- 
===
If your hands are clean and your cause is just and your demands are
reasonable, at least it's a start.
===
Aaron Konstam telephone: (210) 656-0355 e-mail: akons...@sbcglobal.net

-- 
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: mount command absurdly verbose?

2011-11-22 Thread Ralf Corsepius
On 11/22/2011 01:57 PM, Andras Simon wrote:
> 2011/11/22, Timothy Murphy:
>> Does anyone agree with me that the mount command
>> (when used simply to get information)
>> has become absurdly verbose?
>
> Absolutely!
>
>> I only use this command to determine
>> what hard disks are mounted.
>> Now I have to wade through large tracts of information
>> that make no sense to me, to find the few lines about hard disks.
>>
>> Is there any way of getting the information one used to get,
>> short of saying something like "mount | grep sd"?
>
> I use df.

Not that much better:

Real world example:

$ df
Filesystem  1K-blocks   Used Available Use% Mounted on
rootfs   50395844   32372316  15463528  68% /
..
tmpfs 3057628  46748   3010880   2% /run
/dev/sda350395844   32372316  15463528  68% /
tmpfs 3057628  46748   3010880   2% /run
...
/dev/sdb8   638902480  153233668 453214376  26% /users/user1
/dev/sdb8   638902480  153233668 453214376  26% /users/user2
/dev/sdb8   638902480  153233668 453214376  26% /users/user3
...

Ralf

-- 
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: mount command absurdly verbose?

2011-11-22 Thread Joachim Backes
On 11/22/2011 02:10 PM, suvayu ali wrote:
> On Tue, Nov 22, 2011 at 13:53, Timothy Murphy  wrote:
>> Is there any way of getting the information one used to get,
>> short of saying something like "mount | grep sd"?
>>
> 
> findmnt -s
> 

"findmnt -se" additionally shows the disk devices

-- 
Joachim Backes 

http://www.rhrk.uni-kl.de/~backes



smime.p7s
Description: S/MIME Cryptographic 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: mount command absurdly verbose?

2011-11-22 Thread Markus Schönhaber
22.11.2011 14:10, suvayu ali:

> On Tue, Nov 22, 2011 at 13:53, Timothy Murphy  wrote:
>> Is there any way of getting the information one used to get,
>> short of saying something like "mount | grep sd"?
>>
> 
> findmnt -s

Which may or may not be what the OP is looking for, since it only shows
mounts defined in /etc/fstab. It does not show, for example,
thumb-drives mounted on the fly by the DE.

-- 
Regards
  mks
-- 
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: mount command absurdly verbose?

2011-11-22 Thread suvayu ali
On Tue, Nov 22, 2011 at 13:53, Timothy Murphy  wrote:
> Is there any way of getting the information one used to get,
> short of saying something like "mount | grep sd"?
>

findmnt -s

-- 
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: mount command absurdly verbose?

2011-11-22 Thread Reindl Harald


Am 22.11.2011 13:53, schrieb Timothy Murphy:
> Does anyone agree with me that the mount command
> (when used simply to get information)
> has become absurdly verbose?
> 
> I only use this command to determine
> what hard disks are mounted.
> Now I have to wade through large tracts of information
> that make no sense to me, to find the few lines about hard disks.
> 
> Is there any way of getting the information one used to get,
> short of saying something like "mount | grep sd"?
> 
> I think this change already took place in Fedora-15.

this MAJOR BUG was introduced with F15 and nobody cares

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

this is absolutely unacceptable and starts to become
funny if you are using sftp with chroots instead of
ftp while you have to make tons auf bind-mounts and
the permission error for "/var/named/chroot" breaks
ANYTHING which is not running as root and calling df
in a cronjob resulting with useless mails to root
_

[harry@srv-rhsoft:~]$ df
Dateisystem   TypGröße Benut  Verf Ben%% Eingehängt auf
/dev/md1  ext4 29G  8,0G   21G  28% /
/dev/md0  ext4485M   52M  429M  11% /boot
/dev/md2  ext43,6T  1,3T  2,3T  36% /mnt/data

[harry@srv-rhsoft:~]$ which df
alias df='df -hT 2> /dev/null | grep -v tmpfs | grep -v rootfs | grep -v 
/chroot/ | grep -v
/Volumes/dune/www-servers | grep -v /var/cache/yum | grep -v /home | grep -v 
/tmp'
/bin/df
/bin/grep
/bin/grep
/bin/grep
/bin/grep
/bin/grep
/bin/grep
/bin/grep
_

[harry@srv-rhsoft:~]$ /bin/df -hT
Dateisystem   TypGröße Benut  Verf Ben%% Eingehängt auf
rootfs  rootfs 29G  8,0G   21G  28% /
udev  devtmpfs7,8G  4,0K  7,8G   1% /dev
tmpfstmpfs1,0G 0  1,0G   0% /dev/shm
tmpfstmpfs7,9G  616K  7,9G   1% /run
/dev/md1  ext4 29G  8,0G   21G  28% /
tmpfstmpfs7,9G 0  7,9G   0% /sys/fs/cgroup
tmpfstmpfs7,9G  616K  7,9G   1% /var/run
tmpfstmpfs7,9G  616K  7,9G   1% /var/lock
tmpfstmpfs7,9G 0  7,9G   0% /media
tmpfstmpfs150M 0  150M   0% /var/www/sessiondata
tmpfstmpfs5,0G 0  5,0G   0% /var/tmp
/dev/md0  ext4485M   52M  429M  11% /boot
/dev/md2  ext43,6T  1,3T  2,3T  36% /mnt/data
/dev/md2  ext43,6T  1,3T  2,3T  36% /home
/dev/md2  ext43,6T  1,3T  2,3T  36% /var/cache/yum
/dev/md2  ext43,6T  1,3T  2,3T  36% /tmp
/dev/md2  ext43,6T  1,3T  2,3T  36% /Volumes/dune/www-servers
/dev/md2  ext43,6T  1,3T  2,3T  36% 
/Volumes/dune/www-servers/phpincludes
/bin/df: „/var/named/chroot/etc/named“: Keine Berechtigung
/bin/df: „/var/named/chroot/usr/lib64/bind“: Keine Berechtigung
/bin/df: „/var/named/chroot/etc/named.iscdlv.key“: Keine Berechtigung
/bin/df: „/var/named/chroot/etc/named.root.key“: Keine Berechtigung



signature.asc
Description: OpenPGP digital 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: mount command absurdly verbose?

2011-11-22 Thread Andras Simon
2011/11/22, Timothy Murphy :
> Does anyone agree with me that the mount command
> (when used simply to get information)
> has become absurdly verbose?

Absolutely!

> I only use this command to determine
> what hard disks are mounted.
> Now I have to wade through large tracts of information
> that make no sense to me, to find the few lines about hard disks.
>
> Is there any way of getting the information one used to get,
> short of saying something like "mount | grep sd"?

I use df.

> I think this change already took place in Fedora-15.

That's right.

Andras
-- 
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


mount command absurdly verbose?

2011-11-22 Thread Timothy Murphy
Does anyone agree with me that the mount command
(when used simply to get information)
has become absurdly verbose?

I only use this command to determine
what hard disks are mounted.
Now I have to wade through large tracts of information
that make no sense to me, to find the few lines about hard disks.

Is there any way of getting the information one used to get,
short of saying something like "mount | grep sd"?

I think this change already took place in Fedora-15.


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


-- 
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: Printer problem Samsung CLX-3170

2011-11-22 Thread Jim
On 11/22/2011 03:36 AM, mike cloaked wrote:
> On Mon, Nov 21, 2011 at 9:59 PM, Jim  wrote:
>> Fedora 16
>> Printer has been working fine in Fedora 14, 15.
>> F16 doesn't like it.
>> I'am not getting any Selinux errors.
>>
>>
>> Printer state:
>> Idle - /usr/lib/cups/filter/rastertosamsungsplc failed
>>
> I can't tell from the messages output you posted if your machine is
> x86_64 or not but I had a very very similar issue with a Samsung
> scx4500w when I installed f16.
>
> It turned out that the copy of the file "rastertosamsungspl" was a 32
> bit version and I had installed a 64 bit system - worth checking ?
>
> Also I notice that the name of your file is "rastertosamsungsplc"
> whereas it should be "rastertosamsungspl" i.e. you have an additional
> letter "c" at the end of the filename - if your file is really ending
> in a "c" then check whether you have the correct 32 or 64 bit file -
> if not then make sure that where you defined the file in the printer
> setup is correct - if not then redefine it with the correct filename.
I have a 32 bit box,
How do I determine wether the rastertosamungsplc is 32 or  64 bit?
In usr/lib/cups/filter/ there is a rastertosamsungsplc and a 
rastertosamsungspl .
This is the same driver that I used Fedora 14 and 15 .


-- 
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: Message after printing

2011-11-22 Thread Antonio M
2011/11/22 Tim Waugh :
> On Tue, 2011-11-22 at 12:15 +0100, Antonio M wrote:
>> Since latest updates, when I print I get on the bottom right corner a
>> message every time I print a message, and it is present also after
>> print completion.
>
> What does the message say?
>
> Tim.
> */
>
>
> --
> 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
>
>

for example
Gnumeric - page 1 print completed

And every time I open this message, it is automatically deleted:
otherwise I get a huge list of messages, I realized the problem this
morning since I printed a lot of documents.

Using a networked printer, but I guess that it is not the culprit

Tnx



-- 
Antonio Montagnani
Skype : amontag52

Linux Fedora 16 Verne
-- 
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: Message after printing

2011-11-22 Thread Tim Waugh
On Tue, 2011-11-22 at 12:15 +0100, Antonio M wrote:
> Since latest updates, when I print I get on the bottom right corner a
> message every time I print a message, and it is present also after
> print completion.

What does the message say?

Tim.
*/



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


Snap! A system snapshotter for Fedora / Ubuntu / Windows / and more

2011-11-22 Thread Mo Morsi
Hey all, I'm looking for help testing a project I've been working on 
over the last few months. Snap [1] is a cross-platform system snapshot 
and restoration utility which uses the underlying package management 
system to take snapshots of packages installed as well as files modified 
outside of the package management system.


Only files modified post-installation and new-files (eg those not 
tracked by the package system) are backed up so that snapshots are 
lightweight and are able to be migrated across hosts. Currently 
supported are RPM based distros (Fedora, RHEL, CentOS <./CentOS.html>), 
Deb based distros (Debian, Ubutunu), and Windows


Also supported are service snapshots. For example postgres and mysql 
db's will be backed up, as are Apache and IIS websites using the native 
tooling. All of this is built ontop of a very modular / plugable system 
which allows developers to extend Snap to take and restore snapshots of 
any custom target.


My intention of this project was to make cross-virtualization-hypervisor 
and cross-cloud-provider [2] snapshots a cinch, but it can also be used 
for general system backup and recovery.


 I've tried to harden it up as much as I could up to this point, 
writing an extensive test suite, and conducting full integration testing 
on various platforms but am looking for more widespread testing, 
especially in alternative environments. Also I would like to start 
forming a community around this project, to write backends to support 
snapshots on a variety of platforms and of a variety of services.


The project is as open source as it gets, written in Python and licensed 
under the GPLv3. I've submitted Snap to Fedora [3] and Debian / Ubuntu 
[4], any package reviews would be more than appreciated.


Thanks for reading so far!

-Mo Morsi


[1] https://github.com/movitto/snap

[2] http://mo.morsi.org/blog/node/347

[3] https://bugzilla.redhat.com/show_bug.cgi?id=755890

[4] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=649585
-- 
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


Message after printing

2011-11-22 Thread Antonio M
Since latest updates, when I print I get on the bottom right corner a
message every time I print a message, and it is present also after
print completion.

Anybody else experiencing this??

-- 
Antonio Montagnani
Skype : amontag52

Linux Fedora 16 Verne
-- 
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: Printer problem Samsung CLX-3170

2011-11-22 Thread mike cloaked
On Mon, Nov 21, 2011 at 9:59 PM, Jim  wrote:
> Fedora 16
> Printer has been working fine in Fedora 14, 15.
> F16 doesn't like it.
> I'am not getting any Selinux errors.
>
>
> Printer state:
> Idle - /usr/lib/cups/filter/rastertosamsungsplc failed
>

I can't tell from the messages output you posted if your machine is
x86_64 or not but I had a very very similar issue with a Samsung
scx4500w when I installed f16.

It turned out that the copy of the file "rastertosamsungspl" was a 32
bit version and I had installed a 64 bit system - worth checking ?

Also I notice that the name of your file is "rastertosamsungsplc"
whereas it should be "rastertosamsungspl" i.e. you have an additional
letter "c" at the end of the filename - if your file is really ending
in a "c" then check whether you have the correct 32 or 64 bit file -
if not then make sure that where you defined the file in the printer
setup is correct - if not then redefine it with the correct filename.
-- 
mike c
-- 
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: Having a large desktop. (Font, icon and application sizes)

2011-11-22 Thread Marko Vojinovic
On Tuesday 22 November 2011 14:57:19 Ed Greshko wrote:
> On 11/22/2011 01:00 PM, Marko Vojinovic wrote:
> > On Monday 21 November 2011 20:43:07 linux guy wrote:
> >> No replies to this ?   Am I asking the question wrong ?  All I want is
> >> everything on the desktop to be larger.
> > 
> > Decrease monitor resolution?
> 
> In my limited experience, decreasing monitor resolution isn't a very
> pleasing solution with LCD panels.  I'll admit, all of my LCD panels are
> over 2 years oldbut when I drive them at anything lower than their
> "native" resolution the results were decidedly sub-optimal.

Sorry, I failed to quote the OP's original question --- he wants to use his 
laptop as a car PC, and needs to have everything on the screen large since he 
is looking at the monitor from a distance.

I agree that in general LCD's are best used in their native resolution. But it 
the car environment the results could be good enough. The OP should probably 
evaluate that on the spot.

I do not know of any other (reasonably easy) way to scale *everything* on the 
screen. Tweaking font&icon sizes in KDE works for KDE apps, but in general 
doesn't work for non-KDE stuff. It would probably take a fair amount of time to 
reconfigure all possible apps to be proportionally larger. Even then, one 
cannot be sure about the toolbar buttons, sliders and similar stuff. IMHO, it's 
not worth the effort for the OP's usecase, but it's his call in the end.

Best, :-)
Marko


-- 
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: How to make temperature applet report in celsius

2011-11-22 Thread Marko Vojinovic
On Monday 21 November 2011 23:33:46 Jonathan Ryshpan wrote:
> The KDE temperature panel widget on my system reports the temperatures
> in degrees F.  I would prefer it to report in degrees C, since all the
> literature about max safe temperature, etc. gives values in degrees C.
> How can the thermometer scale be controlled?

AFAIK, the temperature widget uses the global KDE settings for that. Go to

  systemsettings -> Locale -> Country/Region&Langunage -> Other

and change the measurement system from imperial to metric. That should do it.

HTH, :-)
Marko


-- 
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