Linux Mount USB External Storage

2017-11-17  本文已影响11人  汶水一方

在Linux中挂载外置硬盘

  1. Use sudo fdisk -l to figure out which is the disk to mount.

Optional: If you need to format the hard drive, refer to in Evernote:

How to create an EXT3 partition using parted in Linux

  1. Mount the drive
mount /dev/sdb1 /mnt
  1. Auto-mount every time the computer restarts.
# vi /etc/fstab

Add/append following entry to file:

/dev/sdb1 /datadisk1 ext3 defaults 0 2
上一篇 下一篇

猜你喜欢

热点阅读