similar to: error msg using testparm

Displaying 20 results from an estimated 3000 matches similar to: "error msg using testparm"

2005 Jun 13
0
novice - samba3+; suse linuxpro9.1
hi, I thought it would be easy and over quickly - it has been anything but... I decided to test and use Samba 3.+ on my Suse linux pro 9.1 lan but cannot get it to work and need some help/guidance. I have two essentially identical linux computers [east and west] and I have both of them as both server AND client. At a later date, after this `simple' lan works, I plan to add a ms portable
2005 Jul 08
0
small lan - 2 solved
Hi, I got the validation to work. scn@west:~> smbclient -L west -U% Domain=[SNJ] OS=[Unix] Server=[Samba 3.0.9-2.6-SUSE] Sharename Type Comment --------- ---- ------- orb Disk removable 2.2 gb hd IPC$ IPC IPC Service (Samba Server) ADMIN$ IPC IPC Service (Samba Server) Domain=[SNJ]
2005 Aug 06
0
printer loss [susepro9.1]-mostly solved-samba the problem?
Hi, Thanks for the suggestions - the immediate problem is solved. I feel that a monstrous weight has been lifted. I tried the suggestions and the printer connection is back - wonderful!!!!! what a relief! I stopped the firewall and samba so it is one of them, or both which is causing the problem? I would vote for samba3 as the culprit because the printer loss occurred on both machines on a 2
2005 Jul 08
1
small lan - novice - 2
Hi, armed with Samba-3 -by example I proceeded to test my 2 linux lan [suselinux pro 9.1 with Samba 3.0.9-2.6-suse]. I followed instructions and made the smb.config as small as possiblw: [global] workgroup = snj server string = Samba Server guest ok = yes [orb] comment = removable 2.2 gb hd path = /orb browsable = yes read only = no However, I was stumped practically immediately as you can
2003 Feb 08
1
compare st_mode & 07777, or Aix dirs always differ
Under Aix directories have the mode 024xxxx instead of the customary 04xxxx. Because of this when you sync a directory to or from an Aix system it's never up to date. Here is a patch which fixes this. It causes rsync to look at only the bits that chmod actually influences, 07777, when deciding whether or not the modes differ. I was surprised there wasn't an existing constant for 07777,
2014 Jun 12
2
[PATCH] fuse: UID 0 should override all permissions checks (RHBZ#1106548).
Previously if you were root, and you tried to change directory into a directory which was not owned by you and not readable (eg. 0700 bin:bin), it would fail. This doesn't fail on regular directories because when you are root the kernel just ignores permissions. Although libguestfs in general tries not to duplicate kernel code, in the case where we emulate the FUSE access(2) system call,
2016 Mar 06
1
Map hidden can only work if create mask includes octal 01 (S_IXOTH)
This is probably something simple, but I couldn't find the problem addressed in this maillist. I've upgraded to Samba 4.x from Samba 3.x. I'm just using this for "classic" sharing, not AD/DC. I'm getting an error when I run testparm which I didn't with the previous version (or didn't notice). "Invalid combination of parameters for service public. Map
2001 Jun 18
2
Patch for changing expired passwords
The primary purpose of the attached patches is for portable OpenSSH to support changing expired passwords as specified in shadow password files. To support that, I did a couple enhancements to the base OpenBSD OpenSSH code. They are: 1. Consolidated the handling of "forced_command" into a do_exec() function in session.c. These were being handled inconsistently and allocated
2020 Sep 25
0
[RFC PATCH 01/19] tools/virtiofsd: add support for --socket-group
If you like running QEMU as a normal user (very common for TCG runs) but you have to run virtiofsd as a root user you run into connection problems. Adding support for an optional --socket-group allows the users to keep using the command line. Signed-off-by: Alex Benn?e <alex.bennee at linaro.org> Reviewed-by: Stefan Hajnoczi <stefanha at redhat.com> --- v1 - tweak documentation and
2004 Sep 25
1
[LLVMdev] Code to be moved to the specific platform in lib/System?
Hi I'm compiling: llvm/lib/Support/SystemUtils.cpp on MinGW. However, it stops complaining about these errors: -------------------------- C:/MinGW/msys/local/src/llvm/lib/Support/SystemUtils.cpp: In function `bool llvm::isExecutableFile(const std::string&)': C:/MinGW/msys/local/src/llvm/lib/Support/SystemUtils.cpp:44: error: `getuid' undeclared (first use this function)
2009 Mar 06
0
[PATCH 3/3] COM32/stat(): preset ret and move zeroing errno
From: Gene Cumm <gene.cumm at gmail.com> COM32/stat(): preset ret and move zeroing errno Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- Depends on string of patches this week diff --git a/com32/lib/sys/stat.c b/com32/lib/sys/stat.c index d1b2629..da55e0c 100644 --- a/com32/lib/sys/stat.c +++ b/com32/lib/sys/stat.c @@ -28,7 +28,9 @@ /* * stat.c * - * Very trivial stat
2010 Jun 21
0
would like more detail when /tmp directory is missing. patch for linux/syslinux.c
Our linux distribution at my job didn't include a /tmp directory. When ever I tried to use syslinux, I would get the following error: ./syslinux: No such file or directory I modified the code to report this: ./syslinux: Cannot access the /tmp/ directory. This would have helped me a lot rather than having to download the source and run it through the debugger to figure out that my /tmp/
2000 Mar 31
0
[PATCH] empty shell in /etc/passwd
The Linux/Unix-port of OpenSSH-1.2.3 in sshd.c:allowed_user() denies Login to users with an empty shell-field in /etc/passwd. According to the docs this is wrong and an empty shell-field should default to /bin/sh. I'm sure that this is what was intended, because code and comment get it right in sshd.c:do_child(): * Get the shell from the password data. An empty shell field is
2000 Mar 31
1
[PATCH] Correction empty shell-field patch
Sorry - my previous patch was bad. Here is the corrected one. Cheers, Theo -------------- next part -------------- diff -Naur openssh-1.2.3-dist/sshd.c openssh-1.2.3/sshd.c --- openssh-1.2.3-dist/sshd.c Fri Mar 31 23:04:10 2000 +++ openssh-1.2.3/sshd.c Fri Mar 31 23:24:21 2000 @@ -1121,6 +1121,7 @@ struct stat st; struct group *grp; int i; + char*shell; #ifdef WITH_AIXAUTHENTICATE char
2000 Apr 15
0
patch in user validation code
I was encountering a strange message about "faked authloop for illegal user". It turned out the allowed_user function was disallowing passwd entries with a blank shell field, which is supposed to be equivalent to "/bin/sh". This patch is based on OpenSSH 1.2.3, and I have tested it on Slackware 7.0. --- sshd.old Wed Apr 12 23:47:04 2000 +++ sshd.c Thu Apr 13 00:35:54 2000
2005 Jun 28
0
small lan - novice
Hi, John, thanks for replying. I am fully aware that this is a volunteer effort and do appreciate it very much. I really didn't expect an automatic answer - I was suggesting an automatic response which could indicate the objection[s]? I have downloaded the S3be `book' and ordered it from amazon. I was puzzled by your comment: `Please do not refer to smbfs's friends as Samba. The
2019 Jan 25
0
[klibc:update-dash] [BUILTIN] Fix "test -x" as root on FreeBSD 8
Commit-ID: aa5f2856e82ac8e625729beb93b52e6868901507 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=aa5f2856e82ac8e625729beb93b52e6868901507 Author: Jonathan Nieder <jrnieder at gmail.com> AuthorDate: Tue, 27 Sep 2011 18:19:06 -0500 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Fri, 25 Jan 2019 02:57:21 +0000 [klibc] [BUILTIN] Fix "test
2009 Mar 05
1
[PATCH 4/5] COM32: add trivial stat() function
From: Gene Cumm <gene.cumm at gmail.com> COM32: add trivial stat() function; uses open(), fstat() then close() or opendir(), closedir(). Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- Not the most elegant thing in the world but it's been working for me. diff --git a/com32/include/sys/stat.h b/com32/include/sys/stat.h index ffc4105..2a06a68 100644 ---
2020 Mar 28
0
[klibc:update-dash] dash: [BUILTIN] Fix "test -x" as root on FreeBSD 8
Commit-ID: 8f7f6479f4dc1c65f9574eb0596d50bae13b9ba9 Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=8f7f6479f4dc1c65f9574eb0596d50bae13b9ba9 Author: Jonathan Nieder <jrnieder at gmail.com> AuthorDate: Tue, 27 Sep 2011 18:19:06 -0500 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Sat, 28 Mar 2020 21:42:54 +0000 [klibc] dash: [BUILTIN] Fix
2009 May 29
1
[PATCH v2] klibc-utils: add simple ls
Simple utility to list information about a files. The utility which does the same thing as "ls -la". This is a useful test program. Signed-off-by: Alexey Gladkov <gladkov.alexey at gmail.com> --- usr/utils/Kbuild | 4 +- usr/utils/ls.c | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 205 insertions(+), 1 deletions(-) create mode 100644