Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

filesharing between linux and windows

In Redhat EL WS 4 (which has Samba pre-installed and running)

become superuser then create a device to mount to
mkdir /mount/<linx_share>


Add an entry to the /etc/hosts for the windows box, with its IP and a hostname
192.168.80.1 DL1


Then create the share in the windows box (in Windows, using normal file sharing.
We'll call it win_share

Then mount the device in Linux
mount -t smbfs ///win_share /mnt/linx_share


eg.
mount -t smbfs //DL1/sshare /mnt/share


Linux should ask for a password (windows password). This assumes that the username between linux and the windows boxes are the same!

After that, you should be able to view the win_share directly from linux and have access to all its files.
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed