Changes to LVM2 and udev break LVM2 on LUKS?

Hey all,
After today's update I have an error on boot that I can't seem to figure out. I like many people, got an error when building mkinitcpio during the update. I reran mkinitcpio after the update, there were no errors, everything was great.
Before I explain the issue fully, here is my setup.
I have a lvm on a luks partition. On the lvm resides "/" "/home" and "swap". My mkinitcpio HOOKs line looks like this
HOOKS="base udev autodetect modconf block mdadm_udev encrypt lvm2 filesystems keyboard fsck"
Note that as you might have guessed from "mdadm_udev" I am using a raid, but this array is separate from my critical partitions, such root and home.
Now for my issue.
When I boot the machine, it executes up until the encrypt hook. It prompts for my password to decrypt the volume, which if given correctly, it does nothing for an unusually long time, then it prints
end_request: I/O error, dev fd0, sector 0
I don't have a floppy drive.
I can mount the system from installation media and chroot into the system, and everything seems fine. I checked my lvm.conf file to make sure it included the line "use_lvmetad = 1" which it does. I reran,
mkinitcpio -p linux
This did not solve the issue.
Any thoughts on what could be causing this?
Thanks,
-D
############## UPDATE ###############
Working fix here: https://bbs.archlinux.org/viewtopic.php … 2#p1232092
Bug report here: https://bugs.archlinux.org/task/33851
Last edited by jasonwryan (2013-02-14 19:45:56)

I also use LVM with a configuration similar to Xyne's. I updated this morning and my system booted fine. The only thing unusual about my setup is that I update in chroot from another (minimal) up-to-date Arch system on the same machine. Here's some details, I'm happy to provide anything else if needed.
# fdisk -l /dev/sd?
Disk /dev/sda: 251.1 GB, 251059544064 bytes, 490350672 sectors
Device Boot Start End Blocks Id System
/dev/sda1 2048 2099199 1048576 83 Linux
/dev/sda2 * 2099200 2303999 102400 83 Linux
/dev/sda3 2304000 490350671 244023336 8e Linux LVM
Disk /dev/sdb: 251.1 GB, 251059544064 bytes, 490350672 sectors
Device Boot Start End Blocks Id System
/dev/sdb1 2048 490350671 245174312 8e Linux LVM
Disk /dev/sdc: 251.1 GB, 251059544064 bytes, 490350672 sectors
Device Boot Start End Blocks Id System
/dev/sdc1 2048 490350671 245174312 8e Linux LVM
Note: sda1 is the minimal system, sda2 is /boot for both systems. sda3 and sdb1 make up VG0. sdc1 makes up VG1.
# lvscan
ACTIVE Original '/dev/VG0/lv_root' [5.00 GiB] inherit
ACTIVE Original '/dev/VG0/lv_home' [10.00 GiB] inherit
ACTIVE '/dev/VG0/lv_data' [212.00 GiB] inherit
ACTIVE Original '/dev/VG0/lv_var' [5.71 GiB] contiguous
ACTIVE '/dev/VG0/lv_temp' [10.00 GiB] inherit
ACTIVE '/dev/VG0/lv_build' [10.00 GiB] contiguous
ACTIVE Snapshot '/dev/VG0/ss_root' [5.00 GiB] inherit
ACTIVE Snapshot '/dev/VG0/ss_var' [5.71 GiB] inherit
ACTIVE Snapshot '/dev/VG0/ss_home' [10.00 GiB] inherit
ACTIVE '/dev/VG1/lv_bucket' [230.00 GiB] inherit
ACTIVE '/dev/VG1/lv_swap1' [3.81 GiB] inherit
# cat /etc/mkinitcpio.conf
MODULES="nouveau"
BINARIES=""
FILES=""
HOOKS="timestamp base udev autodetect block lvm2 filesystems fsck shutdown"
COMPRESSION="xz"
COMPRESSION_OPTIONS="-e -9"
I saw something about fd0 when I first ran lvscan after a boot, but it didn't appear again that boot and I haven't tried to reproduce. I also had some errors related to my snapshots during boot:
Feb 13 10:53:18 caddywhompus kernel: device-mapper: table: 254:4: snapshot: Snapshot cow pairing for exception table handover failed
Feb 13 10:53:18 caddywhompus kernel: device-mapper: ioctl: error adding target to table
Feb 13 10:53:18 caddywhompus kernel: device-mapper: table: 254:14: snapshot: Snapshot cow pairing for exception table handover failed
Feb 13 10:53:18 caddywhompus kernel: device-mapper: ioctl: error adding target to table
Note: the first and third lines are "error red"

