Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Is it possible to mount nfs share on mk808b finless 1.7?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Originally posted by pieri70 View Post
    ok here I am..
    I downloaded the zip file and I have extracted the content of nfs (2 files) into /system/lib/modules with root explorer.
    I changed permissions to rw-r--r--
    then in terminal emulator
    su
    insmod -p -o nfs.ko
    insmod: can`t open `-p`

    insmod -o nfs.ko
    insmod: can`t open `-o`

    insmod nfs.ko
    can`to open nfs.ko

    same with nfs
    same with /system/lib/modules/nfs.ko

    where an I wrong??
    thnks
    p

    Inviato dal mio GT-I9100 con Tapatalk 2
    Same problem here, insmod wont installthe modules

    Comment


      #17
      R: Is it possible to mount nfs share on mk808b finless 1.7?

      Try to move inside the modules folder and launch the insmod from there.
      I had some similar problems with a cp command
      P

      Inviato dal mio GT-I9300 con Tapatalk 2

      Comment


        #18
        lol tried that already with no success. If i read correctly its because they arent designed for our unit

        Comment


          #19
          Re: Is it possible to mount nfs share on mk808b finless 1.7?

          Try this modules. Loads fine for me.
          But my device freezes after mounting an nfs share.


          [N⁴][Motley][CarbonRom]

          Comment


            #20
            DLNA?

            Question: would a DLNA not be more appropriate and simpler? I don't know the current state of NFS, but I remember way back when having two linux boxes connected to each other through NFS, and then when one server went down, the other server refused to unmount and I could not even kill any process to get things to release. It's like it frantically insisted on that server coming back as if its life depended on it. I literally had to reboot to get it to stop. And that was highly unusual for Linux, because normally I reboot maybe once a year.

            Comment


              #21
              Originally posted by Andromoid View Post
              I remember way back when having two linux boxes connected to each other through NFS, and then when one server went down, the other server refused to unmount and I could not even kill any process to get things to release. It's like it frantically insisted on that server coming back as if its life depended on it. I literally had to reboot to get it to stop. And that was highly unusual for Linux, because normally I reboot maybe once a year.
              May be you had a "hard" connection to the nfs server (default one I think)..
              from linux man page:
              These options are valid to use with any NFS version.soft / hardDetermines the recovery behavior of the NFS client after an NFS request times out. If neither option is specified (or if the hard option is specified), NFS requests are retried indefinitely. If the soft option is specified, then the NFS client fails an NFS request after retrans retransmissions have been sent, causing the NFS client to return an error to the calling application.
              These options can be specifed in the mount command string.
              Any news for the nfs module?
              Thank you
              Pietro

              Comment


                #22
                I got nfs shares working on a MK808 but it wasn't simple. It involved compiling my own kernel based on the omegamoon kernel but with the kernel config changed to build nfs support into the kernel.
                Struggled with modules that were floating around. None worked. As I'd decided to compile my own kernel it made sense to build the support in.
                MK808B does not have kernel source for RK903 so if you compile your own then no wifi or bt.
                In my experience none of the modules in the MK808b firmwares actually work. In theory the cifs module supports nfs so if you can find one that will insert into the kernel then you can still have wifi and bt.

                To actually mount the nfs share I found it simpler to mount from the command line. I am at work at the moment but will try to update later with a mount command which worked for me.

                Another couple of things to bear in mind.

                The exports need to be set up right on the nfs server. (read http://wiki.xbmc.org/?title=NFS)

                You need to mount with a busybox which has nfs support, not normal mount. And some apps (sshdroid is one) install their own busybox (no nfs support) version, then put it at the start of the $PATH stopping the mount command working. You can find out which busybox is active by typing
                Code:
                which busybox
                on the commandline.

                I think you must start mount command as
                Code:
                busybox mount
                not just
                Code:
                mount
                My Mk808 is connected by ethernet and now nfs works, it works very well.

                Update

                The command I use is
                Code:
                busybox mount -o nolock,ro,hard,intr,vers=3  192.168.1.172:/media/raid2/Data/movies/ /sdcard/nfs/Movies/
                Where
                192.168.1.172 is the IP of the nfs server
                :/media/raid2/Data/movies/ is the exported nfs share (colon needed)
                /sdcard/nfs/Movies/ is the folder on the mk808 where the nfs will be mounted (must exist)

                The options might not all needed (-o nolock,ro,hard,intr,vers=3) but it worked so I've left it alone
                Last edited by gripped; 12 April 2013, 18:11. Reason: update

                Comment

                Working...
                X