--- title: "Get-VBRProtectionGroupLinuxPackage" description: "Returns Veeam Agent for Linux packages. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns Veeam Agent for Linux packages." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrprotectiongrouplinuxpackage.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Protection Groups > Veeam Agent Management Protection Groups > Get-VBRProtectionGroupLinuxPackage" dateModified: "2026-08-19" --- # Get-VBRProtectionGroupLinuxPackage ## Short Description Returns Veeam Agent for Linux packages. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRProtectionGroupLinuxPackage [-Name ] [-LinuxDistributionName ] [-LinuxPackageBitness ] [-Type ] [] ``` ## Detailed Description This cmdlet returns Veeam Agent for Linux packages. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

LinuxDistributionName

Specifies an array of Veeam Agent for Linux packages that you specify for this parameter. The cmdlet will return Linux packages with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

LinuxPackageBitness

Specifies an operating system version of Veeam Agent for Linux packages. You can specify one of the following types of operating systems:

  • X86
  • X64
  • Unknown

VBRLinuxPackageArch

False

Named

True (ByPropertyName, ByValue)

Name

Specifies a name of the Veeam Agent for a Linux package. The cmdlet will return Linux packages with this name.

String

False

Named

True (ByPropertyName, ByValue)

Type

Specifies one of the following Linux packages type:

  • Standard
  • Nosnap

VBRLinuxAgentPackageType

False

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the [`VBRProtectionGroupLinuxPackage`](vbrprotectiongrouplinuxpackage.md) object that contains Veeam Agent for Linux packages. ## Examples ::: example ### Example 1. Getting all Veeam Agent for Linux Packages This command returns an array of all Veeam Agent for Linux packages. ``` Get-VBRProtectionGroupLinuxPackage ``` ::: ::: example ### Example 2. Getting Veeam Agent for Linux Packages This command returns an array of Debian and Ubuntu packages with the X64 operating system version. ``` Get-VBRProtectionGroupLinuxPackage -LinuxDistributionName "debian", "ubuntu" -LinuxPackageBitness X64 ``` :::