http://qs1969.pair.com?node_id=711310


in reply to OT Comment on: Random tune picker for Kaffeine
in thread Random tune picker for Kaffeine

The reasons for rejecting Samba and NFS were mainly around how much time and effort I am willing to invest in getting something working. There's a router doing NAT between the two boxes (don't ask), and I've not managed to get an NFS mount to happen through this connection.

I've had lots of success using Samba from my server, when using it with my WinXP laptop. That's been the primary way of playing music so far. Using smbclient, I've been able to get FTP style access to copy individual files, but I wasn't aware that you could mount external smb volumes on a Linux system. If this is possible, please let me know how to do it, and what the fstab entry looks like.

I'll look into Firefly, that sounds cool.

I know I could make my app do more than pick 10 random tracks - this is just a start.

--
wetware hacker
(Qualified NLP Trainer and Hypnotherapist)

  • Comment on Re: OT Comment on: Random tune picker for Kaffeine

Replies are listed 'Best First'.
Re^2: OT Comment on: Random tune picker for Kaffeine
by wazoox (Prior) on Sep 16, 2008 at 11:49 UTC
    I wasn't aware that you could mount external smb volumes on a Linux system.

    Well it's possible since kernel 2.2 at the very least :) Looks like mount -t cifs -o username=name,password=password //server/share /mount/point Same thing in fstab :

    //server/share /mount/point cifs username=user,password=pass 0 0