• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Windows to Linux File Transfer

MRClark

n00b
Joined
Jul 2, 2006
Messages
2
how do i perform a windows to linux file transfer over lan?
i have tried using the file sharing program on Ubuntu but the files wont show up on my windows computer.
 
Lately I've found it easier to do from the linux side, assuming you have a recent linux distro (we are mostly running Fedora 7):

1. Create a directory on the linux machine: "mkdir /mnt/windowsshare".

2. Mount the windows share to that directory: "mount -t cifs //windowsmachinename/sharename //mnt/windowsshare -o username=username password=password".

3. Copy (with cp) whatever you need, or just leave it on the windows share if you prefer.
 
i havent really used linux before, so how do i do all this

1. Create a directory on the linux machine: "mkdir /mnt/windowsshare".

2. Mount the windows share to that directory: "mount -t cifs //windowsmachinename/sharename //mnt/windowsshare -o username=username password=password".

3. Copy (with cp) whatever you need, or just leave it on the windows share if you prefer.

clarify #3 - cp /mnt/windowsshare /home/username (or whatever destination path you want).
 
Back
Top