-
-
Save Mausy5043/2523ad909812ee619c3528b90312633c to your computer and use it in GitHub Desktop.
enable installation of Cockpit on Raspberry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /etc/apt/sources.list.d/backports.list | |
Add these lines: | |
# For Cockpit-Project | |
deb http://deb.debian.org/debian stretch-backports main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install dirmngr | |
gpg --keyserver hkp://pool.sks-keyservers.net:80 --recv-key 8B48AD6246925553 | |
gpg -a --export 8B48AD6246925553 | sudo apt-key add - | |
gpg --keyserver hkp://pool.sks-keyservers.net:80 --recv-key 7638D0442B90D010 | |
gpg -a --export 7638D0442B90D010 | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install cockpit | |
sudo systemctl enable --now cockpit.socket |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment