search for: sname

Displaying 20 results from an estimated 124 matches for "sname".

Did you mean: name
2015 Sep 13
3
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...- a/core/fs/pxe/dhcp_option.c >> >> +++ b/core/fs/pxe/dhcp_option.c >> >> @@ -252,4 +252,6 @@ void parse_dhcp(const void *pkt, size_t pkt_len, int pkt_type) >> >> >> >> if (over_load & 2) >> >> parse_dhcp_options(dhcp->sname, 64, 0); >> >> + >> >> + /* What about option 66, tftserver_name ? FIXME */ >> >> } >> > >> > Something like this would be preferable except it's not quite so >> > simple. We'd need to not store BOOTP siaddr before parsin...
2017 Mar 18
0
kerberos issue (SPN not found) with windows Hyper-V ( samba 4.5.3 AD)
...esrv: NT_STATUS_CONNECTION_DISCONNECTED] Wireshark relevant output: TGS-REQ (host A -> Samba 4 AD DC): Kerberos msg-type: krb-ap-req (14) ticket realm: MYDOMAIN.COM.XYZ sname name-type: kRB5-NT-SRV-INST (2) sname-string: 2 items SNameString: krbtgt SNameString: MYDOMAIN.COM.XYZ enc-pa...
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...sk - network mask >> * gate_way - default gateway router IP >> * boot_file - boot file name >> @@ -252,4 +252,6 @@ void parse_dhcp(const void *pkt, size_t pkt_len, int pkt_type) >> >> if (over_load & 2) >> parse_dhcp_options(dhcp->sname, 64, 0); >> + >> + /* What about option 66, tftserver_name ? FIXME */ >> } > > Something like this would be preferable except it's not quite so > simple. We'd need to not store BOOTP siaddr before parsing. Store a > pointer to the string during parsing...
2017 Mar 18
2
kerberos issue (SPN not found) with windows Hyper-V ( samba 4.5.3 AD)
...s kind of unique as far as SPN's go, usually SPN form a complete string. So I kind of just tried the simplest solution: The workaround/fix is this: In AD for each Hyper-V host account (machine account that is) in servicePrincipalName attribute as such: Hyper-V\ Replica\ Service/<NetbiosName> Hyper-V\ Replica\ Service/<FQDN> Microsoft\ Virtual\ Console\ Service/<NetbiosName> Microsoft\ Virtual\ Console\ Service/FQDN> Microsoft\ Virtual\ System\ Migration\ Service/<NetbiosName> Microsoft \Virtual\ System\ Migration\ Service/FQDN> I edited with ADUC from RSAT...
2006 Jul 07
0
[patch] s390: fix six parameter handling in sysstub.ph
...insertions(+), 25 deletions(-) diff --git a/usr/klibc/arch/s390/sysstub.ph b/usr/klibc/arch/s390/sysstub.ph index 880a0da..79f3068 100644 --- a/usr/klibc/arch/s390/sysstub.ph +++ b/usr/klibc/arch/s390/sysstub.ph @@ -7,33 +7,56 @@ # sub make_sysstub($$$$$@) { my($outputdir, $fname, $type, $sname, $stype, @args) = @_; + my($t); + my($r, $llregs) = (0, ($typesize{'void *'} == 8) ? 1 : 2); - open(OUT, '>', "${outputdir}/${fname}.S"); - print OUT "#include <asm/unistd.h>\n"; - print OUT "\n"; - print OUT "\t.type $...
2007 Jun 28
4
Support DHCP sname field in PXELINUX
I have discovered that the JUNOS DHCP server in Juniper J-series routers doesn't support setting the next-server IP address field (I have filed a bug report with Juniper and they are working on it). Instead, it puts the "boot server" in the sname field, which PXELINUX currently ignores. Here's a simple patch (vs. 3.36) that will take an IP string in the field. My assembly is pretty rusty, and I couldn't quite figure out how to use the DNS resolver, so it doesn't handle a hostname. This does work for me with an IP string. di...
2013 Jun 10
1
Selecting divergent colors
...to distinguish between the colors. So, is there a way that I can select a large number of colors (i.e. perhaps 20) that are as different from each other as possible? Here is my example code using the palette: ********************** mat <- matrix(sample(1:1000,1000,replace=T),nrow=20,ncol=20) snames <- paste('Sample_',1:ncol(mat),sep='') colnames(mat) <- snames mycols <- palette(rainbow(ncol(mat))) for(k in 1:ncol(mat)){ plot(density(mat[,k]),col=mycols[k],xlab='',ylab='',axes=F,main=F) par(new=T) } legend(x='topright',legend=snames,fill...
2014 Jan 24
1
Need solution to use environment variable
...enu will be possible to have environment variable with server ip. Example: Pxelinux.cfg\Default UI vesamenu.c32 MENU INCLUDE pxelinux.cfg/graphics.conf MENU INCLUDE pxelinux.cfg/server.menu .. Skip .. label default MENU LABEL ^Custom ISO COM32 cmd.c32 APPEND KERNEL http://SName/sources/common/pxe/memdisk iso raw initrd http://SName/sources/iso/CustomPE/Custom.iso (not working) Pxelinux.cfg\server.menu LABEL SName 10.55.98.127 Using pxelinux 6.02 Thanks a lot for any help !!!! Thanks. Vladimir Izmalkov
2017 Mar 19
1
kerberos issue (SPN not found) with windows Hyper-V ( samba 4.5.3 AD)
...esrv: NT_STATUS_CONNECTION_DISCONNECTED] Wireshark relevant output: TGS-REQ (host A -> Samba 4 AD DC): Kerberos msg-type: krb-ap-req (14) ticket realm: MYDOMAIN.COM.XYZ sname name-type: kRB5-NT-SRV-INST (2) sname-string: 2 items SNameString: krbtgt SNameString: MYDOMAIN.COM.XYZ enc-pa...
2004 Nov 17
1
"Impossible to run" error message when using Sweave
...multiple files to create the individual school reports. Here is the code for the loop schnum.list <- as.vector(unique(cmu$schid)) for(current.school in schnum.list) { school.df <- subset(cmu, cmu$schid==current.school) school.grades <- as.vector(unique(school.df$grade)) sname <- paste(paste("read", current.school, sep=""),"Rnw",sep=".") system(paste("schoolread.Rnw", paste("Reading/", sname, sep=""), sep=" ")) Sweave(file= paste("Reading/", sname, sep="&quot...
2010 Nov 27
1
return vector of element names for vector, matrix or array
...eparator, as a similar vector. Here is something ugly cobbled together to demonstrate what I want: a function to work for any number of dimensions. vecnames <- function(x, sep=':') { if (is.vector(x) || length(dim(x))==1) return(names(x)) else if (length(dim(x)==2)) { snames <- dimnames(x) return (as.vector(outer(snames[[1]], snames[[2]], paste, sep=sep))) } else { stop("How to handle 3+ dimensions?") } } > x1 <- c(a=1, b=2, c=3) > vecnames(x1) [1] "a" "b" "c" > &gt...
2017 May 25
0
Windows 2012 s4u2self followed by s4u2proxy fails against samba
...e .0.. .... = use-session-key: False ..0. .... = mutual-required: False ticket tkt-vno: 5 realm: TESTDOMAIN.LAN sname name-type: kRB5-NT-SRV-INST (2) sname-string: 2 items SNameString: krbtgt SNameString: TESTDOMAIN.LAN enc-part...
2018 Jul 25
0
vfs_audit log does not show full path names
...gs both old and new full pathnames. Is there some config entry that needs to be set to get the full pathnames logged? [global] full_audit:priority = notice full_audit:facility = local1 full_audit:success = open rename full_audit:failure = connect full_audit:prefix = %u|%I|%S [sname] path = /home/usr vfs objects = full_audit Actual results: ryan|$IP|sname|rename|ok|a/b/c.tmp|a/b/c.xlsx ryan|$IP|sname|open|ok|r|c.xlsx Expected results: ryan|$IP|sname|rename|ok|a/b/c.tmp|a/b/c.xlsx ryan|$IP|sname|open|ok|r|a/b/c.xlsx Looking at vfs_full_audit.c, smb_full_audit_open(...
2002 Oct 18
7
RAM usage
Hi, I'm having problems while working with large data sets with R 1.5.1 in windows 2000. Given a integer matrix size of 30 columns and 15000 rows my function should return a boolean matrix size of about 5000 rows and 15000 columns. First of all I tried to run this function on computer with 256 MB of RAM. I increased memory limit of R with memory.limit() up to 512 MB. I was inspecting
2003 Jan 14
1
How to change the label position in axis() ?
...People, I'm working on a plot function to produce the graph shown below. One of the features my supervisor does not like is that the labels in the Y- axix are shown vertically. Is there a way to change that to horizontally ? This is the axix() function I used : axis(2,at=seq(nstrat),labels=snames) The labels (snames) are: SEV1:HU:C, SEV1:MU:C, SEV1:MU:L, SEV1:RT:C and SEV1:RT:L, due to space limitation just 3 of the labels are shown in the axix. In Splus, I believe the labels are shown horizontally be default. What we want is to show them horizontally in R too. Is there a way to do it ?...
2004 May 26
2
duplicate domains in browse list
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, i recently upgraded some of my servers from 3.0.2a to 3.0.4 after the upgrade my browselist shows duplicate entries for the domains. one domains is managed by a samba PDC(providing WINS too) and two samba BDC's. the other domains are managed by one samba PDC. 'smbclient -N -L <WINS_SERVER>' shows: - --- Workgroup
2014 Feb 01
0
[RFC 03/16] drm/nouveau: add platform device probing function
...100644 --- a/drivers/gpu/drm/nouveau/core/engine/device/base.c +++ b/drivers/gpu/drm/nouveau/core/engine/device/base.c @@ -543,3 +543,37 @@ done: mutex_unlock(&nv_devices_mutex); return ret; } + +int +nouveau_device_platform_create_(struct platform_device *pdev, u64 name, + const char *sname, const char *cfg, + const char *dbg, int length, void **pobject) +{ + struct nouveau_device *device; + int ret = -EEXIST; + + mutex_lock(&nv_devices_mutex); + list_for_each_entry(device, &nv_devices, head) { + if (device->handle == name) + goto done; + } + + ret = nouveau_engine_cr...
2006 May 18
6
Routes and Testing Routes
I love the routes feature for RoR...until now. I''m trying to write tests to make sure my urls are correctly mapping to the routes I expect them to map to. This is driving me nuts because I simply can''t get any of my tests to pass. I have thus concluded that routes must work differently than I thought. If someone could possibly point me in the right direction, I would really
2013 Jul 13
2
pxechn.c32 does not do TFTP
Digging more, loadfile("192.0.2.1::pxe.0", &file.data, &file.size), queries DNS, which sounds like it doesn't follow the same call path as a COM32 calling pxe_dns(). If the DNS won't resolve the IP, things won't load properly. pxechn.c32 sets sname in the intended packet to "192.0.2.1" which may be confusing something. More debugging needed. -- -Gene
2006 Jun 26
0
[klibc 34/43] sh support for klibc
...ub.ph b/usr/klibc/arch/sh/sysstub.ph new file mode 100644 index 0000000..ce04b73 --- /dev/null +++ b/usr/klibc/arch/sh/sysstub.ph @@ -0,0 +1,34 @@ +# -*- perl -*- +# +# arch/sh/sysstub.ph +# +# Script to generate system call stubs +# + +sub make_sysstub($$$$$@) { + my($outputdir, $fname, $type, $sname, $stype, @args) = @_; + + open(OUT, '>', "${outputdir}/${fname}.S"); + print OUT "#include <asm/unistd.h>\n"; + print OUT "\n"; + print OUT "\t.section\t\".text.syscall\",\"ax\"\n"; + print OUT "\t.type...