search for: _right_

Displaying 20 results from an estimated 24 matches for "_right_".

Did you mean: _might_
2006 May 22
3
ssize_t not defined in sockconn.c (PR#8889)
Problem: Build of R failed when compiling sockconn.c. The problem seemed to be that ssize_t was not defined. The following change in sock.h fixes the problem, though it's probably not fixed the _right_ way. /* Following line changed by WTR (Cira) to overcome make problem. #if defined Win32 && !defined _SSIZE_T_ typedef int ssize_t; #endif */ typedef int ssize_t; Thanks! Wade --please do not edit the information below-- Version: platform = i686-pc-linux-gnu arch = i686 os = linux...
2004 Feb 19
1
Obtaining SE from the hessian matrix
...ted-to-C MINPACK for NLS fit too. And, in the GSL ref. manual example http://www.gnu.org/software/gsl/manual/html_node/gsl-ref_36.html#SEC475 SE calculated as #define ERR(i) sqrt(gsl_matrix_get(covar,i,i)) where covar = (J^T * J)^-1 (i.e. how in the second formulae above). So, what is the _right_ way for obtatining SE? Why two those formulas above differ? Thank you! -- WBR, Timur.
1998 Jul 08
2
Re: RedHat 5.X Security Book
>>>>> <seifried@seifried.org> writes: > I was looking around for a book specifically on Linux security a week or > two ago, and couldn''t find any. I wanted something Linux specific as > opposed to say O''Reilly''s yellow safe book. There are actually Linux-specific details in Practical; I put some of them there. They are not, however,
2004 Mar 22
1
PermitRootLogin issues
...it seems that both are straightforward to code, but obviously 1 is much less work. I coded up an implemetation of pubkey-only that works for me, and it's attached. I'm willing to work on option 2, but since that's quite a bit more work, I'd like some assurance that that is the _right_ way before I start on it. I think some solution needs to be merged ASAP. I've seen the recommendation to use without-password if root logins for scripting must be allowed in various security docs. With more sites using PAM and non-typical authentication methods (LDAP, winbind), it can be...
2012 Dec 05
1
Incorrect currentMemory for qemu-1.2+
...f it matters. And finally, $ virsh dumpxml vm010-000-000-092 | grep curr <currentMemory unit='KiB'>5398528</currentMemory> $ virsh qemu-monitor-command --hmp vm010-000-000-092 info balloon balloon: actual=1176 Until virtio_balloon initializes in the guest, libvirt reporting _right_ value for some seconds after VM start, so bug (which I unable to track by myself) almost for sure presented in parsing of received values from guest balloon.
2002 Nov 04
3
New to wine question concerning Path Variable
Howdy, I am trying to run a Cobol Compiler through wine. I am running RH7.3 with a current wine release. My directory structure is /usr/share/wine-c/COBOL/. I have been successful in running other applications through wine, but not ones that require a PATH= entry. My problem is: it's looking for an entry in the PATH environment variable that includes 'C:\COBOL' which stores
2011 Oct 21
2
congratulations to fletcher penney
big congratulations to fletcher penney on his release of "multimarkdown composer". at #21-paid when i purchased it just now. i'd say $9.99 will be best in the long-term -- don't listen to people who say more -- but $7.99 is the _right_ introductory price. word-of-mouth will be what sells this pup, so you want it to flow copiously right now. -bowerbird -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://six.pairlist.net/pipermail/markdown-discuss/attachments/20111021/f9a6075f/attachment.htm...
2006 Oct 26
4
porting numbers in UK telewest/bt/adept
A client used to use BT isdn30 and ported the numbers to telewest several years ago. Now, the client moved to adept telecom. I *think* adept resells BT products. We got new numbers from adept (bt?) and the old pbx on the telewest lines forwards the calls to the new numbers. On the adept line I got a digium card in an opteron supermicro server. ztcfg gives me over 99.99 pretty much all the time.
2015 Jul 07
2
I can read/write in virtio BLK Device, but I can't run a hello world program in it
Hi Linux Virtualization Mailing List Members, I am trying to develop a driver for virtio blk device in guest. I can safely mount the virtual blk device with: mount /dev/vda /mnt/ in /mnt/ I can read & write the device. But when I run a simple hello world program in /mnt/root/, this error happens: root at linux_guest:/mnt/root# ./helloworld_static [ 23.003459] CPU: 0 PID: 491 Comm:
2015 Jul 07
2
I can read/write in virtio BLK Device, but I can't run a hello world program in it
Hi Linux Virtualization Mailing List Members, I am trying to develop a driver for virtio blk device in guest. I can safely mount the virtual blk device with: mount /dev/vda /mnt/ in /mnt/ I can read & write the device. But when I run a simple hello world program in /mnt/root/, this error happens: root at linux_guest:/mnt/root# ./helloworld_static [ 23.003459] CPU: 0 PID: 491 Comm:
2016 Jun 04
2
LLVMLinkModules2() C-API question
Hey all, A quick question about the LLVM C-Api and using LinkModules. In a normal situation where I have 2 LLVM modules and 1 depends on the other using LLVMLinkModules2() works perfectly. LLVMLinkModules2() "Links the source module into the destination module. The source module is destroyed." according to the comment of the function. That is all fine when you only have 2 modules. But
2015 Jul 07
0
I can read/write in virtio BLK Device, but I can't run a hello world program in it
...t; Thomas Huth <huth at tuxfamily.org> wrote: > > Why don't you simply use the driver that is already available in the > kernel? I am using a custom hypervisor, the available driver is not suitable for it. > > Have you already verified that you can successfully read the _right_ > data from your block device? I.e. something like > > mount /dev/xxx /mnt > cp helloworld_static /mnt/root/helloworld_static > umount /mnt # just to make sure that it is not cached > mount /dev/xxx /mnt > md5sum helloworld_static > md5sum /mnt/root/helloworld_static >...
2015 Jul 07
0
I can read/write in virtio BLK Device, but I can't run a hello world program in it
...s already available in the kernel? > I can safely mount the virtual blk device with: mount /dev/vda /mnt/ > in /mnt/ I can read & write the device. But when I run a simple hello world program in /mnt/root/, this error happens: Have you already verified that you can successfully read the _right_ data from your block device? I.e. something like mount /dev/xxx /mnt cp helloworld_static /mnt/root/helloworld_static umount /mnt # just to make sure that it is not cached mount /dev/xxx /mnt md5sum helloworld_static md5sum /mnt/root/helloworld_static ... and then compare the two md5sums whether...
2005 Apr 10
1
Can't log in, but logs say auth succeeded?
I've just gotten my first machine to join the domain, and now I'm trying to log in as a normal user. I get this error in windows "The system could not log you on. Make sure your username and password are correct (bla bla...)". However, when I check the log for that machine it says at the end that authentication succeeded? /var/log/samba/log.melisa: (log level=2, debug
2001 Jun 27
1
Wavelet audio codec by Adapted Wave Tech.
Following a post on vqf.com forum, I found out that some company called Adapted Wave Technology is ready to release its audio codec based on wavelets. They say that this wavelet-based codec is superior to MDCT codecs by 30-50%. One sentence caught my attention: "Adapted Wave Technologies holds exclusive patent rights for applying wavelet packets to audio applications." - sounds like a
2002 Apr 03
1
minimum processor/ram follow up
I'm hoping to use an old laptop as an ogg vorbis player in my car. If I have a Pentium 100 w/ 40 megs of RAM running linux with a console based ogg vorbis player will I be likely to run into problems with performance? Thanks. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to
2003 Jan 13
0
[LLVMdev] X86 JIT status
..._iob : bh, anagram, fhourstones, burg, sgefa, sim, 181.mcf, ... other : mst The __iob problems are because of explicit references to stdin,out,err in the .c code. The problem is that the headers we're using turns them into references to an __iob array, which doesn't exist on X86. The _right_ fix to this is to port glibc to LLVM. A hackish fix would be to use linux headers instead of sparc headers to compile these programs. Because this prevents a large number of programs from working, this should be the first thing to get addressed in the future probably. The mst problem is due to t...
2007 Mar 18
2
Frequent metadata corruption with ext3 + hard power-off
Hello. I'm having serious issues with ext3; any insight would be greatly appreciated: _____ Overview: I believe ext3 is supposed to be recoverable in the case of a power failure by replaying the log. However, on two separate computers (running different operatings systems too), this has been everything but the case. _____ Specifics: Sometimes, my kernel will hard-freeze and I'll
2010 Jul 30
2
Layering multiple persp plots
Hi all, I've got two persp plots with Identical X and Y's, and I'd like to plot them on the same graph, so that it is obvious where one plot is above the other. I can't find any mention of this anywhere. Do I need to use wireframe? Any help is appreciated. Thanks, -- Ian Bentley M.Sc. Candidate Queen's University Kingston, Ontario [[alternative HTML version deleted]]
2007 Feb 06
0
convolve: request for "usual" behaviour + some improvements + some fixes
...ence doesn't "look" circular anymore. > > For example, if the input sequences are > X = 2 5 8 > Y = 100 1 0 > then the "circular" convolution of X and Y is > Z = 205 802 508 > To achieve "open" convolution, it's enough to _right_ padd X and > Y with zeros: > X = 2 5 8 0 > Y = 100 1 0 0 > then the "circular" convolution doesn't look circular anymore (it > looks "open"): > Z = 200 802 508 5 > > All you need to do is to padd enough zeros to have length X...