|
1 | 1 | # Install Sysmon
|
2 | 2 | Please see the history of this file for instructions for older, unsupported versions.
|
3 | 3 |
|
4 |
| -## Ubuntu 20.04 & 22.04 |
| 4 | +## Ubuntu 20.04, 22.04, 23.04 |
5 | 5 | #### 1. Register Microsoft key and feed
|
6 | 6 | ```sh
|
7 | 7 | wget -q https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
|
@@ -33,11 +33,42 @@ sudo apt-get update
|
33 | 33 | sudo apt-get install sysmonforlinux
|
34 | 34 | ```
|
35 | 35 |
|
36 |
| -## Fedora 36 |
| 36 | +## Debian 12 |
| 37 | +#### 1. Register Microsoft key and feed |
| 38 | +```sh |
| 39 | +wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg |
| 40 | +sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ |
| 41 | +wget -q https://packages.microsoft.com/config/debian/12/prod.list |
| 42 | +sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list |
| 43 | +sudo chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg |
| 44 | +sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list |
| 45 | +``` |
| 46 | + |
| 47 | +#### 2. Install SysmonForLinux |
| 48 | +```sh |
| 49 | +sudo apt-get update |
| 50 | +sudo apt-get install apt-transport-https |
| 51 | +sudo apt-get update |
| 52 | +sudo apt-get install sysmonforlinux |
| 53 | +``` |
| 54 | + |
| 55 | +## Fedora 37 |
| 56 | +#### 1. Register Microsoft key and feed |
| 57 | +```sh |
| 58 | +sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc |
| 59 | +sudo wget -q -O /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.com/config/fedora/37/prod.repo |
| 60 | +``` |
| 61 | + |
| 62 | +#### 2. Install SysmonForLinux |
| 63 | +```sh |
| 64 | +sudo dnf install sysmonforlinux |
| 65 | +``` |
| 66 | + |
| 67 | +## Fedora 38 |
37 | 68 | #### 1. Register Microsoft key and feed
|
38 | 69 | ```sh
|
39 | 70 | sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
|
40 |
| -sudo wget -q -O /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.com/config/fedora/36/prod.repo |
| 71 | +sudo wget -q -O /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.com/config/fedora/38/prod.repo |
41 | 72 | ```
|
42 | 73 |
|
43 | 74 | #### 2. Install SysmonForLinux
|
@@ -69,7 +100,6 @@ sudo wget -q -O /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.
|
69 | 100 | sudo dnf install sysmonforlinux
|
70 | 101 | ```
|
71 | 102 |
|
72 |
| - |
73 | 103 | ## openSUSE 15
|
74 | 104 | #### 1. Register Microsoft key and feed
|
75 | 105 | ```sh
|
|
0 commit comments