Re: [gentoo-user] apcupsd - not emailing me when power down

2015-06-07 Thread Mick
On Saturday 06 Jun 2015 23:53:31 Joseph wrote: > My remote box is connected direclty to apcups and it is running "apcupsd" > However, when I pull the cord out of the wall the "onbattery" script is not > email me anything. > > My configuration: apcupsd.conf > > UPSCABLE usb > UPSTYPE usb > DEVICE

[gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Andrew Lowe
Hi all, Under KDE, which I use, when you go to move/copy a file and it already exists in the destination, you get a dialogue pop up with a heading of "File already exists", it says in the dialogue "Source" and "Destination" with the respective paths underneath then underneath that a big expanse

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Dale
Andrew Lowe wrote: > Hi all, > Under KDE, which I use, when you go to move/copy a file and it > already exists in the destination, you get a dialogue pop up with a > heading of "File already exists", it says in the dialogue "Source" and > "Destination" with the respective paths underneath then

[gentoo-user] Fluxbox problem

2015-06-07 Thread Philip Webb
Yesterday, I updated to the now stable Fluxbox 1.3.7-r1 ; there have been no changes in my config files. Normally, I have the toolbar (the panel at the bottom of the screen) hidden & make it visible by dropping the mouse down there ; I also have Fbpager running to its left, similarly hidden & reve

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Paul Klos
Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: Hi all, Under KDE, which I use, when you go to move/copy a file and it already exists in the destination, you get a dialogue pop up with a heading of "File already exists", it says in the dialogue "Source" and "Destination" with the respecti

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Mick
On Sunday 07 Jun 2015 13:03:05 Paul Klos wrote: > Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: > > Hi all, > > > > Under KDE, which I use, when you go to move/copy a file and it > > > > already exists in the destination, you get a dialogue pop up with a > > heading of "File already exi

Re: [gentoo-user] which keymap and keyboard setup

2015-06-07 Thread lee
Alan Mackenzie writes: > Hello, Lee. > > On Fri, Jun 05, 2015 at 11:33:47PM +0200, lee wrote: >> Hi, > >> which keymap are we supposed to use for a keyboard that has 122 keys? > > I think you might have to roll your own. As a warning, this can't be > done in a single hour. It seems so --- I loo

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Andrew Lowe
On 06/07/2015 08:24 PM, Mick wrote: > On Sunday 07 Jun 2015 13:03:05 Paul Klos wrote: >> Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: >>> Hi all, >>> >>> Under KDE, which I use, when you go to move/copy a file and it >>> >>> already exists in the destination, you get a dialogue pop up wi

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Dale
Mick wrote: > On Sunday 07 Jun 2015 13:03:05 Paul Klos wrote: >> Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: >>> Hi all, >>> >>> Under KDE, which I use, when you go to move/copy a file and it >>> >>> already exists in the destination, you get a dialogue pop up with a >>> heading of "Fil

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Volker Armin Hemmann
Am 07.06.2015 um 01:40 schrieb Neil Bothwick: > On Sat, 6 Jun 2015 13:11:04 -0400, Philip Webb wrote: > >>> I've bunch of php files in many directories >>> and I need to find a text string in them "Check/Money Order" >> 'cd' to the lowest dir which contains them all, >> then 'grep -r "Check/Money

Re: [gentoo-user] which keymap and keyboard setup

2015-06-07 Thread lee
Alan Mackenzie writes: > Hello, Peter > > On Sat, Jun 06, 2015 at 02:25:17PM +0100, Peter Humphrey wrote: >> On Saturday 06 June 2015 11:22:45 Alan Mackenzie wrote: >> > :-) I have a Filco mechanical keyboard, which works well. Does your new >> > keyboard need more desk space than a standard on

Re: [gentoo-user] which keymap and keyboard setup

