On Tuesday 25 May 2010 16:47, Farkas, Tamas (GE, Corporate, consultant) wrote: > Dear Vda, > > hi there! Just a quick one here, your help would be highly appreciated! > > [ad...@ftomika root]$ mount -t smbfs -o ip=192.168.1.9 //wdtvlive/80g > ttt/ > mount: mounting //wdtvlive/80g on ttt/ failed: Invalid argument > > [ad...@ftomika root]$ mount -t smbfs //wdtvlive/80g ttt/ > mount: mounting //wdtvlive/80g on ttt/ failed: Invalid argument > > [ad...@ftomika root]$ mount -t cifs //wdtvlive/80g ttt/ > mount: mounting //wdtvlive/80g on ttt/ failed: Invalid argument > > [ad...@ftomika root]$ mount -t cifs -o ip=192.168.1.9 //wdtvlive/80g > ttt/ > mount: mounting //wdtvlive/80g on ttt/ failed: Invalid argument > > I can not mount smbfs/cifs in usual way, what is wrong?!
I don't know. Which version of busybox is it? What is your .config? Try giving it -vvv option for more verbosity: mount -vvv -t cifs //wdtvlive/80g ttt/ Let me know what does it say. Does "standard" mount utility work? If yes: run both under strace like this: strace -oLOG.bb -s99 -f /path/to/busybox/mount -t cifs //wdtvlive/80g ttt/ strace -oLOG.std -s99 -f /path/to/std/mount -t cifs //wdtvlive/80g ttt/ and post LOG.bb and LOG.std files. > Furtermore, an > important one --- is the 'lfs' option supported to allow me copy files > more than 2G ?! All unrecognized options are passed to the kernel, so it should work. -- vda _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
