I accidentally deleted some configuration files, and now the terminal no longer displays my_name@project_name:~$
, but my_name@some_instance:~$
. Is there a way to get a completely new instance for Cloud Shell?
相关问题
- compute engine use gsutil to download tgz file has
- ERROR: (gcloud.services.enable) User does not have
- Flask app cannot open server to Google Cloud Compu
- VM Instance is not accessible The project you requ
- Adding a billing method with google cloud results
相关文章
- How do I create a persistent volume claim with Rea
- Can you get a static external IP address for Googl
- Google Compute Engine VM instance: VFS: Unable to
- Setting environment variable for a Compute Engine
- Windows Server 2012 VM created from Snapshot fails
- connect Google App Engine and Google Compute Engin
- Deploying a nodejs app to the google cloud platfor
- Why Google Cloud Compute Engine instance gives ssh
You can get your Cloud Shell home directory into clean state as follows:
ls -a $HOME
and make sure you don't have any files you care about.sudo rm -rf $HOME
to delete the home directory.