[gentoo-user] Firefox and clang

2024-11-01 Thread Michael
Any idea why clang was disabled in www-client/firefox-128.4.0: [ebuild U ] www-client/firefox-128.4.0:esr::gentoo [128.3.1:esr::gentoo] USE="X dbus gmp-autoupdate hwaccel jumbo-build openh264 system-av1 system- harfbuzz system-icu system-jpeg system-libevent system-libvpx system-webp teleme

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Wols Lists
On 01/09/2024 22:36, Dale wrote: https://linux.die.net/man/1/cgexec I've never seen that looping ... but there are a few sites like that - all it is is the linux man page. If you do "man cgexec" you should get the exact same text. Cheers, Wol

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Dale
Wol wrote: > On 01/09/2024 20:36, Dale wrote: >> I wonder tho, in one of the replies, it says to create a directory in >> /sys.  Don't those get cleared after a reboot?  I'm almost certain /proc >> does but think /sys does too.  If so, how does that survive reboots?  I >> may find more info as I se

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Wol
On 01/09/2024 20:36, Dale wrote: I wonder tho, in one of the replies, it says to create a directory in /sys.  Don't those get cleared after a reboot?  I'm almost certain /proc does but think /sys does too.  If so, how does that survive reboots?  I may find more info as I search. I'll leave you

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Dale
Wols Lists wrote: > On 01/09/2024 15:24, Dale wrote: >>  From that link, it looks like that is done manually.  In other words, >> when I start Firefox, I have to add the process to the cgroup by hand. >> Shouldn't there be a way to do it automatically?  Like add it to the >> command that runs the p

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Wols Lists
On 01/09/2024 15:24, Dale wrote: From that link, it looks like that is done manually.  In other words, when I start Firefox, I have to add the process to the cgroup by hand. Shouldn't there be a way to do it automatically?  Like add it to the command that runs the program name in the application

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Dale
Wols Lists wrote: > On 31/08/2024 19:39, Dale wrote: >> I did a lot of searching and almost all of it relates to using cgroups >> for services, like mysql or something.  I haven't found anything that >> explains how to do it for a program started by a user.  It may be doable >> but I've yet to find

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-09-01 Thread Wols Lists
On 31/08/2024 19:39, Dale wrote: I did a lot of searching and almost all of it relates to using cgroups for services, like mysql or something.  I haven't found anything that explains how to do it for a program started by a user.  It may be doable but I've yet to find it. I did a quick search an

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-31 Thread Dale
Michael wrote: > On Sunday, 25 August 2024 16:20:19 BST Dale wrote: >> Walter Dnes wrote: >>> On Fri, Aug 23, 2024 at 07:42:05PM -0500, Dale wrote >>> I still use openrc. I'll look around and see what I can find. Now I know what to look for. Thing is, not sure I use cgroups either, unl

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-31 Thread Michael
On Sunday, 25 August 2024 16:20:19 BST Dale wrote: > Walter Dnes wrote: > > On Fri, Aug 23, 2024 at 07:42:05PM -0500, Dale wrote > > > >> I still use openrc. I'll look around and see what I can find. Now I > >> know what to look for. Thing is, not sure I use cgroups either, unless > >> it is on

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-25 Thread Dale
Walter Dnes wrote: > On Fri, Aug 23, 2024 at 07:42:05PM -0500, Dale wrote > >> I still use openrc.  I'll look around and see what I can find.  Now I >> know what to look for.  Thing is, not sure I use cgroups either, unless >> it is on by default.   o_O > The bottom half of file /etc/rc.conf is d

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-24 Thread Wol
On 24/08/2024 00:03, Matt Jolly wrote: I use slices on HPC to limit users from monopolising interactive nodes, and our batch jobs kill anything that exceeds requested memory (hope that wasn't 100h into a job!). I do this on login with user slices but the concept is the same. I used something

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-24 Thread Walter Dnes
On Fri, Aug 23, 2024 at 07:42:05PM -0500, Dale wrote > I still use openrc.  I'll look around and see what I can find.  Now I > know what to look for.  Thing is, not sure I use cgroups either, unless > it is on by default.   o_O The bottom half of file /etc/rc.conf is devoted to cgroups settings

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-23 Thread Matt Jolly
> Thing is, not sure I use cgroups either, unless it is on by default.   o_OCgroups (control groups) are a kernel feature, SystemD just provides a convenient interface for them if you're using it. They form the basis of containerisation iirc.Bit of info on Wikipedia: https://en.m.wikipedia.org/wiki

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-23 Thread Dale
Matt Jolly wrote: > Hi, > > Cgroups are the answer. If you're on systemd you could try making a > `slice` for Firefox that might look a bit like this: > > /etc/systemd/system/user-firefox.slice > > ``` > [Unit] > Description=Firefox Slice > Before=slices.target > > [Slice] > MemoryAccounting=true >

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-23 Thread Matt Jolly
Hi,Cgroups are the answer. If you're on systemd you could try making a `slice` for Firefox that might look a bit like this:/etc/systemd/system/user-firefox.slice```[Unit]Description=Firefox SliceBefore=slices.target[Slice]MemoryAccounting=trueMemoryLimit=512M```Then you can run ```systemctl daemon-

Re: [gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-23 Thread Wol
On 23/08/2024 19:38, Dale wrote: Any ideas on how to limit Firefox memory usage?  Wouldn't mind if I could use it for other programs too. cgroups? Dunno how they work, but it's something they're supposed to do ... Cheers, Wol

[gentoo-user] Firefox, Seamonkey to if I can, and memory limits.

2024-08-23 Thread Dale
Howdy, A video on my TV the other day started spitting and stuttering.  At first, I thought the video was bad.  I was going to make a note to replace it then skip to the next video.  Then I realized that one of my Firefox profiles went memory hungry and was using all of my 64GBs of ram.  I don't h

[gentoo-user] Firefox ESR no microphone input

2024-07-20 Thread efeizbudak
Hi everyone, Lately I have a problem with www-client/firefox-115.12.0:esr where it does not pick up audio from my microphone. I'm on a musl system using alsa and apulse for firefox. Here is the emerge --info firefox: https://paste.gentoo.zip/naBQo92V The funny thing is that arecord works jus

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-23 Thread Dale
Michael wrote: > On Thursday, 23 November 2023 11:06:25 GMT Daniel Pielmeier wrote: >> Am 23. November 2023 08:08:47 UTC schrieb Dale : >>> Daniel Pielmeier wrote: Looks like it is related to -march=native. See bug https://bugs.gentoo.org/838373 >>> I'm not sure how you figured that

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-23 Thread Michael
On Thursday, 23 November 2023 11:06:25 GMT Daniel Pielmeier wrote: > Am 23. November 2023 08:08:47 UTC schrieb Dale : > >Daniel Pielmeier wrote: > >> Looks like it is related to -march=native. > >> > >> See bug https://bugs.gentoo.org/838373 > > > >I'm not sure how you figured that out either. >

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-23 Thread Daniel Pielmeier
Am 23. November 2023 08:08:47 UTC schrieb Dale : >Daniel Pielmeier wrote: >> Looks like it is related to -march=native. >> >> See bug https://bugs.gentoo.org/838373 >> > >I'm not sure how you figured that out either. 😃 I pasted the error message into the search engine of my choice. I think there

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-23 Thread Dale
Daniel Pielmeier wrote: > Looks like it is related to -march=native. > > See bug https://bugs.gentoo.org/838373 > Nailed it.  After the post by Michael, I edited the kernel several times.  I'm sure I ruled that thing out.  I had some crc stuff not there but same error with or without.  I admit, I

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-22 Thread Daniel Pielmeier
Looks like it is related to -march=native. See bug https://bugs.gentoo.org/838373 -- Regards Daniel

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-22 Thread Dale
Michael wrote: > On Wednesday, 22 November 2023 02:27:01 GMT Dale wrote: >> Howdy, >> >> I decided to set up the 770T as a backup system. I'm installing the >> basics that I would need to get started. The water heater set back my >> new build a bit. Anyway, Firefox fails to build with something a

Re: [gentoo-user] Firefox fails to compile. crc32 error??

2023-11-22 Thread Michael
On Wednesday, 22 November 2023 02:27:01 GMT Dale wrote: > Howdy, > > I decided to set up the 770T as a backup system. I'm installing the > basics that I would need to get started. The water heater set back my > new build a bit. Anyway, Firefox fails to build with something about a > missing crc3

[gentoo-user] Firefox fails to compile. crc32 error??

2023-11-21 Thread Dale
Howdy, I decided to set up the 770T as a backup system.  I'm installing the basics that I would need to get started. The water heater set back my new build a bit.  Anyway, Firefox fails to build with something about a missing crc32.  I found a package with that name and installed it, thought maybe

[gentoo-user] Firefox multiple language sources

2023-04-12 Thread Michael
I've noticed for some time now Firefox is downloading endless language source files, random example: * firefox-102.10.0esr-sco.xpi BLAKE2B SHA512 size ;-) ... [ ok ] >>> Downloading 'http://mirror.bytemark.co.uk/gentoo/distfiles/34/ firefox-102.10.0esr-si.xpi'

Re: [gentoo-user] Firefox to LOCalc characterset translation

2022-03-27 Thread tastytea
On 2022-03-27 23:13+0100 Michael wrote: > On Sunday, 27 March 2022 23:04:21 BST tastytea wrote: > > On 2022-03-27 22:35+0100 Michael wrote: > > > I can't explain why the following cut 'n paste problem happens > > > when I select some symbols within text in Firefox and then try to > > > insert

Re: [gentoo-user] Firefox to LOCalc characterset translation

2022-03-27 Thread Michael
On Sunday, 27 March 2022 23:04:21 BST tastytea wrote: > On 2022-03-27 22:35+0100 Michael wrote: > > I can't explain why the following cut 'n paste problem happens when I > > select some symbols within text in Firefox and then try to insert by > > middle-click in LibreOffice Calc. > > > > If I sel

Re: [gentoo-user] Firefox to LOCalc characterset translation

2022-03-27 Thread tastytea
On 2022-03-27 22:35+0100 Michael wrote: > I can't explain why the following cut 'n paste problem happens when I > select some symbols within text in Firefox and then try to insert by > middle-click in LibreOffice Calc. > > If I select the symbols for £ (GBP), or € (Euro) and middle click > upon

[gentoo-user] Firefox to LOCalc characterset translation

2022-03-27 Thread Michael
I can't explain why the following cut 'n paste problem happens when I select some symbols within text in Firefox and then try to insert by middle-click in LibreOffice Calc. If I select the symbols for £ (GBP), or € (Euro) and middle click upon a cell in LOCalc, a window pops up asking "Select t

Re: [gentoo-user] firefox automatic update??? [RESOLVED]

2020-11-12 Thread n952162
I discovered that I had significant filesystem corruption. On 11/12/20 10:47 AM, n952162 wrote: So, /usr/lib/firefox/firefox runs, and is writable only by root.  But it can't be that the full firefox functionality gets executed in 239364 bytes! $ type firefox firefox is /usr/bin/fir

Re: [gentoo-user] firefox automatic update???

2020-11-12 Thread n952162
So, /usr/lib/firefox/firefox runs, and is writable only by root.  But it can't be that the full firefox functionality gets executed in 239364 bytes! $ type firefox firefox is /usr/bin/firefox $  which -a  firefox /usr/bin/firefox $ ll /usr/bin/firefox lrwxrwxrwx 1 root root 2

Re: [gentoo-user] firefox automatic update???

2020-11-12 Thread Andreas Fink
Hmm, interesting that it shows not the full path on one machine. This should always show you the full path: for p in `pgrep firefox` ; do ls -lh /proc/${p}/exe ; done You could also check with the following command what will be executed: which firefox Use `which -a firefox` to see all possible bin

Re: [gentoo-user] firefox automatic update???

2020-11-12 Thread n952162
Ah, that is a good point ... assuming there's not an suid-updater squirreled away somewhere.  I'm pretty sure that I've run firefox (lots) since last rebuilding it on the machine in question. Your test is good, but yields new questions: - machine 1: $ pgrep -a firefox *2829 /usr/lib64/fir

Re: [gentoo-user] firefox automatic update???

2020-11-12 Thread Fosco
I get notifications from firefox that an updates are available. Once I wondered if it would be able to update and I pushed the update button, it failed (likely in escalading the auths, as Andreas pointed). To get rid of long compilation of firefox, I use www-client/firefox-bin. The emerged binary

Re: [gentoo-user] firefox automatic update???

2020-11-11 Thread Andreas Fink
On Thu, 12 Nov 2020 07:55:18 +0100 n952162 wrote: > I was just informed by firefox on one of my gentoo machines that firefox > has updated, I need to restart. > > I no longer find an option to disable automatic update.  Is there no hope? > > And do I have to go through another 18 hour firefox e

[gentoo-user] firefox automatic update???

2020-11-11 Thread n952162
I was just informed by firefox on one of my gentoo machines that firefox has updated, I need to restart. I no longer find an option to disable automatic update.  Is there no hope? And do I have to go through another 18 hour firefox emerge to get rid of their "update"?  Or is their binary sitting

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-07 Thread Gerion Entrup
Am Dienstag, 5. Mai 2020, 18:38:26 CEST schrieb tu...@posteo.de: > On 05/05 11:22, Matt Connell (Gmail) wrote: > > On 2020-05-05 10:38, tu...@posteo.de wrote: > > > Is Firefox/Waterfox able to interface with jackd? > > > > Disclaimer, I do not use Jack. > > > > Firefox builds, in my personal expe

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Dale
Michael wrote: > On Tuesday, 5 May 2020 18:33:29 BST Mark Knecht wrote: >> On Tue, May 5, 2020 at 9:43 AM Dale wrote: >> >> >> >>> Question, somewhat off topic but somewhat on topic. I use smplayer to >> send my videos to my TV using the second port on my video card. I set >> smplayer to send t

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Matt Connell (Gmail)
On 2020-05-05 13:00, Michael wrote: I use FF-68.7.0-r1 with USE="-pulseaudio" and it works fine producing sound. I stand corrected then. I wasn't able to get FF audio working without the pulseaudio use flag, but that may have been because I was trying to do so while still having pulse instal

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Michael
On Tuesday, 5 May 2020 18:33:29 BST Mark Knecht wrote: > On Tue, May 5, 2020 at 9:43 AM Dale wrote: > > > > > Question, somewhat off topic but somewhat on topic. I use smplayer to > > send my videos to my TV using the second port on my video card. I set > smplayer to send the audio to the TV

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread tuxic
On 05/05 10:34, Mark Knecht wrote: > On Tue, May 5, 2020 at 9:38 AM wrote: > > > Background to my question: > > I am still searching for a equalizer solution, which does not > > uses the eq provided by the hardware (I am using a DAC, which > > does nothing else, than converting PCM into an analog

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Dale
Mark Knecht wrote: > > > On Tue, May 5, 2020 at 9:43 AM Dale > wrote: > > > > > > > Question, somewhat off topic but somewhat on topic.  I use smplayer > to send my videos to my TV using the second port on my video card.  I > set smplayer to send the audio to the TV,

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Michael
On Tuesday, 5 May 2020 18:34:29 BST Mark Knecht wrote: > On Tue, May 5, 2020 at 9:38 AM wrote: > > > > Background to my question: > > I am still searching for a equalizer solution, which does not > > uses the eq provided by the hardware (I am using a DAC, which > > does nothing else, than conver

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Mark Knecht
On Tue, May 5, 2020 at 9:38 AM wrote: > Background to my question: > I am still searching for a equalizer solution, which does not > uses the eq provided by the hardware (I am using a DAC, which > does nothing else, than converting PCM into an analog signal. > No processing whatsoever. > > So the

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Mark Knecht
On Tue, May 5, 2020 at 9:43 AM Dale wrote: > > > Question, somewhat off topic but somewhat on topic. I use smplayer to send my videos to my TV using the second port on my video card. I set smplayer to send the audio to the TV, instead of my puter speakers. I've never used pulseaudio but with F

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Dale
Mark Knecht wrote: > > > On Tue, May 5, 2020 at 9:22 AM Matt Connell (Gmail) > mailto:matthewdconn...@gmail.com>> wrote: > > > > On 2020-05-05 10:38, tu...@posteo.de wrote: > > > Is Firefox/Waterfox able to interface with jackd? > > > > Disclaimer, I do not use Jack. > > >

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread tuxic
On 05/05 11:22, Matt Connell (Gmail) wrote: > On 2020-05-05 10:38, tu...@posteo.de wrote: > > Is Firefox/Waterfox able to interface with jackd? > > Disclaimer, I do not use Jack. > > Firefox builds, in my personal experience, are intended to be used with > pulseaudio and only pulseaudio. Some pe

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Mark Knecht
On Tue, May 5, 2020 at 9:22 AM Matt Connell (Gmail) < matthewdconn...@gmail.com> wrote: > > On 2020-05-05 10:38, tu...@posteo.de wrote: > > Is Firefox/Waterfox able to interface with jackd? > > Disclaimer, I do not use Jack. > > Firefox builds, in my personal experience, are intended to be used wit

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Matt Connell (Gmail)
On 2020-05-05 10:38, tu...@posteo.de wrote: Is Firefox/Waterfox able to interface with jackd? Disclaimer, I do not use Jack. Firefox builds, in my personal experience, are intended to be used with pulseaudio and only pulseaudio. Some people have made some shims for making it worth with alsa

Re: [gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread Mark Knecht
On Tue, May 5, 2020 at 8:38 AM wrote: > > Is Firefox/Waterfox able to interface with jackd? > > Cheers! > Meino > Personally, meaning my thoughts having used Jack for years, is that you'd be asking for an insane numbers of problems and never ending disappointments if you went this way. That said

[gentoo-user] Firefox/Watefox and jack?

2020-05-05 Thread tuxic
Hi, to prevent a lot of installation and configuration effort only to recognize, that it does not work: Is Firefox/Waterfox able to interface with jackd? Cheers! Meino

Re: [gentoo-user] Firefox again - sad

2020-04-13 Thread Peter Humphrey
On Monday, 13 April 2020 11:15:26 BST Michael wrote: > On Monday, 13 April 2020 11:08:30 BST Ian Zimmerman wrote: > > After the latest Firefox update (68.7.0), when I try to open the menu > > with F10, sometimes Firefox crashes (about the 3rd time today now). > > Does anyone else see that? > > Not

Re: [gentoo-user] Firefox again - sad

2020-04-13 Thread Michael
On Monday, 13 April 2020 11:08:30 BST Ian Zimmerman wrote: > After the latest Firefox update (68.7.0), when I try to open the menu > with F10, sometimes Firefox crashes (about the 3rd time today now). > Does anyone else see that? Not here, on two boxen so far. F10 brings it up and takes it down a

[gentoo-user] Firefox again - sad

2020-04-13 Thread Ian Zimmerman
After the latest Firefox update (68.7.0), when I try to open the menu with F10, sometimes Firefox crashes (about the 3rd time today now). Does anyone else see that? -- Ian

Re: [gentoo-user] Firefox 68.6.0-r3 local URL parsing is borked?

2020-04-03 Thread Michael
On Thursday, 2 April 2020 12:33:33 BST Michael wrote: > Something changed in the Gentoo /usr/bin/firefox script and parsing URLs > with spaces in the file name fails to escape the spaces and opens all sort > tabs while trying to resolve/search for each part of the URL string. > > Using /usr/lib64/

[gentoo-user] Firefox 68.6.0-r3 local URL parsing is borked?

2020-04-02 Thread Michael
Something changed in the Gentoo /usr/bin/firefox script and parsing URLs with spaces in the file name fails to escape the spaces and opens all sort tabs while trying to resolve/search for each part of the URL string. Using /usr/lib64/firefox/firefox seems to parse the path correctly (when calle

[gentoo-user] Firefox display oddity

2020-03-05 Thread Peter Humphrey
Hello list, This is www-client/firefox-68.5.0. From time to time, when I switch desktops to it, FF doesn't show the tab bar. The odd thing about it is that the mouse pointer picks up displayed objects as though the tab bar were on display, so I have to aim half an inch below what I want to sele

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread n952162
There's a  difference between "unpin" and "dismiss".  You can "pin" your favorites to the screen, and apparently Amazon supports Mozilla, so its icon is "pre-pinned".  And I *can* unpin it - it goes away for that session.  But it's pinned on the next invocation. But, as I say, I doubt this is a n

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread Michael
On Tuesday, 3 March 2020 10:29:39 GMT n952162 wrote: > > Well, I can change it. It's just that the next time I start firefox, I > have the old values back (and Amazon is pinned, again). Hmm ... interesting ... when I go to Top Sites on a new tab and click on the top right of a site at the Open M

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread n952162
On 2020-03-03 11:26, Michael wrote: On Tuesday, 3 March 2020 09:57:33 GMT n952162 wrote: On 2020-03-03 10:27, Michael wrote: On Tuesday, 3 March 2020 03:58:12 GMT Walter Dnes wrote: On Mon, Mar 02, 2020 at 11:16:52PM +0100, n952162 wrote I have a banner that says that "your browser is being

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread Michael
On Tuesday, 3 March 2020 09:57:33 GMT n952162 wrote: > On 2020-03-03 10:27, Michael wrote: > > On Tuesday, 3 March 2020 03:58:12 GMT Walter Dnes wrote: > >> On Mon, Mar 02, 2020 at 11:16:52PM +0100, n952162 wrote > >> > >>> I have a banner that says that "your browser is being managed by your > >>

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread n952162
On 2020-03-03 10:27, Michael wrote: On Tuesday, 3 March 2020 03:58:12 GMT Walter Dnes wrote: On Mon, Mar 02, 2020 at 11:16:52PM +0100, n952162 wrote I have a banner that says that "your browser is being managed by your organization". Oh yeah? I guess that would be gentoo. How can I break that

Re: [gentoo-user] firefox managed by my organization?

2020-03-03 Thread Michael
On Tuesday, 3 March 2020 03:58:12 GMT Walter Dnes wrote: > On Mon, Mar 02, 2020 at 11:16:52PM +0100, n952162 wrote > > > I have a banner that says that "your browser is being managed by your > > organization". Oh yeah? I guess that would be gentoo. How can I break > > that relationship? > > Do

Re: [gentoo-user] firefox managed by my organization?

2020-03-02 Thread Walter Dnes
On Mon, Mar 02, 2020 at 11:16:52PM +0100, n952162 wrote > I have a banner that says that "your browser is being managed by your > organization". Oh yeah? I guess that would be gentoo. How can I break > that relationship? Do you have Avast and/or AVG anti-virus? See https://support.mozilla.org/e

[gentoo-user] firefox managed by my organization?

2020-03-02 Thread n952162
I have a banner that says that "your browser is being managed by your organization".  Oh yeah?  I guess that would be gentoo.  How can I break that relationship? In particular, when I set my default home page (to blank), after properly exiting firefox and re-starting, I'm back to the mozilla home

Re: [gentoo-user] Firefox and script block tool/addon

2020-02-17 Thread Dale
Spackman, Chris wrote: > On 2020/02/17 at 02:31am, Dale wrote: >> Dale wrote: >> I been playing with this add-on and watched some videos on it.  While >> it does some things better, it just isn't specific enough for what I >> need.  In some cases, if I blocked scripts with it, some sites >> wouldn

Re: [gentoo-user] Firefox and script block tool/addon

2020-02-17 Thread Spackman, Chris
On 2020/02/17 at 02:31am, Dale wrote: > Dale wrote: > I been playing with this add-on and watched some videos on it.  While > it does some things better, it just isn't specific enough for what I > need.  In some cases, if I blocked scripts with it, some sites > wouldn't work at all or caused othe

Re: [gentoo-user] Firefox and script block tool/addon

2020-02-17 Thread Dale
Dale wrote: > Corpo wrote: >> Le 24/01/2020 à 22:52, Dale a écrit : >>> Howdy, >>> >>> I use Firefox and have a issue with scripts on some sites.  I have >>> noscript installed and for the most part, it works.  That said, there is >>> times when it doesn't do what I need.  It seems, from what I can

Re: [gentoo-user] Firefox and script block tool/addon

2020-01-25 Thread Dale
Corpo wrote: > Le 24/01/2020 à 22:52, Dale a écrit : >> Howdy, >> >> I use Firefox and have a issue with scripts on some sites.  I have >> noscript installed and for the most part, it works.  That said, there is >> times when it doesn't do what I need.  It seems, from what I can find >> anyway, tha

Re: [gentoo-user] Firefox and script block tool/addon

2020-01-25 Thread aisha
Try enabling clang and see what happens. llvm is a really good piece of software. I generally also have pulseaudio and hwaccel enabled but thats up to you. --- Aisha blog.aisha.cc On 2020-01-25 04:39, Dale wrote: Hi, I'm checking that as I type.  It may not solve all my problems but it may

Re: [gentoo-user] Firefox and script block tool/addon

2020-01-25 Thread Corpo
Le 24/01/2020 à 22:52, Dale a écrit : > Howdy, > > I use Firefox and have a issue with scripts on some sites.  I have > noscript installed and for the most part, it works.  That said, there is > times when it doesn't do what I need.  It seems, from what I can find > anyway, that you can either allo

Re: [gentoo-user] Firefox and script block tool/addon

2020-01-24 Thread Dale
Hi, I'm checking that as I type.  It may not solve all my problems but it may certainly help.  Some scripts make one CPU core go to 100% and locks up the tab the script is running on.  Firefox, to its credit, is sane enough to allow other tabs to work tho.  At least it doesn't completely lock up t

Re: [gentoo-user] Firefox and script block tool/addon

2020-01-24 Thread aisha
Firefox currently has some issues with addons and local storage. Do you have the use `clang` flag enabled? This compiles firefox using clang-llvm and fixes a lot of the problems. --- Aisha www.aisha.cc On 2020-01-24 22:52, Dale wrote: Howdy, I use Firefox and have a issue with scripts on some

[gentoo-user] Firefox and script block tool/addon

2020-01-24 Thread Dale
Howdy, I use Firefox and have a issue with scripts on some sites.  I have noscript installed and for the most part, it works.  That said, there is times when it doesn't do what I need.  It seems, from what I can find anyway, that you can either allow scripts or not allow scripts but can't pick and

Re: [gentoo-user] firefox 68

2019-09-15 Thread Walter Dnes
On Sun, Sep 15, 2019 at 09:08:24AM -0700, Ian Zimmerman wrote > Is this for real or is it a mistake to be reverted soon? I do not > enjoy the thought of rebuilding firefox twice in a row. The USE flags seem to have been around for a while. I haven't updated my desktop for a few weeks (I'll do

[gentoo-user] firefox 68

2019-09-15 Thread Ian Zimmerman
When I saw that the last update of firefox enabled linking with some system libraries -- sqlite and jpeg included -- I went to the window right away and checked the sky for flying pigs ;-) Is this for real or is it a mistake to be reverted soon? I do not enjoy the thought of rebuilding firefox tw

Re: [gentoo-user] Firefox key shortcut buglet

2019-07-10 Thread Dale
Ian Zimmerman wrote: > Alt-Control-R should switch between normal rendering and Reader mode. > All the documentation available including the "tooltip" that pops up > when I hover my mouse over the Reader icon agrees. > > And yet, in the File menu, there is an item "Restart (Developer)" with > the s

[gentoo-user] Firefox key shortcut buglet

2019-07-10 Thread Ian Zimmerman
Alt-Control-R should switch between normal rendering and Reader mode. All the documentation available including the "tooltip" that pops up when I hover my mouse over the Reader icon agrees. And yet, in the File menu, there is an item "Restart (Developer)" with the same shortcut. And when I in fac

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-12 Thread Wols Lists
On 10/01/19 12:28, Mick wrote: > What about 'rsync -H' or 'tar --hard-dereference'? Don't they cater to hard > links in the fs? rsync and cp are both quite happy with hardlinks. They just keep a table of them in memory ... a 3TB disk full of hard links will fill your memory ... Cheers, Wol

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-12 Thread Wols Lists
On 10/01/19 00:55, Dale wrote: > Just how do you do backups? If cp -a and rsync would not work > correctly, what do you use? I'm just curious now. ;-) RAID. I know it's not meant as a backup, and if anything happens to the computer it could take out both drives, but at the moment I have two 3G

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-10 Thread Mick
On Thursday, 10 January 2019 08:28:24 GMT J. Roeleveld wrote: > On Thursday, January 10, 2019 1:55:59 AM CET Dale wrote: > > Wols Lists wrote: > > > On 07/01/19 10:46, Dale wrote: > > >> From what I've read, that can be overcome. If you get say a SMART > > >> message that a drive is failing, > > >

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-10 Thread J. Roeleveld
On Thursday, January 10, 2019 1:55:59 AM CET Dale wrote: > Wols Lists wrote: > > On 07/01/19 10:46, Dale wrote: > >> From what I've read, that can be overcome. If you get say a SMART > >> message that a drive is failing, > > > > Yup, I have to agree that SMART isn't always reliable, but if you >

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-09 Thread Dale
Wols Lists wrote: > On 07/01/19 10:46, Dale wrote: >> From what I've read, that can be overcome. If you get say a SMART >> message that a drive is failing, > Yup, I have to agree that SMART isn't always reliable, but if you > *monitor* it, it should give plenty of warning of the recording medium >

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-09 Thread Wols Lists
On 07/01/19 10:46, Dale wrote: > From what I've read, that can be overcome. If you get say a SMART > message that a drive is failing, Yup, I have to agree that SMART isn't always reliable, but if you *monitor* it, it should give plenty of warning of the recording medium failing ... > just remove

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-08 Thread gevisz
пн, 7 янв. 2019 г. в 12:21, Peter Humphrey : > > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: > > > Even from my simple setup, LVM adds more benefits to managing data and > > drives than it does risk. The biggest thing, placing blame where it > > lies. Blaming LVM for a drive dying is placi

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Dale
Jack wrote: > On 2019.01.07 14:35, Dale wrote: >> >> >> But do you have any other way to get a warning?  It may not work every >> time, especially if the spindle motor just up and dies all of a sudden >> but it does detect some errors.  It is certainly better than having >> nothing at all.  So far,

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Jack
On 2019.01.07 14:35, Dale wrote: Jack wrote: > On 2019.01.07 05:46, Dale wrote: >> Peter Humphrey wrote: >> > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: >> > >> >> Even from my simple setup, LVM adds more benefits to managing data >> and >> >> drives than it does risk.  The biggest thi

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Dale
Jack wrote: > On 2019.01.07 05:46, Dale wrote: >> Peter Humphrey wrote: >> > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: >> > >> >> Even from my simple setup, LVM adds more benefits to managing data >> and >> >> drives than it does risk.  The biggest thing, placing blame where it >> >> lies.

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Mick
On Monday, 7 January 2019 16:30:41 GMT Jack wrote: > On 2019.01.07 05:46, Dale wrote: > > Peter Humphrey wrote: > > > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: > > >> Even from my simple setup, LVM adds more benefits to managing data > > > > and > > > > >> drives than it does risk. The

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Jack
On 2019.01.07 05:46, Dale wrote: Peter Humphrey wrote: > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: > >> Even from my simple setup, LVM adds more benefits to managing data and >> drives than it does risk. The biggest thing, placing blame where it >> lies. Blaming LVM for a drive dyi

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Dale
Peter Humphrey wrote: > On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: > >> Even from my simple setup, LVM adds more benefits to managing data and >> drives than it does risk. The biggest thing, placing blame where it >> lies. Blaming LVM for a drive dying is placing the blame on something >>

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-07 Thread Peter Humphrey
On Sunday, 6 January 2019 22:13:31 GMT Dale wrote: > Even from my simple setup, LVM adds more benefits to managing data and > drives than it does risk. The biggest thing, placing blame where it > lies. Blaming LVM for a drive dying is placing the blame on something > that wasn't the root of the

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-06 Thread Dale
gevisz wrote: > вс, 6 янв. 2019 г. в 15:57, Peter Humphrey : >> On Sunday, 6 January 2019 11:05:10 GMT gevisz wrote: >> >>> I never used LVM as I believe that it increases the chance of [losing] >>> all the information on hard disks. >> Interesting. Would you like to explain why? > I had once a 40G

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-06 Thread Mick
On Sunday, 6 January 2019 17:07:35 GMT gevisz wrote: > вс, 6 янв. 2019 г. в 15:57, Peter Humphrey : > > On Sunday, 6 January 2019 11:05:10 GMT gevisz wrote: > > > I never used LVM as I believe that it increases the chance of [losing] > > > all the information on hard disks. > > > > Interesting. Wo

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-06 Thread gevisz
вс, 6 янв. 2019 г. в 15:57, Peter Humphrey : > > On Sunday, 6 January 2019 11:05:10 GMT gevisz wrote: > > > I never used LVM as I believe that it increases the chance of [losing] > > all the information on hard disks. > > Interesting. Would you like to explain why? I had once a 40GB HDD failure an

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-06 Thread Peter Humphrey
On Sunday, 6 January 2019 11:05:10 GMT gevisz wrote: > I never used LVM as I believe that it increases the chance of [losing] > all the information on hard disks. Interesting. Would you like to explain why? -- Regards, Peter.

Re: [gentoo-user] Firefox, downloading files and odd behavior.

2019-01-06 Thread gevisz
вс, 6 янв. 2019 г. в 02:54, Dale : > > gevisz wrote: > > вт, 1 янв. 2019 г. в 06:45, Dale : > >> With the newer Firefox versions, I've noticed something weird about > >> downloading files. Usually these are videos using a download helper for > >> videos and sometimes it is a normal file download,

  1   2   3   4   5   6   7   8   9   10   >