当前位置: 技术问答>linux和unix
板子上linux文件系统的问题
来源: 互联网 发布时间:2016-11-15
本文导语: 最近用cramfs, 好像说是可读不可写。 我用模块写驱动,搞个/dev/test的结点(mknod /dev/test c 255 0) 没权限,不让写,如之奈何。 烧到板子上(nand flash or sd card)的文件系统,都不能增加文件("touch test.txt" or...
最近用cramfs, 好像说是可读不可写。 我用模块写驱动,搞个/dev/test的结点(mknod /dev/test c 255 0) 没权限,不让写,如之奈何。
烧到板子上(nand flash or sd card)的文件系统,都不能增加文件("touch test.txt" or "mkdir testdir") 了? 不会吧。还是这个cramfs就这么纠结。
求指点。。。
烧到板子上(nand flash or sd card)的文件系统,都不能增加文件("touch test.txt" or "mkdir testdir") 了? 不会吧。还是这个cramfs就这么纠结。
求指点。。。
|
cramfs 是只读的,
但是, 你可以使用 jiffs2, yaffs2, ubifs
等文件系统,都是可读写的 。
但是, 你可以使用 jiffs2, yaffs2, ubifs
等文件系统,都是可读写的 。
|
cramfs文件系统是只读的
|
dev挂到tempfs吧,好像见过这样弄的