关于 ubuntu 刷机显示Missmatching image and device or no permissions fastboot
情况一:使用 ./flash_all.sh 命令显示Missmatching image and device
情况二:使用fastboot devcies命令查看设备提示无权限
由以上两个问题大概可以猜测是因为fastboot没有权限,解决步骤:
1.将fastboot的所有者属性修改成root,用which fastboot命令找到fastboot所在的目录,然后进入此目录;再用命令chown改其属性:
sudo chown root:root fastboot
2.将其权限更改一下
sudo chmod +s fastboot