0

My G Suite user which I log into GCP with has been renamed from firstname@domain.com to firstname.lastname@domain.com

I have now logged back into Cloud Shell and my home directory content is gone.

Is there any way of recovering this?

Thanks

2 Answers2

0

Per the documentation, you have some limitations when working with the shell, as stated before you shouldn't have important information stored over there and should be moved to Google Cloud Storage if needed.

There's no way to restore the data lost once your profile was deleted.

Luke
  • 46
0

For future reference, if your G Suite address has been renamed, your $HOME directory in the Cloud Shell changes. The old one is still there though.

  1. Log into your Cloud Shell
  2. Type cd ..
  3. Type ls

Your previous $HOME directory should pop up. The shell is linux based, so it uses the same user logic. The thing is that the LDAP is automatically chosen based on your user account LDAP.

Edo Akse
  • 111