Skip to content

Commit

Permalink
docs: install, upgrade and uninstall doc added to /ref
Browse files Browse the repository at this point in the history
  • Loading branch information
sdvendramini committed Feb 20, 2025
1 parent 33acaa3 commit 0372c9d
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docs/ref/getting-started/installation.md
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
# Installation

## Install the Agent on Linux

- DEB

```bash
dpkg -i wazuh-agent_5.0.0.deb
```

- RPM

```bash
sudo rpm -i wazuh-agent_5.0.0.rpm
```

## Install the Agent on macOS

- PKG

```bash
sudo installer -pkg wazuh-agent_5.0.0.pkg -target /
```

## Install the Agent on Windows

- MSI

```bash
.\wazuh-agent_5.0.0.msi /q
```
26 changes: 26 additions & 0 deletions docs/ref/uninstall.md
Original file line number Diff line number Diff line change
@@ -1 +1,27 @@
# Uninstall

## Uninstall the Agent on Linux

- DEB

```bash
sudo dpkg -r wazuh-agent
```

- RPM

```bash
sudo rpm -e wazuh-agent
```

## Uninstall the Agent on macOS

- PKG
<!-- To do -->

## Uninstall the Agent on Windows

- MSI
```powershell
msiexec /x '.\wazuh-agent_5.0.0.msi' /l*v uninstall.log
```
30 changes: 30 additions & 0 deletions docs/ref/upgrade.md
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
# Upgrade

## Upgrade the Agent on Linux

- DEB

```bash
dpkg -i wazuh-agent_5.0.0.deb
```

- RPM

```bash
sudo rpm -i wazuh-agent_5.0.0.rpm
```

## Upgrade the Agent on macOS

- PKG

```bash
sudo installer -pkg wazuh-agent_5.0.0.pkg -target /
```

## Upgrade the Agent on Windows

- MSI

```bash
.\wazuh-agent_5.0.0.msi /q
```

0 comments on commit 0372c9d

Please sign in to comment.