2015-06-07 Thread lee
Peter Humphrey writes: > On Saturday 06 June 2015 11:22:45 Alan Mackenzie wrote: >> On Fri, Jun 05, 2015 at 11:33:47PM +0200, lee wrote: >> > BTW, this keyboard is awesome. It's just as if you had a Model M, but >> > still new, and there isn't anything better available new. I've been >> > using

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Volker Armin Hemmann
Am 06.06.2015 um 18:45 schrieb Joseph: > I've bunch of php files in many directories and I need to file a text > string in them "Check/Money Order" > > I've tried: > find -type f -print0 | xargs -r0 grep -F 'Check/Money Order' > it doesn't work. > > What is a better method of searching files? grep

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Dale
Andrew Lowe wrote: > On 06/07/2015 08:24 PM, Mick wrote: >> >> From what I recall, in a full KDE desktop you will see previews only if you >> have clicked on View/Previews to enable it. This will create loads of >> thumbnails of various files so that the preview can show these. >> >> Have you tr

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Paul Klos
Op zondag 7 juni 2015 08:02:04 schreef Dale: > Andrew Lowe wrote: > > On 06/07/2015 08:24 PM, Mick wrote: > >> > >> From what I recall, in a full KDE desktop you will see previews only if > >> you > >> have clicked on View/Previews to enable it. This will create loads of > >> thumbnails of vari

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Neil Bothwick
On Sun, 07 Jun 2015 14:59:51 +0200, Volker Armin Hemmann wrote: > >> 'cd' to the lowest dir which contains them all, > >> then 'grep -r "Check/Money Order" *.php'. > > That will only search *.php files in the current directory, you need > > nope The shell expands the *.php to a list of match

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Alan McKinnon
On 07/06/2015 15:00, Volker Armin Hemmann wrote: > Am 06.06.2015 um 18:45 schrieb Joseph: >> I've bunch of php files in many directories and I need to file a text >> string in them "Check/Money Order" >> >> I've tried: >> find -type f -print0 | xargs -r0 grep -F 'Check/Money Order' >> it doesn't wo

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Mick
On Sunday 07 Jun 2015 13:51:40 Andrew Lowe wrote: > On 06/07/2015 08:24 PM, Mick wrote: > > From what I recall, in a full KDE desktop you will see previews only if > > you have clicked on View/Previews to enable it. This will create loads > > of thumbnails of various files so that the preview ca

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Alan McKinnon
On 07/06/2015 14:24, Mick wrote: > On Sunday 07 Jun 2015 13:03:05 Paul Klos wrote: >> Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: >>> Hi all, >>> >>> Under KDE, which I use, when you go to move/copy a file and it >>> >>> already exists in the destination, you get a dialogue pop up with

Re: [gentoo-user] which keymap and keyboard setup

2015-06-07 Thread Alan McKinnon
On 07/06/2015 15:00, lee wrote: > Alan Mackenzie writes: > >> Hello, Peter >> >> On Sat, Jun 06, 2015 at 02:25:17PM +0100, Peter Humphrey wrote: >>> On Saturday 06 June 2015 11:22:45 Alan Mackenzie wrote: :-) I have a Filco mechanical keyboard, which works well. Does your new keyboard

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Andrew Lowe
On 06/07/2015 10:42 PM, Alan McKinnon wrote: > On 07/06/2015 14:24, Mick wrote: >> On Sunday 07 Jun 2015 13:03:05 Paul Klos wrote: >>> Op zondag 7 juni 2015 17:42:37 schreef Andrew Lowe: Hi all, Under KDE, which I use, when you go to move/copy a file and it already exis

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Daniel Frey
On 06/07/2015 08:10 AM, Andrew Lowe wrote: > On 06/07/2015 10:42 PM, Alan McKinnon wrote: >> So there is something else here that also plays a role >> > Same here. > Hi all, I may have a solution for you. I noticed this behaviour some time back, except I had two workstations - one worked, and on

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Daniel Frey
On 06/07/2015 08:10 AM, Andrew Lowe wrote: > Same here. > Can't seem to reply to myself, just posting back the nepomuk USE-flag did indeed fix it. Dan

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Paul Klos
Op zondag 7 juni 2015 10:17:24 schreef Daniel Frey: > On 06/07/2015 08:10 AM, Andrew Lowe wrote: > > Same here. > > > > Can't seem to reply to myself, just posting back the nepomuk USE-flag > did indeed fix it. > > Dan > Interesting, I have indeed still enabled the nepomuk USE flag on kdelibs.

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Mick
On Sunday 07 Jun 2015 18:17:24 Daniel Frey wrote: > On 06/07/2015 08:10 AM, Andrew Lowe wrote: > > Same here. > > Can't seem to reply to myself, just posting back the nepomuk USE-flag > did indeed fix it. > > Dan Did you set it globally or only for some package, e.g. kdelibs? (I can't tell on m

