sysdig icon indicating copy to clipboard operation
sysdig copied to clipboard

Linux Manual Install Instructions Are using a Deprecated `apt-key` command

Open wordeater opened this issue 1 year ago • 1 comments

The manual installation instructions for Linux should be updated. https://github.com/draios/sysdig/wiki/How-to-Install-Sysdig-for-Linux#user-content-manual-installation It is currently advised to use

curl -s https://download.sysdig.com/DRAIOS-GPG-KEY.public | sudo apt-key add -  
sudo curl -s -o /etc/apt/sources.list.d/draios.list https://download.sysdig.com/stable/deb/draios.list  
sudo apt-get update

The apt-key command is deprecated.

Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
OK

Based on the suggestion in the man page, I successfully used this command instead.

wget -qO- https://download.sysdig.com/DRAIOS-GPG-KEY.public | sudo tee /etc/apt/trusted.gpg.d/DRAIOS-sysdig.asc

Please consider updating the documentation.

wordeater avatar Dec 13 '24 14:12 wordeater

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

github-actions[bot] avatar Apr 13 '25 02:04 github-actions[bot]