0

我有一台服务器(操作系统 debian),为了增加磁盘容量,我想插入一个 LaCie 磁盘(2T)。显然 debian 并没有自动挂载它(就像 ubuntu 那样),这并不好笑:)。当我运行 df -h 我得到:

 Sys. fich.                                             Taille Util. Dispo Uti% Monté sur
 rootfs                                                   455G  7,6G  424G   2% /
 udev                                                      10M     0   10M   0% /dev
 tmpfs                                                    200M  776K  200M   1% /run
 /dev/disk/by-uuid/2ae485ac-17db-4e86-8a47-2aca5aa6de28   455G  7,6G  424G   2% /
 tmpfs                                                    5,0M     0  5,0M   0% /run/lock
 tmpfs                                                    1,2G   72K  1,2G   1% /run/shm

如您所见,没有任何 2T 或 1,xT -> 因此未安装磁盘。我在 goole 上查看了几乎相同的问题,看看其他人做了什么来解决这个问题,我发现我必须运行 cat /etc/fstab:

    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a
    # device; this may be used with UUID= as a more robust way to name devices
    # that works even if disks are added and removed. See fstab(5).
    #
    # <file system> <mount point>   <type>  <options>       <dump>  <pass>
    # / was on /dev/sda1 during installation
    UUID=2ae485ac-17db-4e86-8a47-2aca5aa6de28 /               ext4    errors=remount-ro                 0       1
    # swap was on /dev/sda5 during installation
    UUID=c1759574-4b7c-428b-8427-22d3a420c9e4 none            swap    sw              0       0
    /dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0

我的 LaCie 也没有出现在这个文件中。

在这种情况下如何挂载我的 U 盘?

4

1 回答 1

0
  1. df -h仅显示已安装的设备
  2. 您使用的是哪种类型的文件系统?如果是 ntfs,你首先需要安装 ntfs-3g(由 ubuntu 在基本安装中提供,但在 debian 中不提供)
  3. 您可以尝试使用以下命令挂载您的设备mount -t <fs-type> /dev/<sdxx> </mount/point>
于 2013-09-20T12:20:27.673 回答