Yes it is possible. Firstly setup a Linux server with Samba and then make sure you create a sample user on the Windows NT Server. We will call it "samba01" as a trial user.<br><br>Next, after setting-up the Linux server, install Samba and configure the samba configuration file in "/etc/smb.conf".<br><br>Use this simple script I used.<br><br>[global]<br> workgroup = YourWorkGroupName<br> netbios name = AnyNameYouWant<br> server string = EnterCommentHere<br> guest account = nobody<br> keep alive = 30<br> os level = 33<br> socket options = TCP_NODELAY<br> announce as = Samba Server<br> announce version = 4.2<br> mangle case = no<br> case sensitive = no<br> default case = lower<br> preserve case = yes<br> encrypt passwords = yes<br> valid users = users @staff<br><br>; Uncomment the following, if you want to use an existing<br>; NT-Server to authenticate users, but don't forget that<br>; you also have to create them locally!!!<br><br>; security = server<br>; password server = enter ip_address here<br>; encrypt passwords = yes<br><br>; Printers<br><br> printing = bsd<br> printcap name = /etc/printcap<br> load printers = yes/no<br> socket options = TCP_NODELAY<br> map to guest = Bad User<br><br><br>; Uncomment this, if you want to integrate your server<br>; into an existing net e.g. with NT-WS to prevent nettraffic<br><br> ;local master = no<br><br>; Please uncomment the following entry and replace the<br>; ip number and netmask with the correct numbers for<br>; your ethernet interface.<br><br>; Please uncomment the following entry and replace the<br>; ip number and netmask with the correct numbers for<br>; your ethernet interface.<br><br> ;interfaces = eth0 192.168.1.2/24 192.168.1.2/255.255.255.0<br><br>; If you want Samba to act as a wins server, please set<br>; 'wins support = yes'<br><br> ; wins support = yes<br><br>; If you want Samba to use an existing wins server,<br>; please uncomment the following line and replace<br>; the dummy with the wins server's ip number.<br><br> ; wins server = 192.168.1.2<br><br>; Do you wan't samba to act as a logon-server for<br>; your windows 95/98 clients, so uncomment the<br>; following:<br><br> logon script = %U.bat<br> domain logons = yes<br> domain master = yes<br><br>[netlogon]<br> path = /netlogon<br><br>[homes]<br> comment = Users Home Folder<br> path = /home<br> browseable = no<br> read only = no<br> writeable = yes<br> create mask = 0750<br><br>[tmp]<br> comment = Swap Space<br> path = /tmp<br> read only = No<br> guest ok = Yes<br><br>; The following share gives all users access to the Server's CD drive,<br>; assuming it is mounted under /cd. To enable this share, please remove<br>; the semicolons before the lines<br><br>[cdrom]<br> comment = Linux CD-ROM<br> path = /cd<br> read only = yes<br> locking = no<br><br>[printers]<br> comment = All Printers<br> browseable = yes<br> printable = yes<br> public = yes<br> read only = yes<br> create mode = 0700<br> directory = /tmp<br><br>[public]<br> comment = WizShare Shared Files<br> path = /home/samba<br> write list = @staff<br> read only = No<br> force create mode = 0777<br> force directory mode = 0777<br> guest ok = Yes<br><br>Once done, create a Samba user by executing;<br><br>/usr/bin/smbpasswd -a samba01<br><br>put in the password and then configure your Windows client WORKGROUP and DOMAIN login names and you are done.<br><br>--Moonshi