如何使我的 Kindle 成为可写的文件系统?

如何使我的 Kindle 成为可写的文件系统?

我尝试将 pdf 文件从我的 Ubuntu 桌面移动到 Kindle 第 10 代设备,但它显示

uniteworld@inspiron-3442:/media/uniteworld/Kindle/Documents$ mv /home/uniteworld/Downloads/David_Griffiths_Introduction_to_elementary_particles.pdf /media/uniteworld/Kindle/Documents
mv: inter-device move failed: '/home/uniteworld/Downloads/David_Griffiths_Introduction_to_elementary_particles.pdf' to '/media/uniteworld/Kindle/Documents/David_Griffiths_Introduction_to_elementary_particles.pdf'; unable to remove target: Read-only file system

然后我尝试

root@inspiron-3442:/media/uniteworld# chmod +w Kindle
chmod: changing permissions of 'Kindle': Read-only file system
root@inspiron-3442:/media/uniteworld# chmod 755 Kindle
chmod: changing permissions of 'Kindle': Read-only file system

现在我的问题是如何将文件系统更改为可写文件系统。我知道过去我确实将文件从我的 Ubuntu 桌面移动到了 Kindle 设备中。我不知道我做错了什么才导致现在发生这种情况。任何帮助都将不胜感激。

答案1

~$ mount

输出部件

 /dev/sdb on /media/yourusername/Kindle type vfat (rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2)

然后输入

sudo fsck.vfat -r /dev/sdb

输出

[sudo] password for yourusername: 
fsck.fat 4.1 (2017-01-24)
0x41: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
1) Remove dirty bit
2) No action
? 

输入1 并按照说明进行操作。

相关内容