Hi all, I have installed Samba on Irix 6.5 and I have modified the sample smb configuration file as shown below. I am having problem browsing the Samba from Windows 95 host, it asks me to supply the //servername/IPC$ password. Please assist. Regards, Kunle Olusanya ============================================================================================== ; Configuration file for smbd. ; ===========================================================================; For the format of this file and comprehensive descriptions of all the ; configuration option, please refer to the man page for smb.conf(5). ; This is a sample configuration for IRIX 6.x systems ; ; The following configuration should suit most systems for basic usage and ; initial testing. It gives all clients access to their home directories and ; /usr/tmp and allows access to all printers returned by lpstat. ; [global] protocol = NT1 comment = Samba %v workgroup = NIGNT01 printing = sysv ; ; The default for printcap name is lpstat which will export all printers. ; If you want to limit the printers that are visible to clients, you can ; use a printcap file. The script mkprintcap.sh will create a printcap ; file that contains all your printers. Edit this file to only contain the ; printers that you wish to be visible. Names longer than 15 characters ; in the printcap file will not be visible to clients. ; ; printcap name = /usr/samba/printcap printcap name = lpstat ; ; If you are using Impressario 1.x then you'll want to use the ; sambalp script provided with this package. It works around ; a problem in the PostScript generated by the standard Windows ; drivers--there is a check to verify sufficient virtual memory ; is available in the printer to print the job, but this fails ; under Impressario because of a bug in Impressario 1.x. The sambalp ; script strips out the vmstatus check. BTW, when using this ; setup to print be sure to configure a Windows printer driver ; that generates PostScript--QMS-PS 810 is one that should work ; with the sambalp script. This version of sambalp (if installed ; as a setuid script - see the comments at the beginning of the ; script) will setuid to the username if valid on the system. This ; makes the banner pages print the proper username. You can disable ; the PostScript fixes by changing a variable in sambalp. ; print command = /usr/samba/bin/sambalp %p %s %U %m ; print command = /usr/bin/lp -c -d%p -t"%U on machine %m" %s ; rm %s load printers = yes guest account = geoqusl browseable = yes ; this tells Samba to use a separate log file for each machine ; that connects - default is single file named /usr/samba/var/log.smb log file = /usr/samba/var/log.smb ; Set a max size for log files in Kb max log size = 50 ; You will need a world readable lock directory and "share modes=yes" ; if you want to support the file sharing modes for multiple users ; of the same files locking = yes lock directory = /usr/samba/var/locks share modes = yes ; security = user ; You need to test to see if this makes a difference on your system socket options = TCP_NODELAY ; Set the os level to > 32 if there is no NT server for your workgroup os level = 0 preferred master = no domain master = no local master = no wins support = yes ; wins server = preserve case = yes short preserve case = yes ; These are the settings required for IRIX password sync passwd program = /usr/bin/passwd %u passwd chat = *ew*password:* %n\n *e-enter*new*password:* %n\n ; Uncomment the following if you wish to use encrypted passwords. ; encrypt passwords = yes ; Uncomment the following if you wish to sync unix and smbpasswd ; unix password sync = yes [homes] comment = Home Directories browseable = no writable = yes ; To allow Win95 clients to automatically load printer drivers, uncomment ; the following section (and the lines in the printers section below). ; Run the make_printerdef command to create the /usr/samba/lib/printers.def ; file (see the PRINTER_DRIVER.txt file in the docs directory for info). ; Copy all the required files to the /usr/samba/printer directory ; ;[printer$] ; comment = printer driver directory ; path=/usr/samba/printer ; public=yes ; writable=no ; browseable=yes ;[printers] ; comment = All Printers ; path = /usr/tmp ; browseable = no ; printable = yes ; public = yes ; writable = no ; create mask = 0700 ; ; this specifies the location of the share containing the printer driver ; files - see the printer$ section above ; ; printer driver location = \\%h\printer$ ; ; the following line will make all printers default to the QMS-PS 810 Turbo ; driver - which works quite well for Impressario. If you need a diferent ; driver for a specific printer, create a section for that printer and ; specify the correct printer driver. ; ; printer driver = QMS-PS 810 Turbo [tmp] comment = Market Place path = /usr/people/geoqusl browsable = yes available = yes read only = no printable = no create mask = 0777 public = yes
On Wed, 22 Dec 1999 21:13:32 +1100, hai scritto:>I have installed Samba on Irix 6.5 and I have modified the sample smb >configuration file as shown below. I am having problem browsing the Samba >from Windows 95 host, it asks me to supply the //servername/IPC$ password.Be sure geoqusl user exist in the /etc/passwd database. Then either enable passwd encription in samba or disable it in win9x (read ENCRYPTION.txt, man smbpasswd, man smb.conf). -- giulioo@pobox.com
Hi I have RedLinux 6.1 installed on my system.My system is networked with other system through TCP.I can successfully use webserver running on mysystem through NT system.I want to share files with other system through samba server. I want to make clear that my system is not visible on network on the other nt system.Please tell me how i can share files on nt system through samba. I am waiting for reply. regards malik __________________________________________________ Do You Yahoo!? Send online invitations with Yahoo! Invites. http://invites.yahoo.com
Hi, I have a little problem: I have a network where are some NT clients configured in a Nt Domain named "NTDomain". The NT server name is "NTServer". On this network I have a SUN-Solaris7 host (named "sunhost") where I installed Samba. On "sunhost" I configured smb.conf file in this way: workgroup = NTDomain server string = "SolarisHOST" password server = NTServer dns proxy = yes preserve cache = yes [homes] browsable = yes writable = yes I have the same account on "NTServer" and "sunhost" machines. When I login on my NT Client I see the host "sunhost" in "Network Neighborhood" Folder using "Exploring". In this Folder I see a Sub-Folder named as my NT Username. In this environment I have this problem: I create a text file in this Folder using "Notepad" from my NT Client. So, when I edit the file on Unix host "sunhost" using "vi" editor, I see the character "^M" at the end of each row. I think that the reason is that Samba traslates the ASCII file on NT Client in a Bynary file on Unix Client. How is it possible to configure my Samba environment in way to have an ASCII file on both NT Client and Unix host? Thanks for your help, Fred -- TiscaliNet, libero accesso ad Internet. http://www.tiscalinet.it
Fred, you do not have a problem. It works as designed. Windows uses CR-LF (carriage return - line feed) characters at the end of each line, while Unix only uses a line feed character. The carriage returns are shown as ctrl-m characters. There are some utilities around that convert ascii files from unix to dos and vice versa.> In this environment I have this problem: > I create a text file in this Folder using "Notepad" from my > NT Client. So, when I edit the file on Unix host "sunhost" > using "vi" editor, I see the character "^M" at the end of > each row. I think that the reason is that Samba traslates the > ASCII file on NT Client in a Bynary file on Unix Client. > > How is it possible to configure my Samba environment in way > to have an ASCII file on both NT Client and Unix host?Dirk
Please excuse a newbe question. I recently installed samba on my internal network. Everything seems to work, windows and linux machines can log on. However I get the following messages from some of the server firewalls. Nov 22 21:01:12 fsn3 kernel: Packet log: input DENY eth1 PROTO=17 0.0.0.0:68 255.255.255.255:67 L=328 S=0x00 I=1035 F=0x0000 T=255 (#42) I realize this one must be dhcp, but none of my systems use dhcp Nov 22 21:04:46 fsn3 kernel: Packet log: input DENY eth1 PROTO=17 192.168.1.3:138 192.168.1.255:138 L=241 S=0x00 I=18915 F=0x0000 T=64 (#42) I am not sure what this one is, maybe the samba server negotiating master.? Gerald Waugh
:) look like ur firewall is blocking broadcast packets from 192.168.1.255:138 pot 138 ? theses packets are denied by the firewall?? this is what i think it is .... because i have just started iptables recently not sure :) thanks. -----Original Message----- From: samba-admin@lists.samba.org [mailto:samba-admin@lists.samba.org]On Behalf Of Gerald Waugh Sent: Friday, November 23, 2001 11:26 AM To: samba@lists.samba.org Subject: Samba configuration problem Please excuse a newbe question. I recently installed samba on my internal network. Everything seems to work, windows and linux machines can log on. However I get the following messages from some of the server firewalls. Nov 22 21:01:12 fsn3 kernel: Packet log: input DENY eth1 PROTO=17 0.0.0.0:68 255.255.255.255:67 L=328 S=0x00 I=1035 F=0x0000 T=255 (#42) I realize this one must be dhcp, but none of my systems use dhcp Nov 22 21:04:46 fsn3 kernel: Packet log: input DENY eth1 PROTO=17 192.168.1.3:138 192.168.1.255:138 L=241 S=0x00 I=18915 F=0x0000 T=64 (#42) I am not sure what this one is, maybe the samba server negotiating master.? Gerald Waugh -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com
hi i want to install samba server on solaris 2.8 . I have done fallowing step I have download samba file samba-2.2.0.tar.gz from website & save it into the /opt/source/samba Then I have unzip & untar the source file # gunzip samba* # tar xvf samba* # cd samba-2.2.0 After that Compile the source code # cd source # ./configure After that when I run a command # make it says make: not found pls help me what is that problem pls let us know with best regards Sanjay chahar -------------- next part -------------- A non-text attachment was scrubbed... Name: sanjay.kumar.vcf Type: text/x-vcard Size: 458 bytes Desc: Card for sanjay Url : http://lists.samba.org/archive/samba/attachments/20021127/9a2b9bcd/sanjay.kumar.vcf -------------- next part -------------- -------------------------------------------------------------- Progression Infonet Private Limited, Gurgaon (Haryana), India
On Wed, 27 Nov 2002, Sanjay Kumar wrote:> hi > i want to install samba server on solaris 2.8 . I have done fallowing > step > I have download samba file samba-2.2.0.tar.gz from website & save it > into the /opt/source/samba > Then I have unzip & untar the source file > # gunzip samba* > # tar xvf samba* > # cd samba-2.2.0 > After that Compile the source code > # cd source > # ./configure > After that when I run a command > # make > it says > make: not found > pls help me what is that problem > pls let us knowDoes your system have installed the Sun Pro-C compiler? If not then you need to buy it _or_ download GCC from the internet, then install the compiler. Not all Unixes are born equal! :) -John T. -- John H Terpstra Email: jht@samba.org -------------- next part -------------- A non-text attachment was scrubbed... Name: sanjay.kumar.vcf Type: text/x-vcard Size: 458 bytes Desc: Card for sanjay Url : http://lists.samba.org/archive/samba/attachments/20021127/4fee28dd/sanjay.kumar.vcf -------------- next part -------------- -------------------------------------------------------------- Progression Infonet Private Limited, Gurgaon (Haryana), India