OESF Portables Forum
Everything Else => Sharp Zaurus => Model Specific Forums => Distros, Development, and Model Specific Forums => Archived Forums => 6000 - Tosa => Topic started by: mimsmall on January 30, 2005, 03:41:55 pm
-
I did several searches on this subject and nothing satisfactory turned up.
Is there a How-To for setting up a desk top to Zaurus wifi link?
-
I did several searches on this subject and nothing satisfactory turned up.
Is there a How-To for setting up a desk top to Zaurus wifi link?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=64599\"][{POST_SNAPBACK}][/a][/div]
Well, assuming your network connection is up and going, there are any number of ways to go about it. Remember the Zaurus is a handheld linux machine, so you can really do anything you would from a desktop linux station; there are pre-built packages available for most things you could want.
Generally, I either use ssh to go to/from my linux fileservers, and smbmount to mount windows shares on my Zaurus. You could install a ssh server on the Z, and copy to from the desktop too.
And of course, there is the file transfer option from the Z Desktop.
-
It depends on what exactly you want to do.
You can enable the samba server over wireless (I think it is a file something close to /usr/local/samba/smb.conf, and you just need to add eth0 or remove the restriction to usbd0).
ssh/scp also works, and I think you can turn on FTP service.
-
ftp on the Z does work. Just go into /etc & uncomment the ftp line in inetd.conf
Then do a "ps -ef | grep inetd" to get the inetd pid. Once you have the pid issue a "kill -HUP pid" command replacing "pid" with the actual process id.
At that point your ftp daemon should be running on the Z.
Hope that helps.
-
I did several searches on this subject and nothing satisfactory turned up.
Since you are specifically asking to do file transfers over wireless, I would suggest installing OpenSSH on the Zaurus. That will give you ssh, as well as scp for file transfers.
If you are looking for something more GUI like, you can use Konqueror and use the URL: sftp://zaurus@<zaurus_ip_address>/
You will be prompted for the Zaurus user's password. Enter that, and you can copy and move files just like they were local.
I hope this helps,
Craig...
-
NFS?
-
NFS?
[div align=\"right\"][a href=\"index.php?act=findpost&pid=64829\"][{POST_SNAPBACK}][/a][/div]
Good point! That would be the easiest way, if you are mananging your files from the Zaurus (since it only has NFS client). It works great, and even over wilreless.
Craig...
-
Iv been using Samba on the Z but pushing from the PC as I have data on two PCs one Windows one Mandrake. The HOWTO samba over WIFI / Ethernet doc covers what to do on both ends.
-
Good point! That would be the easiest way, if you are mananging your files from the Zaurus (since it only has NFS client). It works great, and even over wilreless.
Craig...
[div align=\"right\"][a href=\"index.php?act=findpost&pid=65111\"][{POST_SNAPBACK}][/a][/div]
Hmm. I had a poor experience with NFS on my Zaurus. Not sure why, but it was flakey at best, and caused the machine to hang outright most of the time. I had a much easier time mounting SMB shares.
Could be general lack of experience maintaining NFS networks, but SMB was pretty easy to do. Did you have to do anything special on the server side (or client side for that matter,) to get it running smoothly?
-T
-
Hmm. I had a poor experience with NFS on my Zaurus. Not sure why, but it was flakey at best, and caused the machine to hang outright most of the time. I had a much easier time mounting SMB shares.
Could be general lack of experience maintaining NFS networks, but SMB was pretty easy to do. Did you have to do anything special on the server side (or client side for that matter,) to get it running smoothly?
-T
[div align=\"right\"][a href=\"index.php?act=findpost&pid=65227\"][{POST_SNAPBACK}][/a][/div]
Gee, I haven't done anything special (I thought), and it has worked fine for me. Of course, my NFS server is another Linux machine. I have heard that linux NFS doesn't play well with other implementations of NFS (like MacOSX).
On the server, I just edit /etc/exports, then use exportfs -a. On the client (read: zaurus) I just use the mount command: mount -t nfs <server_IP>:/mnt/path /mnt/on/zaurus/path
Never had any problems, other than I have to unmount NFS putting my Z asleep (or removing the wi-fi card).
I hope this helps,
Craig...