Re: [gentoo-user] Fluxbox problem

2015-06-07 Thread Philip Webb
150607 Philip Webb wrote: > Yesterday, I updated to the now stable Fluxbox 1.3.7-r1 ; > there have been no changes in my config files. > > Normally, I have the toolbar (the panel at the bottom of the screen) hidden > & make it visible by dropping the mouse down there ; > I also have Fbpager runnin

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Daniel Frey
On 06/07/2015 10:31 AM, Mick wrote: > On Sunday 07 Jun 2015 18:17:24 Daniel Frey wrote: >> On 06/07/2015 08:10 AM, Andrew Lowe wrote: >>> Same here. >> >> Can't seem to reply to myself, just posting back the nepomuk USE-flag >> did indeed fix it. >> >> Dan > > Did you set it globally or only for s

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Daniel Frey
On 06/07/2015 10:30 AM, Paul Klos wrote: > Op zondag 7 juni 2015 10:17:24 schreef Daniel Frey: >> On 06/07/2015 08:10 AM, Andrew Lowe wrote: >>> Same here. >>> >> >> Can't seem to reply to myself, just posting back the nepomuk USE-flag >> did indeed fix it. >> >> Dan >> > Interesting, I have indeed

Re: [gentoo-user] Fluxbox problem

2015-06-07 Thread Chris Spackman
On 2015/06/07 at 01:57pm, Philip Webb wrote: > 150607 Philip Webb wrote: > > Before I file a bug, has anyone else seen this ? Any advice ? > So again, are there any other Fluxbox users on the list ? I am a Fluxbox user, but haven't updated, so cannot comment. I have been using this for sever

Re: [gentoo-user] Fluxbox problem

2015-06-07 Thread Mick
Hello Philip, On Sunday 07 Jun 2015 18:57:58 Philip Webb wrote: > 150607 Philip Webb wrote: > > Yesterday, I updated to the now stable Fluxbox 1.3.7-r1 ; > > there have been no changes in my config files. Same here. > > Normally, I have the toolbar (the panel at the bottom of the screen) > > hi

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Dale
Daniel Frey wrote: > On 06/07/2015 10:31 AM, Mick wrote: >> On Sunday 07 Jun 2015 18:17:24 Daniel Frey wrote: >>> On 06/07/2015 08:10 AM, Andrew Lowe wrote: Same here. >>> Can't seem to reply to myself, just posting back the nepomuk USE-flag >>> did indeed fix it. >>> >>> Dan >> Did you set it

Re: [gentoo-user] Fluxbox problem

2015-06-07 Thread Philip Webb
150607 Mick wrote: > On Sunday 07 Jun 2015 18:57:58 Philip Webb wrote: >> Yesterday, I updated to the now stable Fluxbox 1.3.7-r1 ; >> there have been no changes in my config files. > Same here. >> Normally, I have the toolbar (the panel at the bottom of the screen) >> hidden & make it visible by d

[gentoo-user] OT: Southbridge chip on laptop overheating

