Jump to content

Baltostar

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by Baltostar

  1. I'm not sure if this is a bug or a feature request.

     

    When running with 'Ransomware Protection' configured to create file shares and files. That plugin creates files with same name but different camel casing. Duplicate files with different casing is something that 'Fix Common Problems' is designed to find.

     

    I want to exclude Fix Common Problems from searching my 'Ransomware Protection' created folders that have these incorrect casing issues are reporting on.

     

    I added the folders to the 'Permission Test/Fix Excluded On' section however they are still scanned for the same files with different capitalization. This means that the plugin will continue to report errors on these folders so I will always have to review results instead of relying on a pass fail message.

     

    If 'Permission Test/Fix Excluded On' being the only excluding option also applies to the capitalization search, then this is a bug because it isn't excluding it from the search. However if that that isn't the case, then the feature request is for adding an excluded section for the Capitalization scan.

  2. I automated steps 1-9 of this guide.

     

    The output shows USB bus #, PCI Address, and IOMMU group #

     

    Bus 1 PCI 0000:00:1a.0 IOMMU 20
         Intel Corp.
         Linux Foundation 2.0 root hub
    
    Bus 2 PCI 0000:00:1d.0 IOMMU 26
         Intel Corp.
         Linux Foundation 2.0 root hub
    
    Bus 3 PCI 0000:00:14.0 IOMMU 18
         ASMedia Technology Inc.
         C-Media Electronics, Inc.
         Dell Computer Corp. Keyboard
         HTC (High Tech Computer Corp.)
         HTC (High Tech Computer Corp.)
         HTC (High Tech Computer Corp.)
         HTC (High Tech Computer Corp.)
         HTC (High Tech Computer Corp.)
         Linux Foundation 2.0 root hub
         Microsoft Corp. Wheel Mouse Optical
         SanDisk Corp.
         Standard Microsystems Corp.
         Yubico.com Yubikey NEO(-N) OTP+U2F
    
    Bus 4 PCI 0000:00:14.0 IOMMU 18
         ASMedia Technology Inc.
         Linux Foundation 3.0 root hub
    
    

     

     

    The above was generated by ssh into the unraid 6 box and running the following

    for n in $(lsusb | gawk '{print $2" " }' |uniq | sort)
    do
    bussNum=$(echo $n | sed -r 's=^0*==g')
    bussAddr=$(readlink /sys/bus/usb/devices/usb$bussNum | sed -r 's=.*/devices/==g' | gawk -F'/' '{print $2}')
    iommuGroup=$(find . /sys/kernel/iommu_groups | grep $bussAddr | uniq | sed -r 's=/devices.*==g' | sed -r 's=.*/==g')
    echo Bus $bussNum PCI $bussAddr IOMMU $iommuGroup
    IFS_bk=$IFS
    IFS=$'\n'
    for y in $(lsusb | grep 'Bus '$n | cut -d' ' -f 7- | sed '/^\s*$/d' | sort)
    do
    echo '     '$y
    done
    IFS=$IFS_bk
    echo ' '
    done
    

     

     

    • Upvote 1
×
×
  • Create New...