what I did
Here is the link to get the testing kernels in PreWare
http://www.webos-internals.org/wiki/Testing_Feeds
here is the link to do some of the CIFs mounting... I did something different to get the initial mount
http://forums.precentral.net/hp-touc...rk-shares.html
Now for the command line I did the following:
option 1
open WebOS quickinstaller.jar
click tools
select Linux Commandline
option 2
on a windows machine goto C:\Program Files\Palm, Inc\terminal>
run novaterm.bat
in the new window click file, then connect
Now that you are in the command line you can use the mount.cifs command
/usr/sbin/mount.cifs (mount.cifs is executable so run it and it will tell you the usage)
/usr/sbin/mount.cifs // device/ share /mnt/ yourlocaldirectory -o user=username,password=yourpassword
now this won't persist a reboot, so what you'll have to do is edit the /etc/fstab
I used VI from the shell we opened earlier. If you don't know how to use VI then find VIMTutor on your googlebox and get a quick test run
vi /etc/fstab
add the following
// device/ share /mnt/ yourlocaldirectory cifs username=username,password=yourpassword _netdev 0 0
Save that and reboot and see what happens.. I'm working on getting this to persist a reboot at the moment.
|