使用 samba 文件服务器时,使用 3TB 驱动器时,客户端在网络位置上只能看到 68.2GB

使用 samba 文件服务器时,使用 3TB 驱动器时,客户端在网络位置上只能看到 68.2GB

我使用的是 Ubuntu 14.10 服务器 32 位(无 GUI)。我将其用作只有 1-3 个用户的 SOHO 文件服务器。我已经正确设置了所有内容,一切似乎都运行良好。我使用 3TB 硬盘来存储视频(每个文件 500mb-2gb)

我的问题是,在 Windows 7 工作站上,我在网络中看到 Ubuntu 下的共享。我已将网络驱动器映射到我的计算机中,但当它出现时,只显示 68.2GB 中的 63.4 个可用空间。

fdisk -l 显示的内容如下

Disk /dev/sda: 74.5 GiB, 80000000000 bytes, 156250000 sectors
Units: sectors of 1 * 512 = 512 bytes    
Sector size (logical/physical): 512 bytes / 512 bytes    
I/O size (minimum/optimal): 512 bytes / 512 bytes    
Disklabel type: dos    
Disk identifier: 0x24a868d4    

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1  *         2048 145764351 145762304 69.5G 83 Linux
/dev/sda2       145766398 156248063  10481666    5G  5 Extended
/dev/sda5       145766400 156248063  10481664    5G 82 Linux swap / Solaris

Disk /dev/sdb: 2.7 TiB, 3000592982016 bytes, 5860533168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: F3A30150-7E6D-4A72-92CD-A61A6D73C40E

Device     Start        End    Sectors  Size Type
/dev/sdb1   2048 5860532223 5860530176  2.7T Linux filesystem

Disk /dev/sdc: 931.5 GiB, 1000146337792 bytes, 1953410816 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

答案1

好吧,我太笨了。我忘了修改 fstab 文件。这就是我解决问题的方法。

使用以下方法找到要安装的驱动器

sudo fdisk -l

我发现我的设备已命名,/dev/sdb1因此我输入

sudo vim /etc/fstab

并在页面末尾输入以下内容。(按i,进行更改,然后esc :wq

/dev/yourdevicehere /yourmountpoint ext4 rw 0 0

确保您正确匹配文件系统(ext3,ext4等)

相关内容