Displaying 6 results from an estimated 6 matches for "rooti".
Did you mean:
root
2000 Jun 22
0
LSP optimisations
...Ae[j]=Ao[j];
Ao[j]=A;
A+=temp;
temp=E[j]*Bo[j]+Be[j];
Be[j]=Bo[j];
Bo[j]=B;
B+=temp;
}
*lpc++=(A+Ao[j]+B-Ae[j])/2;
Ao[j]=A;
Ae[j]=B;
}
}
tatic void cacm283(double *a,int ord,double *r){
int i, k;
double val, p, delta, error;
double rooti;
for(i=0; i<ord;i++) r[i] = 2.0 * (i+0.5) / ord - 1.0;
for(error=1 ; error > 1.e-12; ) {
error = 0;
for( i=0; i<ord; i++) { /* Update each point. */
rooti = r[i];
val = a[ord];
p = a[ord];
for(k=ord-1; k>= 0; k--) {
val = val * rooti + a[k];
if (...
2016 May 06
4
resize lvm
I have a laptop that I put centos 7 on and I started out with a 30gig partition.? I resized the other part of the disk to allow more space for centos.? I then created an unformated partition in the available space,? ran
pvcreate /dev/sda4
vgextend lvname /dev/sda4
lvextend -L 184.46G /dev/lvname/root
but when I run:
sudo resize2fs /dev/lvname/root
I get:
resize2fs: Bad magic
2008 Aug 24
2
Unusual bug in glusterfsd
Hi,
I'm rather new to this project, having stumbled across it earlier this
afternoon, so forgive me if I'm still trying to find my way around. I
was in the need of an alternative to NFS that would let me spread the
task of sharing my downloaded source code files across a couple of
boxes, and GlusterFS looked like a great candidate, having had no luck
with Coda or OpenAFS.
I also want
2016 May 06
0
resize lvm
...allow more space for centos.? I then created an unformated partition in the available space,? ran
>
>
> pvcreate /dev/sda4
>
>
>
> vgextend lvname /dev/sda4
>
>
>
> lvextend -L 184.46G /dev/lvname/root
I find it easiest to do lvextend -l 100%VG /dev/lvname/rootI find it
easiest to do lvextend -l 100%VG /dev/lvname/root.
(Then, if practical, and since it's a laptop, I'm guessing it's not a
production machine), reboot from a livecd or whatever and doing e2fsk -f
/dev/lvmname/root
I don't know if it will solve your issue, but may be worth t...
2016 May 06
2
resize lvm
...os. I then created an unformated partition in the available space, ran
>
>
>
> pvcreate /dev/sda4
>
>
>
>
> vgextend lvname /dev/sda4
>
>
>
>
> lvextend -L 184.46G /dev/lvname/root
>
>
>
> I find it easiest to do lvextend -l 100%VG /dev/lvname/rootI find it
> easiest to do lvextend -l 100%VG /dev/lvname/root.
> (Then, if practical, and since it's a laptop, I'm guessing it's not a
> production machine), reboot from a livecd or whatever and doing e2fsk -f
> /dev/lvmname/root
>
> I don't know if it will solve you...
2003 Apr 10
1
Starcraft Patch
I've done some work getting the patches from
http://starcraft-wine.sourceforge.net/ working with CVS wine. Using the
patch I'm including, starcraft works perfectly on my machine, run as
root using DGA on a 640x480 XF86 layout.
In particular the changes to event.c enable the mouse and keyboard with
DGA. The changes to input.c make the mouse acceleration work the same
in all directions.