|
If you have both Windows and Linux PCs on a LAN and wish to share both devices and files, I would recommend Samba. Samba is a software package that gives system and network people the flexibility to make real choices in terms of setup, configuration, and choosing all types of systems and equipment, on different operating systems. It has been around since 1992, and can be run on UNIX or Linux, using TCP/IP, which allows the host interact to with a Microsoft Windows client or server as if it is a Windows file and print server, or client.
First, you'll need to share your Windows Server. From "My Computer," right click on the CD-ROM and choose "sharing." Create a share name and then configure Samba on the Linux Server.
To configure a Samba share directory on your Linux system, add the following section to the share section in the smb.conf file. With file sharing, the following statement from the config file ( /etc/samba/smb.conf) would allow users "Larry," "Curly" and "Moe" to access the directory that you need.
valid users = larry curly mo
public = no
writable = yes
After installing and configuring Samba, you can use the smbmount command to get access to your system.
Something like this will do:
smbmount //winclient/cdrom /mnt/win-cdrom -o
username=theusername
For more information on installing samba, see www.samba.org or look at this Samba learning guide.
|