Ntfs-config and python problem

Hello, I'm trying to install ntfs-config via AUR. Apparently there is a problem with Python. As zephiros commented in AUR, I need to change a certain line to point python 3. But I'm confused, which line in the file do I have to change?
Thank you in advance.

Noone...?

Similar Messages

  • Automatic payment config and run problem

    hi friends,
    Now the payments are generating on one bank account 123456, now client wants to post if the vendor payment morethan $1000 send through another bank account 987654 both are currency USD only and in bank determination(fbzp) the config is
    bank   pm   curr 
    H101   T     USD
    H101   T            (empty)   
    now the requirement is same as above config only bank account number changed.
    am trying to do the config but system doesnt allowing the duplicates,
    please tell me how i can acheive this problem.
    Regards,
    Pd

    hi,
    here my problem is if the payment is morethan $1000 use bank account no.987654 , and if the payment is lessthan $1000 use bank account no.123456.
    both accounts are in USD only and GL account(bank subaccount) also different.
    In Bank determination --> bank accounts am unable to give the same
    For ex:
    House bank    PM     Curr          accid         subaccount
    DRE          S     USD     GIRO     113201
    DRE          S          GIRO     113202
    here one more i create like below (is it possible)
    DRE          S     USD     SIRO     113233
    Regards
    Pd

  • EP to R3 config and connection Problem

    Hi
      I am using r3 system for workflows my workflow scenario is completed, I got the data in SBWP tcode in inbox.After that i need to pass the data to Netweaver EP in UWL (Univercel Work List). How to configuretion and connectivity EP to R/3 and how to pass the data in UWL(Univercel Work List).Send me the Detailed steps with Screen shots.
    Regards,
    Hari

    Hi,
    You can have a look at this link:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45&overridelayout=true
    Regards,
    Niraj

  • Mpd and python-mpd problem utf8

    Hi,
    i've just update the new mpd and python mpd package, so there is a problem with utf8 directory. Now it can not display my covers.
    The error :
    Exception in thread Thread-28:
    Traceback (most recent call last):
    File "/usr/lib/python2.5/threading.py", line 486, in __bootstrap_inner
    self.run()
    File "/usr/lib/python2.5/threading.py", line 446, in run
    self.__target(*self.__args, **self.__kwargs)
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 3971, in _artwork_update
    imgfound = self.artwork_check_for_local()
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 3993, in artwork_check_for_local
    type, filename = self.artwork_get_local_image()
    File "/usr/lib/python2.5/site-packages/sonata/main.py", line 4038, in artwork_get_local_image
    testfile = img.single_image_in_dir(self.musicdir[self.profile_num] + songpath)
    File "/usr/lib/python2.5/site-packages/sonata/img.py", line 62, in single_image_in_dir
    dir = gobject.filename_from_utf8(dir)
    GError: Séquence d'octets non valide en entrée du convertisseur

    I'm having the same output whenever I try to view an artists's albums in the collection and the album title contains non strictly ascii characters (which happens pretty often, as I am not a native english speaker). The problem is that the albums do not appear in the collection ! I can still access them by the filesystem view, but then the songs are sorted alphabetically, not by track number.
    This problem appeared with Sonata 1.5.

  • 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. 

  • Windows Keboard and Booting Problem (on a Mac laptop)

    Hi, I've been putting up with a really strange (and annoying) problem that my laptop has been going through. I have a Santa Rosa MacBook Pro with OS Leopard, and I put on a Windows XP Pro (with Service Pack 2) NTFS partition. It used to work fast at first--especially booting up and logging on. I have noticed that now when I log onto Windows (no other user accounts , just mine) the wallpaper, desktop, desktop icons, start bar, all load. But when I click on My Computer it takes a good minute and a half for all the components to be displayed (like C drive , the CD drive, Shared Documents). I only have one partition which is C drive. But for a minute and a half, the flashlight icon keeps moving back and forth. Even if I click on any icon, the cursor will turn into a sandtimer but no programs will open once all the drives show up in the My Computer window.
    My initial theory was that maybe it's searching for My Documents which I shifted to one of my external harddrives. But that doesn;t seem to be it. When I log off and log back in, it loads much faster. I can open programs in 2 seconds. Also, I realized that the Apple keyboard features (which is controlling volume and brightness) works only then. If I had to boot up Windows, not only does it take long to load (although shutting down is pretty quick), the brightness and volume keys don't work. I have to set it manually through Control Panel. So now if I have to open up Windows, the ritual is that I sit around for a minute and a half (which is a very long time if u think about it) and just when it's working I force myself to log off (so the volume and brightness keys work once I log back on)
    I suppose it's worth mentioning that I had downloaded this "skin" which makes XP look like Vista, but I uninstalled it now although not completely since it needed the Service Pack 2 CD which I don't have at the moment (I'm on vacation) . I would think that could be the problem, but then why does simply logging off and on make Windows work like a charm? Is it an update glitch? Has anyone had this problem before? Could somebody please help me since I'm really tired of waiting around or this stupid thing to load (not to mention hearing myself come up with stupid theories). This has been going on for 4 and half months now. Come to think of it it's been a while since I received any Bootcamp updates from Apple (unless they just haven't released any that could fix such a problem)
    Just in case my specs are-- 2.4 GhZ, OS 10.5, nVIDIA GeForce 8600M GT, 15 inch display, 250 GB (of which 30 GB is for Windows).
    I'll be waiting for any answers/suggestions/tips/solutions. Thanks so much in advance =)

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.] If possible please also try to rule out hardware / mouse settings issues.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • Lenovo Yoga 2 13, Kali Linux 1.0.7, Ubuntu 14.04, Windows 8.1 install, config, and wifi fix.

    Lenovo Yoga 2 13, Kali Linux 1.0.7, Ubuntu 14.04, Windows 8.1 install, config, and wifi fix.
    I wanted to share an experience with everyone I hope will help others avoid what I have gone through the past 3 days. I bought a Yoga 11s that I loved but had some issues with the wireless, Lenovo being awesome replaced it with a Yoga 2 13. I love this laptop but ran into some issues with Linux install/wireless, which I wanted to show how to resolve in one place. Hopefully this will help someone else get through this quicker
    I am going to try and write this for someone with little Linux experience, if I miss the mark please let me know and I will clarify the best I can.
    For work I need Windows 8.1 and Kali Linux, while for home I prefer Ubuntu.
    My Yoga 2 13:
    I5 1.6 ghz
    8 GB ram
    256 GB SSD
    ORANGE!
    My requirements: 
    I need Windows
    I need Kali Linux (livecd, even with persistent mode was not an option as it would not save the wireless fix or system updates) – I would also like this on a USB drive and not the internal SSD
    I would like Ubuntu
    Needed to do this:
    1. 2 USB thumb drives (at least 8gb in size each) I used 2 Leef Supra 32GB drives. They are my favorite right now and are only about $27 at amazon.
    2. Phone that can USB Tether or a USB Ethernet card (External USB wireless will show as "Hardware Locked"). Again you can pick one up for sub $10 if you need the USB Ethernet route. I used my Galaxy S5, you will need to download 200-300 mb of items through this so make sure you have the data if you go that route.
    3. You may be able to get a USB wifi card to work if you do the following after boot. This only worked once for me.
                    a.Type ‘sudo rmmod iwlmvm’
    b.Type ‘sudo rmmod iwlwifi’
    4. ISOs of Ubuntu and Kali Linux (I used Ubuntu 14.04 and Kali Linux 1.0.7)
    5. Software to unzip the ISOs. I recommend 7-ZIP and will be referencing this in this guide.
    6. I will include the EFI boot files and the WiFi fix files if I can attach. Otherwise I will provide a link to them.
       Link: https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    Recommended (these are just in case you corrupt something making your system not see any OS
    1.  I would call Lenovo beforehand and get a set of recover disks (this will take 2-3 days)
    2. In the meantime a USB Windows 8.1 or 8 ISO (the repair feature may save you)
    *Note: At many points in this guide I detail steps and commands. Please double check that you understand the step before proceeding. There are multiple points where a mistyped command or clicking the wrong option will cause your entire system to fail and you will need to reformat the entire drive and start over. This also will make One Touch recovery not work. Proceed with caution.*
    I did not need to disable ‘secure boot’ to do this, but keep in mind that you may need to.
    Steps:
    First let’s go through the installs, and then we will go through grub config and wireless fix
    1. In Windows scroll to computer and right click, select manage.
    2. Go to “Disk Management”
    3. Select the main HDD (notice Lenovo puts a stupid number of partitions on here)
    a. I deleted the D: drive on here, if you do this make sure to copy the drives over to your main C: drive. You will want to run each of the installers and repair the drivers after.
    4. I used the space from the D: drive and pulled a little more creating a 50 GB partition for Ubuntu and my swap file
    a. You can also add more space by right clicking your C drive and selecting shrink
    b. Do not format the partitioned data as this will make identifying it later much easier.
    5. Open a command line
                    a. Swipe from the right of the screen and select search
                    b. Type ‘cmd’
                    c. right click and select ‘run as admin’
    6. For Ubuntu: Type ‘diskpart’ into the command line
                    a. type ‘list disk’
    i. You should see 2-3 disks depending on if you have one or both usb drives in the laptop at the time. I would suggest only doing 1 at a time so you don’t lose track.
                    b. type ‘select disk $’ (Replace the $ with the number of the drive)
    c. ***** Before proceeding make sure you have the correct drive selected or you can ruin your Windows install and Lenovo one touch recovery will not fix it since we have changed the partitions *****
    d. type ‘clean’
    e. type ‘create partition primary’
    f. type ‘active’
    g. type ‘format  fs=fat32 quick’
    h. type ‘assign’
    i. type ‘exit’
    6. For Kali Linux: Type ‘diskpart’ into the command line
                    a. type ‘list disk’
    i. You should see 2-3 disks depending on if you have one or both usb drives in the laptop at the time. I would suggest only doing 1 at a time so you don’t lose track.
                    b. type ‘select disk $’ (Replace the $ with the number of the drive)
    c. ***** Before proceeding make sure you have the correct drive selected or you can ruin your Windows install and Lenovo one touch recovery will not fix it since we have changed the partitions *****
    d. type ‘clean’
    e. type ‘create partition primary size= 3272
    f. type ‘active’
    g. type ‘format  fs=fat32 quick’
    h. type ‘assign’
    i. type ‘exit’
    j. By doing this we can maintain a portion of this drive as the install CD and still have linux install/ liveCD if we need to run it on another machine.
    7. At this point the drive is ready to have the contents of the ISO copied over.
    8. Right click the ISO and select 7-zip then ‘zip to /’ This should unzip the ISO to the location of the ISO into a folder named exactly the same as the ISO.
    9. Once this is done for Ubuntu ISO it is done
    10. Kali requires a little bit more to be ready
                    a. Kali will need some files added for EFI boot. --$--
                                   i. Thanks to: https://forums.kali.org/showthread.php?271-How-to-EFI-install-Kali-Linux
                                   ii. EFI files are located within the wifi fix folder https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    11. Now let’s start with Ubuntu
    Ubuntu install
    1.     Place USB drive into the laptop and press the “Lenovo boot” button next to the power button
    2.     Select ‘Boot Menu’
    3.     Select ‘EFI USB Device (Name of drive)’ Mine stated Leef Supra
    4.     Select ‘install Ubuntu’
    5.     Go through the Ubuntu install until you get to select the install drive
    6.     Once you get to the install portion it will ask you to select from one of 4 options. Select ‘Manually select partition’
    7.     Select the “Free Space” where we opened up some of the drive
    8.     You will need to create 2 partitions, I usually create the swap partition at the end of the drive
    a.     First I create the swap
                                              i.    Set at the end of the drive
                                             ii.    Set size to 1024 mb
                                            iii.    Set type to ‘swap’
    b.     Second create the ext 4 partition
                                              i.    Set to beginning of drive
                                             ii.    Set to remainder of the space
                                            iii.    Set type to ext4
                                            iv.    Set mount point to /
    9.     Finish the install and boot into Ubuntu
    10.   You will notice that your wireless is ‘disabled by hardware’ This is fine for the time being and we will worry about this after the kali install. If we fix it now for some reason after installing kali we get the error again and would just need to fix it again.
    Kali Linux install
    1.     Place USB drive into the laptop and press the “Lenovo boot” button next to the power button
    2.     Select ‘Boot Menu’
    3.     Select ‘EFI USB Device (Name of drive)’ Mine stated Leef Supra
    4.     From the grub menu select ‘install kali linux’ both graphical and text work. I much prefer text install
    5.     You will get a few errors through the install but that is fine
    6.     The first we see is about network hardware and ‘load missing firmware from removable media?’ – Select ‘no’
    7.     Then select no ethernet card
    8.     It will have you name your machine then it will ask you for the root password
    a.     If you want to just use root *not recommended* place the password here
    b.     If you wish to use a non-root account then leave these blank and it will ask you for a name, username, and password of the new machine *Very Recommended* - this will also add this user to the sudoers file
    9.     It will then ask you to ‘partition disks’
    10.   Select manual
    11.   Now here is where it can get a little confusing so read twice click once
    12.   Select the USB drive from this list
    13.   Mine shows up under (sdb) – Leef Supra
    a.     It could be sdc, sdd, sde, etc… depending on how many drives you have plugged in.
    14.   You should see one primary drive that is 3gb or so that is formatted as FAT32. – DO NOT TOUCH THIS PARTITION!
    15.   You should see the remainder of this drive as ‘FREE SPACE’ select that
    16.   Create a partition at the end at size 1024mb and swap
    17.   Then create another one for the remainder of the drive and set it to ext4 with mountpoint of /
    18.   Continue through the install after you should see an error warning you that ‘you may not be able to boot’ that is fine, select continue
    19.   Then select from the menu of all the options ‘continue without bootloader’
    20.   It should finish up then reboot on its own.

    First setup/boot/fix grub
    1.     You should  be able to boot up into GRUB2 menu now.
    2.     You may not see kali linux in this menu (make sure you have your towel and don’t panic!)
    3.     Boot into Ubuntu
    4.     Once you log in you should see that you still cannot use wireless due to being locked by hardware
    5.     This is expected
    6.     Let’s fix grub then we will come back to fixing wireless
    7.     Plug in your device to connect to the internet (USB Tethering or USB Ethernet)
    8.     Once you verify that you now have an internet connection run the following from terminal
    a.     ‘sudo add-apt-repository ppa:danielrichter2007/grub-customizer’
    b.     ‘sudo apt-get update’
    c.     ‘sudo apt-get install grub-customizer’
    9.     You can also edit the grub.cfg manually if you know what you are doing… I did not
    10.   Open grub  customizer
    11.   It should auto populate and you should see ‘debian (kali linux)’ somewhere in the list
    12.   It should be mounted to /dev/sdb2 or /dev/sdc2 depending on how many devices you have
    13.   At this point go ahead and save
    14.   Reboot and test that you can get into each OS
    15.   This is where my inexperience got me. I spent 2 of my days so I am including this error: If when you boot into Kali you get an error somewhere that says ‘/bin/sh: can’t access tty: job control turned off’ look above it for an error that looks similar to ‘ALERT! /dev/sdc2 does not exist. Dropping to a shell!!’
    a.     That error is due to the mount point being incorrect in grub, reboot and from within grub highlight the kali boot. Press ‘e’ then towards the bottom you should see ‘root=/dev/sdc2’ change this to ‘root=/dev/sdb2’ again the number doesn’t matter just make sure it stays the same.
    b.     Press F10
    c.     If this boots fine then you will need to go back and fix the grub.cfg or load into Ubuntu and open grub customizer again, it should fix this
    16.   Now you have 3 working OS on the machine with one being on a USB! Congrats!
    17.   You can remove the USB with no worry of screwing up your install, but you will not be able to boot into Kali Linux until you replace it. I would suggest only removing it and replacing it while the machine is powered off, but that’s just me.
    Fix Wireless
    Now is the time to do what probably ¾ of you came here for. FIX THE DANG WIRELESS. This is a huge problem from Lenovo’s side that I hope they realize how important Linux is and will fix. I won’t hold my breath though.
    Log into Ubuntu : This is well documented in the following forum post on page 3 by user Haohe:
    http://ubuntuforums.org/showthread.php?t=2215044&page=3
    His has you download quite a large file, mine should be much smaller.
    https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    1.     Download the attached package with the fix.
    2.     Connect your USB internet device (tether or ethernet)
    3.     Place the packages somewhere easy to access, in this example I will place them under ~/Desktop/WiFiFix
    4.     Type ‘cd ~/Desktop/WiFiFix/’
    5.     Now we need to prep the tools we need.
    6.     Type ‘sudo apt-get update’ – we did this before, but you know, just in case
    7.     Type ‘sudo apt-get install linux-headers-`uname –r`’   Note around uname-r they are the ` symbol not the ‘ this is located just above the tab on the same key as ~.
    8.     Type ‘make’
    9.     Type ‘sudo cp /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/ideapad-laptop.ko ~/ideapad-laptop.ko.backup’
    10.   Type ‘sudo cp ~/Desktop/WiFiFix/ideapad-laptop.ko /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/’
    11.   Type ‘sudo modprobe -r ideapad-laptop’
    12.   Type ‘sudo modprobe ideapad-laptop’
    13.   Type ‘sudo rfkill unblock all’
    14.   Type ‘sudo modprobe -r ideapad-laptop’
    15.   Type ‘sudo mv ~/ideapad-laptop.ko.backup /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/ideapad-laptop.ko’
    16.   Next we need to blacklist the ideapad module
    17.   Type ‘sudo echo 'blacklist ideapad-laptop' > /etc/modprobe.d/blacklist-ideapad.conf’
    a.     The first time I tried this it wouldn’t work. So I did the following
    b.     ‘sudo touch /etc/modprobe.d/blacklist-ideapad.conf’
    c.     ‘sudo vim /etc/modprobe.d/blacklist-ideapad.conf’
    d.     Enter     blacklist ideapad-laptop
    e.     Exit and save
    18.   Reboot your Yoga 2 13
    19.   Boot into kali and see if you have wireless, if you do then you are done. If not we will need to repeat this process with one small little change.
    Kali Wifi Fix
    1.     Copy the sources.list from the package provided
    2.     Replace /etc/apt/sources.list with the included
    3.     Some of the file path changes but the process remains the same from here.
    Congratulations you now have 3 OSes one portable to other machines and working wifi!
    Thank you
    SirGed

  • Firefox will open 4 or 5 tabs fine, but then will not load any further websites after those first 4 or 5, or allow you to refresh one of those first tabs -- including about:config and the addon page

    Firefox 5 worked fine. I installed Firefox 7, and when I ran it, tabs would just say "connecting to..." and hang. Restarting did not help. Websites open fine in IE and Chrome. Disabled all firewalls and antivirus, did not help. Uninstalled and reinstalled Firefox 5, everything worked fine again. This was using Vista 64-bit.
    Upgraded to Windows 7, uninstalled Firefox 5, installed Firefox 7, had same problem. Uninstalled Firefox 7 completely (including the profile information, I saved that information in another folder), restarted computer, and installed Firefox 7 using a completely clean profile. Did not install any add-ons, checked to make sure all plug-ins were up-to-date, and updated plugins.
    Now when I start Firefox, I can load 3 or 4 or 5 tabs fine -- after those first few tabs are open, I cannot open or refresh any other tabs -- including about:config and the add-on manager -- I have to restart Firefox. The hangup doesn't appear to be related to what websites I am attempting to open, but it looks like the number is the problem. I have run through all of the FAQ procedures, including changing the max number of network connections to 48, and the problem does not seem to go away.
    As a side note, I had this same problem when I tried to go from version 5 to version 6 as well. Version 5 is the most recent version that worked on my system.

    Can you try Aurora - download it from http://www.mozilla.org/en-US/firefox/channel/
    And let us know how it works.

  • About:config and bold text

    I have noticed that showing ALL bookmarks is very slow.
    I understand that Firebug is sometimes cause for slow behaviour as posted on some notices for applications.
    I like to check why is this and disabled some Ads-on.
    Issue is what is actually about:config and bold text like:
    accessibility.typeaheadfind.flashBar;0
    Is it bold text warning that something is wrong?
    Ref:I have upgraded to new version 9.beta4

    No bold text in about:config means that the value it has modified from you or from a add-on or for a program that related with firefox(flash or anything)......
    http://kb.mozillazine.org/Accessibility.typeaheadfind.flashBar
    if you like to read about:config:
    http://kb.mozillazine.org/About:config_entries
    probably the browsing some times are slow because as you allready known 9.0 is a beta version, and for the reason you tell us, Firebug.
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Mounting NTFS,FAT32 and USB FLASH drive

    Problem and problem!!
    I am going to fade up with Solaris 10. Please somebody help me!!
    Problem is with mounting my FAT32, NTFS partitions and USB flash drive (twinmos).
    How can I mount FAT32, NTFS file system and my USB flash drive in Solaris 10??

    cN: the N'th disk controller installed in the system
    tN: the SCSI TARGET id. Also used for atapi, firewire and usb mass
    storage device, but it's always 0. Use to identify a specific disk
    device on the disk controller.
    dN: the SCSI LUN id. For atapi devices this is 0 for master device,
    1 for the slave device. For usb mass storge devices this field could
    contain a value > 0 - for example usb flash card readers often
    present the slots for the various flash card formats as multiple LUNs. For simple usb flash memory sticks, this should be
    LUN 0.
    sN: the slice N from the SunOS disk label. On a media without a
    disk label, slice 2 can be used to access all of the medias contents. Solaris SPARC supports slices s0 - s7, Solaris x86
    slices s0 - s15.
    pN: on Solaris x86 only: p0 is the whole disk (similar to slice s2,
    when there's no SunOS disk label), p1 - p4 are the four primary
    fdisk partitions.
    The ":c" suffix assumes the media contains the fat filesystem in
    a separate fdisk partition, searches the fdisk partition table for
    the first partition containing a fat filesystem, and mounts the
    filesystem from that partition. On Solaris x86, instead of using
    "p0:c" you could also use one of the p1 - p4 device; but the pN
    fdisk slices don't exist on Solaris SPARC.

  • I went into about:config and there is no conduit in there but I know it is because it is in my startup

    I am going nuts with this damn conduit malware. I have tried everything. This morning when I got up it seemed as though my whole computer crashed. It wouldn't even go on. I unplugged a couple of plugs for a while, and lo and behold it came on. Whew!!
    I went into about:config and there was nothing in there with conduit. However, it is in my startup in MsConfig. And I know that is what is giving me so many problems. I did see something in there that I wanted to get out, but it wouldn't let me. How can I do that????
    BevM
    <sub>edit: removed your mail address from public display, since the only thing it will attract are spam bots. you will be notified per mail once somebody replies to the thread. (philipp)</sub>

    Hello,
    That depends on which ones you use. HitmanPro has a trial period, so you can uninstall once you get rid of your problem (there is no permanent free version for it).
    However, [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware] and [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] have free versions - you do not need to use the trial period/pay for those ones. For MalwareBytes, the last dialog box in the installation will ask you to start the Free Trial period of the Premium version, '''uncheck that box''' so that it remains as the free version. I think even if you choose to use the trial, you can revert back to the free version later.

  • Installed NTFS-3G and now my external HD aren't opening

    Recently upgraded to Yosemite, and just reinstalled NTFS-3G and MacFuse, so that I could write in my NTFS external HD. Before that, my Mac was reading it (but not writing, obviously). Now I get this message every time I connect it:
    NTFS-3G could not mount /dev/disk2s1
    at /Volumes/SAMSUNG because the following problem occurred:
    dyld: Library not loaded: /usr/local/lib/libfuse.2.dylib
      Referenced from: /usr/local/bin/ntfs-3g
      Reason: image not found
    I tried remove them from the System Preferences, but the message still shows up. What can I do now?

    Macfuse is very out of date, see the FAQ for removing it…
    https://code.google.com/p/macfuse/wiki/FAQ
    OSX fuse is a newer alternative
    http://osxfuse.github.io/
    It still uses NTFS3G via the plugin, so you may need to reinstall that after getting OSX fuse.

  • Enabling Firewall breaks Bonjour name resolution (and other problems)

    Hi there, I thought I had a simple setup but trying to enable VPN & Firewall has shown me there are some issues I need help with:
    Setup: MacOS X Server 10.5.8 on MacPro
    - Machine is Mobile Account Server for 5 other machines connected to network
    - DHCP is obtained from Router in 10.1.10.x range. Server hardcodes its IP in that range (outside of DHCP addressable range)
    - Services running are: AFP, Open Directory, SMB, Software Update
    - All client workstations connect to server using "servername.local"
    This has all been working fine. However over the weekend I tried enabling VPN as we have a public IP address we can use. VPN works fine except:
    a) Plugging an additional ethernet cable into port 2, and configuring that port to have the external "public" IP information caused the "license in use issue" that has been reported here (http://discussions.apple.com/thread.jspa?messageID=9958588&tstart=0) so I had to use the solution of duplicating the existing ethernet config and entering the additional external IP to run both off the same port.
    b) I can't get L2TP working, but I can get P2PP. Seems like other people are having similar issues (http://discussions.apple.com/click.jspa?searchID=-1&messageID=9704644)
    But anyway, so I have P2PP VPN working and without a firewall previous functionality hasn't been impacted. Now of course, I'd be silly to leave this machine with the Firewall turned off as it is now a sitting duck out on the inter-tubes.
    I thus enabled the Firewall service with these settings:
    - Any service: Allow only traffic from "any" to these ports: (I enabled the ports for P2PP and L2TP)
    - 10-net: Allow all traffic from "10-net"
    This I assume would restrict access from the external interface, but let all internal subnet communication be unrestricted (like it was before I enabled the firewall). However this doesn't seem to be the case. I noticed that simple non-VPN connections to AFP service took a long time to happen using "afp://servername.local", several minutes before the authentication dialog appeared.
    Furthermore if I brought up "Software Update" on a managed client set to pull from "servername.local:8088", the connection would fail.
    If I disabled the firewall service, the slowdown and local Software Update would work fine.
    But if I try setting: "Allow all traffic from 'any'" on the Firewall (which should be almost like turning it of) it doesn't have a positive effect and slowdown of name resolution and failure to connect to local software update still occurred.
    Is there something in the Firewall being enabled that breaks Bonjour name resolution? Anyway to enable the Firewall and still keep Bonjour .local name resolution? Does this problem have anything to do with issue (a) we have to work-around?
    Thanks for any recommendations,
    Matt

    Hi Flanjman,
    Additional this article may give you more tips.
    https://connect.microsoft.com/SQLServer/feedback/details/674454/name-resolution-not-yet-available
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Convergence and webmail problem

    Hello,
    I have a problem installing convergence 1 update 3 using webmail from messaging server 7 update 3.
    imsimta version
    Sun Java(tm) System Messaging Server 7.3-11.01 64bit (built Sep  1 2009)
    libimta.so 7.3-11.01 64bit (built 19:44:36, Sep  1 2009)
    Using /opt/cs/messaging64/config/imta.cnf (not compiled)
    SunOS comms 5.10 Generic_142901-03 i86pc i386 i86pcWhen it comes to the Mail Service Configuration Details in the configuration dialog of convergence
    Enter the Webmail Server Admin UserID [admin] {"<" goes back, "!" exits}:
    Enter the Webmail Admin User Password [] {"<" goes back, "!" exits}:
    Please Wait: Verifying whether the Webmail Server Instance connection is alivethe following error is shown
    The Webmail Server credentials are wrong or Server misconfigured.
    1. Accept
    2. Choose NewThe http log file of messaging server shows
    ...httpd... Account Notice: badlogin: ...plaintext admin : user not foundBut when I select Accept everything seems to work. Users can log in and send and receive emails. I also can search the admin user with ldapsearch against the directory server backend.
    How can I find out whether this is a real problem or not?
    Thank you very much.
    Greetings,
    Willi

    Hi,
    Try increasing the logging at the Messaging Server level:
    ./configutil -o logfile.http.loglevel -v Debug
    ./configutil -o local.domainmap.debuglevel -v 3
    ./stop-msg http;./start-msg httpRetest the Convergence init-config and see whether there is any additional debug data in the Messaging Server http log that points at the root cause of the problem.I increased the logging level and here is the log
    Account Information: connect [123.456.789.123:37051]
    Account Notice: close [123.456.789.123:37051] [unauthenticated] 2010/2/16 9:10:30 0:00:00 0 0 0
    Account Information: connect [123.456.789.123:37052]
    General Information: [123.456.789.123:37052] GET /login.msc HTTP/1.1
    General Debug: dmap_locate_domain called with domain server.ini.mydomain.de
    General Debug:   Fixed up domain now server.ini.mydomain.de
    General Debug: No entry for this domain found in the cache
    General Debug:   Performing LDAP search on baseDN dc=server,dc=ini,dc=mydomain,dc=de,o=internet scope 0 filter (|(objectclass=inetDomain)(objectclass=inetdomainalias))
    General Debug:   Search returned 'No such object' (32)
    General Debug:   0 entries returned
    General Debug:   Creating negative cache entry for server.ini.mydomain.de
    General Debug: dmap_locate_domain called with domain ini.mydomain.de
    General Debug:   Fixed up domain now ini.mydomain.de
    General Debug: No entry for this domain found in the cache
    General Debug:   Performing LDAP search on baseDN dc=ini,dc=mydomain,dc=de,o=internet scope 0 filter (|(objectclass=inetDomain)(objectclass=inetdomainalias))
    General Debug:   Search returned 'Success' (0)
    General Debug:   1 entries returned
    General Debug: Result baseDN o=ini.mydomain.de,o=isp
    General Debug:   Performing based search for DN o=ini.mydomain.de,o=isp
    General Debug:   Search returned 'Success' (0)
    General Debug: Result canonical domain name ini.mydomain.de, canonical flag 3
    General Debug: dmap_locate_domain returning entry ini.mydomain.de refcount 3
    General Debug: dmap_locate_basedn called with baseDN uid=admin, ou=People, o=ini.mydomain.de,o=isp
    General Debug: dmap_locate_basedn returning entry ini.mydomain.de refcount 3
    General Debug: dmap_locate_domain called with domain ini.mydomain.de
    General Debug:   Fixed up domain now ini.mydomain.de
    General Debug:   Found in domain name table, refcount now 3
    General Debug: dmap_locate_domain returning entry ini.mydomain.de refcount 3
    General Debug: dmap_locate_basedn called with baseDN uid=admin, ou=People, o=ini.mydomain.de,o=isp
    General Debug: dmap_locate_basedn returning entry ini.mydomain.de refcount 3
    Account Notice: badlogin: [123.456.789.123:37052] plaintext admin : user not found
    Account Notice: close [123.456.789.123:37052] [unauthenticated] 2010/2/16 9:10:30 0:00:03 208 0 0Greetings,
    Willi

  • Distributing a deployment.config and deployment.properties for proxy settings.

    I am trying to define the minimum config required to populate a deployment.properties with just proxy settings and point to this with a deployment.config.
    I am finding that that recent versions of 1.7 and 1.8 do not adhere to the browsers settings properly and not all traffic is following the proxy rules in use by the browser. However, if I manually override all traffic to a proxy the applets running on internet based sites function (no intranet sites use java here). If I use a deployment.config, I can see the resulting proxy settings are enabled in the control panel app and the appear exactly the same as per user manual settings, however they are not correctly used.have any ideas?
    Any one have any ideas?.
    Thanks

    Hi Kevin,
    I am actually working on the same problem.
    I need to deploy Java 1.4.2_07 on clients with a mandatory setup. I tryied the deployment.config and deployment.properties file but didn't get it working yet.
    I guess we should share knowledge to find a working solution.
    It would be nice, if you could email me at:
    [email protected]
    regards,
    Volker

Maybe you are looking for

  • Reauthentication Problem in Endpoints Using Cisco ISE 1.1

    Hi, Can anyone suggest me if laptop/desktop goes on sleep mode or keep connected with interace configured for 802.1X for more than 12 hours it does not work or not connect to Exchange server, Cisco ISE console, office communicator... for re authentic

  • So sorting time...please help

    So, yes, this is a homework problem, but my brain just isn't having any of this problem. Give an algorithm to sort 4 elements in only 5 key comparisons int he worst case. OR Give an algorithm to sort five elements that is optimal in the worst case.

  • Abstract Trace into a string

    HI Folks, I am working on a graphical mapping and I am using a global container to write all my traces say     trace.addInfo("Line 1");   trace.addInfo("Line 4"); etc etc Now I want to retrieve  the trace information and return them as a string or an

  • Shift+Ctrl+Cmnd+4     Capture Clipboard as JPG not TIFF?

    Hi, i am using very often this shortcut : Shift+Ctrl+Cmnd+4 When i used Shift+Ctrl+4 it is doing the file on Desctop as a JPG file. That's perfect. But when i used Shift+Ctrl+Cmnd+4 to Clipboard and then paste it into Mail it paste as a Tiff. How can

  • Report selection

    Hi BI Experts! We are into support and now our customer has asked to move all type of future/current R/3 reports to BW.. Is there any standard thumb rule or criteria available or written somewhere that a set of report can or should be run in BW but o