Displaying 11 results from an estimated 11 matches for "_gid".
Did you mean:
_cid
2019 Aug 09
3
id mapping on a dc+file server
Thanks for your answer. It is clearer now for me.
> >> It is probably a bit late to change now, but there is only one way to
> >> get the same numeric ID everywhere and that is to use the 'ad' winbind
> >> backend.
So, on the Linux clients?
> > This is why I removed the idmap config entries from the dc3 smb.conf.
> > "On a Samba Active
2019 Aug 09
6
id mapping on a dc+file server
...$1" = "-h" ] || [ "$1" = "--help" ]; then
echo "Usage : $0 <groupname> <gidNumber>"
exit 1
fi
if [ "$#" -ne 2 ]; then
echo "Usage : $0 <groupname> <gidNumber>"
exit 1
fi
_GROUP="$1"
G_GID="$2"
P_DIR=$(samba -b | grep 'PRIVATE_DIR' | awk '{print $NF}')
SAM="${P_DIR}/sam.ldb"
SUFFIX=$(echo "dc=$(hostname -d)" | sed 's/\./,dc=/g')
# Find groupname : $_GROUP must exist in AD !
_RESULT=$(ldbsearch -H ${SAM} -b "$SUFFIX" -s...
2020 Jul 09
4
AD Users on Linux Laptop
...in my optinion, you should not be needed to change this.
Unless your users start below 1000.
Also cat /etc/adduser.conf shows ( For Debian/Buster )
# FIRST_[GU]ID to LAST_[GU]ID inclusive is the range of UIDs of dynamically
# allocated user accounts/groups.
FIRST_UID=1000
LAST_UID=29999
FIRST_GID=1000
LAST_GID=29999
If you can give me an example when its not working, ill have look at it..
The new member setup its progress is going as expected so far.
I hope to have it so online. ( but the complete )
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-...
2015 Oct 26
1
2.2.18 initial setup permissions problem
On 10/26/15 5:30 AM, Steffen Kaiser wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On Fri, 23 Oct 2015, Forrest wrote:
>
>> I'm using Dovecot 2.2.18, compiled from source, on CentOS 6.
>>
>> I'm running into a permissions problem with my first rollout of
>> Dovecot which has to do with directory permissions:
>>
>> Oct 23
2015 Aug 31
0
[PATCH v5 2/2] fish: add journal-view command (RHBZ#988100)
...Pr
+
+open Char
+open List
+
+(* Arguments used by journal-view command *)
+
+type op_type = Options of (char * string) list;; (* option, option name*)
+
+let op = Options [
+ (* Trusted fields *)
+ ('a', "_PID");
+ ('b', "_UID");
+ ('c', "_GID");
+ ('d', "_COMM");
+ ('e', "_EXE");
+ ('f', "_CMDLINE");
+ ('g', "_CAP_EFFECTIVE");
+ ('h', "_AUDIT_SESSION");
+ ('i', "_AUDIT_LOGINUID");
+ ('j', "_SYSTEMD_CGROUP&...
2015 Mar 05
0
[PATCH v3] fish: add journal-view command
...= "warning",
+ [LOG_NOTICE] = "notice",
+ [LOG_INFO] = "info",
+ [LOG_DEBUG] = "debug"
+};
+
+static const char *const log_fields[] = {
+ /* Trusted fields */
+ "a", "_PID",
+ "b", "_UID",
+ "c", "_GID",
+ "d", "_COMM",
+ "e", "_EXE",
+ "f", "_CMDLINE",
+ "g", "_CAP_EFFECTIVE",
+ "h", "_AUDIT_SESSION",
+ "i", "_AUDIT_LOGINUID",
+ "j", "_SYSTEMD_CGROUP&...
2015 Mar 03
2
[PATCH v2] RFE: journal reader in guestfish
This implements new guestfish only command called journal-view.
There seems to be a minor issue when user wants to run it through pager (more)
and wants cancel it. User will end up with stuck guestfish until journal-view
transfers all journal items.
Output is now configurable, it's the same format as virt-log has, since both
uses same code now.
Maros Zatko (1):
fish: add journal-view
2015 Mar 05
2
[PATCH v3] RFE: journal reader in guestfish
There seems to be a minor issue when user wants to run it through pager (more)
and wants cancel it. User will end up with stuck guestfish until journal-view
transfers all journal items.
Output is now configurable, it's the same format as virt-log has, since both
uses same code now.
Maros Zatko (1):
fish: add journal-view command
cat/Makefile.am | 1 +
cat/log.c | 113
2015 Mar 03
0
[PATCH v2] fish: add journal-view command
...= "warning",
+ [LOG_NOTICE] = "notice",
+ [LOG_INFO] = "info",
+ [LOG_DEBUG] = "debug"
+};
+
+static const char *const log_fields[] = {
+ /* Trusted fields */
+ "a", "_PID",
+ "b", "_UID",
+ "c", "_GID",
+ "d", "_COMM",
+ "e", "_EXE",
+ "f", "_CMDLINE",
+ "g", "_CAP_EFFECTIVE",
+ "h", "_AUDIT_SESSION",
+ "i", "_AUDIT_LOGINUID",
+ "j", "_SYSTEMD_CGROUP&...
2015 Aug 31
5
[PATCH v5 0/2] RFE: journal reader in guestfish
There seems to be a minor issue when user wants to run it through pager (more)
and wants cancel it. User will end up with stuck guestfish until journal-view
transfers all journal items.
Output is configurable, it's the same format as virt-log has, since both
uses same code.
Maros Zatko (2):
cat: move get_journal_field to fish/journal.c
fish: add journal-view command (RHBZ#988100)
2015 Oct 16
2
[PATCH v6 0/2] RFE: journal reader in guestfish
Output is configurable, it's the same format as virt-log has, since both
uses same code.
First patch moves get_journal_field around and renames it to journal_view
and the next one reimplements it a bit and brings it to guestfish.
Maros Zatko (2):
cat: move get_journal_field to fish/journal.c
fish: add journal-view command (RHBZ#988100)
.gnulib | 2 +-