树莓派/Debian 挂载硬盘
前言
在 Linux 中要使用 Samba 文件协议来实现 NAS 配置,首先要挂载硬盘。本文来简述如何在 Linux 中来挂载硬盘。
格式化
将硬盘插入到主机对应接口。
查看硬盘信息
fdisk -l
可以看到插入的硬盘 /dev/sdb1 的文件系统类型为:FAT32 (LBA) 。
格式化硬盘
使用 fdisk 命令对 /dev/sdb1 进行分区
fdisk /dev/sdb1
具体过程如下:
:/home/yogile# fdisk /dev/sdb1 Welcome to fdisk (util-linux 2.33.1). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. # 删除硬盘原分区 Command (m for help): d Selected partition 1 Partition 1 has been deleted. # 添加硬盘新分区 Command (m for help): n Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) # 添加分区,默认的分区格式是 primary Select (default p): Using default response p. # 分区号默认 1 Partition number (1-4, default 1): # 指定分区的起始扇区,一般默认 2048 First sector (2048-62668799, default 2048): # 指定分区的终止扇区,一般默认最大值 Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-62668799, default 62668799): Created a new partition 1 of type ‘Linux‘ and of size 29.9 GiB. Partition #1 contains a vfat signature. # 询问删除签名,确认:y Do you want to remove the signature? [Y]es/[N]o: y The signature will be removed by a write command. # 保存修改 Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks.
复查硬盘信息
fdisk -l
可以看到插入的硬盘 /dev/sdb1 的硬盘类型为:Linux 。
格式化文件系统
将硬盘文件系统格式化为 ext4 。
mkfs -t ext4 /dev/sdb1
挂载硬盘
临时挂载
要临时挂载硬盘到 /mnt:
mount /dev/sdb1 /mnt
查看挂载点:
df -h
永久挂载
Debian 使用 UUID 来实现硬盘自动挂载。
通过 blkid 查找所有硬盘的 UUID:
sudo blkid
可以看到挂载的硬盘 /dev/sdb1 的 UUID 为:
ad5f412a-0a0c-42af-afd3-eecec6fd96d2
,TYPE 为:ext4
。添加自动挂载点
sudo vim /etc/fstab
在最后一行添加:
UUID=ad5f412a-0a0c-42af-afd3-eecec6fd96d2 /mnt ext4 defaults 0 0
执行挂载
sudo mount -a
查看挂载点:
df -h
这时,
sudo reboot
重启后挂载点依然存在。
测试挂载
查看硬盘挂载文件夹
cd /mnt ls
可以看到默认创建的文件夹 lost+found :
hdparm
测试硬盘读写速度下载 hdparm
sudo apt install hdparm
测试硬盘读写速度
hdparm -Tt /dev/sdb1
可以看到读取 10948.93 MB/sec ,写入 131.46 MB/sec ,这是由于本文是在虚拟机上实现的,读写有误,请根据实际查看。
相关推荐
mattraynor 2020-06-25
LeeHDsniper 2020-11-05
橄榄 2020-11-03
wanshiyingg 2020-09-29
andonliu 2020-09-03
嵌入式开发爱好者 2020-08-28
lu00kill 2020-08-17
tianyayi 2020-08-16
LIEVEZ 2020-08-09
ohhardtoname 2020-07-25
LeeHDsniper 2020-07-19
shenxiuwen 2020-07-16
wzxxtt0 2020-06-25
咏月东南 2020-06-10
wangz 2020-06-03
wanxuncpx 2020-06-01
tianyayi 2020-05-18
wanxuncpx 2020-05-15
mattraynor 2020-05-12
wzxxtt0 2020-05-12
LIEVEZ 2020-05-04
mattraynor 2020-05-01
LIEVEZ 2020-05-01
LIEVEZ 2020-05-01
LowisLucifer 2020-04-23
OathKeeper 2020-04-22
zcabcd 2020-04-18
wanxuncpx 2020-04-16
returnspace 2020-04-16
mattraynor 2020-04-14
tianyayi 2020-03-28
clamzxf 2020-03-28
lu00kill 2020-03-17
yuancr 2020-03-04
wzxxtt0 2020-02-21
xinhao 2020-02-20
LIEVEZ 2020-02-17
wzxxtt0 2020-02-15
zhufu 2020-02-10