如何将外部 NTFS 驱动器添加到 Google Cloud Engine 应用程序?
How to add external NTFS drive to Google Cloud Engine app?
由于使用 docker 占用大量 space 图像,我想将外部硬盘连接到我的 10GB 实例 Ubuntu VM。但是,我已经添加了一个空白磁盘并附加了它,但是当我键入 "fdisk -l" 时,我最终得到了这条消息:
磁盘 /dev/sdb 不包含有效分区 table。
如何创建外部 NTFS 驱动器并将其安装到我的文件系统?
就像在任何其他 Ubuntu 实例上一样,一旦您连接了未格式化或格式化不当的驱动器......例如,一组好的说明位于 https://help.ubuntu.com/community/InstallingANewHardDrive .
手动执行,运行,作为 root(例如 sudo bash
):
$ apt-get install ntfsprogs
$ df -k # just to check nothing is mounted on /dev/sdb...
$ # umount /dev/sdb if df -k shows something mounted there
$ fdisk # to fix the partition table, see http://linux.die.net/man/8/fdisk
$ # if you need a tutorial, http://www.howtogeek.com/106873/how-to-use-fdisk-to-manage-partitions-on-linux/
$ mkfs.ntfs -f /dev/sdb1 # if you're in a hurry, or
$ # mkfs.ntfs /dev/sdb1 # if you have all the time in the world
顺便说一下,这是一个系统管理问题,而不是软件开发问题,因此您可能更愿意在 serverfault 上询问它——我们也在那里监控 google-cloud-platform。
两个方面的问题 -- (1) 为什么是 NTFS?您不太可能将此 PD 与 Windows 一起使用,因此本机 Linux 文件系统可能更可取... (2) 这与 google-app- 有什么关系引擎?您是否打错了标签,实际上是 google-compute-engine 而不是...?
由于使用 docker 占用大量 space 图像,我想将外部硬盘连接到我的 10GB 实例 Ubuntu VM。但是,我已经添加了一个空白磁盘并附加了它,但是当我键入 "fdisk -l" 时,我最终得到了这条消息: 磁盘 /dev/sdb 不包含有效分区 table。
如何创建外部 NTFS 驱动器并将其安装到我的文件系统?
就像在任何其他 Ubuntu 实例上一样,一旦您连接了未格式化或格式化不当的驱动器......例如,一组好的说明位于 https://help.ubuntu.com/community/InstallingANewHardDrive .
手动执行,运行,作为 root(例如 sudo bash
):
$ apt-get install ntfsprogs
$ df -k # just to check nothing is mounted on /dev/sdb...
$ # umount /dev/sdb if df -k shows something mounted there
$ fdisk # to fix the partition table, see http://linux.die.net/man/8/fdisk
$ # if you need a tutorial, http://www.howtogeek.com/106873/how-to-use-fdisk-to-manage-partitions-on-linux/
$ mkfs.ntfs -f /dev/sdb1 # if you're in a hurry, or
$ # mkfs.ntfs /dev/sdb1 # if you have all the time in the world
顺便说一下,这是一个系统管理问题,而不是软件开发问题,因此您可能更愿意在 serverfault 上询问它——我们也在那里监控 google-cloud-platform。
两个方面的问题 -- (1) 为什么是 NTFS?您不太可能将此 PD 与 Windows 一起使用,因此本机 Linux 文件系统可能更可取... (2) 这与 google-app- 有什么关系引擎?您是否打错了标签,实际上是 google-compute-engine 而不是...?