Skip to content

Commit 8fd6374

Browse files
authored
1.3 release prep - update install instructions (#140)
1 parent a5304c1 commit 8fd6374

File tree

1 file changed

+34
-4
lines changed

1 file changed

+34
-4
lines changed

INSTALL.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Install Sysmon
22
Please see the history of this file for instructions for older, unsupported versions.
33

4-
## Ubuntu 20.04 & 22.04
4+
## Ubuntu 20.04, 22.04, 23.04
55
#### 1. Register Microsoft key and feed
66
```sh
77
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
3333
sudo apt-get install sysmonforlinux
3434
```
3535

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
3768
#### 1. Register Microsoft key and feed
3869
```sh
3970
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
4172
```
4273

4374
#### 2. Install SysmonForLinux
@@ -69,7 +100,6 @@ sudo wget -q -O /etc/yum.repos.d/microsoft-prod.repo https://packages.microsoft.
69100
sudo dnf install sysmonforlinux
70101
```
71102

72-
73103
## openSUSE 15
74104
#### 1. Register Microsoft key and feed
75105
```sh

0 commit comments

Comments
 (0)