# symbol to be removed

Hello friends,
I have a problem while loading master data . i am using 0 material and while loading master data one of the attribute contains # symbols in few records.
I had written routine in update rule to solve this but still it shows error and the symbol is not replaced . but the same routine works and replaces the # symbol in development system.
Could some one suggest me on this?
thanks in advance
Ram

1st you go to the failed request and delete the request.
Go to PSA and remove the # sign.
Save and activate.
Come back to the monitor tab and there check the "Read everything manually" icon.
Go to scheduler tab and start loading.
If the # sign records were less means you have to do this procedure.
1st you go to the failed request and delete the request.
If the records were huge means go to RSKC.
There you have to add the # sign character and save it and come back.
Then go to Scheduler tab and start loading.
Hope it will helps you....

Similar Messages

  • How InDesign comes to know about any changes on document, but not saved. As it shows * on the name of document when it is opened and any changes. And after saving * symbol is get removed from the name of document. How and where indesign@ handles this?

    How InDesign comes to know about any changes on document, but not saved. As it shows * on the name of document when it is opened and any changes.
    And after saving * symbol is get removed from the name of document. How and where indesign@ handles this?

    Are you just asking because you want to know, or do you have a problem you need to solve? I don't know how to write a program, but I think what your are describing is not an unusual thing for a  program to do. The * tells you that changes have been made since the last save, and the program reserves a portion of memory for undo functions. I suppose a coder could tell you how it works, but I don't think it would help an average user to know, but that's just my opinion.

  • Update Symbol and Symbol Script without removing from Document library

    Is there a way in fireworks CS5.1 to update a symbol and the corresponding symbol script without removing it from the document library like it suggests in the below article
    http://www.adobe.com/designcenter/fireworks/articles/frwcs3_richsymbol_print.html

    I have done some more research on this question and there appears to be no way to update a symbol script without removing it from the document library, hopefully this bug will be patched in the near future

  • In mapping & symbol should be removed

    Hi Experts,
    I am doing one scenario file to idoc.
    In my file structure i am getting '&' symbol and should be mapped to idoc structure.
    But '&' symbol should be removed and get mapped to target structure.
    In idoc i should not find '&'.
    I have tried with replace string and varialble substitution but it not worked.
    Can you please advise how this can acheive.
    Thank,
    Bhaskar

    Hi Shabharish,
      We have function replace value, with this function can my prob solve?
    or instead of java maping can i go for UDF?
    How can change & symbol to &amp in XML coding?
    Appreciate your inputs
    Thanks,
    Bhaskar

  • App update notification symbol will not remove

    I have a notification symbol (lback circle with red asterisk) on the top of the screen, under the date, on the Storm 9530.  I have upgraded to version 5.0.  I cannot seem to remove the symbol and all the applications appear to be updated.  I have tried to delete and remove the Quickpull app as it locks the system.  When I delete the Quickpull it also deletes App World.  When I then reload App World the symbol reappears and the QuickPull app shows as being archived.  Any suggestions?

    Open your Messages application (click the icon on the homescreen). Search through for an unread message from AppWorld (sorry, I can't recall what exactly it looks like). Delete the message and the notification icon will go away. If you can't easily find it in Messages, you might have to click the BBKey and select View Folders...then go one by one through all folders to find the message. Or you can use the Search function -- search for unreads from all message services. One way or another, you must find the unread message from AppWorld and delete it. Only then will the notification icon go away.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Remove symbol or stop points?

    Hello!
    I am currently doing game design at university and Have recently started looking at action script 3. I am not struggling too much and can usually find the answer to what I am looking for but this really has me stumped. I want to add an item to a game I am making so that when it is touched it gives some points and disappears. We have been taught to do this (so far) with hitTestObject and I am having an issue where I can get the symbol of the item to disappear but it I stay in the position I keep gaining points. I have tried looking this up but I am not finding anything that works. So any help would be greatly appreciated as I feel like throwing this laptop out of a window right now
    This is what I have for my 'coin' right now, please excuse anything crazy as I am only just learning action script and probably have something crazy in there
    // if character touches coin
    if (thief_mc.hitTestObject(coin_mc)){
    if(stage.contains(coin_mc))
    removeChild(coin_mc);
    // increase points by 5
    score += 5;
    score_txt.text=String(score);
    Is there a way to stop at 5 points for the symbol or to remove it to stop any other points being gained?

    something else is causing your points to increase.  use a trace() function to confirm:
    // if character touches coin
    if (thief_mc.hitTestObject(coin_mc)){
    if(stage.contains(coin_mc))
    removeChild(coin_mc);
    // increase points by 5
    trace("coin_mc hit");
    score += 5;
    score_txt.text=String(score);
    Is there a way to stop at 5 points for the symbol or to remove it to stop any other points being gained?

  • Illustrator script to create symbols from images in folder

    Time to give back to the community...
    Here is a script I recently devised to bulk create symbols from images in a folder. Tested with Illustrator CC 2014.
    // Import Folder's Files as Symbols - Illustrator CC script
    // Description: Creates symbols from images in the designated folder into current document
    // Author     : Oscar Rines (oscarrines (at) gmail.com)
    // Version    : 1.0.0 on 2014-09-21
    // Reused code from "Import Folder's Files as Layers - Illustrator CS3 script"
    // by Nathaniel V. KELSO ([email protected])
    #target illustrator
    function getFolder() {
      return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function symbolExists(seekInDoc, seekSymbol) {
        for (var j=0; j < seekInDoc.symbols.length; j++) {
            if (seekInDoc.symbols[j].name == seekSymbol) {
                return true;
        return false;
    function importFolderContents(selectedFolder) {
        var activeDoc = app.activeDocument;     //Active object reference
      // if a folder was selected continue with action, otherwise quit
      if (selectedFolder) {
            var newsymbol;              //Symbol object reference
            var placedart;              //PlacedItem object reference
            var fname;                  //File name
            var sname;                  //Symbol name
            var symbolcount = 0;        //Number of symbols added
            var templayer = activeDoc.layers.add(); //Create a new temporary layer
            templayer.name = "Temporary layer"
            var imageList = selectedFolder.getFiles(); //retrieve files in the folder
            // Create a palette-type window (a modeless or floating dialog),
            var win = new Window("palette", "SnpCreateProgressBar", {x:100, y:100, width:750, height:310});
            win.pnl = win.add("panel", [10, 10, 740, 255], "Progress"); //add a panel to contain the components
            win.pnl.currentTaskLabel = win.pnl.add("statictext", [10, 18, 620, 33], "Examining: -"); //label indicating current file being examined
            win.pnl.progBarLabel = win.pnl.add("statictext", [620, 18, 720, 33], "0/0"); //progress bar label
            win.pnl.progBarLabel.justify = 'right';
            win.pnl.progBar = win.pnl.add("progressbar", [10, 35, 720, 60], 0, imageList.length-1); //progress bar
            win.pnl.symbolCount = win.pnl.add("statictext", [10, 70, 710, 85], "Symbols added: 0"); //label indicating number of symbols created
            win.pnl.symbolLabel = win.pnl.add("statictext", [10, 85, 710, 100], "Last added symbol: -"); //label indicating name of the symbol created
            win.pnl.errorListLabel = win.pnl.add("statictext", [10, 110, 720, 125], "Error log:"); //progress bar label
            win.pnl.errorList = win.pnl.add ("edittext", [10, 125, 720, 225], "", {multiline: true, scrolling: true}); //errorlist
            //win.pnl.errorList.graphics.font = ScriptUI.newFont ("Arial", "REGULAR", 7);
            //win.pnl.errorList.graphics.foregroundColor = win.pnl.errorList.graphics.newPen(ScriptUIGraphics.PenType.SOLID_COLOR, [1, 0, 0, 1], 1);
            win.doneButton = win.add("button", [640, 265, 740, 295], "OK"); //button to dispose the panel
            win.doneButton.onClick = function () //define behavior for the "Done" button
                win.close();
            win.center();
            win.show();
            //Iterate images
            for (var i = 0; i < imageList.length; i++) {
                win.pnl.currentTaskLabel.text = 'Examining: ' + imageList[i].name; //update current file indicator
                win.pnl.progBarLabel.text = i+1 + '/' + imageList.length; //update file count
                win.pnl.progBar.value = i+1; //update progress bar
                if (imageList[i] instanceof File) {         
                    fname = imageList[i].name.toLowerCase(); //convert file name to lowercase to check for supported formats
                    if( (fname.indexOf('.eps') == -1) &&
                        (fname.indexOf('.png') == -1)) {
                        win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a supported type.\r'; //log error
                        continue; // skip unsupported formats
                    else {
                        sname = imageList[i].name.substring(0, imageList[i].name.lastIndexOf(".") ); //discard file extension
                        // Check for duplicate symbol name;
                        if (symbolExists(activeDoc, sname)) {
                            win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Duplicate symbol for name: ' + sname + '\r'; //log error
                        else {
                            placedart = activeDoc.placedItems.add(); //get a reference to a new placedItem object
                            placedart.file = imageList[i]; //link the object to the image on disk
                            placedart.name =  sname; //give the placed item a name
                            placedart.embed();   //make this a RasterItem
                            placedart = activeDoc.rasterItems.getByName(sname); //get a reference to the newly created raster item
                            newsymbol = activeDoc.symbols.add(placedart); //add the raster item to the symbols                 
                            newsymbol.name = sname; //name the symbol
                            symbolcount++; //update the count of symbols created
                            placedart.remove(); //remove the raster item from the canvas
                            win.pnl.symbolCount.text = 'Symbols added: ' + symbolcount; //update created number of symbols indicator
                            win.pnl.symbolLabel.text = 'Last added symbol: ' + sname; //update created symbol indicator
                else {
                    win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a regular file.\r'; //log error
                win.update(); //required so pop-up window content updates are shown
            win.pnl.currentTaskLabel.text = ''; //clear current file indicator
            // Final verdict
            if (symbolcount >0) {
                win.pnl.symbolLabel.text = 'Symbol library changed. Do not forget to save your work';
            else {
                win.pnl.symbolLabel.text = 'No new symbols added to the library';
            win.update(); //update window contents
            templayer.remove(); //remove the temporary layer
        else {
            alert("Action cancelled by user");
    if ( app.documents.length > 0 ) {
        importFolderContents( getFolder() );
    else{
        Window.alert("You must open at least one document.");

    Thank you, nice job & I am looking forward to trying it out!

  • Package, symbolic link in Prototype

    Hi, I have a little problem concerning the Prototype file created by pkgproto.
    On my systems the /usr/local can be 3 different thing :
    /usr/local = symbolic links to /opt/local
    /usr/local = symbolic links to /export/opt
    /usr/local = directory /usr/local
    Is there any way to build a package which will support all kind of installation without modifying the current /usr/local.
    What I found is if you build your package defining /usr/local as a directory and installing that package on a system whitch /usr/local is a symbolic link it removes the link and create a directory.
    The only solution I found so far is to omit the /usr/local entry in the Prototype which report an error but still work as long as the /usr/local exist in a way or an other.

    /usr/local = symbolic links to /opt/local
    /usr/local = symbolic links to /export/opt
    /usr/local = directory /usr/localYou should really try to clean this up so it's consistent across all of your machines.
    Since some are links and one is real, your kinda stuck on this one.
    You might opt to create a new directory structure that is consistent across all machines.
    alan

  • Why was the link button removed from the piano roll?

    Why was the LINK (chain) button removed from the piano roll? This makes Logic X useless to me as I can no longer compose or perform new lines based on previous midi performances. PLEASE BRING IT BACK!

    I miss that button too and just filled out the LX Feedback form (Menubar -> Logix Pro X-> Feedback) with the following text. Maybe if you guys did the same, we had a chance revive this essetial feature!!!
    thanks!
    Sebi
    Hi there,
    it seems as if the Link Button (Yellow chain symbol) has been removed from the piano roll for no reason. In Score View it is still there.
    I (and probably more users) absolutely NEED that Button to decouple the content of the piano roll from the selected track/region AND to use multiple piano roll windows with independent content.
    - For transscripting (Mute/Solo Audio regions while editing a Midi-Region)
    - For arranging. Edit 2 different midi regions both in separate Piano Roll windows
    - For recording. "Reading" Drum-Patterns while recording the Bass e.g.
    Please bring that button back or explain why it was removed
    Best regards,

  • Ldconfig: /usr/lib/libMonoSupportW.so is not a symbolic link

    I've noticed this error message came up after this week's general updates and wonder what is the issue?
    I can pacman -Syu fine and completed any updates, but the above message always shows up after the updates completed.

    debug: extracting /usr/lib/systemd/system/systemd-udev-trigger.service
    debug: extracting /usr/lib/systemd/system/proc-sys-fs-binfmt_misc.mount
    debug: extracting /usr/lib/systemd/system/suspend.target
    debug: extracting /usr/lib/systemd/system/runlevel2.target.wants/
    debug: extracting /usr/lib/systemd/system/[email protected]
    debug: extracting /usr/lib/systemd/system/[email protected]
    debug: extracting /usr/lib/systemd/system/runlevel6.target
    debug: extract: skipping dir extraction of usr/lib/systemd/system/multi-user.target.wants/
    debug: extracting /usr/lib/systemd/system/halt.target
    debug: extracting /usr/lib/systemd/system/multi-user.target
    debug: extracting /usr/lib/systemd/system/systemd-update-utmp-shutdown.service
    debug: extract: skipping dir extraction of usr/lib/systemd/system/sockets.target.wants/
    debug: extracting /usr/lib/systemd/system/[email protected]
    debug: extracting /usr/lib/systemd/system/systemd-quotacheck.service
    debug: extracting /usr/lib/systemd/system/systemd-user-sessions.service
    debug: extracting /usr/lib/systemd/system/systemd-modules-load.service
    debug: extracting /usr/lib/systemd/system/poweroff.target
    debug: extracting /usr/lib/systemd/system/dbus-org.freedesktop.login1.service
    debug: extracting /usr/lib/systemd/system/sys-kernel-debug.mount
    debug: extracting /usr/lib/systemd/system/runlevel1.target
    debug: extracting /usr/lib/systemd/system/printer.target
    debug: extracting /usr/lib/systemd/system/systemd-readahead-done.timer
    debug: extracting /usr/lib/systemd/system/systemd-ask-password-wall.service
    debug: extracting /usr/lib/systemd/system/systemd-halt.service
    debug: extracting /usr/lib/systemd/system/systemd-poweroff.service
    debug: extracting /usr/lib/systemd/system/systemd-readahead-replay.service
    debug: extracting /usr/lib/systemd/system/reboot.target
    debug: extracting /usr/lib/systemd/system/systemd-tmpfiles-clean.timer
    debug: extracting /usr/lib/systemd/system/systemd-udevd-control.socket
    debug: extracting /usr/lib/systemd/system/runlevel4.target.wants/
    debug: extracting /usr/lib/systemd/system/swap.target
    debug: extracting /usr/lib/systemd/system/systemd-vconsole-setup.service
    debug: extracting /usr/lib/systemd/system/systemd-journald.service
    debug: extract: skipping dir extraction of usr/lib/systemd/system/basic.target.wants/
    debug: extracting /usr/lib/systemd/system/systemd-sysctl.service
    debug: extracting /usr/lib/systemd/system/mail-transfer-agent.target
    debug: extracting /usr/lib/systemd/system/systemd-shutdownd.service
    debug: extracting /usr/lib/systemd/system/[email protected]
    debug: extracting /usr/lib/systemd/system/systemd-random-seed-save.service
    debug: extracting /usr/lib/systemd/system/runlevel1.target.wants/
    debug: extracting /usr/lib/systemd/system/nss-user-lookup.target
    debug: extracting /usr/lib/systemd/system/dbus-org.freedesktop.hostname1.service
    debug: extracting /usr/lib/systemd/system/sound.target
    debug: extracting /usr/lib/systemd/system/system-update.target
    debug: extracting /usr/lib/systemd/system/sys-fs-fuse-connections.mount
    debug: extracting /usr/lib/systemd/system/console-getty.service
    debug: extracting /usr/lib/systemd/system/basic.target
    debug: extracting /usr/lib/systemd/system/systemd-logind.service
    debug: extracting /usr/lib/systemd/system/systemd-tmpfiles-setup.service
    debug: extracting /usr/lib/systemd/system/systemd-timedated.service
    debug: extracting /usr/lib/systemd/system/local-fs.target.wants/
    debug: extracting /usr/lib/systemd/system/systemd-binfmt.service
    debug: extracting /usr/lib/systemd/system/systemd-tmpfiles-clean.service
    debug: extracting /usr/lib/systemd/system/[email protected]
    debug: extracting /usr/lib/systemd/system/local-fs-pre.target
    debug: extracting /usr/lib/systemd/system/syslog.target
    debug: extracting /usr/lib/systemd/system/rescue.target
    debug: extracting /usr/lib/systemd/system/runlevel4.target
    debug: extracting /usr/lib/systemd/system/systemd-ask-password-wall.path
    debug: extracting /usr/lib/systemd/system/systemd-initctl.service
    debug: extracting /usr/lib/systemd/system/emergency.target
    debug: extracting /usr/lib/systemd/system/default.target
    debug: extracting /usr/lib/systemd/system/runlevel5.target
    debug: extracting /usr/lib/systemd/system/ctrl-alt-del.target
    debug: extracting /usr/lib/systemd/system/shutdown.target
    debug: extracting /usr/lib/systemd/system/systemd-journald.socket
    debug: extracting /usr/lib/systemd/system/remote-fs-pre.target
    debug: extracting /usr/lib/systemd/system/tmp.mount
    debug: extracting /usr/lib/systemd/system/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/console-shell.service
    debug: extracting /usr/lib/systemd/system/systemd-localed.service
    debug: extracting /usr/lib/systemd/system/systemd-initctl.socket
    debug: extracting /usr/lib/systemd/system/systemd-random-seed-load.service
    debug: extracting /usr/lib/systemd/system/systemd-readahead-drop.service
    debug: extracting /usr/lib/systemd/system/systemd-journal-flush.service
    debug: extracting /usr/lib/systemd/system/sysinit.target
    debug: extracting /usr/lib/systemd/system/umount.target
    debug: extracting /usr/lib/systemd/system/final.target
    debug: extracting /usr/lib/systemd/system/http-daemon.target
    debug: extracting /usr/lib/systemd/system/smartcard.target
    debug: extracting /usr/lib/systemd/system/debug-shell.service
    debug: extracting /usr/lib/systemd/system/time-sync.target
    debug: extracting /usr/lib/systemd/system/systemd-udev-settle.service
    debug: extracting /usr/lib/systemd/system/nss-lookup.target
    debug: extract: skipping dir extraction of usr/lib/systemd/system/sysinit.target.wants/
    debug: extracting /usr/lib/systemd/system/hibernate.target
    debug: extracting /usr/lib/systemd/system/systemd-udevd.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-console.path
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/cryptsetup.target
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/dev-hugepages.mount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/sys-kernel-config.mount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/dev-mqueue.mount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/proc-sys-fs-binfmt_misc.automount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-udev-trigger.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-modules-load.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/sys-kernel-debug.mount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-vconsole-setup.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-journald.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-sysctl.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/sys-fs-fuse-connections.mount
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-tmpfiles-setup.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-binfmt.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-random-seed-load.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-journal-flush.service
    debug: extracting /usr/lib/systemd/system/sysinit.target.wants/systemd-udevd.service
    debug: extracting /usr/lib/systemd/system/local-fs.target.wants/systemd-fsck-root.service
    debug: extracting /usr/lib/systemd/system/local-fs.target.wants/systemd-remount-fs.service
    debug: extracting /usr/lib/systemd/system/local-fs.target.wants/tmp.mount
    debug: extracting /usr/lib/systemd/system/runlevel1.target.wants/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/basic.target.wants/systemd-tmpfiles-clean.timer
    debug: extracting /usr/lib/systemd/system/runlevel4.target.wants/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/sockets.target.wants/systemd-udevd-kernel.socket
    debug: extracting /usr/lib/systemd/system/sockets.target.wants/systemd-shutdownd.socket
    debug: extracting /usr/lib/systemd/system/sockets.target.wants/systemd-udevd-control.socket
    debug: extracting /usr/lib/systemd/system/sockets.target.wants/systemd-journald.socket
    debug: extracting /usr/lib/systemd/system/sockets.target.wants/systemd-initctl.socket
    debug: extracting /usr/lib/systemd/system/multi-user.target.wants/getty.target
    debug: extracting /usr/lib/systemd/system/multi-user.target.wants/systemd-user-sessions.service
    debug: extracting /usr/lib/systemd/system/multi-user.target.wants/systemd-logind.service
    debug: extracting /usr/lib/systemd/system/multi-user.target.wants/systemd-ask-password-wall.path
    debug: extracting /usr/lib/systemd/system/runlevel2.target.wants/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/runlevel3.target.wants/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/runlevel5.target.wants/systemd-update-utmp-runlevel.service
    debug: extracting /usr/lib/systemd/system/shutdown.target.wants/systemd-update-utmp-shutdown.service
    debug: extracting /usr/lib/systemd/system/shutdown.target.wants/systemd-random-seed-save.service
    debug: extracting /usr/lib/systemd/system-generators/systemd-cryptsetup-generator
    debug: extracting /usr/lib/systemd/system-generators/systemd-system-update-generator
    debug: extracting /usr/lib/systemd/system-generators/systemd-fstab-generator
    debug: extracting /usr/lib/systemd/system-generators/systemd-getty-generator
    debug: extracting /usr/lib/systemd/user/sockets.target
    debug: extracting /usr/lib/systemd/user/bluetooth.target
    debug: extracting /usr/lib/systemd/user/systemd-exit.service
    debug: extracting /usr/lib/systemd/user/printer.target
    debug: extracting /usr/lib/systemd/user/exit.target
    debug: extracting /usr/lib/systemd/user/sound.target
    debug: extracting /usr/lib/systemd/user/default.target
    debug: extracting /usr/lib/systemd/user/shutdown.target
    debug: extracting /usr/lib/tmpfiles.d/x11.conf
    debug: extracting /usr/lib/tmpfiles.d/systemd.conf
    debug: extracting /usr/lib/tmpfiles.d/legacy.conf
    debug: extracting /usr/lib/tmpfiles.d/tmp.conf
    debug: extracting /usr/lib/tmpfiles.d/console.conf
    debug: extracting /usr/lib/security/pam_systemd.so
    debug: extract: skipping dir extraction of usr/lib/initcpio/hooks/
    debug: extract: skipping dir extraction of usr/lib/initcpio/install/
    debug: extracting /usr/lib/initcpio/install/timestamp
    debug: extracting /usr/lib/initcpio/install/udev
    debug: extracting /usr/lib/initcpio/hooks/udev
    debug: extract: skipping dir extraction of var/
    debug: extract: skipping dir extraction of var/lib/
    debug: extracting /var/lib/systemd/
    debug: updating database
    debug: adding database entry 'systemd'
    debug: writing systemd-192-1 DESC information back to db
    debug: writing systemd-192-1 FILES information back to db
    debug: adding entry 'systemd' in 'local' cache
    debug: executing ". /tmp/alpm_RvH59t/.INSTALL; post_upgrade 192-1 189-4"
    debug: executing "/bin/sh" under chroot "/"
    debug: call to waitpid succeeded
    New optional dependencies for systemd
    quota-tools: kernel-level quota management
    upgrading xkeyboard-config...
    debug: upgrading package xkeyboard-config-2.7-1
    debug: removing old package first (xkeyboard-config-2.6-1)
    debug: removing 426 files
    debug: keeping directory /var/lib/xkb/ (contains files)
    debug: keeping directory /var/lib/ (contains files)
    debug: keeping directory /var/ (contains files)
    debug: unlinking /usr/share/pkgconfig/xkeyboard-config.pc
    debug: keeping directory /usr/share/pkgconfig/ (contains files)
    debug: unlinking /usr/share/locale/zh_TW/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/zh_TW/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/zh_TW/ (contains files)
    debug: unlinking /usr/share/locale/zh_CN/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/zh_CN/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/zh_CN/ (contains files)
    debug: unlinking /usr/share/locale/vi/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/vi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/vi/ (contains files)
    debug: unlinking /usr/share/locale/uk/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/uk/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/uk/ (contains files)
    debug: unlinking /usr/share/locale/tr/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/tr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/tr/ (contains files)
    debug: unlinking /usr/share/locale/sv/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/sv/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sv/ (contains files)
    debug: unlinking /usr/share/locale/sr/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/sr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sr/ (contains files)
    debug: unlinking /usr/share/locale/sq/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/sq/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sq/ (contains files)
    debug: unlinking /usr/share/locale/sl/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/sl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sl/ (contains files)
    debug: unlinking /usr/share/locale/sk/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/sk/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sk/ (contains files)
    debug: unlinking /usr/share/locale/rw/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/rw/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/rw/ (contains files)
    debug: unlinking /usr/share/locale/ru/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ru/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ru/ (contains files)
    debug: unlinking /usr/share/locale/ro/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ro/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ro/ (contains files)
    debug: unlinking /usr/share/locale/pl/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/pl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pl/ (contains files)
    debug: unlinking /usr/share/locale/nl/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/nl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nl/ (contains files)
    debug: unlinking /usr/share/locale/nb/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/nb/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nb/ (contains files)
    debug: unlinking /usr/share/locale/lt/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/lt/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/lt/ (contains files)
    debug: unlinking /usr/share/locale/ky/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ky/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ky/ (contains files)
    debug: unlinking /usr/share/locale/ko/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ko/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ko/ (contains files)
    debug: unlinking /usr/share/locale/ka/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ka/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ka/ (contains files)
    debug: unlinking /usr/share/locale/ja/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ja/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ja/ (contains files)
    debug: unlinking /usr/share/locale/it/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/it/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/it/ (contains files)
    debug: unlinking /usr/share/locale/id/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/id/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/id/ (contains files)
    debug: unlinking /usr/share/locale/hu/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/hu/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/hu/ (contains files)
    debug: unlinking /usr/share/locale/gl/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/gl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/gl/ (contains files)
    debug: unlinking /usr/share/locale/fr/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/fr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fr/ (contains files)
    debug: unlinking /usr/share/locale/fi/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/fi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fi/ (contains files)
    debug: unlinking /usr/share/locale/es/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/es/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/es/ (contains files)
    debug: unlinking /usr/share/locale/eo/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/eo/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/eo/ (contains files)
    debug: unlinking /usr/share/locale/en_GB/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/en_GB/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/en_GB/ (contains files)
    debug: unlinking /usr/share/locale/el/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/el/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/el/ (contains files)
    debug: unlinking /usr/share/locale/de/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/de/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/de/ (contains files)
    debug: unlinking /usr/share/locale/da/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/da/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/da/ (contains files)
    debug: unlinking /usr/share/locale/cs/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/cs/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/cs/ (contains files)
    debug: unlinking /usr/share/locale/crh/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/crh/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/crh/ (contains files)
    debug: unlinking /usr/share/locale/ca/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/ca/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ca/ (contains files)
    debug: unlinking /usr/share/locale/bg/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/bg/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/bg/ (contains files)
    debug: unlinking /usr/share/locale/az/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/az/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/az/ (contains files)
    debug: unlinking /usr/share/locale/af/LC_MESSAGES/xkeyboard-config.mo
    debug: keeping directory /usr/share/locale/af/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/af/ (contains files)
    debug: keeping directory /usr/share/locale/ (contains files)
    debug: unlinking /usr/share/licenses/xkeyboard-config/COPYING
    debug: removed directory /usr/share/licenses/xkeyboard-config/ (no remaining owners)
    debug: keeping directory /usr/share/licenses/ (contains files)
    debug: unlinking /usr/share/X11/xkb/types/pc
    debug: unlinking /usr/share/X11/xkb/types/numpad
    debug: unlinking /usr/share/X11/xkb/types/nokia
    debug: unlinking /usr/share/X11/xkb/types/mousekeys
    debug: unlinking /usr/share/X11/xkb/types/level5
    debug: unlinking /usr/share/X11/xkb/types/iso9995
    debug: unlinking /usr/share/X11/xkb/types/extra
    debug: unlinking /usr/share/X11/xkb/types/default
    debug: unlinking /usr/share/X11/xkb/types/complete
    debug: unlinking /usr/share/X11/xkb/types/caps
    debug: unlinking /usr/share/X11/xkb/types/cancel
    debug: unlinking /usr/share/X11/xkb/types/basic
    debug: unlinking /usr/share/X11/xkb/types/README
    debug: removed directory /usr/share/X11/xkb/types/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/types.dir
    debug: unlinking /usr/share/X11/xkb/symbols/za
    debug: unlinking /usr/share/X11/xkb/symbols/xfree68_vndr/ataritt
    debug: unlinking /usr/share/X11/xkb/symbols/xfree68_vndr/amiga
    debug: removed directory /usr/share/X11/xkb/symbols/xfree68_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/vn
    debug: unlinking /usr/share/X11/xkb/symbols/uz
    debug: unlinking /usr/share/X11/xkb/symbols/us
    debug: unlinking /usr/share/X11/xkb/symbols/ua
    debug: unlinking /usr/share/X11/xkb/symbols/tz
    debug: unlinking /usr/share/X11/xkb/symbols/typo
    debug: unlinking /usr/share/X11/xkb/symbols/tw
    debug: unlinking /usr/share/X11/xkb/symbols/tr
    debug: unlinking /usr/share/X11/xkb/symbols/tm
    debug: unlinking /usr/share/X11/xkb/symbols/tj
    debug: unlinking /usr/share/X11/xkb/symbols/th
    debug: unlinking /usr/share/X11/xkb/symbols/terminate
    debug: unlinking /usr/share/X11/xkb/symbols/sy
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/us
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ua
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/tw
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/tuv
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/tr
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/solaris
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/sk
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/se
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ru
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ro
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/pt
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/pl
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/no
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/nl
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/lv
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/lt
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/kr
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/jp
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/it
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/gr
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/gb
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/fr
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/fi
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/es
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ee
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/dk
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/de
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/cz
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ch
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ca
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/br
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/be
    debug: unlinking /usr/share/X11/xkb/symbols/sun_vndr/ara
    debug: removed directory /usr/share/X11/xkb/symbols/sun_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/srvr_ctrl
    debug: unlinking /usr/share/X11/xkb/symbols/sony_vndr/us
    debug: removed directory /usr/share/X11/xkb/symbols/sony_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/sn
    debug: unlinking /usr/share/X11/xkb/symbols/sk
    debug: unlinking /usr/share/X11/xkb/symbols/si
    debug: unlinking /usr/share/X11/xkb/symbols/shift
    debug: unlinking /usr/share/X11/xkb/symbols/sgi_vndr/jp
    debug: removed directory /usr/share/X11/xkb/symbols/sgi_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/se
    debug: unlinking /usr/share/X11/xkb/symbols/rupeesign
    debug: unlinking /usr/share/X11/xkb/symbols/ru
    debug: unlinking /usr/share/X11/xkb/symbols/rs
    debug: unlinking /usr/share/X11/xkb/symbols/ro
    debug: unlinking /usr/share/X11/xkb/symbols/pt
    debug: unlinking /usr/share/X11/xkb/symbols/pl
    debug: unlinking /usr/share/X11/xkb/symbols/pk
    debug: unlinking /usr/share/X11/xkb/symbols/ph
    debug: unlinking /usr/share/X11/xkb/symbols/pc
    debug: unlinking /usr/share/X11/xkb/symbols/olpc
    debug: unlinking /usr/share/X11/xkb/symbols/np
    debug: unlinking /usr/share/X11/xkb/symbols/nokia_vndr/su-8w
    debug: unlinking /usr/share/X11/xkb/symbols/nokia_vndr/rx-51
    debug: unlinking /usr/share/X11/xkb/symbols/nokia_vndr/rx-44
    debug: removed directory /usr/share/X11/xkb/symbols/nokia_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/no
    debug: unlinking /usr/share/X11/xkb/symbols/nl
    debug: unlinking /usr/share/X11/xkb/symbols/ng
    debug: unlinking /usr/share/X11/xkb/symbols/nec_vndr/jp
    debug: removed directory /usr/share/X11/xkb/symbols/nec_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/nbsp
    debug: unlinking /usr/share/X11/xkb/symbols/mv
    debug: unlinking /usr/share/X11/xkb/symbols/mt
    debug: unlinking /usr/share/X11/xkb/symbols/mn
    debug: unlinking /usr/share/X11/xkb/symbols/mm
    debug: unlinking /usr/share/X11/xkb/symbols/ml
    debug: unlinking /usr/share/X11/xkb/symbols/mk
    debug: unlinking /usr/share/X11/xkb/symbols/me
    debug: unlinking /usr/share/X11/xkb/symbols/mao
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/us
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/se
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/pt
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/no
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/nl
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/latam
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/jp
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/it
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/is
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/gb
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/fr
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/fi
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/dk
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/de
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/ch
    debug: unlinking /usr/share/X11/xkb/symbols/macintosh_vndr/apple
    debug: removed directory /usr/share/X11/xkb/symbols/macintosh_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/ma
    debug: unlinking /usr/share/X11/xkb/symbols/lv
    debug: unlinking /usr/share/X11/xkb/symbols/lt
    debug: unlinking /usr/share/X11/xkb/symbols/lk
    debug: unlinking /usr/share/X11/xkb/symbols/level5
    debug: unlinking /usr/share/X11/xkb/symbols/level3
    debug: unlinking /usr/share/X11/xkb/symbols/latin
    debug: unlinking /usr/share/X11/xkb/symbols/latam
    debug: unlinking /usr/share/X11/xkb/symbols/la
    debug: unlinking /usr/share/X11/xkb/symbols/kz
    debug: unlinking /usr/share/X11/xkb/symbols/kr
    debug: unlinking /usr/share/X11/xkb/symbols/kpdl
    debug: unlinking /usr/share/X11/xkb/symbols/kh
    debug: unlinking /usr/share/X11/xkb/symbols/kg
    debug: unlinking /usr/share/X11/xkb/symbols/keypad
    debug: unlinking /usr/share/X11/xkb/symbols/ke
    debug: unlinking /usr/share/X11/xkb/symbols/jp
    debug: unlinking /usr/share/X11/xkb/symbols/it
    debug: unlinking /usr/share/X11/xkb/symbols/is
    debug: unlinking /usr/share/X11/xkb/symbols/ir
    debug: unlinking /usr/share/X11/xkb/symbols/iq
    debug: unlinking /usr/share/X11/xkb/symbols/inet
    debug: unlinking /usr/share/X11/xkb/symbols/in
    debug: unlinking /usr/share/X11/xkb/symbols/il
    debug: unlinking /usr/share/X11/xkb/symbols/ie
    debug: unlinking /usr/share/X11/xkb/symbols/hu
    debug: unlinking /usr/share/X11/xkb/symbols/hr
    debug: unlinking /usr/share/X11/xkb/symbols/hp_vndr/us
    debug: removed directory /usr/share/X11/xkb/symbols/hp_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/group
    debug: unlinking /usr/share/X11/xkb/symbols/gr
    debug: unlinking /usr/share/X11/xkb/symbols/gn
    debug: unlinking /usr/share/X11/xkb/symbols/gh
    debug: unlinking /usr/share/X11/xkb/symbols/ge
    debug: unlinking /usr/share/X11/xkb/symbols/gb
    debug: unlinking /usr/share/X11/xkb/symbols/fujitsu_vndr/us
    debug: unlinking /usr/share/X11/xkb/symbols/fujitsu_vndr/jp
    debug: removed directory /usr/share/X11/xkb/symbols/fujitsu_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/fr
    debug: unlinking /usr/share/X11/xkb/symbols/fo
    debug: unlinking /usr/share/X11/xkb/symbols/fi
    debug: unlinking /usr/share/X11/xkb/symbols/eurosign
    debug: unlinking /usr/share/X11/xkb/symbols/et
    debug: unlinking /usr/share/X11/xkb/symbols/es
    debug: unlinking /usr/share/X11/xkb/symbols/epo
    debug: unlinking /usr/share/X11/xkb/symbols/empty
    debug: unlinking /usr/share/X11/xkb/symbols/ee
    debug: unlinking /usr/share/X11/xkb/symbols/dk
    debug: unlinking /usr/share/X11/xkb/symbols/digital_vndr/vt
    debug: unlinking /usr/share/X11/xkb/symbols/digital_vndr/us
    debug: unlinking /usr/share/X11/xkb/symbols/digital_vndr/pc
    debug: unlinking /usr/share/X11/xkb/symbols/digital_vndr/lk
    debug: removed directory /usr/share/X11/xkb/symbols/digital_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols/de
    debug: unlinking /usr/share/X11/xkb/symbols/cz
    debug: unlinking /usr/share/X11/xkb/symbols/ctrl
    debug: unlinking /usr/share/X11/xkb/symbols/compose
    debug: unlinking /usr/share/X11/xkb/symbols/cn
    debug: unlinking /usr/share/X11/xkb/symbols/cm
    debug: unlinking /usr/share/X11/xkb/symbols/ch
    debug: unlinking /usr/share/X11/xkb/symbols/cd
    debug: unlinking /usr/share/X11/xkb/symbols/capslock
    debug: unlinking /usr/share/X11/xkb/symbols/ca
    debug: unlinking /usr/share/X11/xkb/symbols/by
    debug: unlinking /usr/share/X11/xkb/symbols/bw
    debug: unlinking /usr/share/X11/xkb/symbols/bt
    debug: unlinking /usr/share/X11/xkb/symbols/brai
    debug: unlinking /usr/share/X11/xkb/symbols/br
    debug: unlinking /usr/share/X11/xkb/symbols/bg
    debug: unlinking /usr/share/X11/xkb/symbols/be
    debug: unlinking /usr/share/X11/xkb/symbols/bd
    debug: unlinking /usr/share/X11/xkb/symbols/ba
    debug: unlinking /usr/share/X11/xkb/symbols/az
    debug: unlinking /usr/share/X11/xkb/symbols/at
    debug: unlinking /usr/share/X11/xkb/symbols/ara
    debug: unlinking /usr/share/X11/xkb/symbols/apl
    debug: unlinking /usr/share/X11/xkb/symbols/am
    debug: unlinking /usr/share/X11/xkb/symbols/altwin
    debug: unlinking /usr/share/X11/xkb/symbols/al
    debug: unlinking /usr/share/X11/xkb/symbols/af
    debug: unlinking /usr/share/X11/xkb/symbols/ad
    debug: removed directory /usr/share/X11/xkb/symbols/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/symbols.dir
    debug: unlinking /usr/share/X11/xkb/rules/xorg.xml
    debug: unlinking /usr/share/X11/xkb/rules/xorg.lst
    debug: unlinking /usr/share/X11/xkb/rules/xorg
    debug: unlinking /usr/share/X11/xkb/rules/xkb.dtd
    debug: unlinking /usr/share/X11/xkb/rules/xfree98
    debug: unlinking /usr/share/X11/xkb/rules/evdev.xml
    debug: unlinking /usr/share/X11/xkb/rules/evdev.lst
    debug: unlinking /usr/share/X11/xkb/rules/evdev.extras.xml
    debug: unlinking /usr/share/X11/xkb/rules/evdev
    debug: unlinking /usr/share/X11/xkb/rules/base.xml
    debug: unlinking /usr/share/X11/xkb/rules/base.lst
    debug: unlinking /usr/share/X11/xkb/rules/base.extras.xml
    debug: unlinking /usr/share/X11/xkb/rules/base
    debug: unlinking /usr/share/X11/xkb/rules/README
    debug: removed directory /usr/share/X11/xkb/rules/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/keycodes/xfree98
    debug: unlinking /usr/share/X11/xkb/keycodes/xfree86
    debug: unlinking /usr/share/X11/xkb/keycodes/sun
    debug: unlinking /usr/share/X11/xkb/keycodes/sony
    debug: unlinking /usr/share/X11/xkb/keycodes/sgi_vndr/iris
    debug: unlinking /usr/share/X11/xkb/keycodes/sgi_vndr/indy
    debug: unlinking /usr/share/X11/xkb/keycodes/sgi_vndr/indigo
    debug: removed directory /usr/share/X11/xkb/keycodes/sgi_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/keycodes/macintosh
    debug: unlinking /usr/share/X11/xkb/keycodes/ibm
    debug: unlinking /usr/share/X11/xkb/keycodes/hp
    debug: unlinking /usr/share/X11/xkb/keycodes/fujitsu
    debug: unlinking /usr/share/X11/xkb/keycodes/evdev
    debug: unlinking /usr/share/X11/xkb/keycodes/empty
    debug: unlinking /usr/share/X11/xkb/keycodes/digital_vndr/pc
    debug: unlinking /usr/share/X11/xkb/keycodes/digital_vndr/lk
    debug: removed directory /usr/share/X11/xkb/keycodes/digital_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/keycodes/ataritt
    debug: unlinking /usr/share/X11/xkb/keycodes/amiga
    debug: unlinking /usr/share/X11/xkb/keycodes/aliases
    debug: unlinking /usr/share/X11/xkb/keycodes/README
    debug: removed directory /usr/share/X11/xkb/keycodes/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/keycodes.dir
    debug: unlinking /usr/share/X11/xkb/geometry/winbook
    debug: unlinking /usr/share/X11/xkb/geometry/typematrix
    debug: unlinking /usr/share/X11/xkb/geometry/thinkpad
    debug: unlinking /usr/share/X11/xkb/geometry/sun
    debug: unlinking /usr/share/X11/xkb/geometry/sony
    debug: unlinking /usr/share/X11/xkb/geometry/sgi_vndr/indy
    debug: unlinking /usr/share/X11/xkb/geometry/sgi_vndr/indigo
    debug: unlinking /usr/share/X11/xkb/geometry/sgi_vndr/O2
    debug: removed directory /usr/share/X11/xkb/geometry/sgi_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/geometry/sanwa
    debug: unlinking /usr/share/X11/xkb/geometry/pc
    debug: unlinking /usr/share/X11/xkb/geometry/northgate
    debug: unlinking /usr/share/X11/xkb/geometry/nokia
    debug: unlinking /usr/share/X11/xkb/geometry/nec
    debug: unlinking /usr/share/X11/xkb/geometry/microsoft
    debug: unlinking /usr/share/X11/xkb/geometry/macintosh
    debug: unlinking /usr/share/X11/xkb/geometry/kinesis
    debug: unlinking /usr/share/X11/xkb/geometry/keytronic
    debug: unlinking /usr/share/X11/xkb/geometry/hp
    debug: unlinking /usr/share/X11/xkb/geometry/hhk
    debug: unlinking /usr/share/X11/xkb/geometry/fujitsu
    debug: unlinking /usr/share/X11/xkb/geometry/everex
    debug: unlinking /usr/share/X11/xkb/geometry/digital_vndr/unix
    debug: unlinking /usr/share/X11/xkb/geometry/digital_vndr/pc
    debug: unlinking /usr/share/X11/xkb/geometry/digital_vndr/lk
    debug: removed directory /usr/share/X11/xkb/geometry/digital_vndr/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/geometry/dell
    debug: unlinking /usr/share/X11/xkb/geometry/chicony
    debug: unlinking /usr/share/X11/xkb/geometry/ataritt
    debug: unlinking /usr/share/X11/xkb/geometry/amiga
    debug: unlinking /usr/share/X11/xkb/geometry/README
    debug: removed directory /usr/share/X11/xkb/geometry/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/geometry.dir
    debug: unlinking /usr/share/X11/xkb/compat/xtest
    debug: unlinking /usr/share/X11/xkb/compat/xfree86
    debug: unlinking /usr/share/X11/xkb/compat/pc98
    debug: unlinking /usr/share/X11/xkb/compat/pc
    debug: unlinking /usr/share/X11/xkb/compat/olpc
    debug: unlinking /usr/share/X11/xkb/compat/mousekeys
    debug: unlinking /usr/share/X11/xkb/compat/misc
    debug: unlinking /usr/share/X11/xkb/compat/level5
    debug: unlinking /usr/share/X11/xkb/compat/ledscroll
    debug: unlinking /usr/share/X11/xkb/compat/lednum
    debug: unlinking /usr/share/X11/xkb/compat/ledcaps
    debug: unlinking /usr/share/X11/xkb/compat/japan
    debug: unlinking /usr/share/X11/xkb/compat/iso9995
    debug: unlinking /usr/share/X11/xkb/compat/complete
    debug: unlinking /usr/share/X11/xkb/compat/caps
    debug: unlinking /usr/share/X11/xkb/compat/basic
    debug: unlinking /usr/share/X11/xkb/compat/accessx
    debug: unlinking /usr/share/X11/xkb/compat/README
    debug: removed directory /usr/share/X11/xkb/compat/ (no remaining owners)
    debug: unlinking /usr/share/X11/xkb/compat.dir
    debug: removed directory /usr/share/X11/xkb/ (no remaining owners)
    debug: keeping directory /usr/share/X11/ (contains files)
    debug: keeping directory /usr/share/ (contains files)
    debug: keeping directory /usr/ (contains files)
    debug: removing database entry 'xkeyboard-config'
    debug: removing entry 'xkeyboard-config' from 'local' cache
    debug: extracting files
    debug: archive: /var/cache/pacman/pkg/xkeyboard-config-2.7-1-any.pkg.tar.xz
    debug: skipping extraction of '.PKGINFO'
    debug: extract: skipping dir extraction of usr/
    debug: extract: skipping dir extraction of usr/share/
    debug: extract: skipping dir extraction of usr/share/X11/
    debug: extract: skipping dir extraction of usr/share/pkgconfig/
    debug: extract: skipping dir extraction of usr/share/locale/
    debug: extract: skipping dir extraction of usr/share/licenses/
    debug: extracting /usr/share/licenses/xkeyboard-config/
    debug: extracting /usr/share/licenses/xkeyboard-config/COPYING
    debug: extract: skipping dir extraction of usr/share/locale/af/
    debug: extract: skipping dir extraction of usr/share/locale/bg/
    debug: extract: skipping dir extraction of usr/share/locale/ca/
    debug: extract: skipping dir extraction of usr/share/locale/az/
    debug: extract: skipping dir extraction of usr/share/locale/da/
    debug: extract: skipping dir extraction of usr/share/locale/de/
    debug: extract: skipping dir extraction of usr/share/locale/cs/
    debug: extract: skipping dir extraction of usr/share/locale/el/
    debug: extract: skipping dir extraction of usr/share/locale/eo/
    debug: extract: skipping dir extraction of usr/share/locale/es/
    debug: extract: skipping dir extraction of usr/share/locale/fi/
    debug: extract: skipping dir extraction of usr/share/locale/fr/
    debug: extract: skipping dir extraction of usr/share/locale/gl/
    debug: extract: skipping dir extraction of usr/share/locale/id/
    debug: extract: skipping dir extraction of usr/share/locale/hu/
    debug: extract: skipping dir extraction of usr/share/locale/ja/
    debug: extract: skipping dir extraction of usr/share/locale/it/
    debug: extract: skipping dir extraction of usr/share/locale/ka/
    debug: extract: skipping dir extraction of usr/share/locale/ko/
    debug: extract: skipping dir extraction of usr/share/locale/ky/
    debug: extract: skipping dir extraction of usr/share/locale/lt/
    debug: extract: skipping dir extraction of usr/share/locale/nb/
    debug: extract: skipping dir extraction of usr/share/locale/nl/
    debug: extract: skipping dir extraction of usr/share/locale/pl/
    debug: extract: skipping dir extraction of usr/share/locale/ro/
    debug: extract: skipping dir extraction of usr/share/locale/ru/
    debug: extract: skipping dir extraction of usr/share/locale/sk/
    debug: extract: skipping dir extraction of usr/share/locale/rw/
    debug: extract: skipping dir extraction of usr/share/locale/sl/
    debug: extract: skipping dir extraction of usr/share/locale/sq/
    debug: extract: skipping dir extraction of usr/share/locale/sr/
    debug: extract: skipping dir extraction of usr/share/locale/sv/
    debug: extract: skipping dir extraction of usr/share/locale/tr/
    debug: extract: skipping dir extraction of usr/share/locale/uk/
    debug: extract: skipping dir extraction of usr/share/locale/vi/
    debug: extract: skipping dir extraction of usr/share/locale/crh/
    debug: extract: skipping dir extraction of usr/share/locale/en_GB/
    debug: extract: skipping dir extraction of usr/share/locale/zh_CN/
    debug: extract: skipping dir extraction of usr/share/locale/zh_TW/
    debug: extract: skipping dir extraction of usr/share/locale/zh_TW/LC_MESSAGES/
    debug: extracting /usr/share/locale/zh_TW/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/zh_CN/LC_MESSAGES/
    debug: extracting /usr/share/locale/zh_CN/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/en_GB/LC_MESSAGES/
    debug: extracting /usr/share/locale/en_GB/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/crh/LC_MESSAGES/
    debug: extracting /usr/share/locale/crh/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/vi/LC_MESSAGES/
    debug: extracting /usr/share/locale/vi/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/uk/LC_MESSAGES/
    debug: extracting /usr/share/locale/uk/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/tr/LC_MESSAGES/
    debug: extracting /usr/share/locale/tr/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/sv/LC_MESSAGES/
    debug: extracting /usr/share/locale/sv/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/sr/LC_MESSAGES/
    debug: extracting /usr/share/locale/sr/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/sq/LC_MESSAGES/
    debug: extracting /usr/share/locale/sq/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/sl/LC_MESSAGES/
    debug: extracting /usr/share/locale/sl/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/rw/LC_MESSAGES/
    debug: extracting /usr/share/locale/rw/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/sk/LC_MESSAGES/
    debug: extracting /usr/share/locale/sk/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ru/LC_MESSAGES/
    debug: extracting /usr/share/locale/ru/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ro/LC_MESSAGES/
    debug: extracting /usr/share/locale/ro/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/pl/LC_MESSAGES/
    debug: extracting /usr/share/locale/pl/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/nl/LC_MESSAGES/
    debug: extracting /usr/share/locale/nl/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/nb/LC_MESSAGES/
    debug: extracting /usr/share/locale/nb/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/lt/LC_MESSAGES/
    debug: extracting /usr/share/locale/lt/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ky/LC_MESSAGES/
    debug: extracting /usr/share/locale/ky/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ko/LC_MESSAGES/
    debug: extracting /usr/share/locale/ko/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ka/LC_MESSAGES/
    debug: extracting /usr/share/locale/ka/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/it/LC_MESSAGES/
    debug: extracting /usr/share/locale/it/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ja/LC_MESSAGES/
    debug: extracting /usr/share/locale/ja/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/hu/LC_MESSAGES/
    debug: extracting /usr/share/locale/hu/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/id/LC_MESSAGES/
    debug: extracting /usr/share/locale/id/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/gl/LC_MESSAGES/
    debug: extracting /usr/share/locale/gl/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/fr/LC_MESSAGES/
    debug: extracting /usr/share/locale/fr/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/fi/LC_MESSAGES/
    debug: extracting /usr/share/locale/fi/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/es/LC_MESSAGES/
    debug: extracting /usr/share/locale/es/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/eo/LC_MESSAGES/
    debug: extracting /usr/share/locale/eo/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/el/LC_MESSAGES/
    debug: extracting /usr/share/locale/el/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/cs/LC_MESSAGES/
    debug: extracting /usr/share/locale/cs/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/de/LC_MESSAGES/
    debug: extracting /usr/share/locale/de/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/da/LC_MESSAGES/
    debug: extracting /usr/share/locale/da/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/az/LC_MESSAGES/
    debug: extracting /usr/share/locale/az/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/ca/LC_MESSAGES/
    debug: extracting /usr/share/locale/ca/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/bg/LC_MESSAGES/
    debug: extracting /usr/share/locale/bg/LC_MESSAGES/xkeyboard-config.mo
    debug: extract: skipping dir extraction of usr/share/locale/af/LC_MESSAGES/
    debug: extracting /usr/share/locale/af/LC_MESSAGES/xkeyboard-config.mo
    debug: extracting /usr/share/pkgconfig/xkeyboard-config.pc
    debug: extracting /usr/share/X11/xkb/
    debug: extracting /usr/share/X11/xkb/rules/
    debug: extracting /usr/share/X11/xkb/types/
    debug: extracting /usr/share/X11/xkb/geometry/
    debug: extracting /usr/share/X11/xkb/compat/
    debug: extracting /usr/share/X11/xkb/symbols/
    debug: extracting /usr/share/X11/xkb/keycodes/
    debug: extracting /usr/share/X11/xkb/keycodes/hp
    debug: extracting /usr/share/X11/xkb/keycodes/ibm
    debug: extracting /usr/share/X11/xkb/keycodes/sun
    debug: extracting /usr/share/X11/xkb/keycodes/sony
    debug: extracting /usr/share/X11/xkb/keycodes/amiga
    debug: extracting /usr/share/X11/xkb/keycodes/empty
    debug: extracting /usr/share/X11/xkb/keycodes/evdev
    debug: extracting /usr/share/X11/xkb/keycodes/README
    debug: extracting /usr/share/X11/xkb/keycodes/fujitsu
    debug: extracting /usr/share/X11/xkb/keycodes/digital_vndr/
    debug: extracting /usr/share/X11/xkb/keycodes/aliases
    debug: extracting /usr/share/X11/xkb/keycodes/ataritt
    debug: extracting /usr/share/X11/xkb/keycodes/sgi_vndr/
    debug: extracting /usr/share/X11/xkb/keycodes/xfree86
    debug: extracting /usr/share/X11/xkb/keycodes/xfree98
    debug: extracting /usr/share/X11/xkb/keycodes/macintosh
    debug: extracting /usr/share/X11/xkb/keycodes/sgi_vndr/indy
    debug: extracting /usr/share/X11/xkb/keycodes/sgi_vndr/iris
    debug: extracting /usr/share/X11/xkb/keycodes/sgi_vndr/indigo
    debug: extracting /usr/share/X11/xkb/keycodes/digital_vndr/lk
    debug: extracting /usr/share/X11/xkb/keycodes/digital_vndr/pc
    debug: extracting /usr/share/X11/xkb/symbols/ad
    debug: extracting /usr/share/X11/xkb/symbols/af
    debug: extracting /usr/share/X11/xkb/symbols/al
    debug: extracting /usr/share/X11/xkb/symbols/ba
    debug: extracting /usr/share/X11/xkb/symbols/am
    debug: extracting /usr/share/X11/xkb/symbols/bd
    debug: extracting /usr/share/X11/xkb/symbols/be
    debug: extracting /usr/share/X11/xkb/symbols/bg
    debug: extracting /usr/share/X11/xkb/symbols/at
    debug: extracting /usr/share/X11/xkb/symbols/ca
    debug: extracting /usr/share/X11/xkb/symbols/az
    debug: extracting /usr/share/X11/xkb/symbols/cd
    debug: extracting /usr/share/X11/xkb/symbols/br
    debug: extracting /usr/share/X11/xkb/symbols/ch
    debug: extracting /usr/share/X11/xkb/symbols/bt
    debug: extracting /usr/share/X11/xkb/symbols/bw
    debug: extracting /usr/share/X11/xkb/symbols/cm
    debug: extracting /usr/share/X11/xkb/symbols/by
    debug: extracting /usr/share/X11/xkb/symbols/cn
    debug: extracting /usr/share/X11/xkb/symbols/de
    debug: extracting /usr/share/X11/xkb/symbols/dk
    debug: extracting /usr/share/X11/xkb/symbols/cz
    debug: extracting /usr/share/X11/xkb/symbols/ee
    debug: extracting /usr/share/X11/xkb/symbols/es
    debug: extracting /usr/share/X11/xkb/symbols/et
    debug: extracting /usr/share/X11/xkb/symbols/fi
    debug: extracting /usr/share/X11/xkb/symbols/gb
    debug: extracting /usr/share/X11/xkb/symbols/fo
    debug: extracting /usr/share/X11/xkb/symbols/ge
    debug: extracting /usr/share/X11/xkb/symbols/fr
    debug: extracting /usr/share/X11/xkb/symbols/gh
    debug: extracting /usr/share/X11/xkb/symbols/gn
    debug: extracting /usr/share/X11/xkb/symbols/gr
    debug: extracting /usr/share/X11/xkb/symbols/ie
    debug: extracting /usr/share/X11/xkb/symbols/hr
    debug: extracting /usr/share/X11/xkb/symbols/hu
    debug: extracting /usr/share/X11/xkb/symbols/il
    debug: extracting /usr/share/X11/xkb/symbols/in
    debug: extracting /usr/share/X11/xkb/symbols/iq
    debug: extracting /usr/share/X11/xkb/symbols/ir
    debug: extracting /usr/share/X11/xkb/symbols/is
    debug: extracting /usr/share/X11/xkb/symbols/it
    debug: extracting /usr/share/X11/xkb/symbols/jp
    debug: extracting /usr/share/X11/xkb/symbols/ke
    debug: extracting /usr/share/X11/xkb/symbols/kg
    debug: extracting /usr/share/X11/xkb/symbols/kh
    debug: extracting /usr/share/X11/xkb/symbols/la
    debug: extracting /usr/share/X11/xkb/symbols/kr
    debug: extracting /usr/share/X11/xkb/symbols/lk
    debug: extracting /usr/share/X11/xkb/symbols/ma
    debug: extracting /usr/share/X11/xkb/symbols/kz
    debug: extracting /usr/share/X11/xkb/symbols/md
    debug: extracting /usr/share/X11/xkb/symbols/me
    debug: extracting /usr/share/X11/xkb/symbols/lt
    debug: extracting /usr/share/X11/xkb/symbols/mk
    debug: extracting /usr/share/X11/xkb/symbols/lv
    debug: extracting /usr/share/X11/xkb/symbols/ml
    debug: extracting /usr/share/X11/xkb/symbols/mm
    debug: extracting /usr/share/X11/xkb/symbols/mn
    debug: extracting /usr/share/X11/xkb/symbols/ng
    debug: extracting /usr/share/X11/xkb/symbols/mt
    debug: extracting /usr/share/X11/xkb/symbols/mv
    debug: extracting /usr/share/X11/xkb/symbols/nl
    debug: extracting /usr/share/X11/xkb/symbols/no
    debug: extracting /usr/share/X11/xkb/symbols/np
    debug: extracting /usr/share/X11/xkb/symbols/pc
    debug: extracting /usr/share/X11/xkb/symbols/ph
    debug: extracting /usr/share/X11/xkb/symbols/pk
    debug: extracting /usr/share/X11/xkb/symbols/pl
    debug: extracting /usr/share/X11/xkb/symbols/pt
    debug: extracting /usr/share/X11/xkb/symbols/ro
    debug: extracting /usr/share/X11/xkb/symbols/se
    debug: extracting /usr/share/X11/xkb/symbols/rs
    debug: extracting /usr/share/X11/xkb/symbols/si
    debug: extracting /usr/share/X11/xkb/symbols/ru
    debug: extracting /usr/share/X11/xkb/symbols/sk
    debug: extracting /usr/share/X11/xkb/symbols/sn
    debug: extracting /usr/share/X11/xkb/symbols/th
    debug: extracting /usr/share/X11/xkb/symbols/tj
    debug: extracting /usr/share/X11/xkb/symbols/ua
    debug: extracting /usr/share/X11/xkb/symbols/tm
    debug: extracting /usr/share/X11/xkb/symbols/sy
    debug: extracting /usr/share/X11/xkb/symbols/tr
    debug: extracting /usr/share/X11/xkb/symbols/tw
    debug: extracting /usr/share/X11/xkb/symbols/tz
    debug: extracting /usr/share/X11/xkb/symbols/us
    debug: extracting /usr/share/X11/xkb/symbols/vn
    debug: extracting /usr/share/X11/xkb/symbols/uz
    debug: extracting /usr/share/X11/xkb/symbols/za
    debug: extracting /usr/share/X11/xkb/symbols/apl
    debug: extracting /usr/share/X11/xkb/symbols/ara
    debug: extracting /usr/share/X11/xkb/symbols/epo
    debug: extracting /usr/share/X11/xkb/symbols/mao
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/brai
    debug: extracting /usr/share/X11/xkb/symbols/ctrl
    debug: extracting /usr/share/X11/xkb/symbols/inet
    debug: extracting /usr/share/X11/xkb/symbols/kpdl
    debug: extracting /usr/share/X11/xkb/symbols/nbsp
    debug: extracting /usr/share/X11/xkb/symbols/olpc
    debug: extracting /usr/share/X11/xkb/symbols/typo
    debug: extracting /usr/share/X11/xkb/symbols/compose
    debug: extracting /usr/share/X11/xkb/symbols/fujitsu_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/empty
    debug: extracting /usr/share/X11/xkb/symbols/group
    debug: extracting /usr/share/X11/xkb/symbols/latam
    debug: extracting /usr/share/X11/xkb/symbols/latin
    debug: extracting /usr/share/X11/xkb/symbols/shift
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/altwin
    debug: extracting /usr/share/X11/xkb/symbols/nec_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/capslock
    debug: extracting /usr/share/X11/xkb/symbols/keypad
    debug: extracting /usr/share/X11/xkb/symbols/level3
    debug: extracting /usr/share/X11/xkb/symbols/level5
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/eurosign
    debug: extracting /usr/share/X11/xkb/symbols/srvr_ctrl
    debug: extracting /usr/share/X11/xkb/symbols/digital_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/sony_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/xfree68_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/terminate
    debug: extracting /usr/share/X11/xkb/symbols/nokia_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/hp_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/rupeesign
    debug: extracting /usr/share/X11/xkb/symbols/sgi_vndr/
    debug: extracting /usr/share/X11/xkb/symbols/sgi_vndr/jp
    debug: extracting /usr/share/X11/xkb/symbols/hp_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/nokia_vndr/rx-44
    debug: extracting /usr/share/X11/xkb/symbols/nokia_vndr/rx-51
    debug: extracting /usr/share/X11/xkb/symbols/nokia_vndr/su-8w
    debug: extracting /usr/share/X11/xkb/symbols/xfree68_vndr/amiga
    debug: extracting /usr/share/X11/xkb/symbols/xfree68_vndr/ataritt
    debug: extracting /usr/share/X11/xkb/symbols/sony_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/digital_vndr/lk
    debug: extracting /usr/share/X11/xkb/symbols/digital_vndr/pc
    debug: extracting /usr/share/X11/xkb/symbols/digital_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/digital_vndr/vt
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/sl-c3x00
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/ws003sh
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/ws007sh
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/ws011sh
    debug: extracting /usr/share/X11/xkb/symbols/sharp_vndr/ws020sh
    debug: extracting /usr/share/X11/xkb/symbols/nec_vndr/jp
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/ch
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/de
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/dk
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/fi
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/gb
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/fr
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/is
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/it
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/jp
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/nl
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/no
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/pt
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/se
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/apple
    debug: extracting /usr/share/X11/xkb/symbols/macintosh_vndr/latam
    debug: extracting /usr/share/X11/xkb/symbols/fujitsu_vndr/jp
    debug: extracting /usr/share/X11/xkb/symbols/fujitsu_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/be
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ca
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/br
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ch
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/de
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/dk
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/cz
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ee
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/es
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/fi
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/gb
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/fr
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/gr
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/it
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/jp
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/kr
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/lt
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/lv
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/nl
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/no
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/pl
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/pt
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ro
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/se
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ru
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/sk
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ua
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/tr
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/tw
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/us
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/ara
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/tuv
    debug: extracting /usr/share/X11/xkb/symbols/sun_vndr/solaris
    debug: extracting /usr/share/X11/xkb/compat/pc
    debug: extracting /usr/share/X11/xkb/compat/caps
    debug: extracting /usr/share/X11/xkb/compat/misc
    debug: extracting /usr/share/X11/xkb/compat/pc98
    debug: extracting /usr/share/X11/xkb/compat/olpc
    debug: extracting /usr/share/X11/xkb/compat/ledscroll
    debug: extracting /usr/share/X11/xkb/compat/mousekeys
    debug: extracting /usr/share/X11/xkb/compat/basic
    debug: extracting /usr/share/X11/xkb/compat/japan
    debug: extracting /usr/share/X11/xkb/compat/xtest
    debug: extracting /usr/share/X11/xkb/compat/README
    debug: extracting /usr/share/X11/xkb/compat/ledcaps
    debug: extracting /usr/share/X11/xkb/compat/complete
    debug: extracting /usr/share/X11/xkb/compat/lednum
    debug: extracting /usr/share/X11/xkb/compat/level5
    debug: extracting /usr/share/X11/xkb/compat/accessx
    debug: extracting /usr/share/X11/xkb/compat/iso9995
    debug: extracting /usr/share/X11/xkb/compat/xfree86
    debug: extracting /usr/share/X11/xkb/geometry/hp
    debug: extracting /usr/share/X11/xkb/geometry/pc
    debug: extracting /usr/share/X11/xkb/geometry/hhk
    debug: extracting /usr/share/X11/xkb/geometry/nec
    debug: extracting /usr/share/X11/xkb/geometry/sun
    debug: extracting /usr/share/X11/xkb/geometry/dell
    debug: extracting /usr/share/X11/xkb/geometry/sony
    debug: extracting /usr/share/X11/xkb/geometry/kinesis
    debug: extracting /usr/share/X11/xkb/geometry/amiga
    debug: extracting /usr/share/X11/xkb/geometry/nokia
    debug: extracting /usr/share/X11/xkb/geometry/sanwa
    debug: extracting /usr/share/X11/xkb/geometry/README
    debug: extracting /usr/share/X11/xkb/geometry/northgate
    debug: extracting /usr/share/X11/xkb/geometry/everex
    debug: extracting /usr/share/X11/xkb/geometry/fujitsu
    debug: extracting /usr/share/X11/xkb/geometry/keytronic
    debug: extracting /usr/share/X11/xkb/geometry/digital_vndr/
    debug: extracting /usr/share/X11/xkb/geometry/thinkpad
    debug: extracting /usr/share/X11/xkb/geometry/typematrix
    debug: extracting /usr/share/X11/xkb/geometry/ataritt
    debug: extracting /usr/share/X11/xkb/geometry/winbook
    debug: extracting /usr/share/X11/xkb/geometry/microsoft
    debug: extracting /usr/share/X11/xkb/geometry/sgi_vndr/
    debug: extracting /usr/share/X11/xkb/geometry/chicony
    debug: extracting /usr/share/X11/xkb/geometry/macintosh
    debug: extracting /usr/share/X11/xkb/geometry/sgi_vndr/O2
    debug: extracting /usr/share/X11/xkb/geometry/sgi_vndr/indy
    debug: extracting /usr/share/X11/xkb/geometry/sgi_vndr/indigo
    debug: extracting /usr/share/X11/xkb/geometry/digital_vndr/lk
    debug: extracting /usr/share/X11/xkb/geometry/digital_vndr/pc
    debug: extracting /usr/share/X11/xkb/geometry/digital_vndr/unix
    debug: extracting /usr/share/X11/xkb/types/pc
    debug: extracting /usr/share/X11/xkb/types/caps
    debug: extracting /usr/share/X11/xkb/types/default
    debug: extracting /usr/share/X11/xkb/types/mousekeys
    debug: extracting /usr/share/X11/xkb/types/basic
    debug: extracting /usr/share/X11/xkb/types/extra
    debug: extracting /usr/share/X11/xkb/types/nokia
    debug: extracting /usr/share/X11/xkb/types/README
    debug: extracting /usr/share/X11/xkb/types/cancel
    debug: extracting /usr/share/X11/xkb/types/complete
    debug: extracting /usr/share/X11/xkb/types/level5
    debug: extracting /usr/share/X11/xkb/types/numpad
    debug: extracting /usr/share/X11/xkb/types/iso9995
    debug: extracting /usr/share/X11/xkb/rules/base
    debug: extracting /usr/share/X11/xkb/rules/xorg
    debug: extracting /usr/share/X11/xkb/rules/xkb.dtd
    debug: extracting /usr/share/X11/xkb/rules/base.extras.xml
    debug: extracting /usr/share/X11/xkb/rules/evdev
    debug: extracting /usr/share/X11/xkb/rules/xorg.lst
    debug: extracting /usr/share/X11/xkb/rules/xorg.xml
    debug: extracting /usr/share/X11/xkb/rules/README
    debug: extracting /usr/share/X11/xkb/rules/evdev.lst
    debug: extracting /usr/share/X11/xkb/rules/evdev.xml
    debug: extracting /usr/share/X11/xkb/rules/evdev.extras.xml
    debug: extracting /usr/share/X11/xkb/rules/base.lst
    debug: extracting /usr/share/X11/xkb/rules/base.xml
    debug: extracting /usr/share/X11/xkb/rules/xfree98
    debug: extract: skipping dir extraction of var/
    debug: extract: skipping dir extraction of var/lib/
    debug: extract: skipping dir extraction of var/lib/xkb/
    debug: updating database
    debug: adding database entry 'xkeyboard-config'
    debug: writing xkeyboard-config-2.7-1 DESC information back to db
    debug: writing xkeyboard-config-2.7-1 FILES information back to db
    debug: adding entry 'xkeyboard-config' in 'local' cache
    debug: running ldconfig
    debug: executing "/sbin/ldconfig" under chroot "/"
    ldconfig: /usr/lib/libMonoSupportW.so is not a symbolic link
    debug: call to waitpid succeeded
    debug: unregistering database 'local'
    debug: freeing package cache for repository 'local'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: freeing package cache for repository 'extra'
    debug: unregistering database 'community'
    debug: freeing package cache for repository 'community'
    debug: unregistering database 'multilib'
    debug: freeing package cache for repository 'multilib'
    [neo@HelionPrime ~]$
    Last edited by MrRoberts (2012-09-27 12:17:13)

  • Copy part of a symbol into a new page

    Hello all-
    I'm trying to break down a rather large symbol.  If I highlight the second half of the symbol and copy it into a new symbol on a new page, it becomes all garbled to the point it is impossible to use it.
    I tried using Duplicate but don't know what it did other than it looked like it copied all the elements into the existing symbol?
    So,
    1. What does duplicate do and when would it be better than copy/paste?
    2. How can I copy a piece of an existing symbol to create a new symbol?
    BTW - The idea of copying the existing symbol and then removing the part I don't want, although sounds like the best way to do it, will not work as whenever I copy the symbol, or even try to load it into a new page, it becomes garbled as before (This is another discussion, "symbol corrupting on save?").
    James

    Make a comp of that segment and Export it to a New Track, or Export it to Selected track (your "master" track).
    http://help.apple.com/logicpro/mac/10/#lgcpb19adfa4

  • How to remove % from percent field in standard section

    Hi Experts,
    I will like to remove % symbol from a percentage field in a standard section. May I know can this be done?
    As I know the % symbol can be remove from report, but can it be done in standard section?
    **The reason I insisted to use percent field is because all other field types is already hit the limit.
    Thanks
    Anson

    Hi,
    This is working for me
    *& Report  ZTESTRAUL
    REPORT  ztestraul.
    TYPES: BEGIN OF tp,
             one TYPE wertv8,
             two TYPE char15,
           END OF tp.
    DATA: wa TYPE tp.
    wa-two = wa-one = '1345.00'.
    replace ALL OCCURRENCES OF ',' IN wa-two WITH ''.
    write: wa-one, wa-two.
    Raul Natu

  • Moving a symbol w/out recording the path animation.

    Hello.
    I have a very simple question.
    I am simply trying to move symbols around on my Stage, and each time I move one, the "path" is recorded and the object flows on that path when I scrub or play back.
    All I would simply like to do is reposition images and symbols with out the movement and animation.
    Any advice?

    if you see that path it means you have a motion tween applied to the symbol.
    right-click on the symbol and select remove tween.
    if you don't want flash to figure out the motion for you do this:
    place symbol on stage in frame 1
    select any other frame in that layer, 2, 5, whatever... and press f6 to add a new keyframe.
    change the position of the symbol
    repeat as necessary

  • Airport problem with iMAC 27" and serious service support for indonesia

    Hi all,
    i can't seem to get any help from anywhere else. so i try to post it here.
    i tried to call the apple store (indonesia) which i bought this imac 27" from. got transfered 4 times and i had to explain it to them all over. in the end i got to speak to the technician and i asked whether i can get a replacement and they don't think it's the correct solution and leave me hanging here.
    the apple store is listed as an apple authorized service provider (AASP) or apple authorized distributor (AAD):
    iBox by Padang Digital Indonesia - Apple Authorised Service Provider
    Puri Imperium Office Plaza, (Belakang Menara Imperium)
    Jl. Kuningan Madya Kav. 5-6, Jakarta
    12980
    Tel: 62 21 8370-iBox (4269); 830 6763
    Fax: 62 21 830 6730
    Email: [email protected]
    Web: http://www.ibox.co.id
    i called the apple support on the apple.com (0018 03061 2009 for indonesia) today wednesday 19 may 2010, time 1:12pm indonesia local time (GMT +7) i didn't get the guy's name but i can tell he's Indian from the accent, i told him what the problem is, he told me to wait, i waited for 10 minutes and he hung up on me at 1:24pm. please check on the record, because i was told the whole conversation was recorded.
    so, let's go to the problem:
    i can't share my internet with airport built-in in my imac 27".
    I'm using ZTE usb hsdpa modem connected to the imac. (fyi, my friend is using the same exact modem and internet provider and don't have any problems with internet sharing using his macbook)
    i tried to share the internet through the airport express simply with these steps:
    1. open the system preferences, internet sharing,
    2. connection with "ZTE usb modem", and the box next to "Airport" is ticked
    3. turn on the internet sharing
    4. press start
    5. yes the firewall is off.
    and these are what i'm having right now:
    1. the airport symbol wont turn into an arrow
    2. when i open the network preferences, it says: AirPort is turned on but is not connected to a network. (color is orange not green)
    3. i searched the wireless network with my ipod touch and i found nothing
    4. if i try to "create a network" here's what it says "There was an error creating your computer-to-computer network."
    5. this are the details on the airport card:
    Software Versions:
    Menu Extra: 6.2 (620.24)
    configd plug-in: 6.2 (620.15.1)
    System Profiler: 6.0 (600.9)
    Network Preference: 6.2 (620.24)
    AirPort Utility: 5.5.1 (551.19)
    IO80211 Family: 3.1 (310.6)
    Interfaces:
    en1:
    Card Type: AirPort Extreme (0x168C, 0x8F)
    Firmware Version: Atheros 9280: 2.1.9.5
    Locale: RoW
    Country Code:
    Supported PHY Modes: 802.11 a/b/g/n
    Supported Channels: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165
    Wake On Wireless: Supported
    Status: Not Associated
    and yes, i've updated all the airport software and i stick on the 10.6.2 os.
    It seems like people who has this latest imac 27" also having problems with the airport express. and they somehow got a replacement.
    http://discussions.apple.com/thread.jspa?threadID=2261196&tstart=0&messageID=109 80828
    so, i really really appreciate if i can get help here.
    many thanks and best regards,
    irene

    If you have anything configured in System Preferences/Network/Airport then you have conflicts configured into the network. I suggest that you start from the beginning. Do not assume anything. Do not take any short cuts. Start fresh.
    Go to Sys Prefs/Sharing turn off Internet Sharing. Go to Sys Prefs/Network, highlight AirPort and press the - symbol below to remove the AirPort interface. Now press the + symbol and create a new AirPort Interface. In the new AirPort interface do not turn on AirPort. You should only select the box to show AirPort Status in the menu bar. Now press Apply.
    Go to Sys Prefs/Sharing and follow the steps 1 through 11 in my first post.
    In step 11 Sys Prefs should ask you to turn on AirPort. Turn it on. It should next ask you to start Internet Sharing. Start Internet Sharing.
    The AirPort Status in the menu bar should show AirPort is on and have an arrow pointing up. In the AirPort Status dropdown menu it should show AirPort is ON, Internet Sharing is ON and it should show the name of the Internet Sharing network that you created.

  • IPod Nano 5th Gen Help: When I connect my iPod to my PC it seems to connect fine and show as normal until I load up itunes. Why is it suddenly not being recognized once my itunes is loaded?

    Hello, I've been working at this for hours but have made little to no progress in fixing my issue.
    So when I plug my ipod in via usb into my computer the autoplay starts and it connects as an iPod. I can see it when I open up "Computer" and everything seems to be running fine. I'm not getting any errors or anything.
    However, the moment itunes starts up, whether it be manually started or starting automatically through the helper, my symbol for safely removing falls off of my screen and I can no longer see the ipod in "Computer". Though I may be able to see it in Printer and Devices.
    I've already gone through several steps to try and fix it via support on this site. I've reinstalled itunes, I've gone into disk mode, I've reset the ipod, unplugged it and replugged it in. My last option is to restore to factory defaults. As much as I would love to do this to see if it works (as all my music is backed up on discs and my computer), I can't do so if it isn't showing in itunes due to the fact it can't detect the ipod or at least the kind of ipod. I've tried to find a 3rd party program that could do this but none of them offer the option. Note: The ipod itself works fine. I can listen to it and it'll charge just fine. It just won't recognize.
    I'm running Windows 7 OS. iTunes is up-to-date.
    If anyone knows how to fix it, the help would be greatly appreciated.

    Hello BPeery,
    I would go through ALL the steps here:
    iPod not recognized in 'My Computer' and in iTunes for Windows
    Let us know how it goes.
    Hope this helps.
    ~Julian

Maybe you are looking for