Difference between revisions of "Buffalo WHR-G54S"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
After reading some of the documentation, setting up NFS mounting on it was also a breeze: | After reading some of the documentation, setting up NFS mounting on it was also a breeze: | ||
− | + | <pre> | |
$ ipkg install kmod-nfs | $ ipkg install kmod-nfs | ||
− | + | </pre> | |
The ipkg subsystem works along the same lines as the debian apt system, and is quite nice. To get a full list of current packages available, all you do is the following: | The ipkg subsystem works along the same lines as the debian apt system, and is quite nice. To get a full list of current packages available, all you do is the following: | ||
− | + | <pre> | |
$ ipkg update | $ ipkg update | ||
$ ipkg list | $ ipkg list | ||
− | + | </pre> | |
This will update to the most current package list available, and then list them all out for you. | This will update to the most current package list available, and then list them all out for you. | ||
When mounting filesystems with NFS, I did not install the portmapper package, so you want to mount remote file systems with the nolocking option: | When mounting filesystems with NFS, I did not install the portmapper package, so you want to mount remote file systems with the nolocking option: | ||
− | + | <pre> | |
$ mount -t nfs remote://filesystem /local/filesystem -o nolocking | $ mount -t nfs remote://filesystem /local/filesystem -o nolocking | ||
− | + | </pre> |
Latest revision as of 20:15, 10 March 2007
This is a wireless G broadband router. It has a WAN uplink, four ethernet port for LAN access, and a Wireless 802.11g interface.
OpenWRT Testing
I have installed OpenWRT from the OpenWRT project and it appears to be working beautifully.
After reading some of the documentation, setting up NFS mounting on it was also a breeze:
$ ipkg install kmod-nfs
The ipkg subsystem works along the same lines as the debian apt system, and is quite nice. To get a full list of current packages available, all you do is the following:
$ ipkg update $ ipkg list
This will update to the most current package list available, and then list them all out for you.
When mounting filesystems with NFS, I did not install the portmapper package, so you want to mount remote file systems with the nolocking option:
$ mount -t nfs remote://filesystem /local/filesystem -o nolocking