Forum Discussion
Altera_Forum
Honored Contributor
21 years agoUkit's problem on FTP
When I copy file to /home/ftp directory it show error message "read-only file system". Then I used chmod to change the access permissions of the directory it also give error message "read...
Altera_Forum
Honored Contributor
21 years agoYou can mount another ram disk at /home/ftp which is not read only (as is done for the /tmp and /var directories) which will allow you to have a small filespace to do transfers. You can look at the rc script in /etc/rc to see how this is done (first expand /ramfs.img to /dev/ram[2|3] then mount -n /dev/ram2 /home/ftp). You can also use the ext2 fs tools to manually format the ram drive (which is what the expand /ramfs.img is really doing if I'm not mistaken) which may allow you to eek out some more space by tuning the parameters to your typical use. I haven't personally needed to do this though.
Tuck