Re: slack.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 





On 3 Aug 2021, at 08:42, Matti Pulkkinen <mkjpul@xxxxxx> wrote:

ma, 2021-08-02 kello 18:44 +0000, Richard kirjoitti:

The name on that zoom info is also a clue. If it had come from a
fedora/redhat/centos repository it would have a repository indicator
"fc33", "fc34", "el7.<rh/centos>" on the package name. Zoom has
packages available for a range of linux releases available from their
web site, but as with slack, I've not found a repository reference
that can be added to dnf so you need to download their package and do
a local install.


This reminded me to ask: I've installed Zoom through the RPM on their
website, and it seems to occasionally update with the rest of my
system's packages via Gnome Software. I installed the RPM manually, but
can an RPM install its own repository or other update source, or am I
misinterpreting things?

I do not know of any repo with zoom in it. I use a script like this to install zoom updates:

#!/bin/bash
URL="" href="https://zoom.us/client/latest/zoom_x86_64.rpm" class="">https://zoom.us/client/latest/zoom_x86_64.rpm

cd ~/Downloads
rm -f zoom_x86_64.rpm
curl --location --remote-name --silent --show-error ${URL}
INSTALLED=$(rpm -q zoom)
LATEST=$(rpm -qp zoom_x86_64.rpm)
if [ "${INSTALLED}" = "${LATEST}" ]
then
    echo "Info: Zoom is up to date. Version: ${INSTALLED}"
else
    echo "Info: There is a new version of zoom. Installed ${INSTALLED} latest ${LATEST}"
    mv zoom_x86_64.rpm ${LATEST}.rpm
    if [ "$1" = "--install" ]
    then
        echo "Installing new Zoom version"
        sudo dnf install ~${USER}/Downloads/${LATEST}.rpm
    fi
fi

Outputs this when there is no new update:

$ ./check-for-zoom-updates.sh
warning: zoom_x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 61a7c71d: NOKEY
Info: Zoom is up to date. Version: zoom-5.7.28991.0726-1.x86_64

Barry

_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx
Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure
[Index of Archives]     [Older Fedora Users]     [Fedora Announce]     [Fedora Package Announce]     [EPEL Announce]     [EPEL Devel]     [Fedora Magazine]     [Fedora Summer Coding]     [Fedora Laptop]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Desktop]     [Fedora Fonts]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Yosemite News]     [Gnome Users]     [KDE Users]     [Fedora Art]     [Fedora Docs]     [Fedora Sparc]     [Libvirt Users]     [Fedora ARM]

  Powered by Linux