Re: /var/log/messages

2014-03-07 Thread Patrick Dupre
OK,

I run fine,
Thus I deleted some big files.

recover some room on the /
/dev/sdb6                          6192704  5216872    661260  89% /

but then again:
/dev/sdb6                          6192704  5532276    345856  95% /

I guess that it is the /var which grows up to fast!

I have /usr /tmp and /home on different partitions

Thank.

===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Session expiration after desired time

2014-03-07 Thread Rick Stevens

On 03/07/2014 04:48 PM, Ed Greshko issued this missive:

On 03/07/14 23:35, antonio montagnani wrote:

Ed Greshko ha scritto / said the followingil giorno/on 07/03/2014 14:42:

On 03/07/14 21:25, antonio.montagn...@alice.it wrote:

We are setting up a kiosk for a library with Fedora xguest (running Lxde)

How can I force the guest session (and only the guest session) to expire after 
an hour (or any desired time)??

Tnx for help


Are you saying you want to force a logout even if the guest is still using, or 
are you saying you want to logout after inactivity?

For inactivity, adding "export TMOUT=#seconds" to .bashrc should do the trick.




The library policy is that an user should connect for an hour, and it should 
provide an automatic logoff with a pop-up window that tell the user that is 
close to be logged off.



I see

BTW, I only now had the chance to test my suggestion.  It doesn't work 
anyway.  Fine for a terminal session


You could have the user's startup session script do something like:

1. Launch a script in the background that does something like:

sleep 1200
xmessage -buttons Acknowledge "Your session will expire in 10 
minutes"

2. Launch a second script in the background that does:

sleep 1800
xfce4-session-logout --logout

(note that this is based on an XFCE desktop). The first script will
sleep 20 minutes, then pop up a warning dialog box on the screen that
tells the user their session will rather unceremoniously end in another
10 minutes. The second script sleeps 30 minutes, then terminates the
XFCE session.

I haven't tried this, but it should work. You'd have to modify the
second script to use some other session termination thing if you don't
use XFCE.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 22643734Yahoo: origrps2 -
--
- "OK, so you're a Ph.D. Just don't TOUCH anything!" -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Session expiration after desired time

2014-03-07 Thread Ed Greshko
On 03/07/14 23:35, antonio montagnani wrote:
> Ed Greshko ha scritto / said the followingil giorno/on 07/03/2014 14:42:
>> On 03/07/14 21:25, antonio.montagn...@alice.it wrote:
>>> We are setting up a kiosk for a library with Fedora xguest (running Lxde)
>>>
>>> How can I force the guest session (and only the guest session) to expire 
>>> after an hour (or any desired time)??
>>>
>>> Tnx for help
>>
>> Are you saying you want to force a logout even if the guest is still using, 
>> or are you saying you want to logout after inactivity?
>>
>> For inactivity, adding "export TMOUT=#seconds" to .bashrc should do the 
>> trick.
>>
>>
>
> The library policy is that an user should connect for an hour, and it should 
> provide an automatic logoff with a pop-up window that tell the user that is 
> close to be logged off.
>

I see

BTW, I only now had the chance to test my suggestion.  It doesn't work 
anyway.  Fine for a terminal session


-- 
Getting tired of non-Fedora discussions and self-serving posts
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: brother mfc-j5910DW support?

2014-03-07 Thread Lawrence E Graves
Install this root and it will do the rest 
"linux-brprinter-installer-2.0.0-1.gz" Go to Brothers website and get 
the proper drivers

On 03/07/2014 03:45 PM, Aleksandar Kostadinov wrote:

Hello,

I was wondering if anybody used this device with fedora 20? I'm 
considering to buy one. I see some drivers on brother web site but 
seems somehow old. I'd like to print and scan over wifi.


Thank you!


--
All things are workable but don't all things work.
Prov. 3:5 & 6

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


brother mfc-j5910DW support?

2014-03-07 Thread Aleksandar Kostadinov

Hello,

I was wondering if anybody used this device with fedora 20? I'm 
considering to buy one. I see some drivers on brother web site but seems 
somehow old. I'd like to print and scan over wifi.


Thank you!
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Session expiration after desired time

