* [gentoo-user] Rust problem when upgrading Firefox
@ 2018-10-15 18:49 Philip Webb
2018-10-15 19:04 ` Dale
2018-10-16 9:25 ` [gentoo-user] Rust problem when upgrading Firefox Mick
0 siblings, 2 replies; 9+ messages in thread
From: Philip Webb @ 2018-10-15 18:49 UTC (permalink / raw
To: Gentoo User
I finally needed to upgrade to FF 60.2.2 .
This has several large requirements, incl Rust 1.29.1 .
The 1st time I tried, Rust failed after 35 min with these final lines :
Compiling rustc-rayon v0.1.1
Compiling rustc_data_structures v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_data_structures)
Compiling arena v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libarena)
Compiling syntax_pos v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_pos)
Compiling rustc_errors v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_errors)
Compiling proc_macro v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libproc_macro)
Compiling syntax_ext v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_ext)
error: linking with `x86_64-pc-linux-gnu-gcc` failed: exit code: 1
|
= note: "x86_64-pc-linux-gnu-gcc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/build/x86_64-unknown-linux-gnu/stage1/lib64/rust\ ...
This looked like a missing library or similar,
so I recompiled with extra flags USE="cargo clang rust gold" :
"cargo clang rust" refer to other pkgs which FF requires
& "gold" was then demanded by Portage when I tested with '-pv'.
The 2nd time I tried with these USE flags, I got :
Compiling rustc_data_structures v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_data_structures)
Compiling arena v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libarena)
Compiling syntax_pos v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_pos)
Compiling rustc_errors v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_errors)
Compiling proc_macro v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libproc_macro)
Compiling syntax_ext v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_ext)
LLVM ERROR: IO failure on output stream: No space left on device
error: Could not compile `rustc`.
Caused by:
process didn't exit successfully: `/var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/build/bootstrap/debug/rustc --crate-name rustc librustc/lib.rs --error-format json --crate-type dyl\ ...
Earlier, I found I had to add 'llvm' to /etc/portage/package.env :
apparently it overflowed my usual /var/tmp/portage 'tmpfs'.
I will try again after adding 'rust' there too,
but meanwhile does anyone have any similar experience or other advice ?
--
========================,,============================================
SUPPORT ___________//___, Philip Webb
ELECTRIC /] [] [] [] [] []| Cities Centre, University of Toronto
TRANSIT `-O----------O---' purslowatchassdotutorontodotca
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Rust problem when upgrading Firefox
2018-10-15 18:49 [gentoo-user] Rust problem when upgrading Firefox Philip Webb
@ 2018-10-15 19:04 ` Dale
2018-10-15 21:24 ` [gentoo-user] Rust problem when upgrading Firefox : solved Philip Webb
2018-10-16 9:25 ` [gentoo-user] Rust problem when upgrading Firefox Mick
1 sibling, 1 reply; 9+ messages in thread
From: Dale @ 2018-10-15 19:04 UTC (permalink / raw
To: gentoo-user
Philip Webb wrote:
> I finally needed to upgrade to FF 60.2.2 .
> This has several large requirements, incl Rust 1.29.1 .
>
> The 1st time I tried, Rust failed after 35 min with these final lines :
>
> Compiling rustc-rayon v0.1.1
> Compiling rustc_data_structures v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_data_structures)
> Compiling arena v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libarena)
> Compiling syntax_pos v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_pos)
> Compiling rustc_errors v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_errors)
> Compiling proc_macro v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libproc_macro)
> Compiling syntax_ext v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_ext)
> error: linking with `x86_64-pc-linux-gnu-gcc` failed: exit code: 1
> |
> = note: "x86_64-pc-linux-gnu-gcc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/build/x86_64-unknown-linux-gnu/stage1/lib64/rust\ ...
>
> This looked like a missing library or similar,
> so I recompiled with extra flags USE="cargo clang rust gold" :
> "cargo clang rust" refer to other pkgs which FF requires
> & "gold" was then demanded by Portage when I tested with '-pv'.
>
> The 2nd time I tried with these USE flags, I got :
>
> Compiling rustc_data_structures v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_data_structures)
> Compiling arena v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libarena)
> Compiling syntax_pos v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_pos)
> Compiling rustc_errors v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/librustc_errors)
> Compiling proc_macro v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libproc_macro)
> Compiling syntax_ext v0.0.0 (file:///var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/src/libsyntax_ext)
> LLVM ERROR: IO failure on output stream: No space left on device
> error: Could not compile `rustc`.
>
> Caused by:
> process didn't exit successfully: `/var/tmp/portage/portage/dev-lang/rust-1.29.1/work/rustc-1.29.1-src/build/bootstrap/debug/rustc --crate-name rustc librustc/lib.rs --error-format json --crate-type dyl\ ...
>
> Earlier, I found I had to add 'llvm' to /etc/portage/package.env :
> apparently it overflowed my usual /var/tmp/portage 'tmpfs'.
> I will try again after adding 'rust' there too,
> but meanwhile does anyone have any similar experience or other advice ?
>
Just curious, did you notice this little part?
"LLVM ERROR: IO failure on output stream: No space left on device"
You may want to make sure you are not out of disk space wherever your tmp directory is or out of ram if you use tmpfs.
Hope that helps.
Dale
:-) :-)
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Rust problem when upgrading Firefox : solved
2018-10-15 19:04 ` Dale
@ 2018-10-15 21:24 ` Philip Webb
2018-10-16 0:28 ` Dale
2018-10-22 5:26 ` [gentoo-user] Re: tab-grouping in Firefox Philip Webb
0 siblings, 2 replies; 9+ messages in thread
From: Philip Webb @ 2018-10-15 21:24 UTC (permalink / raw
To: gentoo-user
181015 Dale wrote:
> Just curious, did you notice this little part?
> "LLVM ERROR: IO failure on output stream: No space left on device"
> You may want to make sure you are not out of disk space
> wherever your tmp directory is or out of ram if you use tmpfs.
Yes, I did, as I said, & added 2 lines to 'package.env'.
That solved that problem, which was surprising :
my explanation is that FF itself is too big to use 'tmpfs'
& this then squeezes out any other pkgs to be compiled along with it,
even a tiny virtual. Otherwise, the 1st problem was USE flags.
The new FF requires some very big items, which took a long time to emerge :
Rust (59), Clang (11), Llvm (15), FF (33) : total 118 min .
The total download was c 500 MB . LO is modest in comparison.
Now to get some groceries, then I'll try it out.
The big question is whether I can still group tabs,
whether directly with FF or via some add-on (whatever they're now called).
Thanks for offering a bit of help.
--
========================,,============================================
SUPPORT ___________//___, Philip Webb
ELECTRIC /] [] [] [] [] []| Cities Centre, University of Toronto
TRANSIT `-O----------O---' purslowatchassdotutorontodotca
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Rust problem when upgrading Firefox : solved
2018-10-15 21:24 ` [gentoo-user] Rust problem when upgrading Firefox : solved Philip Webb
@ 2018-10-16 0:28 ` Dale
2018-10-22 5:26 ` [gentoo-user] Re: tab-grouping in Firefox Philip Webb
1 sibling, 0 replies; 9+ messages in thread
From: Dale @ 2018-10-16 0:28 UTC (permalink / raw
To: gentoo-user
Philip Webb wrote:
> 181015 Dale wrote:
>> Just curious, did you notice this little part?
>> "LLVM ERROR: IO failure on output stream: No space left on device"
>> You may want to make sure you are not out of disk space
>> wherever your tmp directory is or out of ram if you use tmpfs.
> Yes, I did, as I said, & added 2 lines to 'package.env'.
> That solved that problem, which was surprising :
> my explanation is that FF itself is too big to use 'tmpfs'
> & this then squeezes out any other pkgs to be compiled along with it,
> even a tiny virtual. Otherwise, the 1st problem was USE flags.
>
> The new FF requires some very big items, which took a long time to emerge :
> Rust (59), Clang (11), Llvm (15), FF (33) : total 118 min .
> The total download was c 500 MB . LO is modest in comparison.
>
> Now to get some groceries, then I'll try it out.
> The big question is whether I can still group tabs,
> whether directly with FF or via some add-on (whatever they're now called).
>
> Thanks for offering a bit of help.
>
After I went back and reread your post, I see that you mentioned that.
Funny how I missed that but saw the out of space part. :/
I to used tab groups. I tested every tab group add on I could find.
I'll go ahead and tell you now, none of them are like the old tab group
add on. However, the closest I can find is simple tab group. Here's a
link.
https://addons.mozilla.org/en-US/firefox/addon/simple-tab-groups/?src=search
I used to use tab utilities to help manage tabs. Sometimes I have a LOT
of tabs open. I now use this.
https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab/?src=search
I might add, I also use profiles so that I can log into certain sites as
more than one user. The new Firefox has a nifty new thing called
containers that can help with that. Here is the best add on I could
find for that.
https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/?src=search
Instead of me typing, youtube some of those. It helps a LOT to see what
others are doing. I recommend at least two videos each. More if you
want to really get a wide range of ideas. The way I did this, I
bookmarked everything and then started fresh after the upgrade.
You may also want to look into conex add on if simple tab group isn't to
your liking. I didn't like it but . . . Also Tree style tab has a
group add on that works with it, wasn't for me but you may like it.
On tmpfs, I have the following set to compile on the hard drive instead
of tmpfs. This is my env file.
www-client/firefox ../env/notmpfs.conf
www-client/seamonkey ../env/notmpfs.conf
app-office/libreoffice ../env/notmpfs.conf
sys-devel/gcc ../env/notmpfs.conf
dev-qt/qtwebengine ../env/notmpfs.conf
dev-qt/qtwebkit ../env/notmpfs.conf
sci-electronics/kicad ../env/notmpfs.conf
Those are packages that over time, I've learned either requires to much
ram or requires to much when being built with other packages. Usually,
if it is only one, they can fit. However, any two of them ends up being
compiled at the same time causes problems.
Hope that helps.
Dale
:-) :-)
P. S. Here is my USE flags for Firefox. It works well here. That
said, I may could reset some of these given them major changes in recent
Firefox. Just a suggestion if you should need it.
[ebuild R ~] www-client/firefox-62.0.3::gentoo USE="dbus
gmp-autoupdate screenshot startup-notification system-harfbuzz
system-jpeg system-libevent system-libvpx system-sqlite -bindist -clang
-custom-cflags -custom-optimization -debug -eme-free -geckodriver
-hardened -hwaccel -jack -lto (-neon) -pulseaudio (-selinux) -system-icu
-test -wifi"
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Rust problem when upgrading Firefox
2018-10-15 18:49 [gentoo-user] Rust problem when upgrading Firefox Philip Webb
2018-10-15 19:04 ` Dale
@ 2018-10-16 9:25 ` Mick
2018-10-16 9:38 ` Franz Fellner
1 sibling, 1 reply; 9+ messages in thread
From: Mick @ 2018-10-16 9:25 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1685 bytes --]
On Monday, 15 October 2018 19:49:59 BST Philip Webb wrote:
> 181015 Dale wrote:
> > Just curious, did you notice this little part?
> > "LLVM ERROR: IO failure on output stream: No space left on device"
> > You may want to make sure you are not out of disk space
> > wherever your tmp directory is or out of ram if you use tmpfs.
>
> Yes, I did, as I said, & added 2 lines to 'package.env'.
> That solved that problem, which was surprising :
> my explanation is that FF itself is too big to use 'tmpfs'
> & this then squeezes out any other pkgs to be compiled along with it,
> even a tiny virtual. Otherwise, the 1st problem was USE flags.
>
> The new FF requires some very big items, which took a long time to emerge :
> Rust (59), Clang (11), Llvm (15), FF (33) : total 118 min .
> The total download was c 500 MB . LO is modest in comparison.
>
> Now to get some groceries, then I'll try it out.
> The big question is whether I can still group tabs,
> whether directly with FF or via some add-on (whatever they're now called).
>
> Thanks for offering a bit of help.
I've noticed the same both in terms of the dependencies now being drawn in and
in terms of how much RAM the compile consumes. On systems with low RAM I set
lower MAKEOPTS jobs and average values and add plenty of swap. This keeps
emerge in check and stops it from swapping in and out continuously thrashing
the disk.
More than a year ago I'd noticed similar uncontrolled consumption of resources
by emerge on Chromium. Interestingly a few versions later something must have
changed (some hardware limit checks added by devs?) and Chromium became much
less hungry for resources.
--
Regards,
Mick
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Rust problem when upgrading Firefox
2018-10-16 9:25 ` [gentoo-user] Rust problem when upgrading Firefox Mick
@ 2018-10-16 9:38 ` Franz Fellner
0 siblings, 0 replies; 9+ messages in thread
From: Franz Fellner @ 2018-10-16 9:38 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1890 bytes --]
My "other advice" would be to simply use rust-bin.
Am Di., 16. Okt. 2018 um 11:25 Uhr schrieb Mick <michaelkintzios@gmail.com>:
> On Monday, 15 October 2018 19:49:59 BST Philip Webb wrote:
> > 181015 Dale wrote:
> > > Just curious, did you notice this little part?
> > > "LLVM ERROR: IO failure on output stream: No space left on device"
> > > You may want to make sure you are not out of disk space
> > > wherever your tmp directory is or out of ram if you use tmpfs.
> >
> > Yes, I did, as I said, & added 2 lines to 'package.env'.
> > That solved that problem, which was surprising :
> > my explanation is that FF itself is too big to use 'tmpfs'
> > & this then squeezes out any other pkgs to be compiled along with it,
> > even a tiny virtual. Otherwise, the 1st problem was USE flags.
> >
> > The new FF requires some very big items, which took a long time to
> emerge :
> > Rust (59), Clang (11), Llvm (15), FF (33) : total 118 min .
> > The total download was c 500 MB . LO is modest in comparison.
> >
> > Now to get some groceries, then I'll try it out.
> > The big question is whether I can still group tabs,
> > whether directly with FF or via some add-on (whatever they're now
> called).
> >
> > Thanks for offering a bit of help.
>
> I've noticed the same both in terms of the dependencies now being drawn in
> and
> in terms of how much RAM the compile consumes. On systems with low RAM I
> set
> lower MAKEOPTS jobs and average values and add plenty of swap. This keeps
> emerge in check and stops it from swapping in and out continuously
> thrashing
> the disk.
>
> More than a year ago I'd noticed similar uncontrolled consumption of
> resources
> by emerge on Chromium. Interestingly a few versions later something must
> have
> changed (some hardware limit checks added by devs?) and Chromium became
> much
> less hungry for resources.
> --
> Regards,
> Mick
[-- Attachment #2: Type: text/html, Size: 2393 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [gentoo-user] Re: tab-grouping in Firefox
2018-10-15 21:24 ` [gentoo-user] Rust problem when upgrading Firefox : solved Philip Webb
2018-10-16 0:28 ` Dale
@ 2018-10-22 5:26 ` Philip Webb
2018-10-22 5:36 ` Davyd McColl
1 sibling, 1 reply; 9+ messages in thread
From: Philip Webb @ 2018-10-22 5:26 UTC (permalink / raw
To: gentoo-user
181015 Philip Webb wrote:
> The big question is whether I can still group tabs,
> whether directly with FF or via some add-on (whatever they're now called).
I've now been using FF for a few days & can report my experience.
There doesn't seem to be an add-on which reproduces the old version.
However, I've done what I thought mb the best imitation :
the answer is windows ! -- no, not that Windows, but FF windows.
It's simple to drag-drop tabs from one FF window to another :
you just have to make sure you drop it into the Tab Bar.
My daily use of this is when reading news stories.
If I'm reading the Guardian, there are 5 story lists I check :
World, UK, Biz, Opinion + the home page. The problem is
that not all Biz stories are listed there, but mb eg under World,
so to group them for easy reading I need to grab all of them,
then move them into my desired groups, ie World, UK, Biz (incl Brexit),
Science+Environment, Entertainment (sport history pictures etc).
This was easy fun using the old Tab Groups ;
now it's not fun, but fairly easy to do by creating separate windows
& dragging the appropriate tabs into the appropriate windows ;
dragging the 1st onto the desktop creates each window.
Does anyone know why FF dropped this feature ?
It looks as if it sb easy to develop as a front-end to window management.
Otherwise, the new FF is noticeably faster than the old FF.
Also, can anyone tell me how to remove an add-on ?
--
========================,,============================================
SUPPORT ___________//___, Philip Webb
ELECTRIC /] [] [] [] [] []| Cities Centre, University of Toronto
TRANSIT `-O----------O---' purslowatchassdotutorontodotca
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Re: tab-grouping in Firefox
2018-10-22 5:26 ` [gentoo-user] Re: tab-grouping in Firefox Philip Webb
@ 2018-10-22 5:36 ` Davyd McColl
2018-10-22 6:21 ` Khaosgrille
0 siblings, 1 reply; 9+ messages in thread
From: Davyd McColl @ 2018-10-22 5:36 UTC (permalink / raw
To: gentoo-user
On October 22, 2018 7:26:53 AM Philip Webb <purslow@ca.inter.net> wrote:
> 181015 Philip Webb wrote:
>> The big question is whether I can still group tabs,
>> whether directly with FF or via some add-on (whatever they're now called).
>
> I've now been using FF for a few days & can report my experience.
> There doesn't seem to be an add-on which reproduces the old version.
> However, I've done what I thought mb the best imitation :
> the answer is windows ! -- no, not that Windows, but FF windows.
> It's simple to drag-drop tabs from one FF window to another :
> you just have to make sure you drop it into the Tab Bar.
>
> My daily use of this is when reading news stories.
> If I'm reading the Guardian, there are 5 story lists I check :
> World, UK, Biz, Opinion + the home page. The problem is
> that not all Biz stories are listed there, but mb eg under World,
> so to group them for easy reading I need to grab all of them,
> then move them into my desired groups, ie World, UK, Biz (incl Brexit),
> Science+Environment, Entertainment (sport history pictures etc).
> This was easy fun using the old Tab Groups ;
> now it's not fun, but fairly easy to do by creating separate windows
> & dragging the appropriate tabs into the appropriate windows ;
> dragging the 1st onto the desktop creates each window.
>
> Does anyone know why FF dropped this feature ?
> It looks as if it sb easy to develop as a front-end to window management.
>
> Otherwise, the new FF is noticeably faster than the old FF.
>
> Also, can anyone tell me how to remove an add-on ?
The "hamburger" menu (three horizontal lines) need the top-right) has a
menu item to get to addons - simply disable or uninstall from there.
>
> --
> ========================,,============================================
> SUPPORT ___________//___, Philip Webb
> ELECTRIC /] [] [] [] [] []| Cities Centre, University of Toronto
> TRANSIT `-O----------O---' purslowatchassdotutorontodotca
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [gentoo-user] Re: tab-grouping in Firefox
2018-10-22 5:36 ` Davyd McColl
@ 2018-10-22 6:21 ` Khaosgrille
0 siblings, 0 replies; 9+ messages in thread
From: Khaosgrille @ 2018-10-22 6:21 UTC (permalink / raw
To: gentoo-user@lists.gentoo.org
[-- Attachment #1.1: Type: text/plain, Size: 2713 bytes --]
Hi,
i made good experience with "Tree Style Tab" so far.
Source: https://github.com/piroor/treestyletab
https://addons.mozilla.org/de/firefox/addon/tree-style-tab/
As the name suggest it comes with more feature than tab-grouping. You get an additional Tab bar in a tree style. One tab can have as many subtabs as you like and you can hide all subtabs.
Since it is not designed to fully replace the normal tab bar you can hide it with a shortcut.
Greetings
Khaosgrille
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Monday, October 22, 2018 7:36 AM, Davyd McColl <davydm@gmail.com> wrote:
>
>
> On October 22, 2018 7:26:53 AM Philip Webbpurslow@ca.inter.net wrote:
>
> > 181015 Philip Webb wrote:
> >
> > > The big question is whether I can still group tabs,
> > > whether directly with FF or via some add-on (whatever they're now called).
> >
> > I've now been using FF for a few days & can report my experience.
> > There doesn't seem to be an add-on which reproduces the old version.
> > However, I've done what I thought mb the best imitation :
> > the answer is windows ! -- no, not that Windows, but FF windows.
> > It's simple to drag-drop tabs from one FF window to another :
> > you just have to make sure you drop it into the Tab Bar.
> > My daily use of this is when reading news stories.
> > If I'm reading the Guardian, there are 5 story lists I check :
> > World, UK, Biz, Opinion + the home page. The problem is
> > that not all Biz stories are listed there, but mb eg under World,
> > so to group them for easy reading I need to grab all of them,
> > then move them into my desired groups, ie World, UK, Biz (incl Brexit),
> > Science+Environment, Entertainment (sport history pictures etc).
> > This was easy fun using the old Tab Groups ;
> > now it's not fun, but fairly easy to do by creating separate windows
> > & dragging the appropriate tabs into the appropriate windows ;
> > dragging the 1st onto the desktop creates each window.
> > Does anyone know why FF dropped this feature ?
> > It looks as if it sb easy to develop as a front-end to window management.
> > Otherwise, the new FF is noticeably faster than the old FF.
> > Also, can anyone tell me how to remove an add-on ?
>
> The "hamburger" menu (three horizontal lines) need the top-right) has a
> menu item to get to addons - simply disable or uninstall from there.
>
> > --
> > ========================,,============================================
> > SUPPORT ________//, Philip Webb
> > ELECTRIC /] [] [] [] [] []| Cities Centre, University of Toronto
> > TRANSIT `-O----------O---' purslowatchassdotutorontodotca
[-- Attachment #1.2: publickey - Khaosgrille@protonmail.com - 0xE78BC986.asc --]
[-- Type: application/pgp-keys, Size: 1777 bytes --]
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 509 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2018-10-22 6:21 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-15 18:49 [gentoo-user] Rust problem when upgrading Firefox Philip Webb
2018-10-15 19:04 ` Dale
2018-10-15 21:24 ` [gentoo-user] Rust problem when upgrading Firefox : solved Philip Webb
2018-10-16 0:28 ` Dale
2018-10-22 5:26 ` [gentoo-user] Re: tab-grouping in Firefox Philip Webb
2018-10-22 5:36 ` Davyd McColl
2018-10-22 6:21 ` Khaosgrille
2018-10-16 9:25 ` [gentoo-user] Rust problem when upgrading Firefox Mick
2018-10-16 9:38 ` Franz Fellner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox