• SeaMonkey Suite remains running after closer.

    From Daniel65@2:250/1 to All on Thu Mar 23 10:44:18 2023
    Cross-posted to alt.comp.software.seamonkey and alt.os.linux.mageia as
    I'm not sure what caused my problem.

    User agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 SeaMonkey/2.53.15 Build identifier: 20230108172623

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux 6)
    HP 6730 Laptop.

    Last night, after about an hours working, I closed my SeaMonkey ('X' in
    top right of all three SM screens) .... but didn't shut-down my computer
    .... and, about 5 minutes later, I realised I had forgotten to do
    something so clicked on my SeaMonkey Desktop icon to restart the program
    ..... and got a message

    Quote
    SeaMonkey is already running, but is not responding. To open a new
    window, you must first close the existing SeaMonkey process, or restart
    your system.
    End Quote

    SeaMonkey was not showing on my task-bar. So I waited .... 10 mins, same message .... 30 mins, same message. Eventually I gave up and shut down
    the Laptop and went to bed.

    1. On Linux, if I wanted to force a program closure, where would I go?? (In Win7, I think it's via Ctrl/Alt/Del)

    2. In SeaMonkey and/or Linux, where might I find any error messages
    which might tell me what my problem is/was??

    TIA
    --
    Daniel

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Don Spam's Reckless Son@2:250/1 to All on Thu Mar 23 11:09:52 2023
    Daniel65 wrote:
    Cross-posted to alt.comp.software.seamonkey and alt.os.linux.mageia as
    I'm not sure what caused my problem.

    User agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 SeaMonkey/2.53.15 Build identifier: 20230108172623

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux 6)
    HP 6730 Laptop.

    Last night, after about an hours working, I closed my SeaMonkey ('X' in
    top right of all three SM screens) .... but didn't shut-down my computer
    ... and, about 5 minutes later, I realised I had forgotten to do
    something so clicked on my SeaMonkey Desktop icon to restart the program .... and got a message

    Quote
    SeaMonkey is already running, but is not responding. To open a new
    window, you must first close the existing SeaMonkey process, or restart
    your system.
    End Quote

    SeaMonkey was not showing on my task-bar. So I waited .... 10 mins, same message .... 30 mins, same message. Eventually I gave up and shut down
    the Laptop and went to bed.

    1.    On Linux, if I wanted to force a program closure, where would I go?? (In Win7, I think it's via Ctrl/Alt/Del)

    2.    In SeaMonkey and/or Linux, where might I find any error messages which might tell me what my problem is/was??

    TIA

    This gets asked every few months, and I must admit I thought you were
    one of the people who had asked it before.
    If you want to see if Seamonkey is still running as a zombie after you
    have terminated it, open a command-line window and

    ps aux | grep -e monkey

    That will give you one (good) or three (bad) entries. If it is three
    then the first two of them will contain the a path to a "seamonkey" file (assuming there is no other program containing "monkey" in its name).
    The last entry will be the grep line itself.
    Take the "seamonkey" line which has used the most time (the two time
    values are start hh:mm and time used) and "kill" the process-id (the
    number on the left).

    In my case,
    myusr 3768 0.0 0.0 15176 3264 ? S 09:55 0:00 /bin/sh /usr/bin/seamonkey
    myusr 3773 4.7 8.6 4196428 1357632 ? Sl 09:55 6:02 /usr/lib64/seamonkey/seamonkey-bin
    myusr 9956 0.0 0.0 7720 764 pts/1 S+ 12:01 0:00 grep --color=auto -e monkey

    seamonkey-bin has used 6:02, so you want to issue "kill 3773".

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Daniel65@2:250/1 to All on Thu Mar 23 11:38:48 2023
    Don Spam's Reckless Son wrote on 23/3/23 10:09 pm:
    Daniel65 wrote:
    Cross-posted to alt.comp.software.seamonkey and alt.os.linux.mageia
    as I'm not sure what caused my problem.

    User agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
    SeaMonkey/2.53.15 Build identifier: 20230108172623

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux
    6) HP 6730 Laptop.

    Last night, after about an hours working, I closed my SeaMonkey
    ('X' in top right of all three SM screens) .... but didn't
    shut-down my computer ... and, about 5 minutes later, I realised I
    had forgotten to do something so clicked on my SeaMonkey Desktop
    icon to restart the program .... and got a message

    Quote SeaMonkey is already running, but is not responding. To open
    a new window, you must first close the existing SeaMonkey process,
    or restart your system. End Quote

    SeaMonkey was not showing on my task-bar. So I waited .... 10 mins,
    same message .... 30 mins, same message. Eventually I gave up and
    shut down the Laptop and went to bed.

    1. On Linux, if I wanted to force a program closure, where would
    I go?? (In Win7, I think it's via Ctrl/Alt/Del)

    2. In SeaMonkey and/or Linux, where might I find any error
    messages which might tell me what my problem is/was??

    TIA

    This gets asked every few months, and I must admit I thought you were
    one of the people who had asked it before. If you want to see if
    Seamonkey is still running as a zombie after you have terminated it,
    open a command-line window and

    ps aux | grep -e monkey

    That will give you one (good) or three (bad) entries. If it is three
    then the first two of them will contain the a path to a "seamonkey"
    file (assuming there is no other program containing "monkey" in its
    name). The last entry will be the grep line itself. Take the
    "seamonkey" line which has used the most time (the two time values
    are start hh:mm and time used) and "kill" the process-id (the number
    on the left).

    In my case, myusr 3768 0.0 0.0 15176 3264 ? S 09:55
    0:00 /bin/sh /usr/bin/seamonkey myusr 3773 4.7 8.6 4196428
    1357632 ? Sl 09:55 6:02 /usr/lib64/seamonkey/seamonkey-bin
    myusr 9956 0.0 0.0 7720 764 pts/1 S+ 12:01 0:00 grep
    --color=auto -e monkey

    seamonkey-bin has used 6:02, so you want to issue "kill 3773".

    So, in my case, ....

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel 3275 8.3 35.2 4356784 1389556 ? Sl 18:48 17:50 /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012
    daniel 7856 0.0 0.0 12296 864 pts/0 S+ 22:21 0:00 grep
    --color -e monkey
    [daniel@localhost ~]$ ^C
    [daniel@localhost ~]$

    So I'm guessing you would call that 'one (good)' entry

    Your reply copy/pasted to my Linuxstuff file .... so, hopefully, I don't
    ask again!! ;-(
    --
    Daniel

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Don Spam's Reckless Son@2:250/1 to All on Thu Mar 23 11:54:32 2023
    Daniel65 wrote:
    Don Spam's Reckless Son wrote on 23/3/23 10:09 pm:
    Daniel65 wrote:
    Cross-posted to alt.comp.software.seamonkey and alt.os.linux.mageia
    as I'm not sure what caused my problem.

    User agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
     SeaMonkey/2.53.15 Build identifier: 20230108172623

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux
    6) HP 6730 Laptop.

    Last night, after about an hours working, I closed my SeaMonkey
    ('X' in top right of all three SM screens) .... but didn't
    shut-down my computer ... and, about 5 minutes later, I realised I
    had forgotten to do something so clicked on my SeaMonkey Desktop
    icon to restart the program .... and got a message

    Quote SeaMonkey is already running, but is not responding. To open
    a new window, you must first close the existing SeaMonkey process,
    or restart your system. End Quote

    SeaMonkey was not showing on my task-bar. So I waited .... 10 mins,
     same message .... 30 mins, same message. Eventually I gave up and
    shut down the Laptop and went to bed.

    1.    On Linux, if I wanted to force a program closure, where would
    I go?? (In Win7, I think it's via Ctrl/Alt/Del)

    2.    In SeaMonkey and/or Linux, where might I find any error
    messages which might tell me what my problem is/was??

    TIA

    This gets asked every few months, and I must admit I thought you were
     one of the people who had asked it before. If you want to see if
    Seamonkey is still running as a zombie after you have terminated it,
    open a command-line window and

    ps aux | grep -e monkey

    That will give you one (good) or three (bad) entries.  If it is three
     then the first two of them will contain the a path to a "seamonkey"
    file (assuming there is no other program containing "monkey" in its
    name). The last entry will be the grep line itself. Take the
    "seamonkey" line which has used the most time (the two time values
    are start hh:mm and time used) and "kill" the process-id (the number
    on the left).

    In my case, myusr     3768  0.0  0.0  15176  3264 ?        S    09:55
    0:00 /bin/sh /usr/bin/seamonkey myusr     3773  4.7  8.6 4196428
    1357632 ?     Sl   09:55   6:02 /usr/lib64/seamonkey/seamonkey-bin >> myusr     9956  0.0  0.0   7720   764 pts/1    S+   12:01   0:00 grep
     --color=auto -e monkey

    seamonkey-bin has used 6:02, so you want to issue "kill 3773".

    So, in my case, ....

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel    3275  8.3 35.2 4356784 1389556 ?     Sl   18:48  17:50 /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012
    daniel    7856  0.0  0.0  12296   864 pts/0    S+   22:21   0:00 grep
    --color -e monkey
    [daniel@localhost ~]$ ^C
    [daniel@localhost ~]$

    So I'm guessing you would call that 'one (good)' entry

    Your reply copy/pasted to my Linuxstuff file .... so, hopefully, I don't
    ask again!! ;-(

    Process 3275 has been open since 18:48 and has accumulated 17:50. You
    only have one seamonkey process, I have two during normal operation
    although one just sits there.
    If you had previusly closed Seamonkey when you got that display, you
    would need to kill 3275 to finish the job. I never "kill" unless normal methods have failed.

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Bobbie Sellers@2:250/1 to All on Thu Mar 23 15:08:07 2023
    On 3/23/23 04:54, Don Spam's Reckless Son wrote:
    Daniel65 wrote:
    Don Spam's Reckless Son wrote on 23/3/23 10:09 pm:
    Daniel65 wrote:
    Cross-posted to alt.comp.software.seamonkey and alt.os.linux.mageia
    as I'm not sure what caused my problem.

    User agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101
     SeaMonkey/2.53.15 Build identifier: 20230108172623

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux
    6) HP 6730 Laptop.

    Last night, after about an hours working, I closed my SeaMonkey
    ('X' in top right of all three SM screens) .... but didn't
    shut-down my computer ... and, about 5 minutes later, I realised I
    had forgotten to do something so clicked on my SeaMonkey Desktop
    icon to restart the program .... and got a message

    Quote SeaMonkey is already running, but is not responding. To open
    a new window, you must first close the existing SeaMonkey process,
    or restart your system. End Quote

    SeaMonkey was not showing on my task-bar. So I waited .... 10 mins,
     same message .... 30 mins, same message. Eventually I gave up and
    shut down the Laptop and went to bed.

    1.    On Linux, if I wanted to force a program closure, where would >>>> I go?? (In Win7, I think it's via Ctrl/Alt/Del)

    2.    In SeaMonkey and/or Linux, where might I find any error
    messages which might tell me what my problem is/was??

    TIA

    This gets asked every few months, and I must admit I thought you were
     one of the people who had asked it before. If you want to see if
    Seamonkey is still running as a zombie after you have terminated it,
    open a command-line window and

    ps aux | grep -e monkey

    That will give you one (good) or three (bad) entries.  If it is three
     then the first two of them will contain the a path to a "seamonkey"
    file (assuming there is no other program containing "monkey" in its
    name). The last entry will be the grep line itself. Take the
    "seamonkey" line which has used the most time (the two time values
    are start hh:mm and time used) and "kill" the process-id (the number
    on the left).

    In my case, myusr     3768  0.0  0.0  15176  3264 ?        S    09:55
    0:00 /bin/sh /usr/bin/seamonkey myusr     3773  4.7  8.6 4196428
    1357632 ?     Sl   09:55   6:02 /usr/lib64/seamonkey/seamonkey-bin >>> myusr     9956  0.0  0.0   7720   764 pts/1    S+   12:01   0:00 grep
     --color=auto -e monkey

    seamonkey-bin has used 6:02, so you want to issue "kill 3773".

    So, in my case, ....

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel    3275  8.3 35.2 4356784 1389556 ?     Sl   18:48  17:50 >> /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012
    daniel    7856  0.0  0.0  12296   864 pts/0    S+   22:21   0:00 grep
    --color -e monkey
    [daniel@localhost ~]$ ^C
    [daniel@localhost ~]$

    So I'm guessing you would call that 'one (good)' entry

    Your reply copy/pasted to my Linuxstuff file .... so, hopefully, I
    don't ask again!! ;-(

    Process 3275 has been open since 18:48 and has accumulated 17:50.  You
    only have one seamonkey process, I have two during normal operation
    although one just sits there.
    If you had previusly closed Seamonkey when you got that display, you
    would need to kill 3275 to finish the job.  I never "kill" unless normal methods have failed.

    Then therr is KSysGuard if you run Plasma.
    ` bliss

    --
    bliss dash SF 4 ever at dslextreme dot com


    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: dis-organization (2:250/1@fidonet)
  • From gerry 666uk@2:250/1 to All on Thu Mar 23 21:20:16 2023
    Daniel65 wrote:

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux
    6) HP 6730 Laptop.

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel    3275  8.3 35.2 4356784 1389556 ?     Sl   18:48  17:50 /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012

    Can you clarify:
    How did you install it?
    How do you start it (not sure where that "client id" is coming from)?
    When you exit, you should use "File | Quit" (not the 'X') unless you are
    sure there's only a single window open.

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Hank Rogers@2:250/1 to All on Thu Mar 23 21:31:31 2023
    gerry 666uk wrote:
    Daniel65 wrote:

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting
    (Win7/MGALinux
    6) HP 6730 Laptop.

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel    3275  8.3 35.2 4356784 1389556 ?     Sl Â
    18:48  17:50
    /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012

    Can you clarify:
    How did you install it?
    How do you start it (not sure where that "client id" is coming from)?
    When you exit, you should use "File | Quit" (not the 'X') unless
    you are sure there's only a single window open.

    I bet there is a linux option to only allow one instance of the
    program to run.

    Probably very complicated and might take time to figure out, but
    linux allows complete control of your computer.

    There's probably a man page somewhere.




    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: blocknews - www.blocknews.net (2:250/1@fidonet)
  • From Don Spam's Reckless Son@2:250/1 to All on Fri Mar 24 08:52:21 2023
    Hank Rogers wrote:
    gerry 666uk wrote:
    Daniel65 wrote:

    on MageiaLinux 6 with KDE Desktop/ on a Dual-booting (Win7/MGALinux
    6) HP 6730 Laptop.

    [daniel@localhost ~]$ ps aux | grep -e monkey
    daniel    3275  8.3 35.2 4356784 1389556 ?     Sl  18:48Â
    17:50
    /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey
    --sm-client-id 1028c1d320b210000167948698700000031840012

    Can you clarify:
    How did you install it?
    How do you start it (not sure where that "client id" is coming from)?
    When you exit, you should use "File | Quit" (not the 'X') unless you
    are sure there's only a single window open.

    I bet there is a linux option to only allow one instance of the program
    to run.

    Probably very complicated and might take time to figure out, but linux allows complete control of your computer.

    There's probably a man page somewhere.




    Try "barking up the wrong tree".

    Daniel has clearly installed it "locally", the /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey is a
    honking great clue. Note that his user-agent says he is running 2.53.15
    and not 2.53.6.

    His system only shows one instance, mine shows two but that is because
    one of them is a "start process" which starts the other one. I killed
    the start process once and the other one - the real problem - continued.
    Note that the programs being executed on my system have different names
    and are in different directories, not much scope for enforcing "allow it
    to run once only" there.

    In Daniel's first post he says he gets an "already running" error. This
    shows that Seamonkey itself checks to see if it is already running, no
    need to farm this out to Linux.

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From TJ@2:250/1 to All on Fri Mar 24 16:28:56 2023
    On 2023-03-24 04:52, Don Spam's Reckless Son wrote:
    Try "barking up the wrong tree".

    Daniel has clearly installed it "locally", the /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey is a
    honking great clue.  Note that his user-agent says he is running 2.53.15 and not 2.53.6.

    His system only shows one instance, mine shows two but that is because
    one of them is a "start process" which starts the other one.  I killed
    the start process once and the other one - the real problem - continued.
    Note that the programs being executed on my system have different names
    and are in different directories, not much scope for enforcing "allow it
    to run once only" there.

    In Daniel's first post he says he gets an "already running" error.  This shows that Seamonkey itself checks to see if it is already running, no
    need to farm this out to Linux.

    To start with, Daniel is running Mageia 6, which has been EOL since
    September 2019. He should install the current version, Mageia 8.

    Mageia dropped Seamonkey, then called Iceape, from their repos in April
    2020, because of lack of a maintainer. Users are advised that if they
    want it, they should download it and install it themselves. Since
    version 2.53.15 was released in January 2023, this may be what Daniel
    has done, but not necessarily. From the Seamonkey website:

    "Automatic upgrades from previous 2.53.x versions are enabled for this release, but if you have problems with it upgrading or you need to
    upgrade from a version earlier than 2.53.5, please download the full
    installer from the downloads section and install SeaMonkey 2.53.15
    manually over the previous version."

    So it is quite possible that he has been receiving automatic updates
    since version 2.53.6.

    There is currently a new package request to restore Seamonkey to the
    under development Mageia 9, but nothing has come of it. Yet. It has been
    said in a comment in the package request that the version downloaded
    from the vendor works just fine in Mageia 9, so it probably works in
    Mageia 8, as well.

    I repeat: Daniel needs to install Mageia 8.

    TJ

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Daniel65@2:250/1 to All on Sat Mar 25 01:03:36 2023
    TJ wrote on 25/3/23 3:28 am:
    On 2023-03-24 04:52, Don Spam's Reckless Son wrote:
    Try "barking up the wrong tree".

    Daniel has clearly installed it "locally", the
    /home/daniel/seamonkey_2/SeaMonkey_2_53_6/seamonkey/seamonkey is a
    honking great clue. Note that his user-agent says he is running
    2.53.15 and not 2.53.6.

    His system only shows one instance, mine shows two but that is
    because one of them is a "start process" which starts the other
    one. I killed the start process once and the other one - the real
    problem - continued. Note that the programs being executed on my
    system have different names and are in different directories, not
    much scope for enforcing "allow it to run once only" there.

    In Daniel's first post he says he gets an "already running" error.
    This shows that Seamonkey itself checks to see if it is already
    running, no need to farm this out to Linux.

    To start with, Daniel is running Mageia 6, which has been EOL since September 2019. He should install the current version, Mageia 8.

    Mageia dropped Seamonkey, then called Iceape,

    No. SeaMonkey directly followed from Mozilla Suite .... Iceape was then
    an off-shoot of SeaMonkey Suite.

    from their repos in April 2020, because of lack of a maintainer.
    Users are advised that if they want it, they should download it and
    install it themselves. Since version 2.53.15 was released in January
    2023, this may be what Daniel has done, but not necessarily. From the Seamonkey website:

    "Automatic upgrades from previous 2.53.x versions are enabled for
    this release, but if you have problems with it upgrading or you need
    to upgrade from a version earlier than 2.53.5, please download the
    full installer from the downloads section and install SeaMonkey
    2.53.15 manually over the previous version."

    So it is quite possible that he has been receiving automatic updates
    since version 2.53.6.

    There is currently a new package request to restore Seamonkey to the
    under development Mageia 9, but nothing has come of it. Yet. It has
    been said in a comment in the package request that the version
    downloaded from the vendor works just fine in Mageia 9, so it
    probably works in Mageia 8, as well.

    I repeat: Daniel needs to install Mageia 8.

    TJ

    Yes, TJ ..... one day!! I have downloaded it and burnt it to DVD (12
    months or more ago!!), but, as 'they' say .... 'If it ain't broken,
    don't fix it!!'
    --
    Daniel

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From William Unruh@2:250/1 to All on Sat Mar 25 04:11:11 2023
    On 2023-03-25, Daniel65 <daniel47@nomail.afraid.org> wrote:

    There is currently a new package request to restore Seamonkey to the
    under development Mageia 9, but nothing has come of it. Yet. It has
    been said in a comment in the package request that the version
    downloaded from the vendor works just fine in Mageia 9, so it
    probably works in Mageia 8, as well.

    I repeat: Daniel needs to install Mageia 8.

    TJ

    Yes, TJ ..... one day!! I have downloaded it and burnt it to DVD (12
    months or more ago!!), but, as 'they' say .... 'If it ain't broken,
    don't fix it!!'

    Except the suggestion is that Mga8 IS broken and you have been running
    into the sharp shards while trying to run Seamonkey.

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From Daniel65@2:250/1 to All on Sat Mar 25 08:51:14 2023
    William Unruh wrote on 25/3/23 3:11 pm:
    On 2023-03-25, Daniel65 <daniel47@nomail.afraid.org> wrote:

    There is currently a new package request to restore Seamonkey to the
    under development Mageia 9, but nothing has come of it. Yet. It has
    been said in a comment in the package request that the version
    downloaded from the vendor works just fine in Mageia 9, so it
    probably works in Mageia 8, as well.

    I repeat: Daniel needs to install Mageia 8.

    TJ

    Yes, TJ ..... one day!! I have downloaded it and burnt it to DVD (12
    months or more ago!!), but, as 'they' say .... 'If it ain't broken,
    don't fix it!!'

    Except the suggestion is that Mga8 IS broken and you have been running
    into the sharp shards while trying to run Seamonkey.

    Oh!! Well, just as well that I'm still on MGA6 then, William! ;-P
    --
    Daniel

    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From TJ@2:250/1 to All on Sat Mar 25 22:32:44 2023
    On 2023-03-24 21:03, Daniel65 wrote:

    Mageia dropped Seamonkey, then called Iceape,

    No. SeaMonkey directly followed from Mozilla Suite .... Iceape was then
    an off-shoot of SeaMonkey Suite.

    To be more precise, Iceape was created by Debian as a version of
    Seamonkey with the proprietary artwork and plugins removed. It had to be renamed because of trademark issues, something Mozilla was particularly sensitive about because they had to rename Firefox twice for the same
    reason.

    Mageia distributed Iceape from its beginning in 2011, and even after the dispute between Debian and Mozilla was settled, kept renaming new
    versions of Seamonkey to Iceape until 2020.

    See https://bugs.mageia.org/show_bug.cgi?id=24300 for the discussion
    that resulted in the eventual dropping of Iceape from the Mageia repos.

    See https://wiki.mageia.org/en/Seamonkey for the current advice
    concerning Mageia and Seamonkey.

    Oh, and Mageia 6 *IS* broken, simply because it is old and has not seen
    any security updates for nearly 4 years.

    TJ



    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)
  • From William Unruh@2:250/1 to All on Sun Mar 26 00:06:07 2023
    On 2023-03-25, Daniel65 <daniel47@nomail.afraid.org> wrote:
    William Unruh wrote on 25/3/23 3:11 pm:
    On 2023-03-25, Daniel65 <daniel47@nomail.afraid.org> wrote:

    There is currently a new package request to restore Seamonkey to the
    under development Mageia 9, but nothing has come of it. Yet. It has
    been said in a comment in the package request that the version
    downloaded from the vendor works just fine in Mageia 9, so it
    probably works in Mageia 8, as well.

    I repeat: Daniel needs to install Mageia 8.

    TJ

    Yes, TJ ..... one day!! I have downloaded it and burnt it to DVD (12
    months or more ago!!), but, as 'they' say .... 'If it ain't broken,
    don't fix it!!'

    Except the suggestion is that Mga8 IS broken and you have been running
    into the sharp shards while trying to run Seamonkey.

    Oh!! Well, just as well that I'm still on MGA6 then, William! ;-P

    Except that mga6 is broken in so many other ways, things having to do
    with security and the ability for others to take over your computer.


    --- MBSE BBS v1.0.8.3 (Linux-x86_64)
    * Origin: A noiseless patient Spider (2:250/1@fidonet)