如何在 Google Cloud (Google Compute Engine) 上挂载驱动器?

inn*_*lad 5 linux centos google-compute-engine google-cloud-platform

我已经在 Google Compute Engine 中使用 120Gb 启动驱动器运行了实例。

但我无法使用它。

1. sudo df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda1       9.9G  1.1G  8.3G  12% /
tmpfs           3.6G     0  3.6G   0% /dev/shm

2. sudo ls -l /dev/disk/by-id/*
lrwxrwxrwx. 1 root root  9 Nov  3 09:00 /dev/disk/by-id/google-instance-3 -> ../../sda
lrwxrwxrwx. 1 root root 10 Nov  3 09:00 /dev/disk/by-id/google-instance-3-part1 -> ../../sda1
lrwxrwxrwx. 1 root root  9 Nov  3 09:00 /dev/disk/by-id/scsi-0Google_PersistentDisk_instance-3 -> ../../sda
lrwxrwxrwx. 1 root root 10 Nov  3 09:00 /dev/disk/by-id/scsi-0Google_PersistentDisk_instance-3-part1 -> ../../sda1

3. sudo fdisk -l
Disk /dev/sda: 134.2 GB, 134217728000 bytes
4 heads, 32 sectors/track, 2048000 cylinders
Units = cylinders of 128 * 512 = 65536 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x0003b4b9
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1              17      163825    10483712+  83  Linux
Run Code Online (Sandbox Code Playgroud)

我花了几个小时试图以不同的方式安装它,甚至改变了实例但没有成功。

UPD:如果有人遇到此问题,请按照以下说明操作:https : //cloud.google.com/compute/docs/disks#repartitionrootpd

Ped*_*usa 3

当您发出挂载命令时,请检查是否挂载的是整个驱动器而不是单个分区,或者尝试将正确的分区添加到挂载命令中。

(例如: mount /dev/disk/by-id/scsi-0Google_PersistentDisk_instance-3-part1 /your/mount/location )

您有任何错误消息吗?

您是否也尝试过gsutil - Google 云存储工具