Start-VBRLinuxFileRestore
Aus znilwiki
NAME
Start-VBRLinuxFileRestore ÜBERSICHT Starts non-Windows VM guest OS file restore. SYNTAX Start-VBRLinuxFileRestore -RestorePoint <COib> [-Reason <String>] -Server <CHost> -NetworkInfo <IVBRServerNetworkInfo> [-IP <IPAddress>] [-NetworkMask <String>] [-Gateway <IPAddress>] [-VLanId <Int32>] [-EnableFTP] [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] Start-VBRLinuxFileRestore -RestorePoint <COib> [-Reason <String>] -Server <CHost> -ResourcePool <CViResourcePoolItem> -NetworkInfo <IVBRServerNetworkInfo> [-IP <IPAddress>] [-NetworkMask <String>] [-Gateway <IPAddress>] [-FromNSS] [-EnableFTP] [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>] BESCHREIBUNG This cmdlet starts restore of VM guest OS files from 15 file systems such as Linux, Unix, BSD, MacOS and many others. For non-Windows file level restore, an assisting proxy appliance running Linux is used. Veeam Backup & Replication mounts disks of the restored VM to the proxy appliance as virtual hard drives. This cmdlet requires finalizing. When you restore all needed files, run Stop-VBRLinuxFileRestore to unmount disks and powers the proxy appliance off. IMPORTANT! You need to save the restore session to a variable when you run this cmdlet. Otherwise you will be unable to finalize the restore session with P owerShell. For Windows OS file restore, run Start-VBRWindowsFileRestore. PARAMETER -RestorePoint <COib> Specifies the restore point from which you want to restore the VM guest OS files. Erforderlich? true Position? named Standardwert Pipelineeingaben akzeptieren?true (ByValue, ByPropertyName) Platzhalterzeichen akzeptieren?false -Reason <String> Specifies the reason for performing files restore. The information you provide will be saved in the session history so that you can reference it later. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -Server <CHost> Specifies the host on which the proxy appliance must be registered. IMPORTANT! When choosing the host for the Novell file system proxy appliance, make sure that it allows running VMs with 64-bit guest OS'es. Erforderlich? true Position? named Standardwert Pipelineeingaben akzeptieren?true (ByPropertyName) Platzhalterzeichen akzeptieren?false -NetworkInfo <IVBRServerNetworkInfo> Specifies the network settings for the proxy appliance. The proxy appliance must be placed in the same network where the Veeam backup server resides. Erforderlich? true Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -IP <IPAddress> Specifies the IP address for the proxy appliance. The proxy appliance must be placed in the same network where the Veeam backup server resides. Accepts IPAddress or string type. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -NetworkMask <String> Specifies the network mask for the proxy appliance. The proxy appliance must be placed in the same network where the Veeam backup server resides. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -Gateway <IPAddress> Specifies the default gateway for the proxy appliance. The proxy appliance must be placed in the same network where the Veeam backup server resides. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -VLanId <Int32> Used for Hyper-V platform. Specifies the VLAN ID for the proxy appliance. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -EnableFTP Indicates that the FTP access to the restored file system will be enabled. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -WarningAction <ActionPreference> Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -WarningVariable <String> Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false -ResourcePool <CViResourcePoolItem> Used for VMware platform. Specifies a resource pool to which the proxy appliance must be placed. Erforderlich? true Position? named Standardwert Pipelineeingaben akzeptieren?true (ByPropertyName) Platzhalterzeichen akzeptieren?false -FromNSS Used for restore files in Novell Storage services file system. Indicates that Veeam Backup & Replication will deploy a specific proxy appliance that supports the Novell file system. Erforderlich? false Position? named Standardwert Pipelineeingaben akzeptieren?false Platzhalterzeichen akzeptieren?false <CommonParameters> Dieses Cmdlet unterstützt folgende allgemeine Parameter: "Verbose", "Debug", "ErrorAction", "ErrorVariable", "WarningAction", "WarningVariable", "OutBuffer" und "OutVariable". Weitere Informationen erhalten Sie mit dem Befehl "get-help about_commonparameters". EINGABEN AUSGABEN HINWEISE -------------- Example 1 -------------- C:\PS>$linuxflr = Start-VBRLinuxFileRestore -RestorePoint $restorepoint -Server $hvhost01 -NetworkInfo $targetnetwork This example shows how to start a file restore session for a non-Windows VM in the Hyper-V environment. - The restore session is saved to the '$linuxflr' variable to use it for finalizing in future. - The restore point is obtained with Get-VBRRestorePoint and assigned to the '$restorepoint' variable beforehand. - The host where the proxy appliance will be deployed is obtained with Get-VBRServer and assigned to the '$hvhost01' variable beforehand. - The network in which the proxy appliance will be registered is obtained with Get-VBRHvServerNetworkInfo and assigned to the '$targetnetwork' variable bef orehand. -------------- Example 2 -------------- C:\PS>$linuxflr = Start-VBRLinuxFileRestore -RestorePoint $restorepoint -Server $esx01 -ResourcePool $resourcepool -NetworkInfo $targetnetwork This example shows how to start a file restore session for a non-Windows VM in the VMware environment. - The restore session is saved to the '$linuxflr' variable to use it for finalizing in future. - The restore point is obtained with Get-VBRRestorePoint and assigned to the '$restorepoint' variable beforehand. - The host where the proxy appliance will be deployed is obtained with Get-VBRServer and assigned to the '$esx01' variable beforehand. - The resource pool is obtained with Find-VBRViResourcePool and assigned to the '$resourcepool' variable beforehand. - The network in which the proxy appliance will be registered is obtained with Get-VBRViServerNetworkInfo and assigned to the '$targetnetwork' variable bef orehand. VERWANDTE LINKS