• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    Opera 124.0.5705.42 Stable update

    Blogs
    desktop blog comments
    16
    27
    767
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • history411
      history411 last edited by

      "Update."
      Slowly I turned...
      Another stolen hour of my time.
      Opera, as soon as I figure out how to block your pesky updates I will do so.
      Or maybe just go back to Firefox.

      Reply Quote 0
        Opera-QA-Team 1 Reply Last reply
      • Opera-QA-Team
        Opera-QA-Team Opera @history411 last edited by

        @history411: Hello, thanks for sharing. Updates are important for the proper functioning of the browser, they contain bugfixes for issues reported also from Users, so we always suggest to have the newest version.

        Reply Quote 0
          1 Reply Last reply
        • Opera-QA-Team
          Opera-QA-Team Opera @bbildman last edited by

          @bbildman: Hi, thanks for the feedback, we will investigate the issue. So this happened after update to v122? Is it only about your old SpeedDials, or also newly added? What icons can you see when you go to opera://bookmarks -> folder Speed Dials? Are they OK or also changed?

          Reply Quote 0
            1 Reply Last reply
          • ManagerBOSS
            ManagerBOSS last edited by

            After the latest browser update to version 124.0.5705.42, the pre-filled login feature stopped working. I have my logins saved in the browser and I haven't made any changes there. However, now when I want to log in to a URL where I have my login details saved, neither the login nor the password are pre-filled as they used to be, and what's more, when I enter my login, the password is not automatically filled in either. When I go to a specific URL, the key is missing in the top right corner, even though the URL is in the list of saved logins. Please note that this mainly concerns URLs that contain IP addresses, e.g., https://192.168.1.2.

            Reply Quote 0
              1 Reply Last reply
            • TheLamer
              TheLamer @Opera-QA-Team last edited by

              @Opera-QA-Team

              The deb is busted since this release:

              11.74 Setting up opera-stable (124.0.5705.42) ...
              11.82 update-alternatives: error: alternative path /usr/bin/opera-stable doesn't exist
              11.85 dpkg: error processing package opera-stable (--configure):
              11.85  installed opera-stable package post-installation script subprocess returned error exit status 2
              

              Tested on bookworm, Trixie, and Noble. Related to renaming the package but the deb contents do not contain that bin.

              ./bin
              ./bin/opera
              

              The problem is specifically in your postinst in the deb:

              EOF
                          chmod 755 /etc/cron.daily/opera-browser
                          # Run once now to add Opera's pgp key to apt's keyring
                          /etc/cron.daily/opera-browser > /dev/null 2>&1
              
              
                      update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/opera-stable 120 \
                              --slave /usr/share/man/man1/x-www-browser.1.gz x-www-browser.1.gz /usr/share/man/man1/opera-stable.1.gz
                      update-alternatives --install /usr/bin/gnome-www-browser gnome-www-browser /usr/bin/opera-stable 120 \
                              --slave /usr/share/man/man1/gnome-www-browser.1.gz gnome-www-browser.1.gz /usr/share/man/man1/opera-stable.1.gz
                      ;;
              
              esac
              

              Because the name was changed your deb build env looks like it templates that name into the post install hooks and every deb is failing now.

              Reply Quote 0
                1 Reply Last reply
              • Kilian01
                Kilian01 last edited by

                Linux release is now available but fails to properly install. Please fix this immediately. I may remind you that this is calld stable, not beta or developer.

                Reply Quote 0
                  1 Reply Last reply
                • Scrofa
                  Scrofa last edited by

                  After the 124.0.5705.42 update I am unable to even open Opera in Ubuntu. Fix this.

                  Reply Quote 0
                    ironbone 1 Reply Last reply
                  • ironbone
                    ironbone last edited by

                    The snap opera version does not work with Wayland on Ubuntu

                    Reply Quote 0
                      1 Reply Last reply
                    • ironbone
                      ironbone @Scrofa last edited by

                      @scrofa: try as a temporary solution
                      opera --ozone-platform=x11

                      Reply Quote 0
                        Scrofa 1 Reply Last reply
                      • Scrofa
                        Scrofa @ironbone last edited by

                        @ironbone Thanks. It opens with that command but how can I keep it opened without closing the terminal?

                        Reply Quote 0
                          1 Reply Last reply
                        • filbo
                          filbo @Opera-QA-Team last edited by

                          @opera-qa-team: same thing as @thelamer

                          The Linux APT .deb for opera-stable (specifically) is failing on install due to:

                          update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/opera-stable 120 \                                                                  --slave /usr/share/man/man1/x-www-browser.1.gz x-www-browser.1.gz /usr/share/man/man1/opera-stable.1.gz                                         update-alternatives --install /usr/bin/gnome-www-browser gnome-www-browser /usr/bin/opera-stable 120 \                                                          --slave /usr/share/man/man1/gnome-www-browser.1.gz gnome-www-browser.1.gz /usr/share/man/man1/opera-stable.1.gz
                          

                          -- which tries to link /usr/bin/opera-stable as /usr/bin/{x,gnome}-www-browser. Since the binary is /usr/bin/opera (sans -stable), this fails.

                          I note that it fails despite the priority 120 being lower than other choices (which means it will never in fact need to follow the path you've supplied). This seems like a tiny bug in update-alternatives(1), fwiw.

                          This should be fixed by changing the code to tell it to link /usr/bin/opera. You could also actually rename the binary, but if you do that, there will be many other changes elsewhere in your packaging, so I wouldn't go that way.

                          Meanwhile, your code also has a few other anomalies in this area. The postinst scripts for opera-developer, opera-beta, and opera-stable all give the same priority of 120. Other browsers give a higher priority to their 'stable' branch and successively lower for less stable branches.

                          And you instruct it to link man pages which do not in fact exist. This apparently doesn't bother update-alternatives even if your candidate is the winner, oddly enough.

                          Reply Quote 0
                            filbo 1 Reply Last reply
                          • filbo
                            filbo @filbo last edited by

                            A simple workaround for this install issue: cd /usr/bin; sudo ln -is opera opera-stable.

                            This can be done before the install; or after a failed / partial install. Then run apt reinstall opera-stable to finish.

                            Reply Quote 0
                              1 Reply Last reply
                            • First post
                              Last post

                            Computer browsers

                            • Opera for Windows
                            • Opera for Mac
                            • Opera for Linux
                            • Opera beta version
                            • Opera USB

                            Mobile browsers

                            • Opera for Android
                            • Opera Mini
                            • Opera Touch
                            • Opera for basic phones

                            • Add-ons
                            • Opera account
                            • Wallpapers
                            • Opera Ads

                            • Help & support
                            • Opera blogs
                            • Opera forums
                            • Dev.Opera

                            • Security
                            • Privacy
                            • Cookies Policy
                            • EULA
                            • Terms of Service

                            • About Opera
                            • Press info
                            • Jobs
                            • Investors
                            • Become a partner
                            • Contact us

                            Follow Opera

                            • Opera - Facebook
                            • Opera - Twitter
                            • Opera - YouTube
                            • Opera - LinkedIn
                            • Opera - Instagram

                            © Opera Software 1995-