similar to: Can't mount floppy and cdrom!

Displaying 20 results from an estimated 2000 matches similar to: "Can't mount floppy and cdrom!"

2001 Nov 23
1
samba-admin@lists.samba.org
Dear friends, One of my friends got a ttypical problem with installing linux on a m/c with PIII 933 MHz. , 256 MB SDRAM , 20 GB HDD with SIS 6326 motherboard [ intel 815EEA chipset ] + 8 MB sahred memory. He made a dos FAT 32 partition with 12 GB keeping win98 and another 8GB as non dos for Linux Red Hat 7.1 ] While installing and specifying / , /boot , /usr , /usr/src ,
2006 Jul 24
0
Debugging a XenU that goes to Zombie state
Once last night and the night before a XenU go into a Zombie state, requiring a reboot. I''m not quite sure what is happening, and am looking for advise on how to diagnose the problem. .. While writing this email, it crashed again. This time I had an ''xm console calcutta'' capturing the output. I read a suggestion in these archives suggesting that I can just
2011 Aug 10
0
exiting with ogg.h missing
I ran into a similar problem. The OGG lib and header files need to be in a standard location. To get around this problem I passed the following options to the configure script. --with-ogg-libraries=<libogg_root>/src/.libs --with-ogg-includes=<libogg_root>/include. In this case I built libogg and left all of the files in the default place (so I just did make not make install).
2011 Aug 10
2
exiting with ogg.h missing
On mer, 2011-08-10 at 09:41 -0400, Rony Nandy wrote: > Hi All, > I have downloaded libogg-1.3.0 along with speex.But,during > build speex is exiting with ogg.h missing.Any suggestions will be highly > appreciated. IIRC, speexenc encodes your data into a speex stream which is encapsulated into an OGG container, so you need to libogg to compile it. Though, it has been ages
2012 Feb 08
1
[LLVMdev] Instruction for print
Just to be clear, I have to add a function name printf in the module with no body. And I can call the function. This will automatically call the printf function which is defined in the library. Tarun Agrawal On Wed, Feb 8, 2012 at 11:34 PM, John Criswell <criswell at illinois.edu>wrote: > On 2/8/12 11:55 AM, tarun agrawal wrote: > > Hi, > > I am trying to insert a
2013 Oct 14
0
[LLVMdev] Building for a specific target, corei7
Hi Varun, I see the point of your question, but I'm not the best person to answer from that perspective. Nadav Rotem is the owner of the x86 backend, and he can probably give you a more complete answer than I could. Thanks, Andy From: Varun Agrawal [mailto:vagrawal at cs.stonybrook.edu] Sent: Friday, October 11, 2013 8:48 PM To: Kaylor, Andrew; llvmdev at cs.uiuc.edu Subject: RE: Building
2004 Feb 19
1
Access CDROM/Floppy while using a Windows TS Client
Is there a canned installation or methodology that anyone knows of that allows me to configure a Linux Thin Client running "rdesktop" type application to 2003 Windows Term Server, which allows read/write access back to the local CD and Floppy on the Linux Thin Client. The Thin Client application i have in mind is an academic computer lab, however, need to provide access back to local
2017 Mar 31
2
Address Sanitizer
Hello This link didn't work for me. As I am getting error whose meaning is - there are no options as -arch i386 -arch x86_64. How should I remove this error? On Wed, Mar 22, 2017 at 6:11 PM, 陳韋任 <chenwj.cs97g at g2.nctu.edu.tw> wrote: > Hi Aayushi, > > Seems the link [1] answers your question. > > [1] http://stackoverflow.com/questions/28640585/build- >
2014 Jan 13
0
How to get ringing sound in outbound call in asterisk
I have two server Server_A(outbound call) for agent login and agent make a outbound call from here and pass into server Server_B call extension.conf exten => _91XX.,1,AGI(agi://127.0.0.1:4577/call_log) exten => _91XX.,n,Dial(SIP/${EXTEN}@192.168.53.197,,tToR) exten => _91XX.,n,hangup() Server_B[192.168.53.197] for call forwarding extension.conf exten =>
2014 Feb 11
1
file.c:1160 ast_writefile: Unable to open file /var/spool/asterisk/monitor/11Feb2014/_11-Feb-2014-17-44-01.wav: No such file or directory
Dear Folks, [Test_Context] exten => _911.,1,AGI(agi://127.0.0.1:4577/call_log) exten => _911.,2,Set(CALLERID(num)=xxxxxxx) exten => _911.,3,Set(CALLTIME=${STRFTIME(${EPOCH},Asia/Calcutta,%d-%b-%Y-%H-%M-%S)}) exten => _911.,4,Set(RECSUBDIR=${STRFTIME(${EPOCH},Asia/Calcutta,%d%b%Y)}) exten => _911.,5,Set(${CALLERID}=${CALLERID(num)}) exten =>
2002 Mar 30
1
.Rd Files
While downloading the R 1.4.1 for windows from the zip file, I downloaded a zip file rw1041m.zip which consisted of .Rd files. Could anybody tell what are these files for? ______________________ Indrajit SenGupta Department Of Statistics St. Xavier's College Calcutta University indra_calisto at yahoo.com indrajitsg at vsnl.net ______________________ EC- 195 Salt Lake City, Sector -1 Calcutta
2013 Oct 12
2
[LLVMdev] Building for a specific target, corei7
Hi Andrew, I think I diluted my question. My question was not related to MCJIT. I ran the following 4 scenarios: (1)gcc -mcpu=corei7 tetris.c -o tetris (2)gcc -mcpu=athlon64 tetris.c -o tetris (3)clang -march=corei7 tetris.c -o tetris (4)clang -march=athlon64 tetris.c -o tetris In (1) and (2), I see difference in order of instructions in the output binaries, which I expected because every CPU
2012 Feb 08
0
[LLVMdev] Instruction for print
On 2/8/12 11:55 AM, tarun agrawal wrote: > Hi, > > I am trying to insert a instruction for printf or cout. My aim is to > print a integer and a string value using that instruction, which are > already there in the code. > but I am not able to understand how to do it. Any help would be great > help. You want to insert a call instruction that calls the printf function.
2012 Feb 27
0
[LLVMdev] Algorithm used for doing alias analysis.
On Sat, Feb 25, 2012 at 8:44 AM, tarun agrawal <tarun at cse.iitb.ac.in> wrote: > Hi, > > I am using alias analysis to determine whether two values are alias or not. > But I am not able to figure out the algorithm that is being used to > determine > May , Must and No Alias. Here is the algorithm in high-level: http://llvm.org/docs/AliasAnalysis.html#exist > > >
2011 Aug 09
1
NEON optimization of speex
Hi, We(Linaro) are evaluating to optimize speex using ARM NEON as an open source NEON optimized version is not available. Please let us know if someone is already working on it or if some version exists in the open source community which we might have missed. Secondly,I want to know if bit exactness is mandatory for the NEON optimized version with the C only version? and if a lsb mismatch once in
2009 Oct 04
1
Build a bootable floppy image which contains HDT
It is now possible to build a bootable floppy image which contains HDT, with my patch applied to Erwans HDT branch: http://git.zytor.com/?p=users/erwan/hdt.git;a=commit;h=16b37fe2266c920087f88cdec94243b71218d871 Unpack the Syslinux archive and build whole Syslinux first, then cd to ./com32/hdt/ and make hdt.img $ make $ cd ./com32/hdt/ $ make hdt.img Now you have a 2.88 MB floppy image which
2011 Aug 09
4
not building with --enable-arm-asm -enable-arm5e-asm
Hi, I am getting the following dump while trying to build for arm ./configure --prefix=/root/dump --host=arm-linux --with-gnu-ld --disable-static --enable-fixed-point --enable-arm-asm -enable-arm5e-asm configure: WARNING: unrecognized options: --enable-arm-asm Type "make; make install" to compile and install Speex root at rony-ubuntu:~/speex# make make all-recursive make[1]:
2017 Mar 10
2
Modifying Address Sanitizer
Thank you for the response. Suppose I want to make changes in the LLVM part of Address Sanitizer. Is there still a way to test the changes made to address sanitizer as a standalone. Also can a pass be run after Address Sanitizer Pass is ran, where I can access the variables created by address sanitizer [LLVM Code] so that I avoid making changes directly to the address sanitizer? On Fri, Mar
2013 Oct 11
0
[LLVMdev] Building for a specific target, corei7
Hi Varun, Have you tried your experiment with icc by any chance? The MCJIT component does not assume that you will be executing the generated code on the host system because it can be used to generate code for external targets. However, you can specify the CPU by calling setCPU() on the EngineBuilder object before creating your execution engine. (You can use sys::getHostCPUName() to figure out
2011 Apr 17
0
[LLVMdev] Error compiling ConstantProp.cpp
On Sat, Apr 16, 2011 at 5:27 PM, tarun agrawal <tarun at cse.iitb.ac.in> wrote: > I am using llvm-2.6  and the ConstProp.cpp file is > http://llvm.org/docs/doxygen/html/ConstantProp_8cpp_source.html > > and the exact error message is: > > llvm[0]: Compiling ConstantProp.cpp for Release build  (PIC) >