2014-03-07 Thread antonio montagnani

Ed Greshko ha scritto / said the followingil giorno/on 07/03/2014 14:42:

On 03/07/14 21:25, antonio.montagn...@alice.it wrote:

We are setting up a kiosk for a library with Fedora xguest (running Lxde)

How can I force the guest session (and only the guest session) to expire after 
an hour (or any desired time)??

Tnx for help


Are you saying you want to force a logout even if the guest is still using, or 
are you saying you want to logout after inactivity?

For inactivity, adding "export TMOUT=#seconds" to .bashrc should do the trick.




The library policy is that an user should connect for an hour, and it 
should provide an automatic logoff with a pop-up window that tell the 
user that is close to be logged off.


Tnx for help

--
Antonio M
Skype: amontag52

Linux Fedora F20 (Heisenbug) on Acer 5720

http://lugsaronno.altervista.org
http://www.campingmonterosa.com




--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: enscript duplex not working

2014-03-07 Thread Robert Moskowitz


On 03/02/2014 04:18 AM, Robert Moskowitz wrote:


On 03/01/2014 11:13 PM, Robert Moskowitz wrote:
I have used enscript in the past for printing off Internet Drafts 
two-up in duplex on my HP8600:


enscript -2r --margins=:::45 -DDuplex:true -P HP8600 
draft-moskowitz-hip-dex.txt


Worked fine in the past on my f17 install.  Well, you might recall 
that back in December I installed f20 with Gnome, so for the 1st time 
I used enscript to print off some IDs for next week's IETF meeting 
and duplex is not working.


Duplex works fine from Acrobat reader and LibreOffice when I select 
that option from the print dialog.  So I know I have duplex properly 
installed for the printer.  Enscript does not use Gnome print dialog, 
but sends directly somehow.


So any idea what I need to do for duplex printing?  I am heading for 
the plane in 12 hours, and don't want to lug more paper than I have to.


I just tried using Firefox (opened the file locally then print and 
choose 2 pages per page and duplex), but it gets the lines per page 
wrong  enscript is at least getting that right...





Now I have tried it on another printer that has duplexer.  I can duplex 
from any program I have tried that works through the gnome interface for 
printing.  But enscript is not duplexing.



Either I have to figure out how to fix this or replace enscript.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: freeradius and NIS

2014-03-07 Thread Ed Greshko
On 03/07/14 22:08, Mark Haney wrote:
> Thing is, based on my searching, getting FreeRADIUS to work with NIS
> isn't possible.  At least I've found no documentation on how to make
> it work.  There's tons on getting it to work with LDAP, but not NIS.
> Which is the reason for my OP.

I think there is a difference between the question

Has anyone integrated FreeRADIUS with NIS?

and

Can FreeRADIUS be integrated with NIS?

The fact that you've not found any information or documentation on how to 
integrate FreeRADIUS with NIS doesn't imply that it isn't possible.  It could 
mean that others haven't seen the need to do the work.  Or that some have done 
the work...but it was an in-house project and not released.  I've done a few 
bespoke projects that may have been of value to others but never made it into 
general release.



-- 
Getting tired of non-Fedora discussions and self-serving posts



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
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Critical bug in GnuTLS

2014-03-07 Thread g



On 03/05/14 07:26, Matthew Miller wrote:

On Wed, Mar 05, 2014 at 12:01:04AM +, Patrick O'Callaghan wrote:

http://arstechnica.com/security/2014/03/critical-crypto-bug-leaves-linux-hundreds-of-apps-open-to-eavesdropping/
Putting aside the slightly hysterical tone of the article, this is
appears to be a real bug with potentially serious implications. I see
that Koji has an updated rpm for F21 and wonder if this will be
backported to F20 and F19. Like *soon*.


https://admin.fedoraproject.org/updates/FEDORA-2014-3413/gnutls-3.1.20-4.fc20
https://admin.fedoraproject.org/updates/FEDORA-2014-3363/gnutls-3.1.20-4.fc19

These need testing and karma.


which is exactly why i get these email headers:

  From: bugzi...@redhat.com
  To: rhsa-annou...@redhat.com, enterprise-watch-l...@redhat.com

