disk identifier: c86b6479-2681-49a4-813b-01e471fec4ce a4t
disk identifier: ae83d4b1-1061-4698-80c1-1aa9837d6e12 b4t
通常fdisk -l 檢視硬碟
disk /dev/sda: 3.7 tib, 4000787030016 bytes, 7814037168 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: c86b6479-2681-49a4-813b-01e471fec4ce
device start end sectors size type
/dev/sda1 34 262177 262144 128m microsoft reserved
/dev/sda2 264192 7814035455 7813771264 3.7t microsoft basic data
partition 1 does not start on physical sector boundary.
disk /dev/sdb: 3.7 tib, 4000787030016 bytes, 7814037168 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: ae83d4b1-1061-4698-80c1-1aa9837d6e12
device start end sectors size type
/dev/sdb1 34 262177 262144 128m microsoft reserved
/dev/sdb2 264192 7814035455 7813771264 3.7t microsoft basic data
partition 1 does not start on physical sector boundary.
可以檢視到右2個硬碟每個硬碟有2個分割槽
但是掛載的時候回出現問題,應為是4t的硬碟
➜ ~ mount -t ntfs /dev/sda2 /mnt/a4t/
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
in some cases useful info is found in syslog - try
dmesg | tail or so.
出現以上問題後通過以下命令檢視具體問題, 可以檢視 提示硬碟超過3t 太大不支援
~ dmesg |tail
[ 2812.520144] ntfs: (device sda2): parse_ntfs_boot_sector(): volume size (3tib) is too large for this architecture. maximum supported is 2tib. sorry.
[ 2812.520157] ntfs: (device sda2): ntfs_fill_super(): unsupported ntfs filesystem.
那麼我們需要新增新的工具來讓系統支援
sudo apt-get install ntfs-3g
安裝好後可以正常掛載了, 也是費了一番功夫去查到
➜ ~ mount -t ntfs /dev/sdb2 /mnt/b4t
the disk contains an unclean file system (0, 0).
the file system wasn't safely closed on windows. fixing.
每次手動掛載挺麻煩的.這時候需要進行自動掛載了
自動掛載涉及到檔案/etc/fstab (file system table)和/etc/mtab
➜ /mnt cat /etc/fstab
# device mount_point filesystem parameters dump fsck
proc /proc proc defaults 0 0
partuuid=dee441a9-01 /boot vfat defaults 0 2
partuuid=dee441a9-02 / ext4 defaults,noatime 0 1
# a swapfile is not a swap partition, no line here
# use dphys-swapfile swap[on|off] for that
device 裝置名或者卷標
mount point 需要被掛載的點
filesystem 檔案系統型別 ext2, ext3, ntfs 等
parameters 檔案系統引數,設定可讀寫等 預設defaults
dump 是否作為備份等操作 0 不備份 1 每天備份 預設0
fsck 是否檢測扇區 0 不檢測 1 檢測 2 檢測,但是比1檢測時間晚
不夠以防萬一如果寫錯了 會開機到單使用者模式,無法進行任何操作所有檔案均為readonly狀態
則需要重新掛載根目錄
mount -n -o remount,rw /
樹莓派掛載硬碟遠端迅雷
接著上次的坑寫 另外買了個硬碟盒,用上原來的1t的硬碟,先掛著下點電視劇集和迅雷好了。其實這個部分寫的原因就是因為家裡的頻寬太小了,好吧,其實是因為窮 先拿樂視下手,因為平時這個看的比較多。但是you get是依賴ffmpeg的。但是扯淡的是這玩意直接忽略了debain,更不用說arm平台了。在網上...
樹莓派掛載行動硬碟
樹莓派的sd卡實在是小,無法刷pt,可以掛載行動硬碟進行使用。硬體準備 行動硬碟 最好再給行動硬碟加乙個5v 2a的電源,不然只有樹莓派供電可能會出現供電不足影響使用的情況,首先需要將行動硬碟格式化,各式為exfat格式 mount 會不支援 exfat 格式,需要安裝 exfat fuse 軟體之...
樹莓派如何接硬碟 樹莓派3 掛載外接硬碟
1.獲取外接硬碟裝置資訊 sudo fdisk l 顯示資訊如下 device boot start end sectors size id type dev sda1 2046 1758212095 1758210050 838.4g f w95 ext d lba dev sda2 175821...