Similar Messages

  • How to change the header and footer in the Section Breaks Next Page using OpenXML?

    I have a word document file in which I added a Section Break of Next Page, now I want to change the header and footer of that page.
    Scenario of example, I have a doc file which has four pages with headers and footers and added fifth page in the section break next page, I want to change the header and footer of the fifth page only. This is achievable manually by deselecting the Link to Previous
    button in the Word Application but I don't know how to change it using XML?
    My code that adds the new page in the section breaks is:
    class Program
    static void Main(string[] args)
    string path = @"C:\Riyaz\sample.docx";
    string strtxt = "Hello This is done by programmatically";
    OpenAndAddTextToWordDocument(path,strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    using (DocX document = DocX.Load(@"C:\Riyaz\sample.docx"))
    document.InsertSectionPageBreak();
    Paragraph p1 = document.InsertParagraph();
    p1.Append("This is new section");
    document.Save();
    Please help.

    Here is the sample for your reference:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using DocumentFormat.OpenXml;
    using DocumentFormat.OpenXml.Packaging;
    using DocumentFormat.OpenXml.Wordprocessing;
    namespace WordAddNewFooterHeader
    class Program
    static void Main(string[] args)
    string path = @"E:\Document\TestHeaderandfooter-Copy.docx";
    string strtxt = "OpenXML SDK";
    OpenAndAddTextToWordDocument(path, strtxt);
    public static void OpenAndAddTextToWordDocument(string filepath, string txt)
    // Open a WordprocessingDocument for editing using the filepath.
    WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Open(filepath, true);
    MainDocumentPart part = wordprocessingDocument.MainDocumentPart;
    Body body = part.Document.Body;
    //create a new footer Id=rIdf2
    FooterPart footerPart2 = part.AddNewPart<FooterPart>("rIdf2");
    GenerateFooterPartContent(footerPart2);
    //create a new header Id=rIdh2
    HeaderPart headerPart2 = part.AddNewPart<HeaderPart>("rIdh2");
    GenerateHeaderPartContent(headerPart2);
    //replace the attribute of SectionProperties to add new footer and header
    SectionProperties lxml = body.GetFirstChild<SectionProperties>();
    lxml.GetFirstChild<HeaderReference>().Remove();
    lxml.GetFirstChild<FooterReference>().Remove();
    HeaderReference headerReference1 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = "rIdh2" };
    FooterReference footerReference1 = new FooterReference() { Type = HeaderFooterValues.Default, Id = "rIdf2" };
    lxml.Append(headerReference1);
    lxml.Append(footerReference1);
    //add the correlation of last Paragraph
    OpenXmlElement oxl = body.ChildElements.GetItem(body.ChildElements.Count - 2);
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    SectionProperties sectionProperties1 = new SectionProperties() { RsidR = oxl.GetAttribute("rsidR", oxl.NamespaceUri).Value };
    HeaderReference headerReference2 = new HeaderReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.HeaderParts.FirstOrDefault()) };
    FooterReference footerReference2 = new FooterReference() { Type = HeaderFooterValues.Default, Id = part.GetIdOfPart(part.FooterParts.FirstOrDefault()) };
    PageSize pageSize1 = new PageSize() { Width = (UInt32Value)12240U, Height = (UInt32Value)15840U };
    PageMargin pageMargin1 = new PageMargin() { Top = 1440, Right = (UInt32Value)1440U, Bottom = 1440, Left = (UInt32Value)1440U, Header = (UInt32Value)720U, Footer = (UInt32Value)720U, Gutter = (UInt32Value)0U };
    Columns columns1 = new Columns() { Space = "720" };
    DocGrid docGrid1 = new DocGrid() { LinePitch = 360 };
    sectionProperties1.Append(headerReference2);
    sectionProperties1.Append(footerReference2);
    sectionProperties1.Append(pageSize1);
    sectionProperties1.Append(pageMargin1);
    sectionProperties1.Append(columns1);
    sectionProperties1.Append(docGrid1);
    paragraphProperties1.Append(sectionProperties1);
    oxl.InsertAt<ParagraphProperties>(paragraphProperties1, 0);
    body.InsertBefore<Paragraph>(GenerateParagraph(txt, oxl.GetAttribute("rsidRDefault", oxl.NamespaceUri).Value), body.GetFirstChild<SectionProperties>());
    part.Document.Save();
    wordprocessingDocument.Close();
    //Generate new Paragraph
    public static Paragraph GenerateParagraph(string text, string rsidR)
    Paragraph paragraph1 = new Paragraph() { RsidParagraphAddition = rsidR };
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    Tabs tabs1 = new Tabs();
    TabStop tabStop1 = new TabStop() { Val = TabStopValues.Left, Position = 5583 };
    tabs1.Append(tabStop1);
    paragraphProperties1.Append(tabs1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = text;
    run1.Append(text1);
    Run run2 = new Run();
    TabChar tabChar1 = new TabChar();
    run2.Append(tabChar1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    paragraph1.Append(run2);
    return paragraph1;
    static void GenerateHeaderPartContent(HeaderPart hpart)
    Header header1 = new Header();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Header" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    header1.Append(paragraph1);
    hpart.Header = header1;
    static void GenerateFooterPartContent(FooterPart fpart)
    Footer footer1 = new Footer();
    Paragraph paragraph1 = new Paragraph();
    ParagraphProperties paragraphProperties1 = new ParagraphProperties();
    ParagraphStyleId paragraphStyleId1 = new ParagraphStyleId() { Val = "Footer" };
    paragraphProperties1.Append(paragraphStyleId1);
    Run run1 = new Run();
    Text text1 = new Text();
    text1.Text = "";
    run1.Append(text1);
    paragraph1.Append(paragraphProperties1);
    paragraph1.Append(run1);
    footer1.Append(paragraph1);
    fpart.Footer = footer1;
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ALV: How do I suppress repeating values and page breaks on printed output?

    Good day, everyone!
    First, I've done a LOT of searching trying to find the answer to my question, but I'm not finding an answer.  If this has already been answered and you can point me to a URL, I would appreciate it.
    Here's my issue:  I have a rather simple ALV report.  It has the columns of Person ID, Personnel Number, For Period, In Period, and Amount.  I sort by Person ID and Personnel Number, and if the value repeats on the next line of the report, I want to suppress it (make it blank).
    I thought the answer was in the following code, where I set the GROUP attribute to asterisk:
      CLEAR sortcat_ln.
      sortcat_ln-spos      = '1'.
      sortcat_ln-fieldname = 'PERSONID_EXT'.
      sortcat_ln-up        = c_true.
      sortcat_ln-group     = '*'.
      APPEND sortcat_ln TO sortcat.
      CLEAR sortcat_ln.
      sortcat_ln-spos      = '2'.
      sortcat_ln-fieldname = 'PERNR'.
      sortcat_ln-up        = c_true.
      sortcat_ln-group     = '*'.
      APPEND sortcat_ln TO sortcat.
    It looks PERFECT on the screen -- the values are suppressed if they repeat, and everything appears together on one screen.  However, when I print the report, two things happen:  1) The values repeat on each row, even if they are the same, and 2) I get a page break after each Person ID / Personnel Number combination.
    I now realize that I can't use the GROUP attribute.  Is there some other way in ALV to blank these repeating values and keep all the rows together on one page, rather than page breaking after each value change?
    Thanks!
    Dave

    Hi
    Same requirement i had before, when i try to print preview. the output of the grid display is in grouping is ok, but when i print preview or print it doesnt cater the grouping and page breaks, so what i did i modify the internal table use in alv , after hitting the print preview/print with the format desired by the user. you can do that in user-command. see code below
    FORM user_command USING r_ucomm TYPE syucomm
                            rs_selfield TYPE slis_selfield.
      DATA lt_sort TYPE lvc_t_sort.
      CASE r_ucomm.
        WHEN '&RNT_PREV' OR '&RNT'.
          t_final_x[] = t_final[].
          PERFORM clear_redundant.
          PERFORM set_sort_criteria USING lt_sort.
        WHEN '&F03' OR '&PRINT_BACK_PREVIEW'.
          t_final[] = t_final_x[].
        WHEN OTHERS.
      ENDCASE.
    ENDFORM.                    "user_command
    hope it helps

  • Prevent Occurence of list header and page breaks in spool file of ALV Grid

    Prevent Occurence of list header and page breaks in spool file of ALV Grid  Display.
    When we run the ALV in background and create spool request then:
    Spool file output is coming like this.
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    But the required is like this
    Column1 Column2 Column3 Column4
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    data        data        data       data
    Please suggest a posible answer

    Hello all,
    if you have not yet solved this on your own, here is my solution: use a format type that has 60000 lines per page for your spool output device.
    It all depends on the format type that was used for creating the spool output.
    By default (in our system), we have 65 lines per page. And after each page the column headings of the ALV will appear.
    What i did:
    create a new format type via transaction SPAD->full administration->device types->format types (copy an existing one)
    change"Number of Rows" to 60000 or something applicable
    edit the device type of your output device (e.g. LOCL) to contain the newly created format type (via SPAD; Button "Formats" in device type maintenance).
    That's it! Be sure to use this format type for your output device in the "Background Print Parameters" window (-> Button "Properties").
    Regards
    Daniel Klein
    All other parameters you discussed before didn't do it. All ALV-Settings will be overwritten by the output device settings and its print properties.

  • Why would white space and line breaks in sql query increase runtime

    Using 11.2.0.3.0 on unix sprac server, 8 cpus 32 cores 12TB storage. We have 16 batch servers doing inserts and ~100 users doing mostly queries.
    We have a wierd issue,  we have a long query that takes 30 seconds to run 1st time then 10-20 secs every other time. Based on knowledge of DB we expected it to take a lot less.  Then a developer reformatted it by taking removing extra white space and line breaks.  all of sudden query takes 6 secs first time and 0.8 every other time.  we tripled checked to ensure they are identical and that only difference is white space and line breaks.  We tried it with SQLDeveloper, TOAD, SQLPLUS, from out desktops, appserver. we could reproduce it every time, with white space 10-20 secs without it 0.8 secs.  Query is 200 lines long with white space 30 without it.
    Why would having white space make such a dramatic difference?  because the query is longer eventhough its identical?  We checked parsing times, etc, no difference.  Is there some network setting, oracle parameter, sqlnet setting?  We spent hours looking on google and found nother
    Slow:
      SELECT grt_student.student_id                                                                                                                                                                                                 
    AS student_id,
      grt_student.last_name                                                                                                                                                                                                       
    AS last_name,
      grt_student.first_name                                                                                                                                                                                                      
    AS first_name,
      grt_buyerinstance.buyerinstance_id                                                                                                                                                                                            
    AS buyerinstance_id,
      grt_buyerinstance.buyerfamily_id                                                                                                                                                                                              
    AS buyerfamily_id,
      grt_buyer.buyerfamily_acronym                                                                                                                                                                                                 
    AS buyerfamily_acronym,
      grt_reporting_utls_pkg.convert_gmrt_battery(grt_buyerinstance.buyerfamily_id,grt_buyer.battery)                                                                                                                                
    AS battery,
    fast:
    SELECT grt_student.student_id 
    AS student_id,  grt_student.last_name
    AS last_name, grt_student.first_name   AS first_name,  grt_buyerinstance.buyerinstance_id   AS buyerinstance_id,  grt_buyerinstance.buyerfamily_id
    AS buyerfamily_id,
      grt_buyer.buyerfamily_acronym  AS buyerfamily_acronym,  grt_reporting_utls_pkg.convert_gmrt_battery(grt_buyerinstance.buyerfamily_id,grt_buyer.battery)   AS battery,

    Do you have some sort of horrific network connection between the client and the database such that it would take 8.5 seconds to transmit a few kb of SQL to the server?  That seems most unlikely.
    How are you determining the query plan?  Are you absolutely sure that both SQL statements have the same plan_hash_value when they are actually executed (not just when you generate a query plan without executing it)?  What are the differences in wait events when you execute the two?
    The sql_id will change when you add or remove whitespace.  There are various methods of modifying query plans that are tied to a sql_id.  My wager would be that you have a profile/ outline/ etc. that is not there for the reformatted one which is causing a query plan difference.  My next guess is that you have an accepted plan for the old statement, you haven't set up a process to let the plan evolve, and the reformatted statement starts with the plan that the old statement would get if you allowed the plan to evolve.
    Justin

  • Edit templates and change the look and feel of apex UI

    Hi Friends,
    I am trying to change the look and feel of apex pages(change the alignment,color etc) and try to edit the template
    of apex pages. Please give me links or tutorials that helps to accomplish this,
    Thanks,
    Tj

    Hello Tj,
    You can spend some time on how to create your own Template, but it comes down to design your site in html and then break it into pieces and change the Templates in APEX with that html.
    In that html you use tags e.g. #BOX_BODY# to tell APEX where the forms and reports need to come.
    In the doc there are some explanations too: http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/themes.htm#BABBFHJA
    I think the best method is to just try it. Sure we give a course on that too, so it's up to you if you need training on that or the doc/your tries are sufficient or not.
    Once you know how things work you can do pretty much everything.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/

  • Sudden change in Verizon SMTP protocol breaks email clients

    On Friday 8/1/2014 between 10:23 am and 3:12pm EST Verizon's SMTP servers changed from sending the following lines:
    250-AUTH PLAIN LOGIN
    250-AUTH=LOGIN PLAIN
    to these:
    250-AUTH DIGEST-MD5 PLAIN LOGIN CRAM-MD5
    250-AUTH=LOGIN PLAIN
    These two lines are inconsistent and are breaking my MDaemon email client, which now thinks it can authenticate using
    CRAM-MD5 encoding.  This encoding doesn't appear to be supported by Verizon, since I get the following error:
    500 5.7.0 Unknown AUTH error -1 (Internal authentication error).
    I've had no luck using telephone support.  Hopefully someone at Verizon will see this and respond.

    Important Notice: If your MDaemon users authenticate against an Active Directory, you must disable ... honor APOP & CRAM-MD5 under Setup > Default Domain / Servers > Default Domain & Servers > Servers in your MDaemon Server. Otherwise users will not be able to log on to MailStore Server.
    looks like the setting will be in that section.

  • Changing the font and color of html email codes

    I have used some codes from some of you that do protect my email address from bots so for that I am thankful. However, they all come in standard blue with the same font of which I would like to change both. Here is an example of the code that I am using, how would I change the color and font??
    Contact Me
    <script type='text/javascript'>
    Assemble Obfuscated email address and set div id='contactMe' href
    ObsArray = new Array();
    ObsArray.push('mai');
    ObsArray.push('lto');
    ObsArray.push(':');
    ObsArray.push('my'); // your break up email address starts here
    ObsArray.push('name');
    ObsArray.push('@');
    ObsArray.push('mac');
    ObsArray.push('.');
    ObsArray.push('com'); // your break up email address ends here
    function setContactMe() {
    var ObfuscatedHref = '';
    for (ii=0; ii<ObsArray.length; ii++) {
    ObfuscatedHref += ObsArray[ii];
    document.getElementById('contactMe').href = ObfuscatedHref;
    chkEmail = setInterval('checkEmail()', 100);
    function checkEmail() {
    if (document.getElementById('contactMe') != null) {
    setContactMe();
    clearInterval(chkEmail);
    </script>

    p id="contact" Contact Me use < and />either side of p and contact me - sorry couldn't get the text to show correctly.
    <script type='text/javascript'>
    Assemble Obfuscated email address and set div id='contactMe' href
    ObsArray = new Array();
    ObsArray.push('mai');
    ObsArray.push('lto');
    ObsArray.push(':');
    ObsArray.push('my'); // your break up email address starts here
    ObsArray.push('name');
    ObsArray.push('@');
    ObsArray.push('mac');
    ObsArray.push('.');
    ObsArray.push('com'); // your break up email address ends here
    function setContactMe() {
    var ObfuscatedHref = '';
    for (ii=0; ii<ObsArray.length; ii++) {
    ObfuscatedHref += ObsArrayii;
    document.getElementById('contactMe').href = ObfuscatedHref;
    chkEmail = setInterval('checkEmail()', 100);
    function checkEmail() {
    if (document.getElementById('contactMe') != null) {
    setContactMe();
    clearInterval(chkEmail);
    </script>
    <style type="text/css">
    p#contact
    font-size: 2em;
    color: #336699;
    </style>
    Just change the style into something suitable worked for me.
    Message was edited by: Hazell

  • How can I make biscuit and then break it to two parts and have some small pieces?

    Hello there,
    please tell me ..
    How can I make biscuit in AE and then break it to two parts and have some small pieces fall down ?
    any help would be so much appreciated ..

    Strictly inside AE you have two options. Shatter using custom shatter maps and masking + particle effects. Neither would be as conviceing as Dave's solution.
    If you have access to a 3D app (blender is free) you can do it there.
    Here's a 2 minute project in AE with a stock image:
    with a shot of the broken buscuit top animated to fit the split it might be kind of convincing.
    Here's the CS6 AEP project file for you to play with. Take a look at all of the elements to see how this worked by selecting all layers and then pressing the u key twice to see everything I changed.

  • Lock the profit centre change via CJ20N and CNMASS tcodes

    Hi Friends,
    I have a requirement where in user should not be allowed to change the profit centre of Project Definition and WBS via tcode CJ20N and change the profit centre of Project Definition, WBS, Netowok and Activity via tcode CNMASS.
    I could achieve the profit centre lock for PD, WBS and Network by Implementing BADIs PROJECTDEF_UPDATE, WORKBREAKDOWN_UPDATE and WORKORDER_UPDATE.. The implemented BADI 'WORKORDER_UPDATE 'is reachable while changing profit centre of Activiy as well. But the details of the changes of activity is not visibile inside BADI.
    If anybody has any input for this, it would be appreciated.
    Thanks,
    RK

    Thanks Martin,
    Small scenario here..I have created a Validation and In prerequisite of Step001, I have kept a condition Transaction Code = CNMASS. Structure AFVGD is visible.
    I have created an Exit PLOCK, but when I keep a Break Point in the ABAP Routine of PLOCK(Both soft and hard Break Points), the Control doesnt stop in those break points when I run the transaction CNMASS.
    I think some understanding in the concept is missing in my part. Please suggest to help me fill this gap.
    Regards,
    RK

  • I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help.

    I got an iPhone 4 a week ago. I synced my iTunes once and now I want to change what albums and playlists are on my phone. When I try to do this, iTunes threatens to remove all my apps. Of course, Apple's support is no help. I know there has to be a way to add and remove whole albums and playlists like on the music tab on the device, so please don't tell me to uncheck/delete everything from my iTunes that I don't want and re-sync. That is not helpful and not the issue. How do I get around it threatening to remove all my apps?

    On the MacBook, go to System Preferences > Security & Privacy > Privacy > Advanced > Disable remote control

  • I have added/embedded four videos on my website, but when I scroll down, the videos scroll in front of the top menu instead of behind as it should. I have tried changing layers, etc., and nothing works. Can you help?

    I have embedded 4 videos on my website. It is a single page, scrolling site. When I scroll down, the videos scroll in front of the top menu bar, instead of behind it. I have tried changing layers, etc., and nothing works. Please help.
    Thanks.
    Paul W. Norman

    Hi,
    Kindly create a new layer, via the Layers panel:
    Then, right click on the navigation bar, and choose Move to Layer > Layer 2
    Ensure that Layer 2 is on top of the other layers.
    Hope it helps,
    Sonam

  • When I try to turn on my homesharing on apple TV it says that either my apple id doesn't exist or the password is wrong. However, I've been using the id for almost half a year and I even changed my password and it still wouldn't work. How do I fix this?

    When I try to turn on my homesharing on apple TV it says that either my apple id doesn't exist or the password is wrong. However, I've been using the id for almost half a year and I even changed my password and it still wouldn't work. What can I do to fix this?

    Not sure if this Term is Relevant towards an iPhone but, my iPhone won't Post unless if it's plugged into a Charger.

  • Want to change company logo and address.

    Hi all,
    Here i have one Standard print report "SAPF130K" for customer or vendor balance conformation . But when i run this report this time i get logo of company "IDES HOLDING AG" and getting address of this company. but customer number and his address get properly but now i want to get my company logo place of this "ides holding ag" . For this i find many thing in SE71 tcode but i am still not able to change this logo and address so can u please kindly help me out how can i change this both.
    Thanks in Advance.
    Keyur

    @  Anurag_N: This is not ALV, but SAP SCRIPT report.
    Hello,
    This standard report is using form F130_CONFIRM_01 for the printing purpose.
    Please check in this form, how you can handle ur logo.
    R u doing any config for printing this report for the form etc?
    This text is coming from the window ADDRESS and the below inlude:
    INCLUDE &T001G-TXTAB& OBJECT TEXT ID ADRS LANGUAGE &T001-SPRAS&, where &T001G-TXTAB& for me is coming as
    ADRS_SENDER.
    So, just add ur logo in the standard text ADRS_SENDER in SO10, you will c it in the sap script layout.
    But, i am not sure how this variable &T001G-TXTAB&  gets populated and if it will get changed for soem other value.
    Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:30 PM
    Edited by: Kanwardeep Singh Gill on Apr 9, 2010 12:35 PM

  • Can't get past Change in Terms and Conditions when trying to download from the App store

    So, I noticed that this was a problem back in 2012, and was somehow resolved, but I am experiencing it now on my Macbook Pro. When I try to download and app, a window pops up stating that Apple has changed its terms and conditions and that I need to agree to them. So I scroll through, open to full frame in order to check the agree box, and nothing happens. Is there another box I am missing? Should I be redirected to another screen? When I click back to purchase, it asks me again to read the terms and conditions.
    This same thing happened on my iphone 5, but when I clicked agree, it asked me a few more times, but then allowed me to continue with updates.

    Apple servers are overloaded with the release of iOS 7.

Maybe you are looking for

  • How can i use a Property as Link in the Resource Renderer Setings

    Hi to all, i have created a Propertry with the name SFS_NewsLink. The content of this Property is http://<server>.<domain>/path/sitemap Now, how can i use this property in the Visible Propertis? i dont will use use the default "contentLink" i will us

  • How to make your folder list appear at the top when opening a finder window

    Sorry if this has been asked before but couldn't find it in the threads... About the only thing I miss from Windows, is the way file mgr displays list in folders, i.e. starting with folders, then listing the files. Any way we can do this in Leopard??

  • PDF issues in Preview

    I use pdf's all of the time for looking a primary literature online, and this problem certainly does not occur on every, or even the majority, of pdf's that I view. When opening some pdf files the scrolling is extremely jerky (especially between page

  • Slow webpage loading (using dsl connection)

    Hi, I've been having some huge slowdowns upon browsing the web (just loading google takes some time, sites does not load at normal speed, browsing is not that usable 100%). I've confirmed this that it only occurs on Arch because when I try browsing o

  • [SOLVED] ldconfig: /usr/lib/libOpenCL.so.1 is not a symbolic link

    Hi. I use 64 bits arch with gnome and the ATI driver 13.6 beta installed from the AMD binary and I usually execute steam. Everything seem fine, but recently I receive a message when I update any package with pacman ldconfig: /usr/lib/libOpenCL.so.1 i