LAN

This is a discussion about LAN in the Everything Linux category; I would like to know how to connect to my local network in order to share files with other computers. I use fedora 3. i know about an application called samba but i have no idea what to do with it thanks.

Everything Linux 1798 This topic was started by , . Last reply by ,


data/avatar/default/avatar04.webp

6 Posts
Location -
Joined 2005-01-25
I would like to know how to connect to my local network in order to share files with other computers. I use fedora 3. i know about an application called samba but i have no idea what to do with it
thanks

Participate in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Jan 26
Created
Jan 27
Last Response
0
Likes
2 minutes
Read Time
User User
Users

Responses to this topic


data/avatar/default/avatar04.webp

1678 Posts
Location -
Joined 2003-09-27
If your other machines are also Linux boxes, ssh is the best and most secure way to transfer files, especially if any of your network is wireless. If nothing is wireless, then ftp will be ok also.
 
We have a closed network at my radio station and swap files using krusader, a front end for ftp that allows for dragging and dropping files between machines.
 
If you need to swap files between your FC3 box and Windows machines, I'll have to defer to others as I know very little more than you about how to set up a Samba network. I hope this helps.

data/avatar/default/avatar17.webp

757 Posts
Location -
Joined 2000-10-14
What I do is have shares on my windows xp boxen, then using samba I mount the drives in Linux (its setup in my fstab).
 
mount -t smbfs 192.168.0.x/remote /mnt/local
 
change IP, remote, and local to match your configuration.
 
If you open the Samba administration menu (somewhere in the menu, haven't used it for some time) you can add a share from your local machine to the workgroup or domain. If you have problems with that, install webmin with the samba client. apt-get webmin & apt-get webmin-samba (or something)
 
I use a program called "Smb4k" - it's simply awesome. It can automatically mount SMB shares for you, and you can administer it yourself as well. It works rather well. I HIGHLY recommend it, esp for beginners.

data/avatar/default/avatar17.webp

757 Posts
Location -
Joined 2000-10-14
EDIT:
mount -t smbfs 192.168.0.x/remote /mnt/local
above
Sorry, the above is for nfs, but with a :
 
mount -t nfs 192.168.0.x:/remote /mnt/local
 
But to use samba...
 
smbmount //computer/remote /mnt/local -o ip=x.x.x.x
 
You may need to supply credentials. Run
"man smbmount"
In a linux terminal for information.
 
 
Wasn't paying attention this morning and grabbed the wrong line from my fstab.