https://bugs.kde.org/show_bug.cgi?id=372954

            Bug ID: 372954
           Summary: Plasmashell Crash when changing several partitions
                    with parted and formatting them
           Product: plasmashell
           Version: 5.8.4
          Platform: Other
                OS: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: Device Notifier
          Assignee: plasma-b...@kde.org
          Reporter: xapi...@gmx.net
  Target Milestone: 1.0

every time i run a script that formats my usb flashdrives with 3 partitions 
(fat32, fat32, ext4) plasmashell crashes.

reproducable : 99%



this is the script:


        echo "# PARTITIONING DEVICE #"


        LIFESIZEEND=$(( $WINSHARESIZE + $LIFESIZE ))

        sudo partprobe $SDX

        sudo parted -s $SDX mktable MSDOS

        sleep 1

        sudo partprobe $SDX

        sudo parted -s $SDX mkpart primary fat32 0% $WINSHARESIZE
        sudo parted -s $SDX mkpart primary fat32 $WINSHARESIZE $LIFESIZEEND
        sudo parted -s $SDX mkpart primary ext4 $LIFESIZEEND 100%


        echo "# setting boot flag to second partition   #"


        sudo parted -s $SDX set 2 boot on
        sudo parted -s $SDX print


        echo ""
        echo " WAITING FOR DEVICE TO SETTLE ...... "
        echo ""
        sleep 4

        sudo partprobe $SDX

        echo ""
        echo "#    CREATING FILESYSTEMS        #"
        echo ""

        sudo mkfs.vfat -F 32 -n WINSHARE ${SDX}1
        sleep 1
        sudo mkfs.vfat -F 32 -n LIFECLIENT ${SDX}2
        sleep 1
        echo "mkfs.ext4"
        sudo mkfs.ext4 -L casper-rw ${SDX}3 > /dev/null 2>&1  #hide output
        sleep 1
        #sudo mkfs.ext2 -b 4096 -L home-rw ${SDX}3
        sudo partprobe


        echo "#    Finished Partitioning       #"

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to