mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-20 04:43:37 +00:00
Update TOC
Update TOC
This commit is contained in:
@ -342,6 +342,16 @@
|
|||||||
#### [Privacy](microsoft-defender-atp/mac-privacy.md)
|
#### [Privacy](microsoft-defender-atp/mac-privacy.md)
|
||||||
#### [Resources](microsoft-defender-atp/mac-resources.md)
|
#### [Resources](microsoft-defender-atp/mac-resources.md)
|
||||||
|
|
||||||
|
### [Microsoft Defender Advanced Threat Protection for Linux](microsoft-defender-atp/microsoft-defender-atp-linux.md)
|
||||||
|
#### [Deploy]()
|
||||||
|
##### [Manual deployment](microsoft-defender-atp/linux-install-manually.md)
|
||||||
|
##### [Puppet based deployment](microsoft-defender-atp/linux-install-with-puppet.md)
|
||||||
|
##### [Ansible based deployment](microsoft-defender-atp/linux-install-with-ansible.md)
|
||||||
|
#### [Update](microsoft-defender-atp/linux-updates.md)
|
||||||
|
#### [Configure]()
|
||||||
|
##### [Static Proxy Configuration](microsoft-defender-atp/linux-static-proxy-configuration.md)
|
||||||
|
##### [Set preferences](microsoft-defender-atp/linux-preferences.md)
|
||||||
|
#### [Resources](microsoft-defender-atp/linux-resources.md)
|
||||||
|
|
||||||
### [Configure Secure score dashboard security controls](microsoft-defender-atp/secure-score-dashboard.md)
|
### [Configure Secure score dashboard security controls](microsoft-defender-atp/secure-score-dashboard.md)
|
||||||
|
|
||||||
|
@ -42,7 +42,8 @@ Before you get started, see [the main Microsoft Defender ATP for Linux page](mic
|
|||||||
- Note your distribution and version and identify the closest entry for it under `https://packages.microsoft.com/config/`
|
- Note your distribution and version and identify the closest entry for it under `https://packages.microsoft.com/config/`
|
||||||
|
|
||||||
In the below commands, replace *[distro]* and *[version]* with the information identified in the previous step:
|
In the below commands, replace *[distro]* and *[version]* with the information identified in the previous step:
|
||||||
>[!Note] In case of Oracle EL and CentOS 8, use [distro] as “rhel”.
|
|
||||||
|
> [!NOTE] In case of Oracle EL and CentOS 8, use [distro] as “rhel”.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo yum-config-manager --add-repo=https://packages.microsoft.com/config/[distro]/[version]/insiders-fast.repo
|
$ sudo yum-config-manager --add-repo=https://packages.microsoft.com/config/[distro]/[version]/insiders-fast.repo
|
||||||
@ -54,7 +55,7 @@ Before you get started, see [the main Microsoft Defender ATP for Linux page](mic
|
|||||||
$ sudo yum-config-manager --add-repo=https://packages.microsoft.com/config/centos/7/insiders-fast.repo
|
$ sudo yum-config-manager --add-repo=https://packages.microsoft.com/config/centos/7/insiders-fast.repo
|
||||||
```
|
```
|
||||||
|
|
||||||
- Install the Microsoft GPG public key:
|
- Install the Microsoft GPG public key:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ curl https://packages.microsoft.com/keys/microsoft.asc > microsoft.asc
|
$ curl https://packages.microsoft.com/keys/microsoft.asc > microsoft.asc
|
||||||
@ -67,7 +68,7 @@ Before you get started, see [the main Microsoft Defender ATP for Linux page](mic
|
|||||||
$ yum makecache
|
$ yum makecache
|
||||||
```
|
```
|
||||||
|
|
||||||
### SLES and variants
|
### SLES and variants
|
||||||
|
|
||||||
- Note your distribution and version and identify the closest entry for it under `https://packages.microsoft.com/config/`
|
- Note your distribution and version and identify the closest entry for it under `https://packages.microsoft.com/config/`
|
||||||
|
|
||||||
@ -90,7 +91,7 @@ Before you get started, see [the main Microsoft Defender ATP for Linux page](mic
|
|||||||
$ rpm --import microsoft.asc
|
$ rpm --import microsoft.asc
|
||||||
```
|
```
|
||||||
|
|
||||||
### Ubuntu and Debian systems
|
### Ubuntu and Debian systems
|
||||||
|
|
||||||
- Install `‘curl’` if not already installed:
|
- Install `‘curl’` if not already installed:
|
||||||
|
|
||||||
@ -138,7 +139,7 @@ Before you get started, see [the main Microsoft Defender ATP for Linux page](mic
|
|||||||
$ sudo apt-get install apt-transport-https
|
$ sudo apt-get install apt-transport-https
|
||||||
```
|
```
|
||||||
|
|
||||||
- Update the repository metadata
|
- Update the repository metadata
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ sudo apt-get update
|
$ sudo apt-get update
|
||||||
|
@ -29,7 +29,6 @@ This topic describes how to deploy Microsoft Defender ATP for Linux through Ansi
|
|||||||
- [Download the onboarding packages](#download-onboarding-package)
|
- [Download the onboarding packages](#download-onboarding-package)
|
||||||
- [Create Ansible YAML files](#create-ansible-yaml-files)
|
- [Create Ansible YAML files](#create-ansible-yaml-files)
|
||||||
- [Deployment](#deployment)
|
- [Deployment](#deployment)
|
||||||
- [Check onboarding status](#check-onboarding-status)
|
|
||||||
- [References](#references)
|
- [References](#references)
|
||||||
|
|
||||||
## Prerequisites and system requirements
|
## Prerequisites and system requirements
|
||||||
|
@ -82,7 +82,7 @@ class install_mdatp {
|
|||||||
|
|
||||||
if ($osfamily == 'Debian') {
|
if ($osfamily == 'Debian') {
|
||||||
apt::source { 'microsoftpackages' :
|
apt::source { 'microsoftpackages' :
|
||||||
location => 'https://packages.microsoft.com/ubuntu/18.04/prod', # change the version based on your OS
|
location => 'https://packages.microsoft.com/ubuntu/18.04/prod', # change the version and distro based on your OS
|
||||||
release => 'stable',
|
release => 'stable',
|
||||||
repos => 'main',
|
repos => 'main',
|
||||||
key => {
|
key => {
|
||||||
@ -93,7 +93,7 @@ class install_mdatp {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
yumrepo { 'microsoftpackages' :
|
yumrepo { 'microsoftpackages' :
|
||||||
baseurl => 'https://packages.microsoft.com/rhel/7/prod', # change the version based on your OS
|
baseurl => 'https://packages.microsoft.com/rhel/7/prod', # change the version and distro based on your OS
|
||||||
enabled => 1,
|
enabled => 1,
|
||||||
gpgcheck => 1,
|
gpgcheck => 1,
|
||||||
gpgkey => 'https://packages.microsoft.com/keys/microsoft.asc'
|
gpgkey => 'https://packages.microsoft.com/keys/microsoft.asc'
|
||||||
|
@ -42,7 +42,7 @@ During installation, the ```HTTPS_PROXY``` environment variable must be passed t
|
|||||||
Acquire::https::Proxy "http://proxy.server:port/";
|
Acquire::https::Proxy "http://proxy.server:port/";
|
||||||
```
|
```
|
||||||
|
|
||||||
> [!Caution]
|
> [!CAUTION]
|
||||||
> Note that above two methods could define the proxy to use for other applications on your system. Use this method with caution, or only if this is mean to be a generally global configuration.
|
> Note that above two methods could define the proxy to use for other applications on your system. Use this method with caution, or only if this is mean to be a generally global configuration.
|
||||||
|
|
||||||
- The `HTTPS_PROXY` variable is prepended to the installation and/or uninstallation commands. For example with the APT package manager, prepend the variable as follows when installing Microsoft Defender ATP:
|
- The `HTTPS_PROXY` variable is prepended to the installation and/or uninstallation commands. For example with the APT package manager, prepend the variable as follows when installing Microsoft Defender ATP:
|
||||||
@ -51,7 +51,7 @@ During installation, the ```HTTPS_PROXY``` environment variable must be passed t
|
|||||||
$ HTTPS_PROXY=”http://proxy.server:port/" apt install mdatp
|
$ HTTPS_PROXY=”http://proxy.server:port/" apt install mdatp
|
||||||
```
|
```
|
||||||
|
|
||||||
>[!Note] Do not add sudo between the environment variable definition and apt, otherwise the variable will not be propagated.
|
>[!NOTE] Do not add sudo between the environment variable definition and apt, otherwise the variable will not be propagated.
|
||||||
|
|
||||||
The `HTTPS_PROXY` environment variable may similarly be defined during uninstallation.
|
The `HTTPS_PROXY` environment variable may similarly be defined during uninstallation.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user