Link to home
Create AccountLog in
Avatar of sun hongda
sun hongdaFlag for China

asked on

​we have ebs volume in AWS, we have already extend that volume in EBS but OS can not extend, can you help on why

Hello experts

we have ebs volume in AWS, we have already extend that volume in EBS but OS can not extend, can you help on why

thanks

User generated image


User generated image


ASKER CERTIFIED SOLUTION
Avatar of Adelaido Jimenez
Adelaido Jimenez
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of sun hongda

ASKER

Thank you 

how to check if related NVME driver is installed, why without it it will need reboot?

how can they reboot sucessful without NVME driver?

Try running this command in power shell to see what drivers are installed on the machine. If you need to install the driver then the instance will need to be rebooted

Get-WmiObject Win32_PnpSignedDriver | Select-Object DeviceName, DriverVersion, InfName | Where-Object {$_.DeviceName -like "*AWS*" -OR $_.DeviceName -like "*Amazon*"}

Open in new window