*all* fedora project users should be subscribed.

List-Subscribe:
   
   

--

peace out.

in a world with out fences, who needs gates.

tc.hago.

g
.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: best, up-to-date, *detailed* coverage of systemd?

2014-03-07 Thread g



On 03/05/14 05:26, poma wrote:


FOSDEM -
   Free and Open
 Source Software
   Developers' European Meeting


2  - systemd: The First Two Years
  0http://video.fosdem.org/2013/maintracks/Janson/
   1'systemd,_Two_Years_Later.webm'
3
 .  - systemd in Debian
   http://video.fosdem.org/2013/crossdistro/
'systemd_in_Debian.webm'


 .  - Beyond Init: systemd
1http://video.fosdem.org/2011/maintracks/
   1'systemd.xvid.avi'
  0
2


nice links.

how did you know i am a video buff? ;-)


--

peace out.

in a world with out fences, who needs gates.

tc.hago.

g
.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: freeradius and NIS

2014-03-07 Thread Mark Haney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



On 03/06/14 20:22, David Beveridge wrote:

> 
> You don't need to lie, or make stuff up, just explain that it IS
> possible, BUT just not within the timeframe and budget requested.
> 

Thing is, based on my searching, getting FreeRADIUS to work with NIS
isn't possible.  At least I've found no documentation on how to make
it work.  There's tons on getting it to work with LDAP, but not NIS.
Which is the reason for my OP.

- -- 
Mark Haney
Network/Systems Administrator
Practichem
W: (919) 714-8428
Fedora release 20 (Heisenbug) 3.13.4-200.fc20.x86_64
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJTGdLYAAoJEM/YzwEAv6e7TfYH/1osDdTfNo5tqwMeoQBbE992
EaiE1EgM0UJqmqkGgFLdp8OpAW3m/UMA4rNYs5g+7d0yCboWqCRrwgV4/dkIQksH
gkWu7SI9XPLxHRMwxcNUZX37DB6NSS85XHYTDCz6svqHf7Ls+d4NA+MvF6lJQba+
o+zTzVAuV6Yax19Tuh2umg3YwobUh+IKLNb3xnyEEv4YrcG+w+g1rfNrNrvozAGp
wKOLxuddggUxGTtBIxmv9WBVf7nRpgIg2FnP7faNrXort9GrCIjjS5NG+MF/aUWw
OEr4hjNXmT6p9gTAGsahxx6TfSMBN1dQ5aOWH54+SYUhe0wLgzYuMIKYo6rgZBM=
=OaE5
-END PGP SIGNATURE-

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: Session expiration after desired time

2014-03-07 Thread Ed Greshko
On 03/07/14 21:25, antonio.montagn...@alice.it wrote:
> We are setting up a kiosk for a library with Fedora xguest (running Lxde)
>
> How can I force the guest session (and only the guest session) to expire 
> after an hour (or any desired time)??
>
> Tnx for help

Are you saying you want to force a logout even if the guest is still using, or 
are you saying you want to logout after inactivity? 

For inactivity, adding "export TMOUT=#seconds" to .bashrc should do the trick.


-- 
Getting tired of non-Fedora discussions and self-serving posts
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Session expiration after desired time

2014-03-07 Thread antonio.montagn...@alice.it



We are setting up a kiosk for a library with Fedora xguest (running Lxde)

How can I force the guest session (and only the guest session) to expire after 
an hour (or any desired time)??

Tnx for help

Antonio Montagnani




-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


proper spec file format for designating systemd service files?

2014-03-07 Thread Robert P. J. Day

  kind of a general fedora packaging question, so forgive me if this
sounds silly -- i'm still getting back into rpm stuff after years with
ubuntu.

  just noticed on my fully-updated f20 system that there are a few
systemd service files under /usr/lib/systemd/system that are marked
executable:

$ find . -type f -name "*.service" -perm /0111
./isdn.service
./pppoe-server.service
./wpa_supplicant.service
./capi.service
$

sure enough:

$ ls -l capi.service
-rwxr-xr-x. 1 root root 184 Aug  3  2013 capi.service
$

