Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Somebody's terminal is dropping bits. I found a pile of them over in the corner.


computers / alt.os.linux.ubuntu / Re: Firefox red banner across the top with message

SubjectAuthor
* Firefox red banner across the top with messageAdam
`* Re: Firefox red banner across the top with messagePaul
 `* Re: Firefox red banner across the top with messageAdam
  `- Re: Firefox red banner across the top with messageAdam

1
Firefox red banner across the top with message

<tf8qb2$1rlo$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2594&group=alt.os.linux.ubuntu#2594

  copy link   Newsgroups: alt.os.linux.ubuntu
Path: i2pn2.org!i2pn.org!aioe.org!0N61+8BfPIZ5YNavc1nt6g.user.46.165.242.75.POSTED!not-for-mail
From: adam@no_thanks.com (Adam)
Newsgroups: alt.os.linux.ubuntu
Subject: Firefox red banner across the top with message
Date: Tue, 6 Sep 2022 17:58:10 -0700
Organization: Aioe.org NNTP Server
Message-ID: <tf8qb2$1rlo$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="61112"; posting-host="0N61+8BfPIZ5YNavc1nt6g.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101
Thunderbird/38.6.0
X-Notice: Filtered by postfilter v. 0.9.2
X-Mozilla-News-Host: news://nntp.aioe.org:119
 by: Adam - Wed, 7 Sep 2022 00:58 UTC

Message...

"The bookmarks and history system will not be functional because one of
Firefox's files is in use by another application. Some security software
can cause this problem."

Any ideas ?

Re: Firefox red banner across the top with message

<tf95nm$5c09$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2597&group=alt.os.linux.ubuntu#2597

  copy link   Newsgroups: alt.os.linux.ubuntu
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: nospam@needed.invalid (Paul)
Newsgroups: alt.os.linux.ubuntu
Subject: Re: Firefox red banner across the top with message
Date: Wed, 7 Sep 2022 00:12:37 -0400
Organization: A noiseless patient Spider
Lines: 85
Message-ID: <tf95nm$5c09$1@dont-email.me>
References: <tf8qb2$1rlo$1@gioia.aioe.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 7 Sep 2022 04:12:38 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="fa4829dcf3a24d234032b8f2d90fc3de";
logging-data="176137"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+UxFgJQnUaHTpiKX8zmuFN2awlUlauCH8="
User-Agent: Ratcatcher/2.0.0.25 (Windows/20130802)
Cancel-Lock: sha1:EY7wWPp/fTG92OZVME8OX6EwhRI=
Content-Language: en-US
In-Reply-To: <tf8qb2$1rlo$1@gioia.aioe.org>
 by: Paul - Wed, 7 Sep 2022 04:12 UTC

On 9/6/2022 8:58 PM, Adam wrote:
>
> Message...
>
> "The bookmarks and history system will not be functional
> because one of Firefox's files is in use by another application.
> Some security software can cause this problem."
>
> Any ideas ?

I don't have a solution for you.

We can try some background material.

Ubuntu uses "snap" for packaging, as well as the traditional ".deb"
used in Synaptic package manager.

Snap uses a squashfs image with supporting (executable) files in it.

Snap daemon (snapd) comes with handcuffs. It limits where applications
can access files. Without making a fuss, the user is limited to their
home directory. The snap developer can apparently do things, to extend
the reach, but the Mozilla staff won't be doing that.

This is fine, because the home directory for Firefox, where the profiles
folders go, is also in the home directory.

So on the surface at least, all looks normal.

Snaps also use other security features for applications. You'd have
to look into the "snapcraft" site perhaps, to learn more about what
the latest set of handcuffs looks like.

The entire Snap subsystem can be removed in ubuntu, using apt to do it.
But snap has been boobytrapped, by also providing a snap version
of the entire desktop ("Gnome3-xxx"). I don't know if there is a .deb version
of the desktop available in 2204 release or not.

And I'm not sure what amount of debug I can do here, when a snap
is involved. An strace could run on a single PID. I've done that
before, and it dumps disk reading calls in the log output. But Firefox
consists of maybe five processes, and they're connected via pipes to
communicate with one another. This complicates the debug process.

*******

You *can* ask the OS "what process has my profile file open".
Your data files, should be in an area not governed by the snap
squashfs for executable files.

https://www.tecmint.com/find-out-who-is-using-a-file-in-linux/

lsof -u tecmint # Dump list of open files for username "tecmint"

The process-name is on the left. The file-name which is open, is
on the right. You could grep on "mozilla" or grep on "firefox" to
examine a subset of a larger output from the command.

/home/bullwinkle/.mozilla/firefox/tadk6apu.default-release/bookmarkbackups/some.jsonlz4

So the command could be:

lsof -u AdamsUserID | grep -i mozilla | grep -i firefox # you can chain greps if you want,
# to make filtering easier to understand.
# -i is "case insensitive", a habit of mine

Since lsof is filtering already by username like that, there's
a good chance it needs to be elevated to work.

sudo lsof -u AdamsUserID | grep firefox

You would do that while Firefox was running, to see if you
can catch the details of some processes doing it. Even seeing
multiple Firefox processes humping the same file, is not
really all that good. If Firefox condones that, they will use
a semaphore of some sort, so only one Firefox process attempts
to write to the bookmarks at a time.

In any case, you might get lucky, and the guilty party sticks
their hand up.

I tried a Google and Google is not being helpful right now,
and it has little fits like that.

Paul

Re: Firefox red banner across the top with message

<tf98d4$1m94$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2598&group=alt.os.linux.ubuntu#2598

  copy link   Newsgroups: alt.os.linux.ubuntu
Path: i2pn2.org!i2pn.org!aioe.org!0N61+8BfPIZ5YNavc1nt6g.user.46.165.242.75.POSTED!not-for-mail
From: adam@no_thanks.com (Adam)
Newsgroups: alt.os.linux.ubuntu
Subject: Re: Firefox red banner across the top with message
Date: Tue, 6 Sep 2022 21:58:11 -0700
Organization: Aioe.org NNTP Server
Message-ID: <tf98d4$1m94$1@gioia.aioe.org>
References: <tf8qb2$1rlo$1@gioia.aioe.org> <tf95nm$5c09$1@dont-email.me>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="55588"; posting-host="0N61+8BfPIZ5YNavc1nt6g.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101
Thunderbird/38.6.0
X-Notice: Filtered by postfilter v. 0.9.2
 by: Adam - Wed, 7 Sep 2022 04:58 UTC

On 09/06/2022 09:12 PM, Paul wrote:
> On 9/6/2022 8:58 PM, Adam wrote:
>>
>> Message...
>>
>> "The bookmarks and history system will not be functional
>> because one of Firefox's files is in use by another application.
>> Some security software can cause this problem."
>>
>> Any ideas ?
>
> I don't have a solution for you.
>
> We can try some background material.
>
> Ubuntu uses "snap" for packaging, as well as the traditional ".deb"
> used in Synaptic package manager.

xerus@T430:~$ snap list
error: no snaps found
xerus@T430:~$

I haven't "installed" a snap version yet.

Ran into some hiccups trying out a snap version (20.04 LIVE) so did NOT
proceed further. Problem was couldn't get Chromium to even Open.

In general, I don't think snap is needed until near EOL of a Linux
version. Users should be able to turn snap ON near EOL.

I'm using 16.04. <duck> :-)

Anyways, I was browsing away when my system sort of locked up churning
away doing something. So I started closing windows one after the other.
It was taking forever and still churning away. So I finally logged out.
Then, when I logged back in, Firefox had that message banner across the
top. And, here we are.

>
> Snap uses a squashfs image with supporting (executable) files in it.
>
> Snap daemon (snapd) comes with handcuffs. It limits where applications
> can access files. Without making a fuss, the user is limited to their
> home directory. The snap developer can apparently do things, to extend
> the reach, but the Mozilla staff won't be doing that.
>
> This is fine, because the home directory for Firefox, where the profiles
> folders go, is also in the home directory.
>
> So on the surface at least, all looks normal.
>
> Snaps also use other security features for applications. You'd have
> to look into the "snapcraft" site perhaps, to learn more about what
> the latest set of handcuffs looks like.
>
> The entire Snap subsystem can be removed in ubuntu, using apt to do it.
> But snap has been boobytrapped, by also providing a snap version
> of the entire desktop ("Gnome3-xxx"). I don't know if there is a .deb
> version
> of the desktop available in 2204 release or not.
>
> And I'm not sure what amount of debug I can do here, when a snap
> is involved. An strace could run on a single PID. I've done that
> before, and it dumps disk reading calls in the log output. But Firefox
> consists of maybe five processes, and they're connected via pipes to
> communicate with one another. This complicates the debug process.
>
> *******
>
> You *can* ask the OS "what process has my profile file open".
> Your data files, should be in an area not governed by the snap
> squashfs for executable files.
>
> https://www.tecmint.com/find-out-who-is-using-a-file-in-linux/
>
> lsof -u tecmint # Dump list of open files for username "tecmint"
>
> The process-name is on the left. The file-name which is open, is
> on the right. You could grep on "mozilla" or grep on "firefox" to
> examine a subset of a larger output from the command.
>
>
> /home/bullwinkle/.mozilla/firefox/tadk6apu.default-release/bookmarkbackups/some.jsonlz4
>
>
> So the command could be:
>
> lsof -u AdamsUserID | grep -i mozilla | grep -i firefox #
> you can chain greps if you want,
> # to
> make filtering easier to understand.
> # -i
> is "case insensitive", a habit of mine
>
> Since lsof is filtering already by username like that, there's
> a good chance it needs to be elevated to work.
>
> sudo lsof -u AdamsUserID | grep firefox
>
> You would do that while Firefox was running, to see if you
> can catch the details of some processes doing it. Even seeing
> multiple Firefox processes humping the same file, is not
> really all that good. If Firefox condones that, they will use
> a semaphore of some sort, so only one Firefox process attempts
> to write to the bookmarks at a time.
>
> In any case, you might get lucky, and the guilty party sticks
> their hand up.
>
> I tried a Google and Google is not being helpful right now,
> and it has little fits like that.
>
> Paul

Re: Firefox red banner across the top with message

<tf9apo$dlc$1@gioia.aioe.org>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=2599&group=alt.os.linux.ubuntu#2599

  copy link   Newsgroups: alt.os.linux.ubuntu
Path: i2pn2.org!i2pn.org!aioe.org!svvKSlnvVmQyiTEptFqnRA.user.46.165.242.75.POSTED!not-for-mail
From: adam@no_thanks.com (Adam)
Newsgroups: alt.os.linux.ubuntu
Subject: Re: Firefox red banner across the top with message
Date: Tue, 6 Sep 2022 22:39:03 -0700
Organization: Aioe.org NNTP Server
Message-ID: <tf9apo$dlc$1@gioia.aioe.org>
References: <tf8qb2$1rlo$1@gioia.aioe.org> <tf95nm$5c09$1@dont-email.me>
<tf98d4$1m94$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="13996"; posting-host="svvKSlnvVmQyiTEptFqnRA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101
Thunderbird/38.6.0
X-Notice: Filtered by postfilter v. 0.9.2
 by: Adam - Wed, 7 Sep 2022 05:39 UTC

On 09/06/2022 09:58 PM, Adam wrote:
> On 09/06/2022 09:12 PM, Paul wrote:
>> On 9/6/2022 8:58 PM, Adam wrote:
>>>
>>> Message...
>>>
>>> "The bookmarks and history system will not be functional
>>> because one of Firefox's files is in use by another application.
>>> Some security software can cause this problem."
>>>
>>> Any ideas ?
>>
>> I don't have a solution for you.
>>
>> We can try some background material.
>>
>> Ubuntu uses "snap" for packaging, as well as the traditional ".deb"
>> used in Synaptic package manager.
>
> xerus@T430:~$ snap list
> error: no snaps found
> xerus@T430:~$
>
> I haven't "installed" a snap version yet.
>
> Ran into some hiccups trying out a snap version (20.04 LIVE) so did NOT
> proceed further. Problem was couldn't get Chromium to even Open.
>
> In general, I don't think snap is needed until near EOL of a Linux
> version. Users should be able to turn snap ON near EOL.
>
> I'm using 16.04. <duck> :-)
>
> Anyways, I was browsing away when my system sort of locked up churning
> away doing something. So I started closing windows one after the other.
> It was taking forever and still churning away. So I finally logged out.
> Then, when I logged back in, Firefox had that message banner across the
> top. And, here we are.
>

Just did a Restart, which included a file system check. And,
problem solved. Firefox opens without problem now. I even have my
bookmarks back. And, life is good again.

Okay already, I'll upgrade...maybe to 18.04. :-)

So far, I'm NOT a Snap fan. I'm not in favor of auto-download. Yuck!

>>
>> Snap uses a squashfs image with supporting (executable) files in it.
>>
>> Snap daemon (snapd) comes with handcuffs. It limits where applications
>> can access files. Without making a fuss, the user is limited to their
>> home directory. The snap developer can apparently do things, to extend
>> the reach, but the Mozilla staff won't be doing that.
>>
>> This is fine, because the home directory for Firefox, where the profiles
>> folders go, is also in the home directory.
>>
>> So on the surface at least, all looks normal.
>>
>> Snaps also use other security features for applications. You'd have
>> to look into the "snapcraft" site perhaps, to learn more about what
>> the latest set of handcuffs looks like.
>>
>> The entire Snap subsystem can be removed in ubuntu, using apt to do it.
>> But snap has been boobytrapped, by also providing a snap version
>> of the entire desktop ("Gnome3-xxx"). I don't know if there is a .deb
>> version
>> of the desktop available in 2204 release or not.
>>
>> And I'm not sure what amount of debug I can do here, when a snap
>> is involved. An strace could run on a single PID. I've done that
>> before, and it dumps disk reading calls in the log output. But Firefox
>> consists of maybe five processes, and they're connected via pipes to
>> communicate with one another. This complicates the debug process.
>>
>> *******
>>
>> You *can* ask the OS "what process has my profile file open".
>> Your data files, should be in an area not governed by the snap
>> squashfs for executable files.
>>
>> https://www.tecmint.com/find-out-who-is-using-a-file-in-linux/
>>
>> lsof -u tecmint # Dump list of open files for username "tecmint"
>>
>> The process-name is on the left. The file-name which is open, is
>> on the right. You could grep on "mozilla" or grep on "firefox" to
>> examine a subset of a larger output from the command.
>>
>>
>> /home/bullwinkle/.mozilla/firefox/tadk6apu.default-release/bookmarkbackups/some.jsonlz4
>>
>>
>>
>> So the command could be:
>>
>> lsof -u AdamsUserID | grep -i mozilla | grep -i firefox #
>> you can chain greps if you want,
>> # to
>> make filtering easier to understand.
>> # -i
>> is "case insensitive", a habit of mine
>>
>> Since lsof is filtering already by username like that, there's
>> a good chance it needs to be elevated to work.
>>
>> sudo lsof -u AdamsUserID | grep firefox
>>
>> You would do that while Firefox was running, to see if you
>> can catch the details of some processes doing it. Even seeing
>> multiple Firefox processes humping the same file, is not
>> really all that good. If Firefox condones that, they will use
>> a semaphore of some sort, so only one Firefox process attempts
>> to write to the bookmarks at a time.
>>
>> In any case, you might get lucky, and the guilty party sticks
>> their hand up.
>>
>> I tried a Google and Google is not being helpful right now,
>> and it has little fits like that.
>>
>> Paul
>

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor