usb權限開啟方式

1.lsusb
第一步驟先找到要開啟權限的裝置
2.sudo chmod 777 /dev/bus/usb/002/002
第二步驟利用chmod指令開啟權限(777意思為全部使用者街可以讀/寫/執行)

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →

chmod指令解釋:
『 chmod 754 』 的意思:
分別是代表 owner (7); 群組用戶 (5); 其他用戶 (4)。

而這個 754 是這樣算出的:
7 = 4 (讀) + 2 (寫) + 1 (執行)
5 = 4 (讀) + 1 (執行)
4 = 4 (讀)