doesn't hurt, of course, just unnecessary. so being inherently
curious, i popped over to the package git repo:

http://pkgs.fedoraproject.org/cgit/isdn4k-utils.git/tree/

and took a look at the spec file to see what was happening:

http://pkgs.fedoraproject.org/cgit/isdn4k-utils.git/tree/isdn4k-utils.spec

and the relevant parts seem to be, first this at line 249:

# install isdn startup script
mkdir -p %{buildroot}%{_libexecdir}
install -m0755 %{SOURCE2} %{buildroot}%{_libexecdir}/isdn
install -m0755 -d %{buildroot}%{_unitdir}
install -m0644 %{SOURCE11} %{buildroot}%{_unitdir}/isdn.service
install -m0644 %{SOURCE8} %{buildroot}%{_unitdir}/capi.service

followed by this further down starting at line 299:

%files
%defattr(-,root,root,755)
%dir /etc/isdn
%dir /var/spool/vbox
%dir /var/log/vbox
%dir %{_datadir}/isdn
%dir %{_libdir}/capi
%verify(not md5 size mtime) %config(noreplace) /etc/isdn/*
%verify(not md5 size mtime) %config(noreplace) /etc/ppp/ioptions
%config(noreplace) /etc/ppp/peers/*
%config(noreplace) /etc/capi.conf
%config(noreplace) /etc/capi20.conf
%if 0%{?fedora} > 13 || 0%{?rhel} > 6
%{_libdir}/udev/rules.d/40-isdn.rules
%endif
%{_libdir}/pppd
%{_datadir}/isdn/*.dat
%{_datadir}/isdn/dest.cdb
%{_libdir}/*.so.*
%{_libdir}/capi/*.so.*
%defattr(755,root,root,755)<---
%{_sbindir}/avmcapictrl
%{_sbindir}/hisaxctrl
%{_sbindir}/icnctrl
%{_sbindir}/isdnctrl
%{_sbindir}/pcbitctl
%{_libexecdir}/isdn
%{_unitdir}/isdn.service   <--- aha
%{_unitdir}/capi.service   <--- him, too
... snip ...

  based on what i see, it would *seem* to make more sense to move
those two lines further down the spec file, after line 340:

%defattr(644,root,root,755)
%doc COPYING README isdnlog/README.*
%doc isdnlog/tools/zone/de/01033/zred.dtag.bz2
%ghost %{_datadir}/isdn/zone-de-dtag.cdb
... snip ...

  does that make sense? as i said, not a big deal and certainly
doesn't affect operation, just wanting to clarify that i'm reading the
spec file correctly and understanding how it would have been written
properly.

  and if i'm right, tempted to BZ it just cuz.

rday

-- 


Robert P. J. Day Ottawa, Ontario, CANADA
http://crashcourse.ca

Twitter:   http://twitter.com/rpjday
LinkedIn:   http://ca.linkedin.com/in/rpjday

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: /var/log/messages

2014-03-07 Thread lee
"Patrick Dupre"  writes:

> Hello,
>
> I have a /var/log/messages file of size: 74197292
> Is it resonable?

That depends on what´s in it.  Under some circumstances, there can be
quite a bit of logging going on.

Logrotate is supposed to deal with it and might not have a chance to
when your computer is turned off at the time logrotate would run.


-- 
Fedora release 20 (Heisenbug)
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: /var/log/messages

2014-03-07 Thread Frank Murphy
On Fri, 07 Mar 2014 12:24:09 +0100
"Patrick Dupre"  wrote:

> OK,
> 
> Can I force it?
> logrotate -f /etc/logrotate.conf
> 
> did not help.
> 

ls -l /var/log/messages

___
Regards
Frank 
frankly3d.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: /var/log/messages

2014-03-07 Thread Patrick Dupre
OK,

Can I force it?
logrotate -f /etc/logrotate.conf

did not help.


> On Fri, 07 Mar 2014 02:34:20 +0100
> Patrick Dupre wrote:
> 
> > I have a /var/log/messages file of size: 74197292
> > Is it resonable?
> 
> Probably not. Is logrotate turned off or not installed?
> 
> Here's my logs:
> 
> zooty> ls -l /var/log/messages*
> -rw--- 1 root root 289231 Mar 6 19:59 /var/log/messages
> -rw--- 1 root root 909108 Feb 9 21:54 /var/log/messages-20140210
> -rw--- 1 root root 676609 Feb 16 04:03 /var/log/messages-20140216
> -rw--- 1 root root 450818 Feb 24 04:03 /var/log/messages-20140224
> -rw--- 1 root root 232045 Mar 2 04:04 /var/log/messages-20140302
> -- 
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org


===
 Patrick DUPRÉ                                 | | email: pdu...@gmx.com
 Laboratoire de Physico-Chimie de l'Atmosphère | |
 Université du Littoral-Côte d'Opale           | |
 Tel.  (33)-(0)3 28 23 76 12                   | | Fax: 03 28 65 82 44
 189A, avenue Maurice Schumann                 | | 59140 Dunkerque, France
===
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: /var/log/cups

2014-03-07 Thread Tim Waugh
On Fri, 2014-03-07 at 02:38 +0100, Patrick Dupre wrote:
> I have a /var/log/cups/error_log file of size: 129005456!!
> why?

You have verbose logging turned on. Turn it off:

cupsctl --no-debug-logging

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
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: man command question

2014-03-07 Thread Joachim Backes
On 03/06/2014 09:38 PM, Cameron Simpson wrote:
> On 06Mar2014 16:19, lee  wrote:
>> Joachim Backes  writes:
>>> I'm running F20 on gnome3 desktop,
>>> and I see some weird effect in the man command (entered in a gnome
>>> terminal) if using the "-P" command option:
>>>
>>> man -P cat man >/dev/null
>>>
>>> should use the cat command as pager. I get the expected effect, but one
>>> or more additional messages to stderr:
>>>
>>> :981: warning [p 7, 5.8i, div `3tbd1,0', 0.0i]: cannot
>>> adjust line
>>> :990: warning [p 7, 5.8i, div `3tbd4,0', 0.0i]: cannot
>>> adjust line
>>>
>>>
>>> Anybody knows what this means? No such message if the gnome terminal is
>>> wide enough.
>>
>> It probably means what it says.  You can format man pages with a
>> variable number of characters per line, hence you might have "(setq
>> Man-width 75)" in your ~/.emacs to get a reasonably formatted display
>> rather than one with the lines being too long for comfortable reading.
>>
>> Now say, you specify zero characters per line, and the software may
>> suddenly have a hard time adjusting the lines.
> 
> In case lee's unclear: the output of "man" isn't going to your terminal any
> more, so it doesn't know how wide the output should be.

Hi Cameron,

Sounds reasonable.

> 
> Personally I would expect it to default to assuming an 80-column output and
> format for that. But it appears not.

I filed a BZ.

Thanks for your answer.

Kind regards

Joachim Backes


-- 

Fedora release 20 (Heisenbug)
Kernel-3.13.5-202.fc20.x86_64


Joachim Backes 
https://www-user.rhrk.uni-kl.de/~backes/de-index.html
https://www-user.rhrk.uni-kl.de/~backes/en-index.html
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


f20 lvm - inactive LV

2014-03-07 Thread Michal Kopacki
  hello,

 This is my first post to that list so hello everyone.

 After a few years break, I've decided to take Fedora on test drive (last 
Fedora I've seen was something around 11; I use centos/redhat on daily basis) 
and I must say there are many changes here (good and bad ones). Anyway, below 
my problem:

 There is this thing with LVM which I can't understand - I did create few VGs 
and LVs and add them to fstab (as default) but after that strange things 
started to happen during system boot. It seems that not all LVs are activated 
during system boot (kind of randomness here). I came to this solution that I 
need to put all LVs I want to be mounted by default as kernel parameter (ie 
rd.lvm.lv=rootvg/rootlv). 

  I can live with that when it comes to "system" LVs but problem is that I have 
many "non os" LVs on that machine and putting all of them as a kernel param 
doesn't seem right.

1. Am I doing something wrong ? 
2. Is there new method other than default in fstab ? 
3. What for "rd.lvm.lv" is ?

-- 
regards,
Michal
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org