The 4.1.2 packages are now available in our `yum` ...
# general
t
The 4.1.2 packages are now available in our
yum
and
apt
repositories. Please find the install instructions at https://osquery.io/downloads/official/4.1.2 as well as direct downloads for the packages. They should install on almost all Linux platforms supporting either RPM or DEB packages. In the past we copy-pasted packages to repos named, trusty, precise, centos6, etc, those duplicate repos will be removed, if you still use these please move to the generic repos. All distros using RPMs:
Copy code
curl -L <https://pkg.osquery.io/rpm/GPG> | sudo tee /etc/pki/rpm-gpg/RPM-GPG-KEY-osquery
sudo yum-config-manager --add-repo <https://pkg.osquery.io/rpm/osquery-s3-rpm.repo>
sudo yum-config-manager --enable osquery-s3-rpm
sudo yum install osquery
All distros using DEBs:
Copy code
export OSQUERY_KEY=1484120AC4E9F8A1A577AEEE97A80C63C9D8B80B
sudo apt-key adv --keyserver <http://keyserver.ubuntu.com|keyserver.ubuntu.com> --recv-keys $OSQUERY_KEY
sudo add-apt-repository 'deb [arch=amd64] <https://pkg.osquery.io/deb> deb main'
sudo apt-get update
sudo apt-get install osquery
Heads up that the duplicate repos have been removed. If anyone is using them (I expect folks are) then you will start to see 404s. The resolution is to change to the new repo endpoints described in the pinned post. I am really sorry for the breakage but it moving to the new repos and having access to the new packages is important due to the number of bugs fixed recently.
👍 1