2015-06-07 Thread Daniel Frey
Hi all, Not really Gentoo-related (well except the overheating part - lots of compiling ;-) ) I have a very old laptop. It is an LG F1 laptop (circa 2005/2006 I believe) about nine years old. This has a Core2 1.6GHz chip and 4GB RAM, even though it only sees 3GB (that should tell you it's pretty

[gentoo-user] Update: OK, so not everything works properly with systemd

2015-06-07 Thread Daniel Frey
Regarding my other thread started some time ago, I finally fixed it after a lot of experimentation. I had to do several things to make mdadm work properly with dracut/systemd: 1. I had to add rd.auto=1 to kernel options in grub; 2. Upgraded to mdadm-3.3.2-r1; 3. Installed dracut-041; 4. Installed

[gentoo-user] Re: OT: Southbridge chip on laptop overheating

2015-06-07 Thread James
Daniel Frey gmail.com> writes: > Hi all, > I am curious though, what causes this chip to overheat, and can I do > something about it? There may be a generic processor fan you can mount/glue onto the chip for cooling. Make sure all other fans are running. Blow out the laptop with an air compres

[gentoo-user] Re: OT: is your metadata safe?

2015-06-07 Thread James
Bruce Hill happypenguincomputers.com> writes: > "Only two things are infinite, the universe and human stupidity, and I'm not > sure about the former." Your probably looking in the mirror too much.

Re: [gentoo-user] Re: OT: is your metadata safe?

2015-06-07 Thread J. Roeleveld
On 8 June 2015 06:09:30 CEST, James wrote: >Bruce Hill happypenguincomputers.com> writes: > > > >> "Only two things are infinite, the universe and human stupidity, and >I'm not >> sure about the former." > > >Your probably looking in the mirror too much. Considering it was Albert Einstein that

Re: [gentoo-user] Re: OT: Southbridge chip on laptop overheating

2015-06-07 Thread Alan McKinnon
On 08/06/2015 06:05, James wrote: > Daniel Frey gmail.com> writes: > >> Hi all, > >> I am curious though, what causes this chip to overheat, and can I do >> something about it? > > There may be a generic processor fan you can mount/glue onto the chip > for cooling. Make sure all other fans are

RE: [gentoo-user] Re: OT: Southbridge chip on laptop overheating

2015-06-07 Thread Franz Fellner
James wrote: > Daniel Frey gmail.com> writes: > > > Hi all, > > > I am curious though, what causes this chip to overheat, and can I do > > something about it? > > There may be a generic processor fan you can mount/glue onto the chip > for cooling. Make sure all other fans are running. Blow out

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Raffaele BELARDI
Volker Armin Hemmann wrote: > Am 06.06.2015 um 18:45 schrieb Joseph: >> I've bunch of php files in many directories and I need to file a text >> string in them "Check/Money Order" >> >> I've tried: >> find -type f -print0 | xargs -r0 grep -F 'Check/Money Order' >> it doesn't work. >> >> What is a b

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Alan McKinnon
On 08/06/2015 08:05, Raffaele BELARDI wrote: > Volker Armin Hemmann wrote: >> Am 06.06.2015 um 18:45 schrieb Joseph: >>> I've bunch of php files in many directories and I need to file a text >>> string in them "Check/Money Order" >>> >>> I've tried: >>> find -type f -print0 | xargs -r0 grep -F 'Che

Re: [gentoo-user] Copying/Moving a file in KDE - is the preview missing

2015-06-07 Thread Andrew Lowe
On 06/08/2015 02:23 AM, Daniel Frey wrote: > On 06/07/2015 10:30 AM, Paul Klos wrote: >> Op zondag 7 juni 2015 10:17:24 schreef Daniel Frey: >>> On 06/07/2015 08:10 AM, Andrew Lowe wrote: Same here. >>> >>> Can't seem to reply to myself, just posting back the nepomuk USE-flag >>> did inde

Re: [gentoo-user] search files for "text string"

2015-06-07 Thread Andrew Lowe
On 06/07/2015 09:00 PM, Volker Armin Hemmann wrote: > Am 06.06.2015 um 18:45 schrieb Joseph: >> I've bunch of php files in many directories and I need to file a text >> string in them "Check/Money Order" >> >> I've tried: >> find -type f -print0 | xargs -r0 grep -F 'Check/Money Order' >> it doesn't