Sharing files between Operating Systems

  • Thread starter Thread starter mattmns
  • Start date Start date
  • Tags Tags
    files Systems
AI Thread Summary
To share files between Windows XP and Ubuntu, two primary methods are recommended: SFTP and Samba. SFTP is the easiest option, requiring the SSH daemon to be run on Ubuntu, with PuTTY used on Windows for file transfers. This setup is quick and straightforward. Samba, while more convenient as it allows both operating systems to see each other as drives, requires additional configuration, including enabling Samba in the kernel. A tutorial for setting up Samba is available online. Another option is to create a FAT32 partition, which facilitates easy file transfer between the two systems. Linux can read and write to FAT file systems, while NTFS support is limited to read-only access. For accessing Linux files from Windows, tools like Explore2fs can be used, provided the Linux partition is formatted with ext2 or ext3.
mattmns
Messages
1,121
Reaction score
5
I currently have Windows XP on hda and Ubuntu on hdb, so what is the best/easiest way to share files between the two? Gracie!
 
Computer science news on Phys.org
Easiest: sftp

Just run the ssh deamon on ubuntu and then use putty on windows to get the file from the server and vice versa. It will take all of two seconds to setup.

More Convinient: samba

Takes a little work. Must be enabled in the kernel. Windows will see the linux box as another drive. The linux box will see windows as a drive.

Here is a tutorial for samba:

http://ubuntuguide.org/#sambaserver
 
Last edited by a moderator:
Thanks dduardo I will check those out!
 
dduardo said:
Easiest: sftp

Just run the ssh deamon on ubuntu and then use putty on windows to get the file from the server and vice versa. It will take all of two seconds to setup.

More Convinient: samba

Takes a little work. Must be enabled in the kernel. Windows will see the linux box as another drive. The linux box will see windows as a drive.

Here is a tutorial for samba:

http://ubuntuguide.org/#sambaserver

It sounds like the two OS's are running on the same system so running putty/windows and ssh/Linix at the same time will be tough.

Under Linux you can mount NTFS or FAT file systems(FAT is much easier) I don't recall the details though--I banished Windows a long time ago.

Google "mounting windows XP under Linux" and I'm sure the procedure will pop up.

Good luck.
 
Last edited by a moderator:
Also, you can read/write to FAT under Linux, but only read NTFS. Under Windows, you can access files from Linux with http://uranus.it.swin.edu.au/~jn/linux/explore2fs.htm, if your Linux partition uses ext2 or ext3. Not sure if there's a similar program for ReiserFS or other filesystems.
 
Wow, I was out of it. I thought he had two completely separate systems.

faust9, your completely right. Creating a fat32 partition would be the easiest way to transfer files between the two partitions.

sorry about that mattmns. I was a little :zzz:
 
Hmmm, ok I will now check that out :smile:
 
Back
Top