| 72 | '''Important notes on the prior step!!!''' [[BR]] |
| 73 | |
| 74 | How to edit files, like the step above! [[BR]] |
| 75 | See: http://wiki.openwrt.org/OpenWrtDocs/Using#head-fda4ef01dd7bcc201e690c5dc65631f1b8be545d |
| 76 | [[BR]] |
| 77 | |
| 78 | Summary: On the Linksys WRT-54GL (and most other devices, you'll be editing files on a READ-ONLY file system. |
| 79 | Since the filesystem is a collection of symlinks to a readonly filesystem, you can't simply edit files -- they're readonly. Instead you have to delete the symlink, and copy the file so you have a writable version of the file to edit: |
| 80 | |
| 81 | rm /etc/init.d/S45firewall |
| 82 | cp /rom/etc/init.d/S45firewall /etc/init.d/ |
| 83 | vim /etc/init.d/S45firewall |
| 84 | |
| 85 | That will get you there... |
| 86 | |
| 87 | |
| 88 | |