Audio input too small for 1/4 mono adapter??? Help!!!

Hi, I would like to record myself with garage band by plugging my bass in a 1/4 mono jack adapter in my macbook pro audio port. The problem is that when I plug the adapter, it goes to 2 / 3 of its size and blocks. I don't want to try to push the adapter further in case the audio imput breaks. I noticed that the tip of the adapter was a little bigger than a normal headphone jack. Do you think this might be the problem? Do you think apple might anable some cable sizes to fit in their audio ports?
The adapter looks like this http://www.musiconmypc.co.uk/guitar-cable-to-pc-mac-adaptor-6-3mm-mono-jack-to-3 -5mm-mono
Thanks.

How large is the device that you are formatting?
The default journal size depends on the type specified. If none specified,
then it assumes "mail" which sets the default journal per slot to 256M.
If database type, default is 64M.
Use "-T database" to specify database type, etc.
BTW, one can always override the defaults. Say "-J size=16M" to make
a smaller journal.
man mkfs.ocfs2 and the user's guide has more.

Similar Messages

  • "buffer too small for string or missing null byte" inserting CR in excel

    I have created a Crystal Report based on below stored procedure.
    DELIMITER $$
    DROP PROCEDURE IF EXISTS `ww_test`.`PRD_Data_sp` $$
    CREATE PROCEDURE `ww_test`.`PRD_Data_sp` (in cyear int, in cmonth int, in groupby varchar(20), in Inv_type varchar(4))
    BEGIN
      select
              CASE WHEN groupby='Date' THEN  (p.FKDAT)
                   WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
              END ,
              sum(p.QTYSAM),
              sum(p.CASESSOLD),
              sum(p.SOLDDOL)
              from ww_test.prd_data p
              where (month(p.FKDAT)=cmonth and year(p.FKDAT)=cyear) and
                     ((p.FKART) is null or not(p.FKART in ("FAZ","ZMBB","FAS",Inv_Type))) and
                     ((p.AUART) is null or not(p.AUART in ("ZMBB")))
              Group by
                  CASE WHEN groupby='Date' THEN  (p.FKDAT)
                       WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
                  END
              Order by
                  CASE WHEN groupby='Date' THEN  (p.FKDAT)
                       WHEN groupby='SalesOrg' THEN  CONCAT(p.VKORG,'_',p.VTWEG)
                  END;
    END $$
    DELIMITER ;
    I have used Add Command to create report based on this.
    call ww_test.prd_data_sp({?Year},{?Month},{?GroupBy},{?InvType});
    I am able to refresh the report in crystal and as well in Infoview without any problem.
    But when i try to insert this report in Excel using Live Office it gives me error. I able to insert other crystal reports without any problem.
    An error occurred while opening the report. The report does not exist; you have insufficient rights to open the report; or you cannot make a connection to the BusinessObjects Web Service. (LO 02010)
    Failed to open report (LO 26619)
    Cannot open report document 
    Buffer too small for string or missing null byte.
    can anyone suggest where i am going wrong? Any input is appreciated.
    Crystal Reports 2008
    Live Office XI 3.1
    BOEdge XI 3.1
    Xcelsius 2008
    Thanks ,
    Madhavi

    With the CurrentValue method
    Crpt.ParamFields[3].CurrentValue := memo1.Text;
    Is there another solution ?

  • Install 10gR2 RAC w/ iscsi chokes "filesystem too small for journal"

    Following Jeff Hunter guide to install RAC on 10gR2 on Oracle Linux All has gone well to the point of:
    [root@lin1 ~]# mkfs.ocfs2 -b 4k -C 32K -N 4 -L oracrsfiles /dev/sde1
    mkfs.ocfs2 1.2.4
    Filesystem too small for a journal
    [root@lin1 firefox]# df -m
    Filesystem 1M-blocks Used Available Use% Mounted on
    /dev/mapper/VolGroup00-LogVol00 66272 1965 60941 4% /
    /dev/cciss/c0d0p1 99 16 79 17% /boot
    none 1 268 0 1268 0% /dev/shm
    [root@lin1 ~]# uname -a
    Linux lin1 2.6.9-55.0.0.0.2.ELsmp #1 SMP Wed May 2 14:59:56 PDT 2007 i686 i686 i386 GNU/LinGNU/Linux
    Tried man mkfs.ocfs2 with the -J size=(various sizes in KB up to 100MB) (4MB is the min) but nothing takes. Certainly approx. 6GB free space is sufficient for journaling?? Any input very much appreciated.

  • Report error: ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW c

    report error:
    ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 7106, maximum: 4000)
    Has anyone come across this error?
    We're inputing text using the HTML Editor Minimal. The text is saving fine, but large text inputs, when combined with the html tags, cannot be retrieved from the database, i just get the above error. I believe there is an associated DB bug for this, but i'm curious if anyone has come across this before, and if they found a work-around?

    Did you solve this?
    I have a similar problem, as posted in CLOBs Quit Working Due to > 4000 chars - ORA-22835
    Thanks,
    --BobC                                                                                                                                                                                                                                                                                           

  • Cannot decrypt RSA encrypted text : due to : input too large for RSA cipher

    Hi,
    I am in a fix trying to decrypt this RSA encrypted String ... plzz help
    I have the encrypted text as a String.
    This is what I do to decrypt it using the Private key
    - Determine the block size of the Cipher object
    - Get the array of bytes from the String
    - Find out how many block sized partitions I have in the array
    - Encrypt the exact block sized partitions using update() method
    - Ok, now its easy to find out how many bytes remain (using % operator)
    - If the remaining bytes is 0 then simply call the 'doFinal()'
    i.e. the one which returns an array of bytes and takes no args
    - If the remaining bytes is not zero then call the
    'doFinal(byte [] input, int offset, in inputLen)' method for the
    bytes which actually remained
    However, this doesnt work. This is making me go really crazy.
    Can anyone point out whats wrong ? Plzz
    Here is the (childish) code
    Cipher rsaDecipher = null;
    //The initialization stuff for rsaDecipher
    //The rsaDecipher Cipher is using 256 bit keys
    //I havent specified anything regarding padding
    //And, I am using BouncyCastle
    String encryptedString;
    // read in the string from the network
    // this string is encrypted using an RSA public key generated earlier
    // I have to decrypt this string using the corresponding Private key
    byte [] input = encryptedString.getBytes();
    int blockSize = rsaDecipher.getBlockSize();
    int outputSize = rsaDecipher.getOutputSize(blockSize);
    byte [] output = new byte[outputSize];
    int numBlockSizedPartitions = input.length / blockSize;
    int numRemainingBytes = input.length % blockSize;
    boolean hasRemainingBytes = false;
    if (numRemainingBytes > 0)
      hasRemainingBytes = true;
    int offset = 0;
    int inputLen = blockSize;
    StringBuffer buf = new StringBuffer();
    for (int i = 0; i < numBlockSizedPartitions; i++) {
      output = rsaDecipher.update(input, offset, blockSize);
      offset += blockSize;
      buf.append(new String(output));
    if (hasRemainingBytes) {
      //This is excatly where I get the "input too large for RSA cipher"
      //Which is suffixed with ArrayIndexOutofBounds
      output = rsaDecipher.doFinal(input,offset,numRemainingBytes);
    } else {
      output = rsaDecipher.doFinal();
    buf.append(new String(output));
    //After having reached till here, will it be wrong if I assumed that I
    //have the properly decrypted string ???

    Hi,
    I am in a fix trying to decrypt this RSA encrypted
    String ... plzz helpYou're already broken at this point.
    Repeat after me: ciphertext CANNOT be safely represented as a String. Strings have internal structure - if you hand ciphertext to the new String(byte[]) constructor, it will eat your ciphertext and leave you with garbage. Said garbage will fail to decrypt in a variety of puzzling fashions.
    If you want to transmit ciphertext as a String, you need to use something like Base64 to encode the raw bytes. Then, on the receiving side, you must Base64-DEcode back into bytes, and then decrypt the resulting byte[].
    Second - using RSA as a general-purpose cipher is a bad idea. Don't do that. It's slow (on the order of 100x slower than the slowest symmetric cipher). It has a HUGE block size (governed by the keysize). And it's subject to attack if used as a stream-cipher (IIRC - I can no longer find the reference for that, so take it with a grain of salt...) Standard practice is to use RSA only to encrypt a generated key for some symmetric algorithm (like, say, AES), and use that key as a session-key.
    At any rate - the code you posted is broken before you get to this line:byte [] input = encryptedString.getBytes();Go back to the encrypting and and make it stop treating your ciphertext as a String.
    Grant

  • How do I make icons bigger? All icons are way too small for speedy use. no matter what I do they remain too small. Is there a way of getting them the same size as previous versions?

    All icons, such as refresh page, back, forward, stop and home etc; are just too small for comfortable use. For now I am uninstalling Firefox 4 and going back to 3.x. even the zoom page icons are too small.

    "I had read that GarageBand or the Musical Typing there can sometimes not display properly when the resolution is changed."
    Well, did you checked GB after you changed your resolution?
    Which setting did you change to?
    You & I have the same size iMac screen. My resolution setting is 1280x800. Everything fits perfectly in the windows & on desktop including the menu bar.
    All info in my windows are showing. I did not need to adjust my browser font size settings. I am sure you are aware of the browser font size settings. I use FF & the settings are in Preferences>Content.
    In the Finder window you can enlarge the icons & fonts also.
    Finder>View>Show View Options.

  • All of a sudden the screen on my iMac 10,1 is too small for the image. Can't figure out how to reduce the size of the Finder or any of the Apps.

    All of a sudden the screen is too small for the image. Hard to explain, but in order to see the entire Finder window, I must scroll the image up/down, left/right.
    It's not just the Finder though, all of the apps are affected this way too.
    It's probably got something to do with the fact that I have an HDMI cable running from the Mac to a Vizio 42" TV. It's been running this way just fine for over two months though.
    Any ideas?

    You probably accidently zoomed the screen.  Hold down CNTL while scrolling down with the mouse or trackpad to unzoom.  Cntl - scroll up to zoom.
    Regards,
    Captfred

  • I just bought a new PC and I have re-installed my Adobe Creative Suite Standard on it. Software open fine. PROBLEM: The toolbars (menu stuff) appear extra-small, too small for me to read... I sent on the PC setting to try to change the display resolution.

    I just bought a new PC and I have re-installed my Adobe Creative Suite Standard on it.
    Software open fine. PROBLEM: The toolbars (menu stuff) appear extra-small, too small for me to read...
    I went into the PC settings and tried to change the display resolution. This changes the size of all  the icons (not only Adobe) but it does not solve the problem when I open an Adobe application (Photoshop or Illustrator)... The PC is run under Windows 8.1 and my display resolution is 3200x1800 (but again, when I change the settings for a smaller resolution, only the size of the icons is affected. Once I open the software, the problem is still there, extra-small toolbars...). Help!!!

    Anything before CC is not high-DPI compatible. Feel free to continue to experiment with your system settings.
    Mylenium

  • Buffer too small for string - Crystal Report for Vs2010

    Hello,
        I have recently upgrade my VS2010 project to Crystal Report for Visual Studion 2010.
        I have some reports that contains more than 512 characters in the Report Comments section.
        When I try to do a RptDoc.SaveAs(vPath, false) the following error is raised:
    Buffer too small for string or missing null byte.
          at CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.SaveAs in :line 0
          at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.SaveAs in :line 0
          at CrystalDecisions.CrystalReports.Engine.ReportDocument.SaveAs in :line 0
        This line SaveAs was working has expected with Crystal Report 2008. Any idea on why it is not working anymore.
    Thank you.
    Charles

    Hello Don,
        I have start a little project to retest the behavior.
       I have create a new report in Crystal Report 2008 just by clicking New, Finish and Save.
       In a new Windows Application in Vs2010 ,I have added the following Crystal Report Reference.
        CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0
       CrystalDecisions.Shared, Version=13.0.2000.0
    I have then try the following code and found out the limit of ReportComment is 511 but in the Crystal Report 2008 designer and runtime the limit did not apply.
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
          Dim objRpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
          Dim i As Integer = 0
          Try
             objRpt.Load("c:\temp\empty.rpt", CrystalDecisions.Shared.OpenReportMethod.OpenReportByTempCopy)
             Do
                i += 1
                objRpt.SummaryInfo.ReportComments = New String("X", i)
             Loop
             objRpt.SaveAs("c:\temp\dfh_save.rpt", False)
          Catch ex As Exception
             MsgBox("i: " & i)
             MsgBox(ex.Message)
          End Try
    End Sub
         I am able to put has many characters if I insert the report in the Vs2010 Solution.
         If you prefer I can send you my little project.
    Thank you.
    Charles
    <code> should be
    Edited by: Don Williams on Feb 4, 2011 12:47 PM

  • Format Error : mkfs.ocfs2 1.2.7 file system too small for a journal

    Hi All,
    I am trying to implement Oracle 10g RAC on my laptop using vmware and openfiler software . But while executing the command
    #mkfs.ocfs2 -b 4K -C 32K -N 4 -L oracrsfiles /dev/iscsi/crs11/part1
    I am getting the error
    Format Error : mkfs.ocfs2 1.2.7 file system too small for a journal
    Please anybody can help me to resolve this problem.
    Thanks in Advance.

    How large is the device that you are formatting?
    The default journal size depends on the type specified. If none specified,
    then it assumes "mail" which sets the default journal per slot to 256M.
    If database type, default is 64M.
    Use "-T database" to specify database type, etc.
    BTW, one can always override the defaults. Say "-J size=16M" to make
    a smaller journal.
    man mkfs.ocfs2 and the user's guide has more.

  • Paging file is too small for this operation to complete.

    iTunes wont open. When I click on it, all it says is 'Paging file is too small for this operation to complete. Please help =)

    Now it says Aplication Error - The aplication failed to initialize properly (0xc000012d)

  • Default text size in Compressor is too small for normal human eye

    Is there any way to change the text size in Compressor 4 in the windows?  I can't find any.
    The normal default text size is way too small for any normal human being eye to read clearly. 
    Please, have mercy on us, whoever designed the tiny fonts!   Not fair to the rest of us . . .

    Well, guess we folk with not-too-good vision will simply have to keep on trucking the best we can, eh?   We can't enlarge text, so as a result we can't  use software like Compressor like the rest of the population.  Sad to say, especially with a company like Apple . . .  
    Yeah, well I gave the Apple Compressor Team my feedback, just like I've done the last 3 months with other things, then of course the feedback from us all melts into the either, and we never really know if anyone reads it, like they say.  Me thinks not.  This is the only feedback I'll ever get, I'm afraid:
    QUOTE:
    Thank you for your feedback on Compressor.
    We cannot respond to you personally, but please know that your message has been received and will be reviewed by the Compressor Team. If we need to follow up with you on your ideas for improving Compressor, we will contact you directly.
    We appreciate your assistance in making Compressor better.
    Compressor Team
    Apple

  • How can I perform the conversion of pdf files in Cyrillic script to Word files in Cyrillic script. The pdf file is too small for me to read right now. Julyan Watts

    How can I perform the conversion of .pdf files in Cyrillic script to Word files in Cyrillic script. The .pdf file is too small for me to read without a magnifying glass, and the document is more than one thousand pages.

    This answer was not helpful. First of all, I could not find "tech specs"
    anywhere on the Acrobat 11 homepage. And secondly I purchased this software
    for the specific purpose of converting .pdf files to Word. It was only
    after I had completed the purchase that I learnt that Acrobat does not
    permit the conversion of .pdf files in Cyrillic to Word files  in Cyrillic.
    I feel that Acrobat should have provided this crucial information before I
    allowed my credit card to be debited. That is why I  am now asking for my
    money back. But thanks for your attempt to solve my problem, even if it was
    not successful.
    Julyan Watts

  • Yosemite fonts too small for middle aged eyes

    I just updated my desktop to Yosemite and am wishing I hadn't - the designers clearly don't have a clue what happens to normal eyesight in middle age. I am NOT vision impaired - just a little bit short-sighted (-1.5) and a little bit long-sighted (+1) and a little bit astigmatic, with up-to-date glasses that correct my sight properly. I am nonetheless finding using this new OS on my new 1920x1080 (non-Apple) monitor, which worked perfectly with Mavericks, absolute torture - all the text in menus, settings screens etc is just much too small for comfort, at least in the chosen font. In some apps I can use Cmd-+ to increase the font size, but there seems to be nothing I can do about the font sizes in Finder, Preferences etc
    I have read the threads about the reasons and ways to mitigate the problem, and have increased contrast and reduced transparency in the Accessibility settings, and am considering running the script to change the default font back to Lucida Grande. But my point is that I have perfectly normal eyesight (for someone of 53) and have never had any screen problems before, so I shouldn't need to be using the Accessibility settings. I know it is fashionable among designers to create lots of blank white space, but white space doesn't compensate for illegibility!
    I can see from all the threads on this topic that I am not alone. So please Apple, sort this out - usability must come first - and not just for the under 30s!

    Even iBooks on MBP Retina !? 
    I love the iBooks app and use it specifically because of the "Night" appearance option, which turns the page background all black and the font white (similar to inverting the display). Fortunately books' font sizes remain adjustable as big as I want, but - I can no longer see page information (current page number and number of pages left to read) at the bottom of each page.  The page information is barely visible (appears like small dark grey foggy font on a black background). This is very likely also the result of the Yosemite font fiasco.  Not an issue when reading books in "Night" appearance on the iPad, (they didn't break it yet yet in iOS).
    "Digital Books without page numbering information"!
    A Huge design fiasco.

  • Trying to print a smiple 3 1/2 X 6 1/2 envelope and printer says too small for the job.I can print

    Printer gives me an error message saying a 3 1/2 X 6 1/2 envelope is too small for job.  However, I can print other envelopes with no problem.  ex. 4 1/2 X 10.  Printer model is a C6280.

    Set-up a custom envelope with the size that you need.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

Maybe you are looking for

  • My calendars won't sync between iPhone and iPad

    My iPhone and iPad calendars will not sync anymore.  I'm running the latest version of software which at this time is iOS 6.1.3 on both devices.  The calendars just stopped syncing for no reason really I don't know if I hit a setting by accident or a

  • Dolby Audio Driver not working. PLEASE HELP.

    Hi, recently i've been getting a messege when starting up my laptop 'unable to start the dolby audio driver. please restart the computer or reinstall driver if problem persists.' i thought nothing much of it at the time but after that, there are no s

  • Lumia 720 vibration too too low

    I have a LUMIA 720 and its simply awesome. But I have an issue. When in office, I usually put my phone on virbation only. Now if I put my phone on the desk, the vibration is so so so so damn low I can hardly feel it, only when the phone is in hand I

  • Does iMac support Adobe Flash Player?

    Does iMac support Adobe Flash Player?

  • Oracle NoSQL and indexing

    Hi all, I read that there is an index on key value on each node. Does that mean that as soon as we have the good key, there is a full scan on all the values for that key on that node? So to have better performance should we have many keys and fewer v