search for: tiv

Displaying 17 results from an estimated 17 matches for "tiv".

Did you mean: ti
2008 May 29
2
Plotting a cubic line from a multiple regression
Dear all, I'm attempting to plot a cubic relationship between two variables controlling for the effects of a third variable. In this short example, I'm trying to use AGE to predict CORTEX while controlling for the effects of TIV (total intracranial volume): ######################## cortex = rnorm(100, mean=0.5, sd=0.5) age = rnorm(100, mean=10, sd=2) tiv = rnorm(100, mean=1000, sd=100) ## ## simple regression (ignoring TIV) works ## cortex.lm = lm(cortex ~ poly(age, degree=3)) plot(age, cortex) pseudo.x = seq(min(age)-2,...
2014 Mar 24
1
mount.cifs permissions for non-root user via sudo
I'm not sure this is the proper forum to post to, but I hope someone can point me in the right direction if not have the answers. We have a RedHat Enterprise 5 AS machine, fully patched, with the most recent samba RPMs installed. The machine is joined to Active Directory via a 3rd party program called Centrify. An AD user, when logged into this system, is given permission to run /bin/mount via sudo, in order to mount that users' Windows share from a Windows fileserver. (2008R2) The exact mount command is: sudo mount -t cifs //servername/share/user1...
2004 May 27
2
block diagonal matrix function
...ion definition and toy example below). I need nonsquare matrices and rowname() and colname() inherited appropriately. Two questions: (1) Is there a better way to do this? (kronecker() isn't applicable here) (2) How do I generalize it to take an arbitrary number of matrices as inputs? TIV Robin "blockdiag" <- function (m1, m2, p.tr = 0, p.ll = 0) { ## p.tr and p.ll are padding values topleft <- m1 topright <- matrix(p.tr, nrow(m1), ncol(m2)) colnames(topright) <- colnames(m2) lowleft <- matrix(p.ll, nrow(m2), ncol(m1)) lowri...
2017 Oct 11
1
[PATCH v1 01/27] x86/crypto: Adapt assembly for PIE support
Change the assembly code to use only relative references of symbols for the kernel to be PIE compatible. Position Independent Executable (PIE) support will allow to extended the KASLR randomization range below the -2G memory limit. Signed-off-by: Thomas Garnier <thgarnie at google.com> --- arch/x86/crypto/aes-x86_64-asm_64.S...
2010 Dec 02
1
PXELinux + Altiris + Tivoli.
Hello All. I have few networks with Tivoli Provision Manager (http://www.ibm.com/developerworks/downloads/tiv/pmfos/?S_TACT=105AGX28&S_CMP=TRIALS ), Altiris (http://www.symantec.com/business/deployment-solution) and WDS (on W2008Stdx32). I successfully expand WDS functionally with pxelinux (4.03).I really like how pxelinux working. S...
1998 Sep 18
1
R-beta: undefined reference to `realpr_' ?
Hi, Win95 version, trying to build multiv. Following error (no mention in faq etc, but someone may have mentioned it recently). Appreciate any help. ------- Building multiv.dll from multiv.a -------- echo LIBRARY multiv > multiv.def echo EXPORTS >> multiv.def nm multiv.a | sed -n "/^........ [DT] _/s/^........ [BCDRT] _/ /...
2009 Feb 13
4
Running Xen over NFSv3
Does anyone, is anyone running Xen on NFSv3 successfully? What are some of your pain points/success points? Have you tried a clustered file system with better results such as DRBD or GFS? TIV, Matt _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2010 Oct 01
1
XEN BUG i387.c159 at XEN4.01 on debian squeeze
Hi, we´ve got a bad problem here. We installed a new server with debian squeeze sw-raid and lvm. We´ve installed the the actual xen-linux-system-2.6.32-5-xen-amd64? system with grub2 but get an XEN BUG. We´ve tried alot, tested grub-legacy version but cannot get the XEN kernel to boot up. The XEN BUG occurs a  second after grub boots the kernel and there are no outputs at the serial console with
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce
2018 Mar 13
32
[PATCH v2 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below the top 2G of the virtual address space. It allows to optionally extend the KASLR randomization range from 1G to 3G. Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler changes, PIE support and KASLR in general. Thanks to
2017 Oct 04
28
x86: PIE support and option to extend KASLR randomization
These patches make the changes necessary to build the kernel as Position Independent Executable (PIE) on x86_64. A PIE kernel can be relocated below the top 2G of the virtual address space. It allows to optionally extend the KASLR randomization range from 1G to 3G. Thanks a lot to Ard Biesheuvel & Kees Cook on their feedback on compiler changes, PIE support and KASLR in general. Thanks to
2018 May 23
33
[PATCH v3 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v3: - Update on message to describe longer term PIE goal. - Minor change on ftrace if condition. - Changed code using xchgq. - patch v2: - Adapt patch to work post KPTI and compiler changes - Redo all performance testing with latest configs and compilers - Simplify mov macro on PIE (MOVABS now) - Reduce GOT footprint - patch v1: - Simplify ftrace
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce dynamic relocation space on mapped memory. It also simplifies the relocation process. - Move the start the module section next to the kernel. Remove the need for -mcmodel=large on modules. Extends
2017 Oct 11
32
[PATCH v1 00/27] x86: PIE support and option to extend KASLR randomization
Changes: - patch v1: - Simplify ftrace implementation. - Use gcc mstack-protector-guard-reg=%gs with PIE when possible. - rfc v3: - Use --emit-relocs instead of -pie to reduce dynamic relocation space on mapped memory. It also simplifies the relocation process. - Move the start the module section next to the kernel. Remove the need for -mcmodel=large on modules. Extends
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
.../StatsData.rb | 1 - src/app/util/stats/StatsDataList.rb | 1 - src/app/util/stats/StatsRequest.rb | 1 - src/app/util/stats/StatsTypes.rb | 1 - src/app/util/stats/statsTest.rb | 1 - src/dutils/active_record_env.rb | 1 - src/flexchart/flexchart.swf | Bin 370538 -> 0 bytes src/public/.htaccess | 40 ------------- src/test/unit/host_browser_awaken_test.rb | 1 - 22 files changed, 208 insertions(+), 74 d...
2010 Sep 09
0
problems with always one logged files
Hi, ? we?ve got a samba system as an pdc and got some problem with one file which always is not closed properly. ? Here we have the output with no user or pc is logged on and one file keeps always open. The only way is to reboot the system. Killing the process fails. May someone has an idea what causes this? ? Samba version 3.2.13-SerNet-Debian PID???? Username????? Group???????? Machine