Created
December 27, 2017 13:37
-
-
Save willwhui/001e266c35ddaae5c1924aaf4ebf6b5d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
在树莓派3B挂接u盘(移动硬盘) |
树莓派启动失败
断电,重新启动时,如果usb硬盘盒没有通电,那么启动树莓派的时候就不会成功。
失败的原因是:没有找到挂接的硬盘。
解决的办法:启动时保证外挂的硬盘盒通电,处于非休眠状态。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
然而这样配置好之后有3个问题:
其原因应该是:磁盘格式是SFS
查看这里的资料:
https://help.ubuntu.com/community/Fstab
https://guides.github.com/features/mastering-markdown/
提到:
并且这里https://www.raspberrypi.org/forums/viewtopic.php?t=16803#p170646
提到需要安装ntfs-3g
我们先试一下手工mount:
进入到disk1t目录下进行读写目录的操作,可知成功。
好了,现在继续编辑fstab:
修改配置为:
重启,成功了。
注:
尝试过程中,根据http://www.simonthepiman.com/how_to_setup_windows_file_server.php
运行了一下
sudo fdisk -l
发现磁盘格式是SFS的
google "mount sfs",找到https://askubuntu.com/questions/231639/cant-mount-2nd-hd-sfs/412254#412254
试了试其中提到的工具ldmtool,也许它配置成功之后会把正确的参数写入到fstab里面
但是不行:
没有扫出任何东西来。
不知道成功mount是否和ldmtool有关系,以后再试。