Problem with scripts

Certain sites, most recently The Daily Show, will not load for me. I get a box that says:
"Warning: unresponsive script
A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
Script: resource://gre/modules/ConsoleAPIStorage.jsm:157
[Continue] [Stop script]"
Whether I click to continue or stop the script, nothing happens except that the box goes away and then comes up again. If I try to close the tab, it just hangs and then finally shows the box again.
Finally, Firefox just gets completely hung up, and I have to close it out with the task manager.
Meanwhile, everything runs fine in Internet Explorer.
Can anyone please help me solve this problem?
Thanks,
Ellen

Is DOM storage enabled?
You can check the value of the dom.storage.enabled pref on the about:config page.
*http://kb.mozillazine.org/about:config
You can also try to delete the webappsstore.sqlite file in the Firefox Profile Folder to remove all data (cookies) stored in DOM storage.
You can use this button to go to the Firefox profile folder:
*Help > Troubleshooting Information > Profile Directory: Open Containing Folder
*http://kb.mozillazine.org/Profile_folder_-_Firefox
You can try to reset Firefox and create a new profile.
*https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems

Similar Messages

  • Lately and i dont know why i see a pop up about a problem with script. can some1 help me?

    there is a pop up about a problem with script. it ask me end and contuniue the script. i didnt have that problem before. plz help me it gets really irritating. it asks a lot

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Having multiple problems with script - NTFS Permissions and AD Groups

    Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
    1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
    2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
    3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
    is used differently later on in the script.
    4.  Verifies the entered information and requests confirmation to proceed.
    5.  Creates the folder.
    6.  Creates an AD OU and/or security group(s).
    7.  Applies appropriate security groups to the new folder and removes undesired permissions.
    Import-Module ActiveDirectory
    $Division = ""
    $DivAbbr = ""
    $OU = ""
    $OUDrive = "AD:\"
    $FolderName = ""
    $OUName = ""
    $GroupName = ""
    $OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
    $FSRoot = "E:\"
    $FolderPath = ""
    $DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
    [bool]$Location = 0
    do {
    $userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
    Switch ($userInput)
    W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
    S {"Staffing is not yet implemented."; break}
    P {"Packaging is not yet implemented."; break}
    default {"Invalid choice. Please re-enter."; break}
    while ($DivAbbr -eq "")
    write-host ""
    write-host ($Division + " was selected.")
    $FolderPath = $Division + "\"
    write-host ""
    $choice = ""
    do {
    $choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
    Switch ($choice)
    G {$Location = $false; break}
    L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
    default {"Invalid choice. Please re-enter."; $choice = ""; break}
    while ($choice -eq "")
    write-host ""
    write-host ("Location is set to: " + $Location)
    write-host ""
    if ($Location -eq $false) {
    $FolderName = Read-Host "Please enter folder name:"
    $GroupName = $DivAbbr + " " + $FolderName
    } else {
    $input = Read-Host "Please enter two-letter state abbreviation:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter city:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter street address number only:"
    $FolderName = $FolderName + $input
    $GroupName = $DivAbbr + " " + $FolderName
    $FolderName = $FolderName + " "
    $input = Read-Host "Please enter street name:"
    $FolderName = $FolderName + $input
    $input = Read-Host "Please enter any optional information to appear in folder name:"
    if ($input -ne "") {
    $FolderName = $FolderName + " " + $input
    $OUName = $FolderName
    write-host
    write-host "Path for folder: "$FSRoot$FolderPath$FolderName
    write-host "AD Path: "$OUDrive$OU$OURoot
    write-host "New OU Name: "$OUName
    write-host -NoNewLine "New Security Group names: "$GroupName
    if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
    write-host
    $input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
    if ($input -ne "Y") { Exit }
    write-host
    write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
    if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
    Write-Host "Folder already exists! Skipping folder creation..."
    } else {
    write-host "Folder does not exist. Creating..."
    new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
    Set-Location ($FSRoot + $FolderPath + $FolderName)
    if ($Location -eq $true) {
    $tempOUName = "ou=" + $OUName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "OU already exists! Skipping OU creation..."
    } else {
    write-host "OU does not exist. Creating..."
    New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
    $GroupNameMGMT = $GroupName + " MGMT"
    if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    # $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    write-host $BIUsersSID.Value
    # out-string -inputObject $BIUsers
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
    $objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
    write-host $ADGroupName
    write-host $objUser.Value
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    $ADGroupName = "JACOBSON\" + $GroupNameMGMT
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    } else {
    $tempOUName = "cn=" + $GroupName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "Security group already exists! Skipping new security group creation..."
    } else {
    write-host "Security group does not exist. Creating..."
    New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $FolderACL.SetAccessRuleProtection($True,$True)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
    First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
    into Powershell, they work as expected.  I've tried the following methods:
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
    In the second case, I get the following error message:
    Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
    At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
    +     $FolderACL.RemoveAccessRuleAll($Ar)
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IdentityNotMappedException
    This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
    also tried the solutions given in this thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
    http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
    My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
    the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
    My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
    Thanks!

    I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
    As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
    again utilizing the -Server parameter on the Get-ADGroup command:
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    # Add the new normal users group to the folder with Read and Execute permissions
    $GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    # Add the management users group to the folder with Modify permissions
    $GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
    Still having issues with the translation of the BUILTIN\Users group, though. 

  • Problem with Script Events Manager buttons not showing up

    Hi,
    First off let me say that the latest release of Adobe products is a steaming pile of @#$#$.
    Countless software issues, it's slow, buggy, you name it.
    That being said, has anyone had this problem and know how to fix it.
    My Script Events Manager is broken. Yes broken. The only buttons I see are "Done" and "Remove". There is no "Add" button so that I can actually add events. Someone please tell me this is user error and that I don't need to reinstall PS.

    My system has 8 Gb of Ram and 4 processors. I doubt it's the system. I've had problems with CS Master Collection since day one. My main complaint is the ******* tabs and interface. Everything is so chunky. CS2 was smooth as butter. They keep making their products use more RAM and it's ridiculous. The tabs don't help, they only make life harder.
    Thanks for the suggestions, I was hoping not to have to reinstall PS, but looks like it's the only option.

  • Problems with script

    hello to all
    i have a little problem with my script
    I ask you if there is the possibility to activate randomize order in a text animator with script
    i have a check box and i try with this function that is
    function make_random(random){
            if(random){
                var animator1 = layer.Text.Animators.addProperty("ADBE Text Animator");
                var selector1 = animator1.Selectors.addProperty("ADBE Text Selector");
                animator1 = animator1.Properties;
                animator1.addProperty("ADBE Text Randomize Order").setValue([on]);
            }else{
    but do not work
    can someone halp me please?
    sorry for my english

    See my reply on your other post:
    http://forums.adobe.com/thread/1312888?tstart=0

  • Problem with script when downloading

    Hi,
    I have a problem with downloading Flash Player to my XP, Internet Explorer computer.
    All of the time I get the message saying that a problem has occured with the script on this page. I have tried several times and at the end of the download procedure this happens all the time. I have enabled scripting and it has been working for all years until now. Here you can see the message I get (in swedish):
    Is there anyone who can give me a tips on how to get Flash Player?

    Hello,
    Welcome to Adobe Forums.
    You can download Adobe Flash Player offline installer, links on this document :
    http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html
    Thanks,
    Vikram

  • Problem with Script in Adium

    Greetings,
    I'm having a problem with a Script. In Adium, I'm trying to use a Script called "quoteDB" that basically picks up a random quote from a file and shows it. Since I'd like to use it to change my display name from time to time, my problem is that the script runs every 20 seconds, so my name also changes..
    My question is: does anyone knows how to configure the script "delay", I mean, how to introduce some kind of "wait" ou "idle"..
    Here's the script:
    on substitute(filePath)
    set filePath to (filePath as alias)
    open for access filePath
    set raw to read filePath using delimiter "
    close access filePath
    set quotes to {""} as list
    set j to 1
    repeat with i from 1 to number of items in raw
    set this_item to (text item i of raw)
    if (this_item is "-") then
    set quotes to quotes & ("" as item)
    set j to j + 1
    else
    set item j of quotes to (item j of quotes & (this_item & ""))
    end if
    end repeat
    return some item of quotes
    end substitute
    Thanks a lot.
    rc

    The statement for a delay is:
    delay 60
    where the time is the number of seconds (60, or one minute in my example). There is also an idle handler in a stay-open script, that uses the number of seconds returned for the interval until the next time the handler is run:
    on idle
       return 60
    end idle
    I don't know what you are using to run the script every 20 seconds (or why your name is changing), so there may be a conflict with the various timings.

  • Problem with Script Alignment for new printer

    Hi All,
       I'm printing SAP checks to LOCAL printer. Currently we are using Dell W5300n to print checks and the printer has a lot of maintenance problems.  Therefore we purchase a new printer Dell 3110cn  and would like to have it set up to print checks.  We would still keep old printer ( Dell W5300n ) for back up.We changed the printer to new as there is some problem with old printer.
    Problem is , if we print a check from using old printer, the check alignment is good.  But if we print a check from  new printer, the check alignment is off.
    I'm using DINA4 Page format.
    Can you please tell me what is the problem here?
    Thanks,
    Subha

    Hi Subhashini Kuntala,
    For your issue there are few things to check ...
    1. We need to find exact Printer (new) drivers which matches exactly the (old)  Printer.
    2. Is your cheque is in A4 size or Customised size.
    3. If it is A4 try to print in Other Printer.
    If these senerio's does't work, as a ABAPer You can't do anything else .. So, best to pass this issue to BASIS.
    That could resolve your Problem.
    Regards,
    sg

  • Problem with Script logic logs

    Hi Experts,
    I am using BPC 7.5M with SQL Server 2008, I am looking into script logic log but found one very strange statement "(More than 300,000 records. Details are not being logged)", Earlier it was not showing this statement and was showing all the entries to be posted, Is there any setting we need to do for having all the entries in the log file.
    Status log file showing as of now:
    App: HEADCOUNT - Records to be posted are 310875  (calc diff = 0)
    (More than 300,000 records. Details are not being logged)
    Time to validate records: 100.3 sec.
    Post Record Status
    Submit count : 100001
    Accept count : 100001
    Reject count : 0
    Post Record Status
    Submit count : 200002
    Accept count : 200002
    Reject count : 0
    Post Record Status
    Submit count : 300003
    Accept count : 300003
    Reject count : 0
    Post Record Status
    Submit count : 310875
    Accept count : 310875
    Reject count : 0
    Posting ok
    Time to post records:325.4 sec.
    Please Advice
    Thanks & Regards,
    Rohit

    Hi Rohit,
    This is not a problem.
    If the resultant number of records is more than 300,000, then the records are not logged.
    This can be controlled by the UNLIMIT_PRINT_LOG appset parameter. By default, this is set as NO. This will allow only 300k records to be logged.
    You can set the above parameter as YES to log all the records for the execution of all logics across the appset in all applications.
    Warning:
    Of course, it will add slow down the logic execution. Logging the records will always slow down the execution. The system has to open the file and keep writing all the records in the flatfile, which is a slow process. You can increase the speed of your logics by disabling this logging completely by using the CALCULATE_DIFFERENCE statement in your script logic for each commit section. You can reduce the logic execution time by disabling this logging.
    Karthik AJ

  • Problem with Script Task formatting excel

    Hi Experts,
    I am creating a package and using Script task to format one excel dimension file, now the problem is if I execute the package from BIDS designer with static values then the package executes fine with excel file formatted perfectly fine but if I execute same package in BPC via Data manager with values used from variables it gives error on script task message:
    "Description = System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Runtime.InteropServices.COMException (0x800A03EC): Microsoft Office Excel cannot access the file 'E:\PC_MS\Data\Webfolders\CDNPLAN\AdminApp\Stage\Employee.xls'. There are several possible reasons:
    u2022 The file name or path does not exist.
    u2022 The file is being used by another program.
    u2022 The workbook you are trying to save has the same name as a currently open workbook.
    at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
    at Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateGet(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack)
    at ScriptTask_2921447fa19c44dfae73d5370828ba94.vbproj.ScriptMain.Main()
    Now to crosscheck I commented the dynamic variables from the code and used same static values with Data manager as they are in BIDS but it didn't help, please find the code below and help me in solving this problem or just give me some clue to come out if this:
    Thanks & Regards,
    Rohit
    Code
    Public Sub Main()
              ' Add your code here
            'Dim FileName As String = Dts.Variables("MYWEBFOLDERS").Value & Dts.Variables("MYAPPSET").Value & "\AdminApp\Stage\" & Dts.Variables("MYDIMNAME").Value & ".xls" This I commented as it was using dynamic variables
            Dim FileName As String = "E:\PC_MS\Data\Webfolders\CDNPLAN\AdminApp\Stage\Employee.xls"
        Dim WB As Object ' Workbook
        Dim WS As Object 'Worksheet
        Dim W As Object 'Window
        Dim XL As Object 'Application
        XL = CreateObject("Excel.Application")
        XL.DisplayAlerts = False
        ' Open the workbook
        WB = XL.Workbooks.Open(FileName)
        ' WB = GetObject(FileName)
        '    XL = WB.Parent
        '    XL.DisplayAlerts = False
        WS = WB.Worksheets(1)
        W = WB.Windows(WB.Name)
        ' Change the name of the worksheet to MEMBERS
        WS.Name = "MEMBERS"
        ' Set up the split and freeze the panes
        W.SplitRow = 1
        W.SplitColumn = 1
        W.Split = True
        W.FreezePanes = True
        ' Make it visible
        W.Visible = True
        ' Replace *ID column header with ID
        Dim Row1 As Object
        Row1 = WS.UsedRange.Rows("1:1")
        Dim I As Integer
        For I = 1 To Row1.Columns.Count
          If Row1.Cells(I, 1).Value = "*ID" Then
            Row1.Cells(I, 1).value = "ID"
            Exit For
          End If
        Next
        ' Paste Values
        WS.UsedRange.NumberFormat = "@"
        WS.UsedRange.Value = WS.UsedRange.Value
        ' Change the font of everything to Arial,9
        With WS.Cells.Font
          .Name = "Arial"
          .Size = 9
        End With
        ' Format the top row to be bold and orange
        With WS.Rows("1:1")
          .Font.Bold = True
          .Interior.ColorIndex = 44 'orange
        End With
        ' Auto-fit all the columns
        WS.Cells.EntireColumn.AutoFit()
        ' Convert to Excel format
        Const xlNormal = -4143
        WB.Parent.DisplayAlerts = False
        WB.SaveAs(FileName:=FileName, FileFormat:=xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, CreateBackup:=False)
            ' Close and save changes
            WS = Nothing
            WB.Close()
            W = Nothing
        ' Quit Excel
            XL.Quit()
            XL = Nothing
        Dts.TaskResult = ScriptResults.Success
         End Sub

    Hi,
    If you do not define GLOBAL VARIABLE in your BPC package and BIDS, why don't you try to have it? you should specify the webfolder and file name in advanced script, then you also need to create global variable as text type in BIDS.
    I saw many cases BPC does not pass the dynamic variable to BIDS, therefore I changed the type of variable as the Global variable and it works for me.
    Regards,
    YH Seo

  • Problem with script Test-ExchangeServerHealth

    Have been using Paul Cunningham's most excellent Test-ExchangeServerHealth script.  It has been running flawlessly on Exchange 2010 for sometime.  I moved it to 2013 and immediately encountered errors.  The error occurs down in the DAG test
    routine.  The error I get:
    Get-DatabaseAvailabilityGroup : Could not load file or assembly 'Microsoft.Exchange.Data, Version=14.0.0.0, Culture=neutral,PublicKeyToken=xxxxxxxxx' or one of its dependencies. The system cannot find the file specified. At C:\Scripts\TestExchangeServerHealth\Test-ExchangeServerHealth.ps1:1159
    char:15
    +     $tmpdags = @(Get-DatabaseAvailabilityGroup -Status)
    +                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Get-DatabaseAvailabilityGroup], FileNotFoundException
        + FullyQualifiedErrorId : [Server=CAS2,RequestId=xxxxx,TimeStamp=4/30/2014 1:04:38 PM] [FailureCategory=Cmdlet-FileNotFoundException] CB830B58, Microsoft.Exchange.Management.SystemConfigurationTasks.GetDatabaseAvailabilityGroup
    Hoping this is an easy fix.  Also making sure SP1 is supported with the script?
    Skip
    Skippy

    So it seems if I start Exchange Management Shell as administrator and call the script from the shell it works perfectly fine.  I now have another script with the same exact problem.  I'm trying to run this from a batch file via Task Scheduler...
    Here is the syntax that isn't working (exchange 2013)
    Inside BAT file:
    PowerShell.exe -PSConsoleFile "C:\Program Files\Microsoft\Exchange Server\V15\Bin\ExShell.psc1" -Command "C:\Scripts\TestExchangeServerHealth\Test-ExchangeServerHealth.ps1" -sendemail -log
    Executing the BAT file from task scheduler.
    Is there something I need to do different with 2013 in order to execute a script via task scheduler?
    Skippy

  • Smart Title Case - problem with script

    Having a problem here.
    When multiple paragraphs are selected the start of a paragraph is set to a lowercase
    how can I fix this?
    //DESCRIPTION: Converts selected text to title case smartly
    var ignoreWords = ["a", "an", "and", "the", "to", "with", "in", "on", "as", "of", "or", "at", "into", "that",
             "by", "from", "their", "then", "for", "are", "not","cannot", "be", "is", "which", "can"];
    var intCaps = ["PineRidge","InDesign","NJ","UMC", "FCCLA", "SkillsUSA", "d’Oeuvres", "VAT", "VIES",];
    // or by creating text files named ignoreWords.txt and intCaps.txt in the same folder as the script
    ignoreWords = getIgnoreFile(ignoreWords);
    intCaps = getIntCaps(intCaps);
    try {
        myText = app.selection[0].texts[0].contents;
    } catch(e) {
        exit();
    theWordRanges = myText.split("/");
    for (var i = theWordRanges.length - 1; i >= 0; i--) {
        theWords = theWordRanges[i].toLowerCase().split(" ");
        //First word must have a cap, but might have an internal cap
        myNewText = "";
        for (var j = 0; theWords.length > j; j++) {
            k = isIn(intCaps,theWords[j])
            if (k > -1) {
                myNewText = myNewText + intCaps[k] + " ";
                continue;
            } else {
                if ((isIn(ignoreWords,theWords[j]) > -1) && (j != 0)) {
                    myNewText = myNewText + theWords[j] + " ";
                } else {
                    myNewText = myNewText + InitCap(theWords[j]) + " ";
        theWordRanges[i] = myNewText.substring(0,myNewText.length - 1)
    app.selection[0].texts[0].contents = theWordRanges.join("/");
    // +++++++ Functions Start Here +++++++++++++++++++++++
    function getIgnoreFile(theWords) {
        var myFile = File(File(getScriptPath()).parent.fsName + "/ignoreWords.txt");
        if (!myFile.exists) { return theWords }
        // File exists, so use it instead
        myFile.open("r");
        var importedWords = myFile.read();
        myFile.close();
        return importedWords.split("\n"); // Could filter these, but what's the point?
    function getIntCaps(theWords) {
        var myFile = File(File(getScriptPath()).parent.fsName + "/intCaps.txt");
        if (!myFile.exists) { return theWords }
        // File exists, so use it instead
        myFile.open("r");
        var importedWords = myFile.read();
        myFile.close();
        return importedWords.split("\n"); // Could filter these, but what's the point?
    function getScriptPath() {
        // This function returns the path to the active script, even when running ESTK
        try {
            return app.activeScript;
        } catch(e) {
            return e.fileName;
    function isIn(aList,aWord) {
        for (var i = 0; aList.length > i; i++) {
            if (aList[i].toLowerCase() == aWord) {
                return i;
        return -1;
    function InitCap(aWord) {
        if (aWord.length == 1) {
            return (aWord.toUpperCase());
        return (aWord.substr(0,1).toUpperCase() + aWord.substring(1,aWord.length))

    Hi,
    Looks like it is a 'paragraph mark' problem which can be seen as 1st char in some strings.
    modify these two lines:
         theWordRanges = myText.split("\r");
         app.selection[0].texts[0].contents = theWordRanges.join("\r");
    Jarek

  • Problem with Script Using New() to Create a #Vectorshape

    Hello,
    I am having a problem integrating an existing movie script into a movie I am building and I can't figure out why.
    The single movie script, developed by JC in 2004,  appears below. It works perfectly in a movie all by itself. But I need to integrate it into an existing movie in which other sprites and behaviors must coexist.
    The problem I am seeing is that gMem is created with the new command (can see it in the message window using put gMem), but it will not allow attachment of gMem.regPoint, gMem.centerRegPoint, and so on. These all return errors.
    I would also be open to another solution to the problem. What I need to do is create rectangles that represent a plan view of a rooftop on an underlying grid and then be able to drag and place other images on it (it is for training purposes, not a game).
    I am using MX2004 on a PC. Any help, deeply appreciated.
    Rod Wolford
    global gMem, gCount, gNum, gLoc, gCreateVert, gMemNum
    on prepareMovie
      clearGlobals()
      _movie.puppetTempo(60)
      gCreateVert = False
      gMemNum = 5
    end
    on mouseDown
      if not(gCreateVert) then
        gMem = new (#vectorShape, member gMemNum of castLib 1)
        gMemNum = gMemNum + 1
        gMem.regPoint = point(0,0)
        gMem.centerRegPoint = False
        gMem.closed = False
        gMem.antialias = True
        gMem.strokeWidth = 0.25
        gMem.strokeColor = rgb(0,0,0)
        gNum = getFreeChannel()
        channel(gNum).makeScriptedSprite(gMem, point(0,0))
        sprite(gNum).ink = 36
        gCount = 0
        gCreateVert = True
      end if
      if gCreateVert then
        if the doubleClick then
          gCreateVert = False
          gCount = gCount - 1
          gMem.deleteVertex(gCount)
          gMem.closed = True
          gMem.fillMode = #solid
          gMem.fillColor = rgb(random(256) - 1,random(256) - 1,random(256) - 1)
          gFinished = True
          exit
        end if
        gCount = gCount + 1
        gMem.addVertex(gCount, the mouseLoc)
        gCount = gCount + 1
        gMem.addVertex(gCount, the mouseLoc)
        gLoc = the mouseLoc
      end if
    end
    on enterFrame
      if gCreateVert then
        gMem.moveVertex(gCount, the mouseH - gLoc[1], the mouseV - gLoc[2])
        theLoc = (gMem.vertexList)[gCount][1]
        if not(theLoc = the mouseLoc) then
          gMem.moveVertex(gCount, the mouseH - theLoc[1], the mouseV - theLoc[2])
        end if
        gLoc = the mouseLoc
      end if
    end
    on stopMovie
      theCount = castLib(1).member.count
      repeat with i = 1 to theCount
        if member(i).type = #vectorShape then member(i).erase()
      end repeat
    end
    on getFreeChannel
      repeat with i = 1 to the lastChannel
        if sprite(i).member.type = #empty then
          aNum = i
          exit repeat
        end if
      end repeat
      return aNum
    end

    Sean,
    Thank you. Changing gMem handler from #new to #_movie.newmember did the trick. I still have not found the behavior or movie script that contains the #new handler that created the problem. I was not aware of the #_movie.newmember handler. Seems that because it is specific to a new member added into a movie that it may be more useful than just using #new when adding new members is needed. Is that so? Does it have any downsides?
    Once again, thanks for your answer. By the way, I think the script was originally a J Chunick script.
    Regards,
    Rod

  • Problem with script – NEED HELP

    HELP!!! why isn't the script working?
    on adding folder items to thefolder after receiving theAddedItems
    repeat with eachitem in theAddedItems
    set theSender to "me<[email protected]>"
    set recipCommon to "Files"
    set recipAddress to (choose from list {"User 1", "User 2", "User 3"} with prompt "Select a recipient :") as text
    if result is "User 1" then
    set recipAddress to {"User 1 <[email protected]>"}
    else if result is "User 2" then
    set recipAddress to {"User 2 <[email protected]>"}
    else if result is "User 3" then
    set recipAddress to {"User 3 <[email protected]>", "[email protected]>"}
    end if
    set msgText to " type body copy here "
    tell application "Mail"
    set newmessage to make new outgoing message with properties {content:msgText & return}
    tell newmessage
    set sender to theSender
    tell application "Finder" to set theSubject to name of eachitem
    set subject to theSubject
    repeat with eachRecipient in recipAddress
    make new to recipient at end of to recipients with properties {name:recipCommon, address:eachrecipAddress}
    end repeat
    end tell
    send newmessage
    end tell
    end repeat
    end adding folder items to

    HELP......
    !!!Everything works in the below script except it doesn't send the email?!!!
    on adding folder items to thefolder after receiving theAddedItems
    repeat with eachitem in theAddedItems
    set theSender to "me<[email protected]>"
    set recipCommon to "Files"
    set recipAddress to (choose from list {"User 1", "User 2", "User 3"} with prompt "Select a recipient :") as text
    if result is "User 1" then
    set recipAddress to {"User 1 <[email protected]>"}
    else if result is "User 2" then
    set recipAddress to {"User 2 <[email protected]>"}
    else if result is "User 3" then
    set recipAddress to {"User 3 <[email protected]>", "[email protected]>"}
    end if
    set msgText to " type body copy here "
    tell application "Mail"
    set newmessage to make new outgoing message with properties {content:msgText & return}
    tell newmessage
    set visible to true
    set sender to theSender
    tell application "Finder" to set theSubject to name of eachitem
    set subject to theSubject
    repeat with eachRecipient in recipAddress
    make new to recipient at end of to recipients with properties {name:recipCommon, address:eachRecipient}
    end repeat
    repeat with eachRecipient in recipAddress
    make new to recipient at end of to recipient with properties {name:recipCommon, address:recipAddress}
    set eachRecipient to contents of eachRecipient
    end repeat
    end tell

  • [SOLVED] Archiso: problem with script build.sh

    Hi guys,
    i have this problem when I run ./build.sh,
    cp: cannot create hard link ‘work/root-image/usr/src/linux-3.11.6-1-ARCH/vmlinux’ to ‘work/i686/root-image/usr/src/linux-3.11.6-1-ARCH/vmlinux’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/bzlib.h’ to ‘work/i686/root-image/usr/include/bzlib.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/dlg_colors.h’ to ‘work/i686/root-image/usr/include/dlg_colors.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gpg-error.h’ to ‘work/i686/root-image/usr/include/gpg-error.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pcap-namedb.h’ to ‘work/i686/root-image/usr/include/pcap-namedb.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/inline.h’ to ‘work/i686/root-image/usr/include/unistring/inline.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/stdint.h’ to ‘work/i686/root-image/usr/include/unistring/stdint.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/iconveh.h’ to ‘work/i686/root-image/usr/include/unistring/iconveh.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/cdefs.h’ to ‘work/i686/root-image/usr/include/unistring/cdefs.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/version.h’ to ‘work/i686/root-image/usr/include/unistring/version.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/stdbool.h’ to ‘work/i686/root-image/usr/include/unistring/stdbool.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/woe32dll.h’ to ‘work/i686/root-image/usr/include/unistring/woe32dll.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unistring/localcharset.h’ to ‘work/i686/root-image/usr/include/unistring/localcharset.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_amiga_redirects.h’ to ‘work/i686/root-image/usr/include/gc/gc_amiga_redirects.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_tiny_fl.h’ to ‘work/i686/root-image/usr/include/gc/gc_tiny_fl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_config_macros.h’ to ‘work/i686/root-image/usr/include/gc/gc_config_macros.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/cord.h’ to ‘work/i686/root-image/usr/include/gc/cord.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_inline.h’ to ‘work/i686/root-image/usr/include/gc/gc_inline.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/weakpointer.h’ to ‘work/i686/root-image/usr/include/gc/weakpointer.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/leak_detector.h’ to ‘work/i686/root-image/usr/include/gc/leak_detector.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_backptr.h’ to ‘work/i686/root-image/usr/include/gc/gc_backptr.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_mark.h’ to ‘work/i686/root-image/usr/include/gc/gc_mark.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_gcj.h’ to ‘work/i686/root-image/usr/include/gc/gc_gcj.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_allocator.h’ to ‘work/i686/root-image/usr/include/gc/gc_allocator.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_typed.h’ to ‘work/i686/root-image/usr/include/gc/gc_typed.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc.h’ to ‘work/i686/root-image/usr/include/gc/gc.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_cpp.h’ to ‘work/i686/root-image/usr/include/gc/gc_cpp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_version.h’ to ‘work/i686/root-image/usr/include/gc/gc_version.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/new_gc_alloc.h’ to ‘work/i686/root-image/usr/include/gc/new_gc_alloc.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gc/gc_pthread_redirects.h’ to ‘work/i686/root-image/usr/include/gc/gc_pthread_redirects.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/re_comp.h’ to ‘work/i686/root-image/usr/include/re_comp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/tcl.h’ to ‘work/i686/root-image/usr/include/tcl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/idn-free.h’ to ‘work/i686/root-image/usr/include/idn-free.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pthread.h’ to ‘work/i686/root-image/usr/include/pthread.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/cursesp.h’ to ‘work/i686/root-image/usr/include/cursesp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldap.h’ to ‘work/i686/root-image/usr/include/ldap.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/memory.h’ to ‘work/i686/root-image/usr/include/memory.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pci/types.h’ to ‘work/i686/root-image/usr/include/pci/types.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pci/config.h’ to ‘work/i686/root-image/usr/include/pci/config.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pci/header.h’ to ‘work/i686/root-image/usr/include/pci/header.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pci/pci.h’ to ‘work/i686/root-image/usr/include/pci/pci.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gcrypt.h’ to ‘work/i686/root-image/usr/include/gcrypt.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/verto.h’ to ‘work/i686/root-image/usr/include/verto.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/db_185.h’ to ‘work/i686/root-image/usr/include/db_185.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/pkcs11.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/pkcs11.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/p11-kit.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/p11-kit.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/pin.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/pin.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/iter.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/iter.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/uri.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/uri.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/p11-kit-1/p11-kit/deprecated.h’ to ‘work/i686/root-image/usr/include/p11-kit-1/p11-kit/deprecated.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/netipx/ipx.h’ to ‘work/i686/root-image/usr/include/netipx/ipx.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/stdio.h’ to ‘work/i686/root-image/usr/include/stdio.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ncurses.h’ to ‘work/i686/root-image/usr/include/ncurses.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/itclTclIntStubsFcn.h’ to ‘work/i686/root-image/usr/include/itclTclIntStubsFcn.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/tclPlatDecls.h’ to ‘work/i686/root-image/usr/include/tclPlatDecls.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzma.h’ to ‘work/i686/root-image/usr/include/lzma.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/stdint.h’ to ‘work/i686/root-image/usr/include/stdint.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/tclPort.h’ to ‘work/i686/root-image/usr/include/tclPort.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lber_types.h’ to ‘work/i686/root-image/usr/include/lber_types.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/_pam_macros.h’ to ‘work/i686/root-image/usr/include/security/_pam_macros.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_modutil.h’ to ‘work/i686/root-image/usr/include/security/pam_modutil.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_client.h’ to ‘work/i686/root-image/usr/include/security/pam_client.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_filter.h’ to ‘work/i686/root-image/usr/include/security/pam_filter.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_ext.h’ to ‘work/i686/root-image/usr/include/security/pam_ext.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_appl.h’ to ‘work/i686/root-image/usr/include/security/pam_appl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_modules.h’ to ‘work/i686/root-image/usr/include/security/pam_modules.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/pam_misc.h’ to ‘work/i686/root-image/usr/include/security/pam_misc.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/_pam_types.h’ to ‘work/i686/root-image/usr/include/security/_pam_types.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/security/_pam_compat.h’ to ‘work/i686/root-image/usr/include/security/_pam_compat.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/fcntl.h’ to ‘work/i686/root-image/usr/include/fcntl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ss/ss.h’ to ‘work/i686/root-image/usr/include/ss/ss.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ss/ss_err.h’ to ‘work/i686/root-image/usr/include/ss/ss_err.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/grp.h’ to ‘work/i686/root-image/usr/include/grp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/unitypes.h’ to ‘work/i686/root-image/usr/include/unitypes.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/db_cxx.h’ to ‘work/i686/root-image/usr/include/db_cxx.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/jpegint.h’ to ‘work/i686/root-image/usr/include/jpegint.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/expat.h’ to ‘work/i686/root-image/usr/include/expat.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/argp.h’ to ‘work/i686/root-image/usr/include/argp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sudo_plugin.h’ to ‘work/i686/root-image/usr/include/sudo_plugin.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ucontext.h’ to ‘work/i686/root-image/usr/include/ucontext.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ifaddrs.h’ to ‘work/i686/root-image/usr/include/ifaddrs.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/catalog.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/catalog.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xpath.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xpath.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/entities.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/entities.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/c14n.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/c14n.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/list.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/list.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlschemas.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlschemas.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/relaxng.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/relaxng.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xlink.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xlink.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xinclude.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xinclude.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlautomata.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlautomata.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlmodule.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlmodule.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/HTMLtree.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/HTMLtree.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlwriter.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlwriter.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/pattern.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/pattern.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlregexp.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlregexp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlschemastypes.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlschemastypes.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/SAX.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/SAX.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xpointer.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xpointer.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/nanohttp.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/nanohttp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/valid.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/valid.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/chvalid.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/chvalid.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/dict.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/dict.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/globals.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/globals.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/debugXML.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/debugXML.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlreader.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlreader.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/parserInternals.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/parserInternals.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/SAX2.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/SAX2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/HTMLparser.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/HTMLparser.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/hash.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/hash.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/schemasInternals.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/schemasInternals.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlsave.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlsave.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/DOCBparser.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/DOCBparser.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlunicode.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlunicode.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/parser.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/parser.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlerror.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlerror.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/threads.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/threads.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/tree.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/tree.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlversion.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlversion.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlIO.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlIO.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlexports.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlexports.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/uri.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/uri.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/nanoftp.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/nanoftp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xpathInternals.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xpathInternals.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlmemory.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlmemory.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/xmlstring.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/xmlstring.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/schematron.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/schematron.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libxml2/libxml/encoding.h’ to ‘work/i686/root-image/usr/include/libxml2/libxml/encoding.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gshadow.h’ to ‘work/i686/root-image/usr/include/gshadow.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pipeline.h’ to ‘work/i686/root-image/usr/include/pipeline.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/glob.h’ to ‘work/i686/root-image/usr/include/glob.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/compress_offload.h’ to ‘work/i686/root-image/usr/include/sound/compress_offload.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/sfnt_info.h’ to ‘work/i686/root-image/usr/include/sound/sfnt_info.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/emu10k1.h’ to ‘work/i686/root-image/usr/include/sound/emu10k1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/compress_params.h’ to ‘work/i686/root-image/usr/include/sound/compress_params.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/asequencer.h’ to ‘work/i686/root-image/usr/include/sound/asequencer.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/hdsp.h’ to ‘work/i686/root-image/usr/include/sound/hdsp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/asound.h’ to ‘work/i686/root-image/usr/include/sound/asound.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/asound_fm.h’ to ‘work/i686/root-image/usr/include/sound/asound_fm.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/hdspm.h’ to ‘work/i686/root-image/usr/include/sound/hdspm.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sound/sb16_csp.h’ to ‘work/i686/root-image/usr/include/sound/sb16_csp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/_G_config.h’ to ‘work/i686/root-image/usr/include/_G_config.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/itcl2TclOO.h’ to ‘work/i686/root-image/usr/include/itcl2TclOO.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/pcre_scanner.h’ to ‘work/i686/root-image/usr/include/pcre_scanner.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/sysexits.h’ to ‘work/i686/root-image/usr/include/sysexits.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/nl_types.h’ to ‘work/i686/root-image/usr/include/nl_types.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/luaconf.h’ to ‘work/i686/root-image/usr/include/luaconf.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/semaphore.h’ to ‘work/i686/root-image/usr/include/semaphore.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/resolver.h’ to ‘work/i686/root-image/usr/include/ldns/resolver.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/higher.h’ to ‘work/i686/root-image/usr/include/ldns/higher.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/buffer.h’ to ‘work/i686/root-image/usr/include/ldns/buffer.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/rr.h’ to ‘work/i686/root-image/usr/include/ldns/rr.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/rbtree.h’ to ‘work/i686/root-image/usr/include/ldns/rbtree.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/update.h’ to ‘work/i686/root-image/usr/include/ldns/update.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/sha2.h’ to ‘work/i686/root-image/usr/include/ldns/sha2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/zone.h’ to ‘work/i686/root-image/usr/include/ldns/zone.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/net.h’ to ‘work/i686/root-image/usr/include/ldns/net.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dnssec_verify.h’ to ‘work/i686/root-image/usr/include/ldns/dnssec_verify.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/tsig.h’ to ‘work/i686/root-image/usr/include/ldns/tsig.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/error.h’ to ‘work/i686/root-image/usr/include/ldns/error.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/duration.h’ to ‘work/i686/root-image/usr/include/ldns/duration.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/common.h’ to ‘work/i686/root-image/usr/include/ldns/common.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/host2wire.h’ to ‘work/i686/root-image/usr/include/ldns/host2wire.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/wire2host.h’ to ‘work/i686/root-image/usr/include/ldns/wire2host.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/host2str.h’ to ‘work/i686/root-image/usr/include/ldns/host2str.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/packet.h’ to ‘work/i686/root-image/usr/include/ldns/packet.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/str2host.h’ to ‘work/i686/root-image/usr/include/ldns/str2host.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/rdata.h’ to ‘work/i686/root-image/usr/include/ldns/rdata.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dnssec.h’ to ‘work/i686/root-image/usr/include/ldns/dnssec.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/rr_functions.h’ to ‘work/i686/root-image/usr/include/ldns/rr_functions.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dnssec_zone.h’ to ‘work/i686/root-image/usr/include/ldns/dnssec_zone.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dane.h’ to ‘work/i686/root-image/usr/include/ldns/dane.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/keys.h’ to ‘work/i686/root-image/usr/include/ldns/keys.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dnssec_sign.h’ to ‘work/i686/root-image/usr/include/ldns/dnssec_sign.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/ldns.h’ to ‘work/i686/root-image/usr/include/ldns/ldns.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/parse.h’ to ‘work/i686/root-image/usr/include/ldns/parse.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/sha1.h’ to ‘work/i686/root-image/usr/include/ldns/sha1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/util.h’ to ‘work/i686/root-image/usr/include/ldns/util.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/ldns/dname.h’ to ‘work/i686/root-image/usr/include/ldns/dname.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/idn-int.h’ to ‘work/i686/root-image/usr/include/idn-int.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/slang.h’ to ‘work/i686/root-image/usr/include/slang.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/search.h’ to ‘work/i686/root-image/usr/include/search.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gssapi/gssapi_ext.h’ to ‘work/i686/root-image/usr/include/gssapi/gssapi_ext.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gssapi/gssapi_krb5.h’ to ‘work/i686/root-image/usr/include/gssapi/gssapi_krb5.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gssapi/gssapi_generic.h’ to ‘work/i686/root-image/usr/include/gssapi/gssapi_generic.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gssapi/gssapi.h’ to ‘work/i686/root-image/usr/include/gssapi/gssapi.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gssapi/mechglue.h’ to ‘work/i686/root-image/usr/include/gssapi/mechglue.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/libudev.h’ to ‘work/i686/root-image/usr/include/libudev.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/uniname.h’ to ‘work/i686/root-image/usr/include/uniname.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/monetary.h’ to ‘work/i686/root-image/usr/include/monetary.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/inttypes.h’ to ‘work/i686/root-image/usr/include/inttypes.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-journal.h’ to ‘work/i686/root-image/usr/include/systemd/sd-journal.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-id128.h’ to ‘work/i686/root-image/usr/include/systemd/sd-id128.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-daemon.h’ to ‘work/i686/root-image/usr/include/systemd/sd-daemon.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-login.h’ to ‘work/i686/root-image/usr/include/systemd/sd-login.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-shutdown.h’ to ‘work/i686/root-image/usr/include/systemd/sd-shutdown.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/systemd/sd-messages.h’ to ‘work/i686/root-image/usr/include/systemd/sd-messages.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/event.h’ to ‘work/i686/root-image/usr/include/event.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/xlocale.h’ to ‘work/i686/root-image/usr/include/xlocale.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/gettext-po.h’ to ‘work/i686/root-image/usr/include/gettext-po.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/regex.h’ to ‘work/i686/root-image/usr/include/regex.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/devname.h’ to ‘work/i686/root-image/usr/include/proc/devname.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/version.h’ to ‘work/i686/root-image/usr/include/proc/version.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/sig.h’ to ‘work/i686/root-image/usr/include/proc/sig.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/whattime.h’ to ‘work/i686/root-image/usr/include/proc/whattime.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/slab.h’ to ‘work/i686/root-image/usr/include/proc/slab.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/alloc.h’ to ‘work/i686/root-image/usr/include/proc/alloc.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/pwcache.h’ to ‘work/i686/root-image/usr/include/proc/pwcache.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/sysinfo.h’ to ‘work/i686/root-image/usr/include/proc/sysinfo.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/wchan.h’ to ‘work/i686/root-image/usr/include/proc/wchan.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/readproc.h’ to ‘work/i686/root-image/usr/include/proc/readproc.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/escape.h’ to ‘work/i686/root-image/usr/include/proc/escape.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/proc/procps.h’ to ‘work/i686/root-image/usr/include/proc/procps.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/fnmatch.h’ to ‘work/i686/root-image/usr/include/fnmatch.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/minilzo.h’ to ‘work/i686/root-image/usr/include/lzo/minilzo.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzoconf.h’ to ‘work/i686/root-image/usr/include/lzo/lzoconf.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzodefs.h’ to ‘work/i686/root-image/usr/include/lzo/lzodefs.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1f.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1f.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1c.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1c.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1x.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1x.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1z.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1z.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1a.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1a.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo2a.h’ to ‘work/i686/root-image/usr/include/lzo/lzo2a.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1y.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1y.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1b.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1b.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo1.h’ to ‘work/i686/root-image/usr/include/lzo/lzo1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzo_asm.h’ to ‘work/i686/root-image/usr/include/lzo/lzo_asm.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzo/lzoutil.h’ to ‘work/i686/root-image/usr/include/lzo/lzoutil.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/dlg_config.h’ to ‘work/i686/root-image/usr/include/dlg_config.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/itclInt.h’ to ‘work/i686/root-image/usr/include/itclInt.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/utime.h’ to ‘work/i686/root-image/usr/include/utime.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/lzoconf.h’ to ‘work/i686/root-image/usr/include/lzoconf.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/curses.h’ to ‘work/i686/root-image/usr/include/curses.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/idea.h’ to ‘work/i686/root-image/usr/include/openssl/idea.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ssl2.h’ to ‘work/i686/root-image/usr/include/openssl/ssl2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/lhash.h’ to ‘work/i686/root-image/usr/include/openssl/lhash.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/camellia.h’ to ‘work/i686/root-image/usr/include/openssl/camellia.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/srtp.h’ to ‘work/i686/root-image/usr/include/openssl/srtp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/buffer.h’ to ‘work/i686/root-image/usr/include/openssl/buffer.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/pem2.h’ to ‘work/i686/root-image/usr/include/openssl/pem2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/dtls1.h’ to ‘work/i686/root-image/usr/include/openssl/dtls1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/whrlpool.h’ to ‘work/i686/root-image/usr/include/openssl/whrlpool.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/opensslconf.h’ to ‘work/i686/root-image/usr/include/openssl/opensslconf.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/dso.h’ to ‘work/i686/root-image/usr/include/openssl/dso.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/blowfish.h’ to ‘work/i686/root-image/usr/include/openssl/blowfish.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/e_os2.h’ to ‘work/i686/root-image/usr/include/openssl/e_os2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/des_old.h’ to ‘work/i686/root-image/usr/include/openssl/des_old.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/krb5_asn.h’ to ‘work/i686/root-image/usr/include/openssl/krb5_asn.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/txt_db.h’ to ‘work/i686/root-image/usr/include/openssl/txt_db.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ts.h’ to ‘work/i686/root-image/usr/include/openssl/ts.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/engine.h’ to ‘work/i686/root-image/usr/include/openssl/engine.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/seed.h’ to ‘work/i686/root-image/usr/include/openssl/seed.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/pkcs7.h’ to ‘work/i686/root-image/usr/include/openssl/pkcs7.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/asn1.h’ to ‘work/i686/root-image/usr/include/openssl/asn1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/err.h’ to ‘work/i686/root-image/usr/include/openssl/err.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/cmac.h’ to ‘work/i686/root-image/usr/include/openssl/cmac.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/symhacks.h’ to ‘work/i686/root-image/usr/include/openssl/symhacks.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/stack.h’ to ‘work/i686/root-image/usr/include/openssl/stack.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/conf.h’ to ‘work/i686/root-image/usr/include/openssl/conf.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ssl.h’ to ‘work/i686/root-image/usr/include/openssl/ssl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/dh.h’ to ‘work/i686/root-image/usr/include/openssl/dh.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/comp.h’ to ‘work/i686/root-image/usr/include/openssl/comp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ocsp.h’ to ‘work/i686/root-image/usr/include/openssl/ocsp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/md4.h’ to ‘work/i686/root-image/usr/include/openssl/md4.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ecdsa.h’ to ‘work/i686/root-image/usr/include/openssl/ecdsa.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/asn1t.h’ to ‘work/i686/root-image/usr/include/openssl/asn1t.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/safestack.h’ to ‘work/i686/root-image/usr/include/openssl/safestack.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/bio.h’ to ‘work/i686/root-image/usr/include/openssl/bio.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/rc2.h’ to ‘work/i686/root-image/usr/include/openssl/rc2.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/x509_vfy.h’ to ‘work/i686/root-image/usr/include/openssl/x509_vfy.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/asn1_mac.h’ to ‘work/i686/root-image/usr/include/openssl/asn1_mac.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/bn.h’ to ‘work/i686/root-image/usr/include/openssl/bn.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ebcdic.h’ to ‘work/i686/root-image/usr/include/openssl/ebcdic.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/pqueue.h’ to ‘work/i686/root-image/usr/include/openssl/pqueue.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/sha.h’ to ‘work/i686/root-image/usr/include/openssl/sha.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/dsa.h’ to ‘work/i686/root-image/usr/include/openssl/dsa.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ui_compat.h’ to ‘work/i686/root-image/usr/include/openssl/ui_compat.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ssl3.h’ to ‘work/i686/root-image/usr/include/openssl/ssl3.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/rc4.h’ to ‘work/i686/root-image/usr/include/openssl/rc4.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/rand.h’ to ‘work/i686/root-image/usr/include/openssl/rand.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/crypto.h’ to ‘work/i686/root-image/usr/include/openssl/crypto.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/hmac.h’ to ‘work/i686/root-image/usr/include/openssl/hmac.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/md5.h’ to ‘work/i686/root-image/usr/include/openssl/md5.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/modes.h’ to ‘work/i686/root-image/usr/include/openssl/modes.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/objects.h’ to ‘work/i686/root-image/usr/include/openssl/objects.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ui.h’ to ‘work/i686/root-image/usr/include/openssl/ui.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ripemd.h’ to ‘work/i686/root-image/usr/include/openssl/ripemd.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/cast.h’ to ‘work/i686/root-image/usr/include/openssl/cast.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ssl23.h’ to ‘work/i686/root-image/usr/include/openssl/ssl23.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/srp.h’ to ‘work/i686/root-image/usr/include/openssl/srp.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/conf_api.h’ to ‘work/i686/root-image/usr/include/openssl/conf_api.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/kssl.h’ to ‘work/i686/root-image/usr/include/openssl/kssl.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ec.h’ to ‘work/i686/root-image/usr/include/openssl/ec.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/x509.h’ to ‘work/i686/root-image/usr/include/openssl/x509.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/aes.h’ to ‘work/i686/root-image/usr/include/openssl/aes.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/pem.h’ to ‘work/i686/root-image/usr/include/openssl/pem.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/x509v3.h’ to ‘work/i686/root-image/usr/include/openssl/x509v3.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/tls1.h’ to ‘work/i686/root-image/usr/include/openssl/tls1.h’: Invalid cross-device link
    cp: cannot create hard link ‘work/root-image/usr/include/openssl/ecdh.h’ to ‘work/i686/root-image/usr/include/openssl/ecdh.h’: Invalid cross-device link
    Any idea for fix the problem?
    P.S. I followed this guide: https://wiki.archlinux.org/index.php/ar … ive_medium
    Last edited by stifler83 (2013-11-09 10:34:50)

    I wasn't able to scroll over with the browser I was using before (or maybe I was but just didn't...).  The "Invalid cross-device link" part is indicating that it is trying to create a hard-link across two filesystems.  An example would be if you had a separate / and /home, and tried to create a hard link between something in /etc and something in your $HOME.  It would not work because they are on separate partitions (the inodes are not shared).  But this can also happen if you try to hard link across bind mounts as well, which is less obvious.
    What I meant by non-POSIX compliant filesystem is a filesystem that does not support POSIX attributes.  If you tried to install Linux on a vfat or ntfs filesystem, it would not work simply because it does not support all the features that are required to make Linux work.  The most basic of these is the user and group ownership and file permissions.  But this is not the case for you since you are using ext4 (and I apparently didn't investigate your code block closely enough).

Maybe you are looking for